import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CloudApplicationInstanceConfig extends cdktf.TerraformMetaArguments { /** * Type of the cloud application instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/cloud_application_instance#instance_type CloudApplicationInstance#instance_type} */ readonly instanceType?: string; /** * Name of the cloud application instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/cloud_application_instance#name CloudApplicationInstance#name} */ readonly name?: string; /** * instance_identifiers block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/cloud_application_instance#instance_identifiers CloudApplicationInstance#instance_identifiers} */ readonly instanceIdentifiers?: CloudApplicationInstanceInstanceIdentifiers[] | cdktf.IResolvable; } export interface CloudApplicationInstanceInstanceIdentifiers { /** * Type of the cloud application instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/cloud_application_instance#identifier_type CloudApplicationInstance#identifier_type} */ readonly identifierType?: string; /** * Unique identifying string for the instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/cloud_application_instance#instance_identifier CloudApplicationInstance#instance_identifier} */ readonly instanceIdentifier?: string; /** * Unique identifying string for the instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/cloud_application_instance#instance_identifier_name CloudApplicationInstance#instance_identifier_name} */ readonly instanceIdentifierName?: string; } export declare function cloudApplicationInstanceInstanceIdentifiersToTerraform(struct?: CloudApplicationInstanceInstanceIdentifiers | cdktf.IResolvable): any; export declare function cloudApplicationInstanceInstanceIdentifiersToHclTerraform(struct?: CloudApplicationInstanceInstanceIdentifiers | cdktf.IResolvable): any; export declare class CloudApplicationInstanceInstanceIdentifiersOutputReference 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(): CloudApplicationInstanceInstanceIdentifiers | cdktf.IResolvable | undefined; set internalValue(value: CloudApplicationInstanceInstanceIdentifiers | cdktf.IResolvable | undefined); private _identifierType?; get identifierType(): string; set identifierType(value: string); resetIdentifierType(): void; get identifierTypeInput(): string; get instanceId(): any; private _instanceIdentifier?; get instanceIdentifier(): string; set instanceIdentifier(value: string); resetInstanceIdentifier(): void; get instanceIdentifierInput(): string; private _instanceIdentifierName?; get instanceIdentifierName(): string; set instanceIdentifierName(value: string); resetInstanceIdentifierName(): void; get instanceIdentifierNameInput(): string; } export declare class CloudApplicationInstanceInstanceIdentifiersList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: CloudApplicationInstanceInstanceIdentifiers[] | 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): CloudApplicationInstanceInstanceIdentifiersOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/cloud_application_instance zia_cloud_application_instance} */ export declare class CloudApplicationInstance extends cdktf.TerraformResource { static readonly tfResourceType = "zia_cloud_application_instance"; /** * Generates CDKTF code for importing a CloudApplicationInstance 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 CloudApplicationInstance to import * @param importFromId The id of the existing CloudApplicationInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/cloud_application_instance#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CloudApplicationInstance 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/zscaler/zia/4.6.5/docs/resources/cloud_application_instance zia_cloud_application_instance} 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 CloudApplicationInstanceConfig = {} */ constructor(scope: Construct, id: string, config?: CloudApplicationInstanceConfig); get id(): any; get instanceId(): any; private _instanceType?; get instanceType(): string; set instanceType(value: string); resetInstanceType(): void; get instanceTypeInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _instanceIdentifiers; get instanceIdentifiers(): CloudApplicationInstanceInstanceIdentifiersList; putInstanceIdentifiers(value: CloudApplicationInstanceInstanceIdentifiers[] | cdktf.IResolvable): void; resetInstanceIdentifiers(): void; get instanceIdentifiersInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }