rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
72 lines (71 loc) • 3.3 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciOceOceInstanceConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/oce_oce_instance#oce_instance_id DataOciOceOceInstance#oce_instance_id}
*/
readonly oceInstanceId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/oce_oce_instance oci_oce_oce_instance}
*/
export declare class DataOciOceOceInstance extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_oce_oce_instance";
/**
* Generates CDKTF code for importing a DataOciOceOceInstance 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 DataOciOceOceInstance to import
* @param importFromId The id of the existing DataOciOceOceInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/oce_oce_instance#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciOceOceInstance 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/oce_oce_instance oci_oce_oce_instance} 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 DataOciOceOceInstanceConfig
*/
constructor(scope: Construct, id: string, config: DataOciOceOceInstanceConfig);
get addOnFeatures(): string[];
get adminEmail(): string;
get compartmentId(): string;
private _definedTags;
get definedTags(): cdktf.StringMap;
get description(): string;
get drRegion(): string;
private _freeformTags;
get freeformTags(): cdktf.StringMap;
get guid(): string;
get id(): string;
get idcsAccessToken(): string;
get idcsTenancy(): string;
get instanceAccessType(): string;
get instanceLicenseType(): string;
get instanceUsageType(): string;
get lifecycleDetails(): string;
get name(): string;
get objectStorageNamespace(): string;
private _oceInstanceId?;
get oceInstanceId(): string;
set oceInstanceId(value: string);
get oceInstanceIdInput(): string | undefined;
private _service;
get service(): cdktf.StringMap;
get state(): string;
get stateMessage(): string;
private _systemTags;
get systemTags(): cdktf.StringMap;
get tenancyId(): string;
get tenancyName(): string;
get timeCreated(): string;
get timeUpdated(): string;
get upgradeSchedule(): string;
get wafPrimaryDomain(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}