rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
205 lines (204 loc) • 11.5 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciLoadBalancerRuleSetConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_rule_set#load_balancer_id DataOciLoadBalancerRuleSet#load_balancer_id}
*/
readonly loadBalancerId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_rule_set#name DataOciLoadBalancerRuleSet#name}
*/
readonly name: string;
}
export interface DataOciLoadBalancerRuleSetItemsConditions {
}
export declare function dataOciLoadBalancerRuleSetItemsConditionsToTerraform(struct?: DataOciLoadBalancerRuleSetItemsConditions): any;
export declare function dataOciLoadBalancerRuleSetItemsConditionsToHclTerraform(struct?: DataOciLoadBalancerRuleSetItemsConditions): any;
export declare class DataOciLoadBalancerRuleSetItemsConditionsOutputReference 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(): DataOciLoadBalancerRuleSetItemsConditions | undefined;
set internalValue(value: DataOciLoadBalancerRuleSetItemsConditions | undefined);
get attributeName(): string;
get attributeValue(): string;
get operator(): string;
}
export declare class DataOciLoadBalancerRuleSetItemsConditionsList 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): DataOciLoadBalancerRuleSetItemsConditionsOutputReference;
}
export interface DataOciLoadBalancerRuleSetItemsIpMaxConnections {
}
export declare function dataOciLoadBalancerRuleSetItemsIpMaxConnectionsToTerraform(struct?: DataOciLoadBalancerRuleSetItemsIpMaxConnections): any;
export declare function dataOciLoadBalancerRuleSetItemsIpMaxConnectionsToHclTerraform(struct?: DataOciLoadBalancerRuleSetItemsIpMaxConnections): any;
export declare class DataOciLoadBalancerRuleSetItemsIpMaxConnectionsOutputReference 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(): DataOciLoadBalancerRuleSetItemsIpMaxConnections | undefined;
set internalValue(value: DataOciLoadBalancerRuleSetItemsIpMaxConnections | undefined);
get ipAddresses(): string[];
get maxConnections(): number;
}
export declare class DataOciLoadBalancerRuleSetItemsIpMaxConnectionsList 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): DataOciLoadBalancerRuleSetItemsIpMaxConnectionsOutputReference;
}
export interface DataOciLoadBalancerRuleSetItemsRedirectUri {
}
export declare function dataOciLoadBalancerRuleSetItemsRedirectUriToTerraform(struct?: DataOciLoadBalancerRuleSetItemsRedirectUri): any;
export declare function dataOciLoadBalancerRuleSetItemsRedirectUriToHclTerraform(struct?: DataOciLoadBalancerRuleSetItemsRedirectUri): any;
export declare class DataOciLoadBalancerRuleSetItemsRedirectUriOutputReference 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(): DataOciLoadBalancerRuleSetItemsRedirectUri | undefined;
set internalValue(value: DataOciLoadBalancerRuleSetItemsRedirectUri | undefined);
get host(): string;
get path(): string;
get port(): number;
get protocol(): string;
get query(): string;
}
export declare class DataOciLoadBalancerRuleSetItemsRedirectUriList 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): DataOciLoadBalancerRuleSetItemsRedirectUriOutputReference;
}
export interface DataOciLoadBalancerRuleSetItems {
}
export declare function dataOciLoadBalancerRuleSetItemsToTerraform(struct?: DataOciLoadBalancerRuleSetItems): any;
export declare function dataOciLoadBalancerRuleSetItemsToHclTerraform(struct?: DataOciLoadBalancerRuleSetItems): any;
export declare class DataOciLoadBalancerRuleSetItemsOutputReference 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(): DataOciLoadBalancerRuleSetItems | undefined;
set internalValue(value: DataOciLoadBalancerRuleSetItems | undefined);
get action(): string;
get allowedMethods(): string[];
get areInvalidCharactersAllowed(): cdktf.IResolvable;
private _conditions;
get conditions(): DataOciLoadBalancerRuleSetItemsConditionsList;
get defaultMaxConnections(): number;
get description(): string;
get header(): string;
get httpLargeHeaderSizeInKb(): number;
private _ipMaxConnections;
get ipMaxConnections(): DataOciLoadBalancerRuleSetItemsIpMaxConnectionsList;
get prefix(): string;
private _redirectUri;
get redirectUri(): DataOciLoadBalancerRuleSetItemsRedirectUriList;
get responseCode(): number;
get statusCode(): number;
get suffix(): string;
get value(): string;
}
export declare class DataOciLoadBalancerRuleSetItemsList 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): DataOciLoadBalancerRuleSetItemsOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_rule_set oci_load_balancer_rule_set}
*/
export declare class DataOciLoadBalancerRuleSet extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_load_balancer_rule_set";
/**
* Generates CDKTF code for importing a DataOciLoadBalancerRuleSet 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 DataOciLoadBalancerRuleSet to import
* @param importFromId The id of the existing DataOciLoadBalancerRuleSet that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancer_rule_set#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciLoadBalancerRuleSet 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_rule_set oci_load_balancer_rule_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 DataOciLoadBalancerRuleSetConfig
*/
constructor(scope: Construct, id: string, config: DataOciLoadBalancerRuleSetConfig);
get id(): string;
private _items;
get items(): DataOciLoadBalancerRuleSetItemsList;
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;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}