import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataZiaCloudApplicationInstanceConfig extends cdktf.TerraformMetaArguments { /** * Unique identifier for the cloud application instance * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/cloud_application_instance#id DataZiaCloudApplicationInstance#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?: number; /** * Name of the cloud application instance * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/cloud_application_instance#name DataZiaCloudApplicationInstance#name} */ readonly name?: string; } export interface DataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedBy { } export declare function dataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedByToTerraform(struct?: DataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedBy): any; export declare function dataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedByToHclTerraform(struct?: DataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedBy): any; export declare class DataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedByOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedBy | undefined; set internalValue(value: DataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedBy | undefined); private _extensions; get extensions(): any; get id(): any; get name(): any; } export declare class DataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedByList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedByOutputReference; } export interface DataZiaCloudApplicationInstanceInstanceIdentifiers { } export declare function dataZiaCloudApplicationInstanceInstanceIdentifiersToTerraform(struct?: DataZiaCloudApplicationInstanceInstanceIdentifiers): any; export declare function dataZiaCloudApplicationInstanceInstanceIdentifiersToHclTerraform(struct?: DataZiaCloudApplicationInstanceInstanceIdentifiers): any; export declare class DataZiaCloudApplicationInstanceInstanceIdentifiersOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataZiaCloudApplicationInstanceInstanceIdentifiers | undefined; set internalValue(value: DataZiaCloudApplicationInstanceInstanceIdentifiers | undefined); get identifierType(): any; get instanceId(): any; get instanceIdentifier(): any; get instanceIdentifierName(): any; private _lastModifiedBy; get lastModifiedBy(): DataZiaCloudApplicationInstanceInstanceIdentifiersLastModifiedByList; get modifiedAt(): any; } export declare class DataZiaCloudApplicationInstanceInstanceIdentifiersList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataZiaCloudApplicationInstanceInstanceIdentifiersOutputReference; } export interface DataZiaCloudApplicationInstanceLastModifiedBy { } export declare function dataZiaCloudApplicationInstanceLastModifiedByToTerraform(struct?: DataZiaCloudApplicationInstanceLastModifiedBy): any; export declare function dataZiaCloudApplicationInstanceLastModifiedByToHclTerraform(struct?: DataZiaCloudApplicationInstanceLastModifiedBy): any; export declare class DataZiaCloudApplicationInstanceLastModifiedByOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataZiaCloudApplicationInstanceLastModifiedBy | undefined; set internalValue(value: DataZiaCloudApplicationInstanceLastModifiedBy | undefined); private _extensions; get extensions(): any; get id(): any; get name(): any; } export declare class DataZiaCloudApplicationInstanceLastModifiedByList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataZiaCloudApplicationInstanceLastModifiedByOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/cloud_application_instance zia_cloud_application_instance} */ export declare class DataZiaCloudApplicationInstance extends cdktf.TerraformDataSource { static readonly tfResourceType = "zia_cloud_application_instance"; /** * Generates CDKTF code for importing a DataZiaCloudApplicationInstance 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 DataZiaCloudApplicationInstance to import * @param importFromId The id of the existing DataZiaCloudApplicationInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/data-sources/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 DataZiaCloudApplicationInstance 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/data-sources/cloud_application_instance zia_cloud_application_instance} Data Source * * @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 DataZiaCloudApplicationInstanceConfig = {} */ constructor(scope: Construct, id: string, config?: DataZiaCloudApplicationInstanceConfig); private _id?; get id(): number; set id(value: number); resetId(): void; get idInput(): number; private _instanceIdentifiers; get instanceIdentifiers(): DataZiaCloudApplicationInstanceInstanceIdentifiersList; get instanceType(): any; private _lastModifiedBy; get lastModifiedBy(): DataZiaCloudApplicationInstanceLastModifiedByList; get modifiedAt(): any; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }