import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CloudGoogleRegistrationLoggingSettingsConfig extends cdktf.TerraformMetaArguments { /** * The name of the log sink for ingestion. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.52/docs/resources/cloud_google_registration_logging_settings#log_ingestion_sink_name CloudGoogleRegistrationLoggingSettings#log_ingestion_sink_name} */ readonly logIngestionSinkName?: string; /** * The Pub/Sub subscription name for log ingestion. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.52/docs/resources/cloud_google_registration_logging_settings#log_ingestion_subscription_name CloudGoogleRegistrationLoggingSettings#log_ingestion_subscription_name} */ readonly logIngestionSubscriptionName?: string; /** * The Pub/Sub topic ID for log ingestion. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.52/docs/resources/cloud_google_registration_logging_settings#log_ingestion_topic_id CloudGoogleRegistrationLoggingSettings#log_ingestion_topic_id} */ readonly logIngestionTopicId?: string; /** * The Google Cloud registration ID to configure log ingestion settings for. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.52/docs/resources/cloud_google_registration_logging_settings#registration_id CloudGoogleRegistrationLoggingSettings#registration_id} */ readonly registrationId: string; /** * The Google Cloud project ID for Workload Identity Federation. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.52/docs/resources/cloud_google_registration_logging_settings#wif_project CloudGoogleRegistrationLoggingSettings#wif_project} */ readonly wifProject: string; /** * The Google Cloud project number for Workload Identity Federation. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.52/docs/resources/cloud_google_registration_logging_settings#wif_project_number CloudGoogleRegistrationLoggingSettings#wif_project_number} */ readonly wifProjectNumber: string; } /** * Represents a {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.52/docs/resources/cloud_google_registration_logging_settings crowdstrike_cloud_google_registration_logging_settings} */ export declare class CloudGoogleRegistrationLoggingSettings extends cdktf.TerraformResource { static readonly tfResourceType = "crowdstrike_cloud_google_registration_logging_settings"; /** * Generates CDKTF code for importing a CloudGoogleRegistrationLoggingSettings resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the CloudGoogleRegistrationLoggingSettings to import * @param importFromId The id of the existing CloudGoogleRegistrationLoggingSettings that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.52/docs/resources/cloud_google_registration_logging_settings#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CloudGoogleRegistrationLoggingSettings to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.52/docs/resources/cloud_google_registration_logging_settings crowdstrike_cloud_google_registration_logging_settings} 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 CloudGoogleRegistrationLoggingSettingsConfig */ constructor(scope: Construct, id: string, config: CloudGoogleRegistrationLoggingSettingsConfig); private _logIngestionSinkName?; get logIngestionSinkName(): string; set logIngestionSinkName(value: string); resetLogIngestionSinkName(): void; get logIngestionSinkNameInput(): string; private _logIngestionSubscriptionName?; get logIngestionSubscriptionName(): string; set logIngestionSubscriptionName(value: string); resetLogIngestionSubscriptionName(): void; get logIngestionSubscriptionNameInput(): string; private _logIngestionTopicId?; get logIngestionTopicId(): string; set logIngestionTopicId(value: string); resetLogIngestionTopicId(): void; get logIngestionTopicIdInput(): string; private _registrationId?; get registrationId(): string; set registrationId(value: string); get registrationIdInput(): string; private _wifProject?; get wifProject(): string; set wifProject(value: string); get wifProjectInput(): string; private _wifProjectNumber?; get wifProjectNumber(): string; set wifProjectNumber(value: string); get wifProjectNumberInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }