UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

360 lines (359 loc) 21.7 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciLoadBalancerBackendSetsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_backend_sets#id DataOciLoadBalancerBackendSets#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/load_balancer_backend_sets#load_balancer_id DataOciLoadBalancerBackendSets#load_balancer_id} */ readonly loadBalancerId: string; /** * filter block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_backend_sets#filter DataOciLoadBalancerBackendSets#filter} */ readonly filter?: DataOciLoadBalancerBackendSetsFilter[] | cdktf.IResolvable; } export interface DataOciLoadBalancerBackendSetsBackendsetsBackend { } export declare function dataOciLoadBalancerBackendSetsBackendsetsBackendToTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsBackend): any; export declare function dataOciLoadBalancerBackendSetsBackendsetsBackendToHclTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsBackend): any; export declare class DataOciLoadBalancerBackendSetsBackendsetsBackendOutputReference 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(): DataOciLoadBalancerBackendSetsBackendsetsBackend | undefined; set internalValue(value: DataOciLoadBalancerBackendSetsBackendsetsBackend | undefined); get backup(): cdktf.IResolvable; get drain(): cdktf.IResolvable; get ipAddress(): string; get maxConnections(): number; get name(): string; get offline(): cdktf.IResolvable; get port(): number; get weight(): number; } export declare class DataOciLoadBalancerBackendSetsBackendsetsBackendList 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): DataOciLoadBalancerBackendSetsBackendsetsBackendOutputReference; } export interface DataOciLoadBalancerBackendSetsBackendsetsHealthChecker { } export declare function dataOciLoadBalancerBackendSetsBackendsetsHealthCheckerToTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsHealthChecker): any; export declare function dataOciLoadBalancerBackendSetsBackendsetsHealthCheckerToHclTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsHealthChecker): any; export declare class DataOciLoadBalancerBackendSetsBackendsetsHealthCheckerOutputReference 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(): DataOciLoadBalancerBackendSetsBackendsetsHealthChecker | undefined; set internalValue(value: DataOciLoadBalancerBackendSetsBackendsetsHealthChecker | undefined); get intervalMs(): number; get isForcePlainText(): cdktf.IResolvable; get port(): number; get protocol(): string; get responseBodyRegex(): string; get retries(): number; get returnCode(): number; get timeoutInMillis(): number; get urlPath(): string; } export declare class DataOciLoadBalancerBackendSetsBackendsetsHealthCheckerList 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): DataOciLoadBalancerBackendSetsBackendsetsHealthCheckerOutputReference; } export interface DataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfiguration { } export declare function dataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfigurationToTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfiguration): any; export declare function dataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfigurationToHclTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfiguration): any; export declare class DataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfigurationOutputReference 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(): DataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfiguration | undefined; set internalValue(value: DataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfiguration | undefined); get cookieName(): string; get disableFallback(): cdktf.IResolvable; get domain(): string; get isHttpOnly(): cdktf.IResolvable; get isSecure(): cdktf.IResolvable; get maxAgeInSeconds(): number; get path(): string; } export declare class DataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfigurationList 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): DataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfigurationOutputReference; } export interface DataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfiguration { } export declare function dataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfigurationToTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfiguration): any; export declare function dataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfigurationToHclTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfiguration): any; export declare class DataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfigurationOutputReference 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(): DataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfiguration | undefined; set internalValue(value: DataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfiguration | undefined); get cookieName(): string; get disableFallback(): cdktf.IResolvable; } export declare class DataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfigurationList 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): DataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfigurationOutputReference; } export interface DataOciLoadBalancerBackendSetsBackendsetsSslConfiguration { } export declare function dataOciLoadBalancerBackendSetsBackendsetsSslConfigurationToTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsSslConfiguration): any; export declare function dataOciLoadBalancerBackendSetsBackendsetsSslConfigurationToHclTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsetsSslConfiguration): any; export declare class DataOciLoadBalancerBackendSetsBackendsetsSslConfigurationOutputReference 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(): DataOciLoadBalancerBackendSetsBackendsetsSslConfiguration | undefined; set internalValue(value: DataOciLoadBalancerBackendSetsBackendsetsSslConfiguration | undefined); get certificateIds(): string[]; get certificateName(): string; get cipherSuiteName(): string; get protocols(): string[]; get serverOrderPreference(): string; get trustedCertificateAuthorityIds(): string[]; get verifyDepth(): number; get verifyPeerCertificate(): cdktf.IResolvable; } export declare class DataOciLoadBalancerBackendSetsBackendsetsSslConfigurationList 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): DataOciLoadBalancerBackendSetsBackendsetsSslConfigurationOutputReference; } export interface DataOciLoadBalancerBackendSetsBackendsets { } export declare function dataOciLoadBalancerBackendSetsBackendsetsToTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsets): any; export declare function dataOciLoadBalancerBackendSetsBackendsetsToHclTerraform(struct?: DataOciLoadBalancerBackendSetsBackendsets): any; export declare class DataOciLoadBalancerBackendSetsBackendsetsOutputReference 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(): DataOciLoadBalancerBackendSetsBackendsets | undefined; set internalValue(value: DataOciLoadBalancerBackendSetsBackendsets | undefined); private _backend; get backend(): DataOciLoadBalancerBackendSetsBackendsetsBackendList; get backendMaxConnections(): number; private _healthChecker; get healthChecker(): DataOciLoadBalancerBackendSetsBackendsetsHealthCheckerList; get id(): string; private _lbCookieSessionPersistenceConfiguration; get lbCookieSessionPersistenceConfiguration(): DataOciLoadBalancerBackendSetsBackendsetsLbCookieSessionPersistenceConfigurationList; get loadBalancerId(): string; get name(): string; get policy(): string; private _sessionPersistenceConfiguration; get sessionPersistenceConfiguration(): DataOciLoadBalancerBackendSetsBackendsetsSessionPersistenceConfigurationList; private _sslConfiguration; get sslConfiguration(): DataOciLoadBalancerBackendSetsBackendsetsSslConfigurationList; get state(): string; } export declare class DataOciLoadBalancerBackendSetsBackendsetsList 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): DataOciLoadBalancerBackendSetsBackendsetsOutputReference; } export interface DataOciLoadBalancerBackendSetsFilter { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_backend_sets#name DataOciLoadBalancerBackendSets#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_backend_sets#regex DataOciLoadBalancerBackendSets#regex} */ readonly regex?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_backend_sets#values DataOciLoadBalancerBackendSets#values} */ readonly values: string[]; } export declare function dataOciLoadBalancerBackendSetsFilterToTerraform(struct?: DataOciLoadBalancerBackendSetsFilter | cdktf.IResolvable): any; export declare function dataOciLoadBalancerBackendSetsFilterToHclTerraform(struct?: DataOciLoadBalancerBackendSetsFilter | cdktf.IResolvable): any; export declare class DataOciLoadBalancerBackendSetsFilterOutputReference 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(): DataOciLoadBalancerBackendSetsFilter | cdktf.IResolvable | undefined; set internalValue(value: DataOciLoadBalancerBackendSetsFilter | 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 DataOciLoadBalancerBackendSetsFilterList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataOciLoadBalancerBackendSetsFilter[] | 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): DataOciLoadBalancerBackendSetsFilterOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_backend_sets oci_load_balancer_backend_sets} */ export declare class DataOciLoadBalancerBackendSets extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_load_balancer_backend_sets"; /** * Generates CDKTF code for importing a DataOciLoadBalancerBackendSets 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 DataOciLoadBalancerBackendSets to import * @param importFromId The id of the existing DataOciLoadBalancerBackendSets that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/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 DataOciLoadBalancerBackendSets 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/load_balancer_backend_sets oci_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 DataOciLoadBalancerBackendSetsConfig */ constructor(scope: Construct, id: string, config: DataOciLoadBalancerBackendSetsConfig); private _backendsets; get backendsets(): DataOciLoadBalancerBackendSetsBackendsetsList; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _loadBalancerId?; get loadBalancerId(): string; set loadBalancerId(value: string); get loadBalancerIdInput(): string | undefined; private _filter; get filter(): DataOciLoadBalancerBackendSetsFilterList; putFilter(value: DataOciLoadBalancerBackendSetsFilter[] | cdktf.IResolvable): void; resetFilter(): void; get filterInput(): cdktf.IResolvable | DataOciLoadBalancerBackendSetsFilter[] | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }