import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataYandexApiGatewayConfig extends cdktf.TerraformMetaArguments { /** * Yandex Cloud API Gateway id used to define api gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#api_gateway_id DataYandexApiGateway#api_gateway_id} */ readonly apiGatewayId?: string; /** * Execution timeout in seconds for the Yandex Cloud API Gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#execution_timeout DataYandexApiGateway#execution_timeout} */ readonly executionTimeout?: string; /** * The folder identifier that resource belongs to. If it is not provided, the default provider `folder-id` is used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#folder_id DataYandexApiGateway#folder_id} */ readonly folderId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#id DataYandexApiGateway#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?: string; /** * The resource name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#name DataYandexApiGateway#name} */ readonly name?: string; /** * A set of values for variables in gateway specification. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#variables DataYandexApiGateway#variables} */ readonly variables?: { [key: string]: string; }; /** * canary block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#canary DataYandexApiGateway#canary} */ readonly canary?: DataYandexApiGatewayCanary; /** * connectivity block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#connectivity DataYandexApiGateway#connectivity} */ readonly connectivity?: DataYandexApiGatewayConnectivity; /** * custom_domains block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#custom_domains DataYandexApiGateway#custom_domains} */ readonly customDomains?: DataYandexApiGatewayCustomDomains[] | cdktf.IResolvable; } export interface DataYandexApiGatewayLogOptions { } export declare function dataYandexApiGatewayLogOptionsToTerraform(struct?: DataYandexApiGatewayLogOptions): any; export declare function dataYandexApiGatewayLogOptionsToHclTerraform(struct?: DataYandexApiGatewayLogOptions): any; export declare class DataYandexApiGatewayLogOptionsOutputReference 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(): DataYandexApiGatewayLogOptions | undefined; set internalValue(value: DataYandexApiGatewayLogOptions | undefined); get disabled(): any; get folderId(): any; get logGroupId(): any; get minLevel(): any; } export declare class DataYandexApiGatewayLogOptionsList 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): DataYandexApiGatewayLogOptionsOutputReference; } export interface DataYandexApiGatewayCanary { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#variables DataYandexApiGateway#variables} */ readonly variables?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#weight DataYandexApiGateway#weight} */ readonly weight?: number; } export declare function dataYandexApiGatewayCanaryToTerraform(struct?: DataYandexApiGatewayCanaryOutputReference | DataYandexApiGatewayCanary): any; export declare function dataYandexApiGatewayCanaryToHclTerraform(struct?: DataYandexApiGatewayCanaryOutputReference | DataYandexApiGatewayCanary): any; export declare class DataYandexApiGatewayCanaryOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataYandexApiGatewayCanary | undefined; set internalValue(value: DataYandexApiGatewayCanary | undefined); private _variables?; get variables(): { [key: string]: string; }; set variables(value: { [key: string]: string; }); resetVariables(): void; get variablesInput(): { [key: string]: string; }; private _weight?; get weight(): number; set weight(value: number); resetWeight(): void; get weightInput(): number; } export interface DataYandexApiGatewayConnectivity { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#network_id DataYandexApiGateway#network_id} */ readonly networkId: string; } export declare function dataYandexApiGatewayConnectivityToTerraform(struct?: DataYandexApiGatewayConnectivityOutputReference | DataYandexApiGatewayConnectivity): any; export declare function dataYandexApiGatewayConnectivityToHclTerraform(struct?: DataYandexApiGatewayConnectivityOutputReference | DataYandexApiGatewayConnectivity): any; export declare class DataYandexApiGatewayConnectivityOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataYandexApiGatewayConnectivity | undefined; set internalValue(value: DataYandexApiGatewayConnectivity | undefined); private _networkId?; get networkId(): string; set networkId(value: string); get networkIdInput(): string; } export interface DataYandexApiGatewayCustomDomains { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#certificate_id DataYandexApiGateway#certificate_id} */ readonly certificateId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#domain_id DataYandexApiGateway#domain_id} */ readonly domainId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#fqdn DataYandexApiGateway#fqdn} */ readonly fqdn: string; } export declare function dataYandexApiGatewayCustomDomainsToTerraform(struct?: DataYandexApiGatewayCustomDomains | cdktf.IResolvable): any; export declare function dataYandexApiGatewayCustomDomainsToHclTerraform(struct?: DataYandexApiGatewayCustomDomains | cdktf.IResolvable): any; export declare class DataYandexApiGatewayCustomDomainsOutputReference 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(): DataYandexApiGatewayCustomDomains | cdktf.IResolvable | undefined; set internalValue(value: DataYandexApiGatewayCustomDomains | cdktf.IResolvable | undefined); private _certificateId?; get certificateId(): string; set certificateId(value: string); get certificateIdInput(): string; private _domainId?; get domainId(): string; set domainId(value: string); resetDomainId(): void; get domainIdInput(): string; private _fqdn?; get fqdn(): string; set fqdn(value: string); get fqdnInput(): string; } export declare class DataYandexApiGatewayCustomDomainsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataYandexApiGatewayCustomDomains[] | 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): DataYandexApiGatewayCustomDomainsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway yandex_api_gateway} */ export declare class DataYandexApiGateway extends cdktf.TerraformDataSource { static readonly tfResourceType = "yandex_api_gateway"; /** * Generates CDKTF code for importing a DataYandexApiGateway 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 DataYandexApiGateway to import * @param importFromId The id of the existing DataYandexApiGateway that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataYandexApiGateway 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/yandex-cloud/yandex/0.177.0/docs/data-sources/api_gateway yandex_api_gateway} 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 DataYandexApiGatewayConfig = {} */ constructor(scope: Construct, id: string, config?: DataYandexApiGatewayConfig); private _apiGatewayId?; get apiGatewayId(): string; set apiGatewayId(value: string); resetApiGatewayId(): void; get apiGatewayIdInput(): string; get createdAt(): any; get description(): any; get domain(): any; private _executionTimeout?; get executionTimeout(): string; set executionTimeout(value: string); resetExecutionTimeout(): void; get executionTimeoutInput(): string; private _folderId?; get folderId(): string; set folderId(value: string); resetFolderId(): void; get folderIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _labels; get labels(): any; get logGroupId(): any; private _logOptions; get logOptions(): DataYandexApiGatewayLogOptionsList; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; get status(): any; get userDomains(): any; private _variables?; get variables(): { [key: string]: string; }; set variables(value: { [key: string]: string; }); resetVariables(): void; get variablesInput(): { [key: string]: string; }; private _canary; get canary(): DataYandexApiGatewayCanaryOutputReference; putCanary(value: DataYandexApiGatewayCanary): void; resetCanary(): void; get canaryInput(): DataYandexApiGatewayCanary; private _connectivity; get connectivity(): DataYandexApiGatewayConnectivityOutputReference; putConnectivity(value: DataYandexApiGatewayConnectivity): void; resetConnectivity(): void; get connectivityInput(): DataYandexApiGatewayConnectivity; private _customDomains; get customDomains(): DataYandexApiGatewayCustomDomainsList; putCustomDomains(value: DataYandexApiGatewayCustomDomains[] | cdktf.IResolvable): void; resetCustomDomains(): void; get customDomainsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }