rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
206 lines (205 loc) • 11.5 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface LoadBalancerPathRouteSetConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#id LoadBalancerPathRouteSet#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/resources/load_balancer_path_route_set#load_balancer_id LoadBalancerPathRouteSet#load_balancer_id}
*/
readonly loadBalancerId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#name LoadBalancerPathRouteSet#name}
*/
readonly name: string;
/**
* path_routes block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#path_routes LoadBalancerPathRouteSet#path_routes}
*/
readonly pathRoutes: LoadBalancerPathRouteSetPathRoutes[] | cdktf.IResolvable;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#timeouts LoadBalancerPathRouteSet#timeouts}
*/
readonly timeouts?: LoadBalancerPathRouteSetTimeouts;
}
export interface LoadBalancerPathRouteSetPathRoutesPathMatchType {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#match_type LoadBalancerPathRouteSet#match_type}
*/
readonly matchType: string;
}
export declare function loadBalancerPathRouteSetPathRoutesPathMatchTypeToTerraform(struct?: LoadBalancerPathRouteSetPathRoutesPathMatchTypeOutputReference | LoadBalancerPathRouteSetPathRoutesPathMatchType): any;
export declare function loadBalancerPathRouteSetPathRoutesPathMatchTypeToHclTerraform(struct?: LoadBalancerPathRouteSetPathRoutesPathMatchTypeOutputReference | LoadBalancerPathRouteSetPathRoutesPathMatchType): any;
export declare class LoadBalancerPathRouteSetPathRoutesPathMatchTypeOutputReference 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(): LoadBalancerPathRouteSetPathRoutesPathMatchType | undefined;
set internalValue(value: LoadBalancerPathRouteSetPathRoutesPathMatchType | undefined);
private _matchType?;
get matchType(): string;
set matchType(value: string);
get matchTypeInput(): string | undefined;
}
export interface LoadBalancerPathRouteSetPathRoutes {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#backend_set_name LoadBalancerPathRouteSet#backend_set_name}
*/
readonly backendSetName: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#path LoadBalancerPathRouteSet#path}
*/
readonly path: string;
/**
* path_match_type block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#path_match_type LoadBalancerPathRouteSet#path_match_type}
*/
readonly pathMatchType: LoadBalancerPathRouteSetPathRoutesPathMatchType;
}
export declare function loadBalancerPathRouteSetPathRoutesToTerraform(struct?: LoadBalancerPathRouteSetPathRoutes | cdktf.IResolvable): any;
export declare function loadBalancerPathRouteSetPathRoutesToHclTerraform(struct?: LoadBalancerPathRouteSetPathRoutes | cdktf.IResolvable): any;
export declare class LoadBalancerPathRouteSetPathRoutesOutputReference 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(): LoadBalancerPathRouteSetPathRoutes | cdktf.IResolvable | undefined;
set internalValue(value: LoadBalancerPathRouteSetPathRoutes | cdktf.IResolvable | undefined);
private _backendSetName?;
get backendSetName(): string;
set backendSetName(value: string);
get backendSetNameInput(): string | undefined;
private _path?;
get path(): string;
set path(value: string);
get pathInput(): string | undefined;
private _pathMatchType;
get pathMatchType(): LoadBalancerPathRouteSetPathRoutesPathMatchTypeOutputReference;
putPathMatchType(value: LoadBalancerPathRouteSetPathRoutesPathMatchType): void;
get pathMatchTypeInput(): LoadBalancerPathRouteSetPathRoutesPathMatchType | undefined;
}
export declare class LoadBalancerPathRouteSetPathRoutesList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: LoadBalancerPathRouteSetPathRoutes[] | 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): LoadBalancerPathRouteSetPathRoutesOutputReference;
}
export interface LoadBalancerPathRouteSetTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#create LoadBalancerPathRouteSet#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#delete LoadBalancerPathRouteSet#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#update LoadBalancerPathRouteSet#update}
*/
readonly update?: string;
}
export declare function loadBalancerPathRouteSetTimeoutsToTerraform(struct?: LoadBalancerPathRouteSetTimeouts | cdktf.IResolvable): any;
export declare function loadBalancerPathRouteSetTimeoutsToHclTerraform(struct?: LoadBalancerPathRouteSetTimeouts | cdktf.IResolvable): any;
export declare class LoadBalancerPathRouteSetTimeoutsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
private resolvableValue?;
/**
* @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(): LoadBalancerPathRouteSetTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: LoadBalancerPathRouteSetTimeouts | cdktf.IResolvable | undefined);
private _create?;
get create(): string;
set create(value: string);
resetCreate(): void;
get createInput(): string | undefined;
private _delete?;
get delete(): string;
set delete(value: string);
resetDelete(): void;
get deleteInput(): string | undefined;
private _update?;
get update(): string;
set update(value: string);
resetUpdate(): void;
get updateInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set oci_load_balancer_path_route_set}
*/
export declare class LoadBalancerPathRouteSet extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_load_balancer_path_route_set";
/**
* Generates CDKTF code for importing a LoadBalancerPathRouteSet 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 LoadBalancerPathRouteSet to import
* @param importFromId The id of the existing LoadBalancerPathRouteSet that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/load_balancer_path_route_set#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the LoadBalancerPathRouteSet 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/resources/load_balancer_path_route_set oci_load_balancer_path_route_set} Resource
*
* @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 LoadBalancerPathRouteSetConfig
*/
constructor(scope: Construct, id: string, config: LoadBalancerPathRouteSetConfig);
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 _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
get state(): string;
private _pathRoutes;
get pathRoutes(): LoadBalancerPathRouteSetPathRoutesList;
putPathRoutes(value: LoadBalancerPathRouteSetPathRoutes[] | cdktf.IResolvable): void;
get pathRoutesInput(): cdktf.IResolvable | LoadBalancerPathRouteSetPathRoutes[] | undefined;
private _timeouts;
get timeouts(): LoadBalancerPathRouteSetTimeoutsOutputReference;
putTimeouts(value: LoadBalancerPathRouteSetTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | LoadBalancerPathRouteSetTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}