rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
59 lines (58 loc) • 3.07 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciBdsBdsInstanceApiKeyConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/bds_bds_instance_api_key#api_key_id DataOciBdsBdsInstanceApiKey#api_key_id}
*/
readonly apiKeyId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/bds_bds_instance_api_key#bds_instance_id DataOciBdsBdsInstanceApiKey#bds_instance_id}
*/
readonly bdsInstanceId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/bds_bds_instance_api_key oci_bds_bds_instance_api_key}
*/
export declare class DataOciBdsBdsInstanceApiKey extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_bds_bds_instance_api_key";
/**
* Generates CDKTF code for importing a DataOciBdsBdsInstanceApiKey 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 DataOciBdsBdsInstanceApiKey to import
* @param importFromId The id of the existing DataOciBdsBdsInstanceApiKey that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/bds_bds_instance_api_key#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciBdsBdsInstanceApiKey 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/bds_bds_instance_api_key oci_bds_bds_instance_api_key} 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 DataOciBdsBdsInstanceApiKeyConfig
*/
constructor(scope: Construct, id: string, config: DataOciBdsBdsInstanceApiKeyConfig);
private _apiKeyId?;
get apiKeyId(): string;
set apiKeyId(value: string);
get apiKeyIdInput(): string | undefined;
private _bdsInstanceId?;
get bdsInstanceId(): string;
set bdsInstanceId(value: string);
get bdsInstanceIdInput(): string | undefined;
get defaultRegion(): string;
get fingerprint(): string;
get id(): string;
get keyAlias(): string;
get passphrase(): string;
get pemfilepath(): string;
get state(): string;
get tenantId(): string;
get timeCreated(): string;
get userId(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}