@cdktf/provider-google
Version:
Prebuilt google Provider for Terraform CDK (cdktf)
204 lines (203 loc) • 10.5 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface SccFolderNotificationConfigConfig extends cdktf.TerraformMetaArguments {
/**
* This must be unique within the organization.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#config_id SccFolderNotificationConfig#config_id}
*/
readonly configId: string;
/**
* The description of the notification config (max of 1024 characters).
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#description SccFolderNotificationConfig#description}
*/
readonly description?: string;
/**
* Numerical ID of the parent folder.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#folder SccFolderNotificationConfig#folder}
*/
readonly folder: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#id SccFolderNotificationConfig#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 Pub/Sub topic to send notifications to. Its format is
* "projects/[project_id]/topics/[topic]".
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#pubsub_topic SccFolderNotificationConfig#pubsub_topic}
*/
readonly pubsubTopic: string;
/**
* streaming_config block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#streaming_config SccFolderNotificationConfig#streaming_config}
*/
readonly streamingConfig: SccFolderNotificationConfigStreamingConfig;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#timeouts SccFolderNotificationConfig#timeouts}
*/
readonly timeouts?: SccFolderNotificationConfigTimeouts;
}
export interface SccFolderNotificationConfigStreamingConfig {
/**
* Expression that defines the filter to apply across create/update
* events of assets or findings as specified by the event type. The
* expression is a list of zero or more restrictions combined via
* logical operators AND and OR. Parentheses are supported, and OR
* has higher precedence than AND.
*
* Restrictions have the form <field> <operator> <value> and may have
* a - character in front of them to indicate negation. The fields
* map to those defined in the corresponding resource.
*
* The supported operators are:
*
* * = for all value types.
* * >, <, >=, <= for integer values.
* * :, meaning substring matching, for strings.
*
* The supported value types are:
*
* * string literals in quotes.
* * integer literals without quotes.
* * boolean literals true and false without quotes.
*
* See
* [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
* for information on how to write a filter.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#filter SccFolderNotificationConfig#filter}
*/
readonly filter: string;
}
export declare function sccFolderNotificationConfigStreamingConfigToTerraform(struct?: SccFolderNotificationConfigStreamingConfigOutputReference | SccFolderNotificationConfigStreamingConfig): any;
export declare function sccFolderNotificationConfigStreamingConfigToHclTerraform(struct?: SccFolderNotificationConfigStreamingConfigOutputReference | SccFolderNotificationConfigStreamingConfig): any;
export declare class SccFolderNotificationConfigStreamingConfigOutputReference 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(): SccFolderNotificationConfigStreamingConfig | undefined;
set internalValue(value: SccFolderNotificationConfigStreamingConfig | undefined);
private _filter?;
get filter(): string;
set filter(value: string);
get filterInput(): string | undefined;
}
export interface SccFolderNotificationConfigTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#create SccFolderNotificationConfig#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#delete SccFolderNotificationConfig#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#update SccFolderNotificationConfig#update}
*/
readonly update?: string;
}
export declare function sccFolderNotificationConfigTimeoutsToTerraform(struct?: SccFolderNotificationConfigTimeouts | cdktf.IResolvable): any;
export declare function sccFolderNotificationConfigTimeoutsToHclTerraform(struct?: SccFolderNotificationConfigTimeouts | cdktf.IResolvable): any;
export declare class SccFolderNotificationConfigTimeoutsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
private resolvableValue?;
/**
* @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(): SccFolderNotificationConfigTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: SccFolderNotificationConfigTimeouts | cdktf.IResolvable | undefined);
private _create?;
get create(): string;
set create(value: string);
resetCreate(): void;
get createInput(): string | undefined;
private _delete?;
get delete(): string;
set delete(value: string);
resetDelete(): void;
get deleteInput(): string | undefined;
private _update?;
get update(): string;
set update(value: string);
resetUpdate(): void;
get updateInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config google_scc_folder_notification_config}
*/
export declare class SccFolderNotificationConfig extends cdktf.TerraformResource {
static readonly tfResourceType = "google_scc_folder_notification_config";
/**
* Generates CDKTF code for importing a SccFolderNotificationConfig 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 SccFolderNotificationConfig to import
* @param importFromId The id of the existing SccFolderNotificationConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.13.0/docs/resources/scc_folder_notification_config#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the SccFolderNotificationConfig 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/scc_folder_notification_config google_scc_folder_notification_config} 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 SccFolderNotificationConfigConfig
*/
constructor(scope: Construct, id: string, config: SccFolderNotificationConfigConfig);
private _configId?;
get configId(): string;
set configId(value: string);
get configIdInput(): string | undefined;
private _description?;
get description(): string;
set description(value: string);
resetDescription(): void;
get descriptionInput(): string | undefined;
private _folder?;
get folder(): string;
set folder(value: string);
get folderInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
get name(): string;
private _pubsubTopic?;
get pubsubTopic(): string;
set pubsubTopic(value: string);
get pubsubTopicInput(): string | undefined;
get serviceAccount(): string;
private _streamingConfig;
get streamingConfig(): SccFolderNotificationConfigStreamingConfigOutputReference;
putStreamingConfig(value: SccFolderNotificationConfigStreamingConfig): void;
get streamingConfigInput(): SccFolderNotificationConfigStreamingConfig | undefined;
private _timeouts;
get timeouts(): SccFolderNotificationConfigTimeoutsOutputReference;
putTimeouts(value: SccFolderNotificationConfigTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | SccFolderNotificationConfigTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}