UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

178 lines (177 loc) 10.3 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciNetworkLoadBalancerBackendSetConfig 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_set#backend_set_name DataOciNetworkLoadBalancerBackendSet#backend_set_name} */ readonly backendSetName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_set#network_load_balancer_id DataOciNetworkLoadBalancerBackendSet#network_load_balancer_id} */ readonly networkLoadBalancerId: string; } export interface DataOciNetworkLoadBalancerBackendSetBackends { } export declare function dataOciNetworkLoadBalancerBackendSetBackendsToTerraform(struct?: DataOciNetworkLoadBalancerBackendSetBackends): any; export declare function dataOciNetworkLoadBalancerBackendSetBackendsToHclTerraform(struct?: DataOciNetworkLoadBalancerBackendSetBackends): any; export declare class DataOciNetworkLoadBalancerBackendSetBackendsOutputReference 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(): DataOciNetworkLoadBalancerBackendSetBackends | undefined; set internalValue(value: DataOciNetworkLoadBalancerBackendSetBackends | 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 DataOciNetworkLoadBalancerBackendSetBackendsList 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): DataOciNetworkLoadBalancerBackendSetBackendsOutputReference; } export interface DataOciNetworkLoadBalancerBackendSetHealthCheckerDns { } export declare function dataOciNetworkLoadBalancerBackendSetHealthCheckerDnsToTerraform(struct?: DataOciNetworkLoadBalancerBackendSetHealthCheckerDns): any; export declare function dataOciNetworkLoadBalancerBackendSetHealthCheckerDnsToHclTerraform(struct?: DataOciNetworkLoadBalancerBackendSetHealthCheckerDns): any; export declare class DataOciNetworkLoadBalancerBackendSetHealthCheckerDnsOutputReference 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(): DataOciNetworkLoadBalancerBackendSetHealthCheckerDns | undefined; set internalValue(value: DataOciNetworkLoadBalancerBackendSetHealthCheckerDns | undefined); get domainName(): string; get queryClass(): string; get queryType(): string; get rcodes(): string[]; get transportProtocol(): string; } export declare class DataOciNetworkLoadBalancerBackendSetHealthCheckerDnsList 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): DataOciNetworkLoadBalancerBackendSetHealthCheckerDnsOutputReference; } export interface DataOciNetworkLoadBalancerBackendSetHealthChecker { } export declare function dataOciNetworkLoadBalancerBackendSetHealthCheckerToTerraform(struct?: DataOciNetworkLoadBalancerBackendSetHealthChecker): any; export declare function dataOciNetworkLoadBalancerBackendSetHealthCheckerToHclTerraform(struct?: DataOciNetworkLoadBalancerBackendSetHealthChecker): any; export declare class DataOciNetworkLoadBalancerBackendSetHealthCheckerOutputReference 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(): DataOciNetworkLoadBalancerBackendSetHealthChecker | undefined; set internalValue(value: DataOciNetworkLoadBalancerBackendSetHealthChecker | undefined); private _dns; get dns(): DataOciNetworkLoadBalancerBackendSetHealthCheckerDnsList; 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 DataOciNetworkLoadBalancerBackendSetHealthCheckerList 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): DataOciNetworkLoadBalancerBackendSetHealthCheckerOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_load_balancer_backend_set oci_network_load_balancer_backend_set} */ export declare class DataOciNetworkLoadBalancerBackendSet extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_network_load_balancer_backend_set"; /** * Generates CDKTF code for importing a DataOciNetworkLoadBalancerBackendSet 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 DataOciNetworkLoadBalancerBackendSet to import * @param importFromId The id of the existing DataOciNetworkLoadBalancerBackendSet 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_set#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciNetworkLoadBalancerBackendSet 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_set oci_network_load_balancer_backend_set} 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 DataOciNetworkLoadBalancerBackendSetConfig */ constructor(scope: Construct, id: string, config: DataOciNetworkLoadBalancerBackendSetConfig); private _backendSetName?; get backendSetName(): string; set backendSetName(value: string); get backendSetNameInput(): string | undefined; private _backends; get backends(): DataOciNetworkLoadBalancerBackendSetBackendsList; private _healthChecker; get healthChecker(): DataOciNetworkLoadBalancerBackendSetHealthCheckerList; get id(): string; get ipVersion(): string; get isFailOpen(): cdktf.IResolvable; get isInstantFailoverEnabled(): cdktf.IResolvable; get isPreserveSource(): cdktf.IResolvable; get name(): string; private _networkLoadBalancerId?; get networkLoadBalancerId(): string; set networkLoadBalancerId(value: string); get networkLoadBalancerIdInput(): string | undefined; get policy(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }