import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CloudGoogleRegistrationConfig extends cdktf.TerraformMetaArguments { /** * The deployment method for the registration. Can be either terraform-native or infrastructure-manager. Defaults to terraform-native * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#deployment_method CloudGoogleRegistration#deployment_method} */ readonly deploymentMethod?: string; /** * Regex patterns to exclude specific projects from registration. Each pattern must start with 'sys-' (case insensitive) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#excluded_project_patterns CloudGoogleRegistration#excluded_project_patterns} */ readonly excludedProjectPatterns?: string[]; /** * Google Cloud folder IDs to register. Each must be numeric. Mutually exclusive with `organization` and `projects` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#folders CloudGoogleRegistration#folders} */ readonly folders?: string[]; /** * The Google Cloud project ID where CrowdStrike infrastructure resources will be created * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#infra_project CloudGoogleRegistration#infra_project} */ readonly infraProject: string; /** * Google Cloud labels to apply to created resources * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#labels CloudGoogleRegistration#labels} */ readonly labels?: { [key: string]: string; }; /** * The name of the registration * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#name CloudGoogleRegistration#name} */ readonly name: string; /** * Google Cloud organization ID to register. Must be numeric. Mutually exclusive with `folders` and `projects` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#organization CloudGoogleRegistration#organization} */ readonly organization?: string; /** * Google Cloud project IDs to register. Each must be 6-30 characters, start with a lowercase letter, and contain only lowercase letters, numbers, and hyphens. Mutually exclusive with `organization` and `folders` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#projects CloudGoogleRegistration#projects} */ readonly projects?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#realtime_visibility CloudGoogleRegistration#realtime_visibility} */ readonly realtimeVisibility?: CloudGoogleRegistrationRealtimeVisibility; /** * Prefix to add to created Google Cloud resource names. The combined length of prefix and suffix must not exceed 13 characters * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#resource_name_prefix CloudGoogleRegistration#resource_name_prefix} */ readonly resourceNamePrefix?: string; /** * Suffix to add to created Google Cloud resource names. The combined length of prefix and suffix must not exceed 13 characters * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#resource_name_suffix CloudGoogleRegistration#resource_name_suffix} */ readonly resourceNameSuffix?: string; /** * Google Cloud tags to apply to created resources * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#tags CloudGoogleRegistration#tags} */ readonly tags?: { [key: string]: string; }; /** * The Google Cloud project ID for Workload Identity Federation * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#wif_project CloudGoogleRegistration#wif_project} */ readonly wifProject: string; /** * Google Cloud project number for Workload Identity Federation * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#wif_project_number CloudGoogleRegistration#wif_project_number} */ readonly wifProjectNumber: string; } export interface CloudGoogleRegistrationRealtimeVisibility { /** * Enable real-time visibility and detection * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#enabled CloudGoogleRegistration#enabled} */ readonly enabled: boolean | cdktf.IResolvable; } export declare function cloudGoogleRegistrationRealtimeVisibilityToTerraform(struct?: CloudGoogleRegistrationRealtimeVisibility | cdktf.IResolvable): any; export declare function cloudGoogleRegistrationRealtimeVisibilityToHclTerraform(struct?: CloudGoogleRegistrationRealtimeVisibility | cdktf.IResolvable): any; export declare class CloudGoogleRegistrationRealtimeVisibilityOutputReference 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(): CloudGoogleRegistrationRealtimeVisibility | cdktf.IResolvable | undefined; set internalValue(value: CloudGoogleRegistrationRealtimeVisibility | cdktf.IResolvable | undefined); private _enabled?; get enabled(): boolean | cdktf.IResolvable; set enabled(value: boolean | cdktf.IResolvable); get enabledInput(): any; } /** * Represents a {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration crowdstrike_cloud_google_registration} */ export declare class CloudGoogleRegistration extends cdktf.TerraformResource { static readonly tfResourceType = "crowdstrike_cloud_google_registration"; /** * Generates CDKTF code for importing a CloudGoogleRegistration 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 CloudGoogleRegistration to import * @param importFromId The id of the existing CloudGoogleRegistration that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_google_registration#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CloudGoogleRegistration 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.53/docs/resources/cloud_google_registration crowdstrike_cloud_google_registration} 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 CloudGoogleRegistrationConfig */ constructor(scope: Construct, id: string, config: CloudGoogleRegistrationConfig); private _deploymentMethod?; get deploymentMethod(): string; set deploymentMethod(value: string); resetDeploymentMethod(): void; get deploymentMethodInput(): string; private _excludedProjectPatterns?; get excludedProjectPatterns(): string[]; set excludedProjectPatterns(value: string[]); resetExcludedProjectPatterns(): void; get excludedProjectPatternsInput(): string[]; private _folders?; get folders(): string[]; set folders(value: string[]); resetFolders(): void; get foldersInput(): string[]; get id(): any; private _infraProject?; get infraProject(): string; set infraProject(value: string); get infraProjectInput(): string; private _labels?; get labels(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); resetLabels(): void; get labelsInput(): { [key: string]: string; }; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _organization?; get organization(): string; set organization(value: string); resetOrganization(): void; get organizationInput(): string; private _projects?; get projects(): string[]; set projects(value: string[]); resetProjects(): void; get projectsInput(): string[]; private _realtimeVisibility; get realtimeVisibility(): CloudGoogleRegistrationRealtimeVisibilityOutputReference; putRealtimeVisibility(value: CloudGoogleRegistrationRealtimeVisibility): void; resetRealtimeVisibility(): void; get realtimeVisibilityInput(): any; get registrationScope(): any; private _resourceNamePrefix?; get resourceNamePrefix(): string; set resourceNamePrefix(value: string); resetResourceNamePrefix(): void; get resourceNamePrefixInput(): string; private _resourceNameSuffix?; get resourceNameSuffix(): string; set resourceNameSuffix(value: string); resetResourceNameSuffix(): void; get resourceNameSuffixInput(): string; get status(): any; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; get wifPoolId(): any; get wifPoolName(): any; private _wifProject?; get wifProject(): string; set wifProject(value: string); get wifProjectInput(): string; private _wifProjectNumber?; get wifProjectNumber(): string; set wifProjectNumber(value: string); get wifProjectNumberInput(): string; get wifProviderId(): any; get wifProviderName(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }