rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
74 lines (73 loc) • 3.62 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciDatacatalogDataAssetConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/datacatalog_data_asset#catalog_id DataOciDatacatalogDataAsset#catalog_id}
*/
readonly catalogId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/datacatalog_data_asset#data_asset_key DataOciDatacatalogDataAsset#data_asset_key}
*/
readonly dataAssetKey: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/datacatalog_data_asset#fields DataOciDatacatalogDataAsset#fields}
*/
readonly fields?: string[];
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/datacatalog_data_asset oci_datacatalog_data_asset}
*/
export declare class DataOciDatacatalogDataAsset extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_datacatalog_data_asset";
/**
* Generates CDKTF code for importing a DataOciDatacatalogDataAsset 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 DataOciDatacatalogDataAsset to import
* @param importFromId The id of the existing DataOciDatacatalogDataAsset that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/datacatalog_data_asset#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciDatacatalogDataAsset 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/datacatalog_data_asset oci_datacatalog_data_asset} 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 DataOciDatacatalogDataAssetConfig
*/
constructor(scope: Construct, id: string, config: DataOciDatacatalogDataAssetConfig);
private _catalogId?;
get catalogId(): string;
set catalogId(value: string);
get catalogIdInput(): string | undefined;
get createdById(): string;
private _dataAssetKey?;
get dataAssetKey(): string;
set dataAssetKey(value: string);
get dataAssetKeyInput(): string | undefined;
get description(): string;
get displayName(): string;
get externalKey(): string;
private _fields?;
get fields(): string[];
set fields(value: string[]);
resetFields(): void;
get fieldsInput(): string[] | undefined;
get id(): string;
get key(): string;
get lifecycleDetails(): string;
private _properties;
get properties(): cdktf.StringMap;
get state(): string;
get timeCreated(): string;
get timeHarvested(): string;
get timeUpdated(): string;
get typeKey(): string;
get updatedById(): string;
get uri(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}