@cdktf/provider-google
Version:
Prebuilt google Provider for Terraform CDK (cdktf)
256 lines (255 loc) • 14.7 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface LoggingOrganizationSinkConfig extends cdktf.TerraformMetaArguments {
/**
* A description of this sink. The maximum length of the description is 8000 characters.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#description LoggingOrganizationSink#description}
*/
readonly description?: string;
/**
* The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, or a BigQuery dataset. Examples: "storage.googleapis.com/[GCS_BUCKET]" "bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]" "pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]" The writer associated with the sink must have access to write to the above resource.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#destination LoggingOrganizationSink#destination}
*/
readonly destination: string;
/**
* If set to True, then this sink is disabled and it does not export any log entries.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#disabled LoggingOrganizationSink#disabled}
*/
readonly disabled?: boolean | cdktf.IResolvable;
/**
* The filter to apply when exporting logs. Only log entries that match the filter are exported.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#filter LoggingOrganizationSink#filter}
*/
readonly filter?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#id LoggingOrganizationSink#id}
*
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
* If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
*/
readonly id?: string;
/**
* Whether or not to include children organizations in the sink export. If true, logs associated with child projects are also exported; otherwise only logs relating to the provided organization are included.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#include_children LoggingOrganizationSink#include_children}
*/
readonly includeChildren?: boolean | cdktf.IResolvable;
/**
* Whether or not to intercept logs from child projects. If true, matching logs will not match with sinks in child resources, except _Required sinks. This sink will be visible to child resources when listing sinks.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#intercept_children LoggingOrganizationSink#intercept_children}
*/
readonly interceptChildren?: boolean | cdktf.IResolvable;
/**
* The name of the logging sink.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#name LoggingOrganizationSink#name}
*/
readonly name: string;
/**
* The numeric ID of the organization to be exported to the sink.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#org_id LoggingOrganizationSink#org_id}
*/
readonly orgId: string;
/**
* bigquery_options block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#bigquery_options LoggingOrganizationSink#bigquery_options}
*/
readonly bigqueryOptions?: LoggingOrganizationSinkBigqueryOptions;
/**
* exclusions block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#exclusions LoggingOrganizationSink#exclusions}
*/
readonly exclusions?: LoggingOrganizationSinkExclusions[] | cdktf.IResolvable;
}
export interface LoggingOrganizationSinkBigqueryOptions {
/**
* Whether to use BigQuery's partition tables. By default, Logging creates dated tables based on the log entries' timestamps, e.g. syslog_20170523. With partitioned tables the date suffix is no longer present and special query syntax has to be used instead. In both cases, tables are sharded based on UTC timezone.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#use_partitioned_tables LoggingOrganizationSink#use_partitioned_tables}
*/
readonly usePartitionedTables: boolean | cdktf.IResolvable;
}
export declare function loggingOrganizationSinkBigqueryOptionsToTerraform(struct?: LoggingOrganizationSinkBigqueryOptionsOutputReference | LoggingOrganizationSinkBigqueryOptions): any;
export declare function loggingOrganizationSinkBigqueryOptionsToHclTerraform(struct?: LoggingOrganizationSinkBigqueryOptionsOutputReference | LoggingOrganizationSinkBigqueryOptions): any;
export declare class LoggingOrganizationSinkBigqueryOptionsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
get internalValue(): LoggingOrganizationSinkBigqueryOptions | undefined;
set internalValue(value: LoggingOrganizationSinkBigqueryOptions | undefined);
private _usePartitionedTables?;
get usePartitionedTables(): boolean | cdktf.IResolvable;
set usePartitionedTables(value: boolean | cdktf.IResolvable);
get usePartitionedTablesInput(): boolean | cdktf.IResolvable | undefined;
}
export interface LoggingOrganizationSinkExclusions {
/**
* A description of this exclusion.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#description LoggingOrganizationSink#description}
*/
readonly description?: string;
/**
* If set to True, then this exclusion is disabled and it does not exclude any log entries
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#disabled LoggingOrganizationSink#disabled}
*/
readonly disabled?: boolean | cdktf.IResolvable;
/**
* An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#filter LoggingOrganizationSink#filter}
*/
readonly filter: string;
/**
* A client-assigned identifier, such as "load-balancer-exclusion". Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#name LoggingOrganizationSink#name}
*/
readonly name: string;
}
export declare function loggingOrganizationSinkExclusionsToTerraform(struct?: LoggingOrganizationSinkExclusions | cdktf.IResolvable): any;
export declare function loggingOrganizationSinkExclusionsToHclTerraform(struct?: LoggingOrganizationSinkExclusions | cdktf.IResolvable): any;
export declare class LoggingOrganizationSinkExclusionsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
private resolvableValue?;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
get internalValue(): LoggingOrganizationSinkExclusions | cdktf.IResolvable | undefined;
set internalValue(value: LoggingOrganizationSinkExclusions | cdktf.IResolvable | undefined);
private _description?;
get description(): string;
set description(value: string);
resetDescription(): void;
get descriptionInput(): string | undefined;
private _disabled?;
get disabled(): boolean | cdktf.IResolvable;
set disabled(value: boolean | cdktf.IResolvable);
resetDisabled(): void;
get disabledInput(): boolean | cdktf.IResolvable | undefined;
private _filter?;
get filter(): string;
set filter(value: string);
get filterInput(): string | undefined;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
}
export declare class LoggingOrganizationSinkExclusionsList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: LoggingOrganizationSinkExclusions[] | cdktf.IResolvable;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
/**
* @param index the index of the item to return
*/
get(index: number): LoggingOrganizationSinkExclusionsOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink google_logging_organization_sink}
*/
export declare class LoggingOrganizationSink extends cdktf.TerraformResource {
static readonly tfResourceType = "google_logging_organization_sink";
/**
* Generates CDKTF code for importing a LoggingOrganizationSink resource upon running "cdktf plan <stack-name>"
* @param scope The scope in which to define this construct
* @param importToId The construct id used in the generated config for the LoggingOrganizationSink to import
* @param importFromId The id of the existing LoggingOrganizationSink that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the LoggingOrganizationSink to import is found
*/
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
/**
* Create a new {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/logging_organization_sink google_logging_organization_sink} Resource
*
* @param scope The scope in which to define this construct
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
* @param options LoggingOrganizationSinkConfig
*/
constructor(scope: Construct, id: string, config: LoggingOrganizationSinkConfig);
private _description?;
get description(): string;
set description(value: string);
resetDescription(): void;
get descriptionInput(): string | undefined;
private _destination?;
get destination(): string;
set destination(value: string);
get destinationInput(): string | undefined;
private _disabled?;
get disabled(): boolean | cdktf.IResolvable;
set disabled(value: boolean | cdktf.IResolvable);
resetDisabled(): void;
get disabledInput(): boolean | cdktf.IResolvable | undefined;
private _filter?;
get filter(): string;
set filter(value: string);
resetFilter(): void;
get filterInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _includeChildren?;
get includeChildren(): boolean | cdktf.IResolvable;
set includeChildren(value: boolean | cdktf.IResolvable);
resetIncludeChildren(): void;
get includeChildrenInput(): boolean | cdktf.IResolvable | undefined;
private _interceptChildren?;
get interceptChildren(): boolean | cdktf.IResolvable;
set interceptChildren(value: boolean | cdktf.IResolvable);
resetInterceptChildren(): void;
get interceptChildrenInput(): boolean | cdktf.IResolvable | undefined;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _orgId?;
get orgId(): string;
set orgId(value: string);
get orgIdInput(): string | undefined;
get writerIdentity(): string;
private _bigqueryOptions;
get bigqueryOptions(): LoggingOrganizationSinkBigqueryOptionsOutputReference;
putBigqueryOptions(value: LoggingOrganizationSinkBigqueryOptions): void;
resetBigqueryOptions(): void;
get bigqueryOptionsInput(): LoggingOrganizationSinkBigqueryOptions | undefined;
private _exclusions;
get exclusions(): LoggingOrganizationSinkExclusionsList;
putExclusions(value: LoggingOrganizationSinkExclusions[] | cdktf.IResolvable): void;
resetExclusions(): void;
get exclusionsInput(): cdktf.IResolvable | LoggingOrganizationSinkExclusions[] | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}