import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CloudAzureTenantConfig extends cdktf.TerraformMetaArguments { /** * The Azure Tenant account type. Value is 'commercial' for Commercial cloud accounts. For GovCloud environments, value can be either 'commercial' or 'gov' depending on the account type * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#account_type CloudAzureTenant#account_type} */ readonly accountType?: string; /** * Azure location where CrowdStrike infrastructure resources (such as Event Hubs) were deployed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#cs_infra_location CloudAzureTenant#cs_infra_location} */ readonly csInfraLocation?: string; /** * Azure subscription ID where CrowdStrike infrastructure resources (such as Event Hubs) were deployed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#cs_infra_subscription_id CloudAzureTenant#cs_infra_subscription_id} */ readonly csInfraSubscriptionId?: string; /** * The environment added to resources created during onboarding. It will be used if you generate new .tfvars from the UI. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#environment CloudAzureTenant#environment} */ readonly environment?: string; /** * A list of Azure management group IDs to monitor. All subscriptions under the management groups will be monitored. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#management_group_ids CloudAzureTenant#management_group_ids} */ readonly managementGroupIds?: string[]; /** * A list of Microsoft Graph permission IDs to assign to the service principal. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#microsoft_graph_permission_ids CloudAzureTenant#microsoft_graph_permission_ids} */ readonly microsoftGraphPermissionIds: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#realtime_visibility CloudAzureTenant#realtime_visibility} */ readonly realtimeVisibility?: CloudAzureTenantRealtimeVisibility; /** * The prefix added to resources created during onboarding. It will be used if you generate new .tfvars from the UI. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#resource_name_prefix CloudAzureTenant#resource_name_prefix} */ readonly resourceNamePrefix?: string; /** * The suffix added to resources created during onboarding. It will be used if you generate new .tfvars from the UI. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#resource_name_suffix CloudAzureTenant#resource_name_suffix} */ readonly resourceNameSuffix?: string; /** * A list of subscription IDs to register in addition to any subscriptions that are targeted by management_group_ids. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#subscription_ids CloudAzureTenant#subscription_ids} */ readonly subscriptionIds?: string[]; /** * Tags applied to managed resources. This does not effect the registration of the tenant. It will be used if you generate new .tfvars from the UI. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#tags CloudAzureTenant#tags} */ readonly tags?: { [key: string]: string; }; /** * The Azure Tenant ID to register into Falcon Cloud Security. If subscription_ids and management_group_ids are not provided, then all subscriptions in the tenant are targeted. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#tenant_id CloudAzureTenant#tenant_id} */ readonly tenantId: string; } export interface CloudAzureTenantRealtimeVisibility { /** * Enable real-time visibility and detection * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#enabled CloudAzureTenant#enabled} */ readonly enabled: boolean | cdktf.IResolvable; } export declare function cloudAzureTenantRealtimeVisibilityToTerraform(struct?: CloudAzureTenantRealtimeVisibility | cdktf.IResolvable): any; export declare function cloudAzureTenantRealtimeVisibilityToHclTerraform(struct?: CloudAzureTenantRealtimeVisibility | cdktf.IResolvable): any; export declare class CloudAzureTenantRealtimeVisibilityOutputReference 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(): CloudAzureTenantRealtimeVisibility | cdktf.IResolvable | undefined; set internalValue(value: CloudAzureTenantRealtimeVisibility | 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_azure_tenant crowdstrike_cloud_azure_tenant} */ export declare class CloudAzureTenant extends cdktf.TerraformResource { static readonly tfResourceType = "crowdstrike_cloud_azure_tenant"; /** * Generates CDKTF code for importing a CloudAzureTenant 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 CloudAzureTenant to import * @param importFromId The id of the existing CloudAzureTenant that should be imported. Refer to the {@link https://registry.terraform.io/providers/crowdstrike/crowdstrike/0.0.53/docs/resources/cloud_azure_tenant#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CloudAzureTenant 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_azure_tenant crowdstrike_cloud_azure_tenant} 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 CloudAzureTenantConfig */ constructor(scope: Construct, id: string, config: CloudAzureTenantConfig); private _accountType?; get accountType(): string; set accountType(value: string); resetAccountType(): void; get accountTypeInput(): string; get csAzureClientId(): any; private _csInfraLocation?; get csInfraLocation(): string; set csInfraLocation(value: string); resetCsInfraLocation(): void; get csInfraLocationInput(): string; private _csInfraSubscriptionId?; get csInfraSubscriptionId(): string; set csInfraSubscriptionId(value: string); resetCsInfraSubscriptionId(): void; get csInfraSubscriptionIdInput(): string; private _environment?; get environment(): string; set environment(value: string); resetEnvironment(): void; get environmentInput(): string; private _managementGroupIds?; get managementGroupIds(): string[]; set managementGroupIds(value: string[]); resetManagementGroupIds(): void; get managementGroupIdsInput(): string[]; private _microsoftGraphPermissionIds?; get microsoftGraphPermissionIds(): string[]; set microsoftGraphPermissionIds(value: string[]); get microsoftGraphPermissionIdsInput(): string[]; private _realtimeVisibility; get realtimeVisibility(): CloudAzureTenantRealtimeVisibilityOutputReference; putRealtimeVisibility(value: CloudAzureTenantRealtimeVisibility): void; resetRealtimeVisibility(): void; get realtimeVisibilityInput(): 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; private _subscriptionIds?; get subscriptionIds(): string[]; set subscriptionIds(value: string[]); resetSubscriptionIds(): void; get subscriptionIdsInput(): string[]; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; private _tenantId?; get tenantId(): string; set tenantId(value: string); get tenantIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }