UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

127 lines (126 loc) 7.11 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciContainerengineAddonConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_addon#addon_name DataOciContainerengineAddon#addon_name} */ readonly addonName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_addon#cluster_id DataOciContainerengineAddon#cluster_id} */ readonly clusterId: string; } export interface DataOciContainerengineAddonAddonError { } export declare function dataOciContainerengineAddonAddonErrorToTerraform(struct?: DataOciContainerengineAddonAddonError): any; export declare function dataOciContainerengineAddonAddonErrorToHclTerraform(struct?: DataOciContainerengineAddonAddonError): any; export declare class DataOciContainerengineAddonAddonErrorOutputReference 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(): DataOciContainerengineAddonAddonError | undefined; set internalValue(value: DataOciContainerengineAddonAddonError | undefined); get code(): string; get message(): string; get status(): string; } export declare class DataOciContainerengineAddonAddonErrorList 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): DataOciContainerengineAddonAddonErrorOutputReference; } export interface DataOciContainerengineAddonConfigurations { } export declare function dataOciContainerengineAddonConfigurationsToTerraform(struct?: DataOciContainerengineAddonConfigurations): any; export declare function dataOciContainerengineAddonConfigurationsToHclTerraform(struct?: DataOciContainerengineAddonConfigurations): any; export declare class DataOciContainerengineAddonConfigurationsOutputReference 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(): DataOciContainerengineAddonConfigurations | undefined; set internalValue(value: DataOciContainerengineAddonConfigurations | undefined); get key(): string; get value(): string; } export declare class DataOciContainerengineAddonConfigurationsList 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): DataOciContainerengineAddonConfigurationsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_addon oci_containerengine_addon} */ export declare class DataOciContainerengineAddon extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_containerengine_addon"; /** * Generates CDKTF code for importing a DataOciContainerengineAddon 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 DataOciContainerengineAddon to import * @param importFromId The id of the existing DataOciContainerengineAddon that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_addon#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciContainerengineAddon 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/containerengine_addon oci_containerengine_addon} 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 DataOciContainerengineAddonConfig */ constructor(scope: Construct, id: string, config: DataOciContainerengineAddonConfig); private _addonError; get addonError(): DataOciContainerengineAddonAddonErrorList; private _addonName?; get addonName(): string; set addonName(value: string); get addonNameInput(): string | undefined; private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string | undefined; private _configurations; get configurations(): DataOciContainerengineAddonConfigurationsList; get currentInstalledVersion(): string; get id(): string; get overrideExisting(): cdktf.IResolvable; get removeAddonResourcesOnDelete(): cdktf.IResolvable; get state(): string; get timeCreated(): string; get version(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }