UNPKG

@cdktf/provider-google

Version:

Prebuilt google Provider for Terraform CDK (cdktf)

257 lines (256 loc) 14.7 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface LoggingProjectSinkConfig extends cdktf.TerraformMetaArguments { /** * A service account provided by the caller that will be used to write the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink#custom_writer_identity LoggingProjectSink#custom_writer_identity} */ readonly customWriterIdentity?: string; /** * 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.36.0/docs/resources/logging_project_sink#description LoggingProjectSink#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.36.0/docs/resources/logging_project_sink#destination LoggingProjectSink#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.36.0/docs/resources/logging_project_sink#disabled LoggingProjectSink#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.36.0/docs/resources/logging_project_sink#filter LoggingProjectSink#filter} */ readonly filter?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink#id LoggingProjectSink#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; /** * The name of the logging sink. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink#name LoggingProjectSink#name} */ readonly name: string; /** * The ID of the project to create the sink in. If omitted, the project associated with the provider is used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink#project LoggingProjectSink#project} */ readonly project?: string; /** * Whether or not to create a unique identity associated with this sink. If false (the legacy behavior), then the writer_identity used is serviceAccount:cloud-logs@system.gserviceaccount.com. If true (default), then a unique service account is created and used for this sink. If you wish to publish logs across projects, you must set unique_writer_identity to true. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink#unique_writer_identity LoggingProjectSink#unique_writer_identity} */ readonly uniqueWriterIdentity?: boolean | cdktf.IResolvable; /** * bigquery_options block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink#bigquery_options LoggingProjectSink#bigquery_options} */ readonly bigqueryOptions?: LoggingProjectSinkBigqueryOptions; /** * exclusions block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink#exclusions LoggingProjectSink#exclusions} */ readonly exclusions?: LoggingProjectSinkExclusions[] | cdktf.IResolvable; } export interface LoggingProjectSinkBigqueryOptions { /** * 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.36.0/docs/resources/logging_project_sink#use_partitioned_tables LoggingProjectSink#use_partitioned_tables} */ readonly usePartitionedTables: boolean | cdktf.IResolvable; } export declare function loggingProjectSinkBigqueryOptionsToTerraform(struct?: LoggingProjectSinkBigqueryOptionsOutputReference | LoggingProjectSinkBigqueryOptions): any; export declare function loggingProjectSinkBigqueryOptionsToHclTerraform(struct?: LoggingProjectSinkBigqueryOptionsOutputReference | LoggingProjectSinkBigqueryOptions): any; export declare class LoggingProjectSinkBigqueryOptionsOutputReference 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(): LoggingProjectSinkBigqueryOptions | undefined; set internalValue(value: LoggingProjectSinkBigqueryOptions | undefined); private _usePartitionedTables?; get usePartitionedTables(): boolean | cdktf.IResolvable; set usePartitionedTables(value: boolean | cdktf.IResolvable); get usePartitionedTablesInput(): boolean | cdktf.IResolvable | undefined; } export interface LoggingProjectSinkExclusions { /** * A description of this exclusion. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink#description LoggingProjectSink#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.36.0/docs/resources/logging_project_sink#disabled LoggingProjectSink#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.36.0/docs/resources/logging_project_sink#filter LoggingProjectSink#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.36.0/docs/resources/logging_project_sink#name LoggingProjectSink#name} */ readonly name: string; } export declare function loggingProjectSinkExclusionsToTerraform(struct?: LoggingProjectSinkExclusions | cdktf.IResolvable): any; export declare function loggingProjectSinkExclusionsToHclTerraform(struct?: LoggingProjectSinkExclusions | cdktf.IResolvable): any; export declare class LoggingProjectSinkExclusionsOutputReference 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(): LoggingProjectSinkExclusions | cdktf.IResolvable | undefined; set internalValue(value: LoggingProjectSinkExclusions | 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 LoggingProjectSinkExclusionsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: LoggingProjectSinkExclusions[] | 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): LoggingProjectSinkExclusionsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink google_logging_project_sink} */ export declare class LoggingProjectSink extends cdktf.TerraformResource { static readonly tfResourceType = "google_logging_project_sink"; /** * Generates CDKTF code for importing a LoggingProjectSink 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 LoggingProjectSink to import * @param importFromId The id of the existing LoggingProjectSink that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.36.0/docs/resources/logging_project_sink#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the LoggingProjectSink 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.36.0/docs/resources/logging_project_sink google_logging_project_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 LoggingProjectSinkConfig */ constructor(scope: Construct, id: string, config: LoggingProjectSinkConfig); private _customWriterIdentity?; get customWriterIdentity(): string; set customWriterIdentity(value: string); resetCustomWriterIdentity(): void; get customWriterIdentityInput(): string | undefined; 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 _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; private _project?; get project(): string; set project(value: string); resetProject(): void; get projectInput(): string | undefined; private _uniqueWriterIdentity?; get uniqueWriterIdentity(): boolean | cdktf.IResolvable; set uniqueWriterIdentity(value: boolean | cdktf.IResolvable); resetUniqueWriterIdentity(): void; get uniqueWriterIdentityInput(): boolean | cdktf.IResolvable | undefined; get writerIdentity(): string; private _bigqueryOptions; get bigqueryOptions(): LoggingProjectSinkBigqueryOptionsOutputReference; putBigqueryOptions(value: LoggingProjectSinkBigqueryOptions): void; resetBigqueryOptions(): void; get bigqueryOptionsInput(): LoggingProjectSinkBigqueryOptions | undefined; private _exclusions; get exclusions(): LoggingProjectSinkExclusionsList; putExclusions(value: LoggingProjectSinkExclusions[] | cdktf.IResolvable): void; resetExclusions(): void; get exclusionsInput(): cdktf.IResolvable | LoggingProjectSinkExclusions[] | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }