rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
68 lines (67 loc) • 3.16 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciDatabaseDbNodeConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_db_node#db_node_id DataOciDatabaseDbNode#db_node_id}
*/
readonly dbNodeId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_db_node oci_database_db_node}
*/
export declare class DataOciDatabaseDbNode extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_database_db_node";
/**
* Generates CDKTF code for importing a DataOciDatabaseDbNode 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 DataOciDatabaseDbNode to import
* @param importFromId The id of the existing DataOciDatabaseDbNode that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_db_node#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciDatabaseDbNode 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/database_db_node oci_database_db_node} 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 DataOciDatabaseDbNodeConfig
*/
constructor(scope: Construct, id: string, config: DataOciDatabaseDbNodeConfig);
get additionalDetails(): string;
get backupIpId(): string;
get backupVnic2Id(): string;
get backupVnicId(): string;
get cpuCoreCount(): number;
private _dbNodeId?;
get dbNodeId(): string;
set dbNodeId(value: string);
get dbNodeIdInput(): string | undefined;
get dbNodeStorageSizeInGbs(): number;
get dbServerId(): string;
get dbSystemId(): string;
private _definedTags;
get definedTags(): cdktf.StringMap;
get faultDomain(): string;
private _freeformTags;
get freeformTags(): cdktf.StringMap;
get hostIpId(): string;
get hostname(): string;
get id(): string;
get lifecycleDetails(): string;
get maintenanceType(): string;
get memorySizeInGbs(): number;
get softwareStorageSizeInGb(): number;
get state(): string;
get timeCreated(): string;
get timeMaintenanceWindowEnd(): string;
get timeMaintenanceWindowStart(): string;
get totalCpuCoreCount(): number;
get vnic2Id(): string;
get vnicId(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}