UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

318 lines (317 loc) 19.9 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciNetworkLoadBalancerBackendSetsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_sets#id DataOciNetworkLoadBalancerBackendSets#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; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_sets#network_load_balancer_id DataOciNetworkLoadBalancerBackendSets#network_load_balancer_id} */ readonly networkLoadBalancerId: string; /** * filter block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_sets#filter DataOciNetworkLoadBalancerBackendSets#filter} */ readonly filter?: DataOciNetworkLoadBalancerBackendSetsFilter[] | cdktf.IResolvable; } export interface DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackends { } export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackendsToTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackends): any; export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackendsToHclTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackends): any; export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackendsOutputReference 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(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackends | undefined; set internalValue(value: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackends | undefined); get ipAddress(): string; get isBackup(): cdktf.IResolvable; get isDrain(): cdktf.IResolvable; get isOffline(): cdktf.IResolvable; get name(): string; get port(): number; get targetId(): string; get weight(): number; } export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackendsList 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): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackendsOutputReference; } export interface DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDns { } export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDnsToTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDns): any; export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDnsToHclTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDns): any; export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDnsOutputReference 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(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDns | undefined; set internalValue(value: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDns | undefined); get domainName(): string; get queryClass(): string; get queryType(): string; get rcodes(): string[]; get transportProtocol(): string; } export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDnsList 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): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDnsOutputReference; } export interface DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthChecker { } export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerToTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthChecker): any; export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerToHclTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthChecker): any; export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerOutputReference 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(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthChecker | undefined; set internalValue(value: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthChecker | undefined); private _dns; get dns(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerDnsList; get intervalInMillis(): number; get port(): number; get protocol(): string; get requestData(): string; get responseBodyRegex(): string; get responseData(): string; get retries(): number; get returnCode(): number; get timeoutInMillis(): number; get urlPath(): string; } export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerList 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): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerOutputReference; } export interface DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItems { } export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsToTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItems): any; export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsToHclTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItems): any; export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsOutputReference 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(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItems | undefined; set internalValue(value: DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItems | undefined); private _backends; get backends(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsBackendsList; private _healthChecker; get healthChecker(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsHealthCheckerList; get id(): string; get ipVersion(): string; get isFailOpen(): cdktf.IResolvable; get isInstantFailoverEnabled(): cdktf.IResolvable; get isPreserveSource(): cdktf.IResolvable; get name(): string; get networkLoadBalancerId(): string; get policy(): string; } export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsList 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): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsOutputReference; } export interface DataOciNetworkLoadBalancerBackendSetsBackendSetCollection { } export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionToTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollection): any; export declare function dataOciNetworkLoadBalancerBackendSetsBackendSetCollectionToHclTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsBackendSetCollection): any; export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionOutputReference 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(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollection | undefined; set internalValue(value: DataOciNetworkLoadBalancerBackendSetsBackendSetCollection | undefined); private _items; get items(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionItemsList; } export declare class DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionList 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): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionOutputReference; } export interface DataOciNetworkLoadBalancerBackendSetsFilter { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_sets#name DataOciNetworkLoadBalancerBackendSets#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_sets#regex DataOciNetworkLoadBalancerBackendSets#regex} */ readonly regex?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_sets#values DataOciNetworkLoadBalancerBackendSets#values} */ readonly values: string[]; } export declare function dataOciNetworkLoadBalancerBackendSetsFilterToTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsFilter | cdktf.IResolvable): any; export declare function dataOciNetworkLoadBalancerBackendSetsFilterToHclTerraform(struct?: DataOciNetworkLoadBalancerBackendSetsFilter | cdktf.IResolvable): any; export declare class DataOciNetworkLoadBalancerBackendSetsFilterOutputReference 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(): DataOciNetworkLoadBalancerBackendSetsFilter | cdktf.IResolvable | undefined; set internalValue(value: DataOciNetworkLoadBalancerBackendSetsFilter | cdktf.IResolvable | undefined); private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; private _regex?; get regex(): boolean | cdktf.IResolvable; set regex(value: boolean | cdktf.IResolvable); resetRegex(): void; get regexInput(): boolean | cdktf.IResolvable | undefined; private _values?; get values(): string[]; set values(value: string[]); get valuesInput(): string[] | undefined; } export declare class DataOciNetworkLoadBalancerBackendSetsFilterList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataOciNetworkLoadBalancerBackendSetsFilter[] | 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): DataOciNetworkLoadBalancerBackendSetsFilterOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_sets oci_network_load_balancer_backend_sets} */ export declare class DataOciNetworkLoadBalancerBackendSets extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_network_load_balancer_backend_sets"; /** * Generates CDKTF code for importing a DataOciNetworkLoadBalancerBackendSets resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataOciNetworkLoadBalancerBackendSets to import * @param importFromId The id of the existing DataOciNetworkLoadBalancerBackendSets that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_sets#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciNetworkLoadBalancerBackendSets to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_sets oci_network_load_balancer_backend_sets} 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 DataOciNetworkLoadBalancerBackendSetsConfig */ constructor(scope: Construct, id: string, config: DataOciNetworkLoadBalancerBackendSetsConfig); private _backendSetCollection; get backendSetCollection(): DataOciNetworkLoadBalancerBackendSetsBackendSetCollectionList; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _networkLoadBalancerId?; get networkLoadBalancerId(): string; set networkLoadBalancerId(value: string); get networkLoadBalancerIdInput(): string | undefined; private _filter; get filter(): DataOciNetworkLoadBalancerBackendSetsFilterList; putFilter(value: DataOciNetworkLoadBalancerBackendSetsFilter[] | cdktf.IResolvable): void; resetFilter(): void; get filterInput(): cdktf.IResolvable | DataOciNetworkLoadBalancerBackendSetsFilter[] | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }