rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
160 lines (159 loc) • 8.58 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface BdsBdsInstanceMetastoreConfigConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#activate_trigger BdsBdsInstanceMetastoreConfig#activate_trigger}
*/
readonly activateTrigger?: number;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#bds_api_key_id BdsBdsInstanceMetastoreConfig#bds_api_key_id}
*/
readonly bdsApiKeyId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#bds_api_key_passphrase BdsBdsInstanceMetastoreConfig#bds_api_key_passphrase}
*/
readonly bdsApiKeyPassphrase: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#bds_instance_id BdsBdsInstanceMetastoreConfig#bds_instance_id}
*/
readonly bdsInstanceId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#cluster_admin_password BdsBdsInstanceMetastoreConfig#cluster_admin_password}
*/
readonly clusterAdminPassword: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#display_name BdsBdsInstanceMetastoreConfig#display_name}
*/
readonly displayName?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#id BdsBdsInstanceMetastoreConfig#id}
*
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
* If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
*/
readonly id?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#metastore_id BdsBdsInstanceMetastoreConfig#metastore_id}
*/
readonly metastoreId: string;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#timeouts BdsBdsInstanceMetastoreConfig#timeouts}
*/
readonly timeouts?: BdsBdsInstanceMetastoreConfigTimeouts;
}
export interface BdsBdsInstanceMetastoreConfigTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#create BdsBdsInstanceMetastoreConfig#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#delete BdsBdsInstanceMetastoreConfig#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#update BdsBdsInstanceMetastoreConfig#update}
*/
readonly update?: string;
}
export declare function bdsBdsInstanceMetastoreConfigTimeoutsToTerraform(struct?: BdsBdsInstanceMetastoreConfigTimeouts | cdktf.IResolvable): any;
export declare function bdsBdsInstanceMetastoreConfigTimeoutsToHclTerraform(struct?: BdsBdsInstanceMetastoreConfigTimeouts | cdktf.IResolvable): any;
export declare class BdsBdsInstanceMetastoreConfigTimeoutsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
private resolvableValue?;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
get internalValue(): BdsBdsInstanceMetastoreConfigTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: BdsBdsInstanceMetastoreConfigTimeouts | cdktf.IResolvable | undefined);
private _create?;
get create(): string;
set create(value: string);
resetCreate(): void;
get createInput(): string | undefined;
private _delete?;
get delete(): string;
set delete(value: string);
resetDelete(): void;
get deleteInput(): string | undefined;
private _update?;
get update(): string;
set update(value: string);
resetUpdate(): void;
get updateInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config oci_bds_bds_instance_metastore_config}
*/
export declare class BdsBdsInstanceMetastoreConfig extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_bds_bds_instance_metastore_config";
/**
* Generates CDKTF code for importing a BdsBdsInstanceMetastoreConfig 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 BdsBdsInstanceMetastoreConfig to import
* @param importFromId The id of the existing BdsBdsInstanceMetastoreConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_metastore_config#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the BdsBdsInstanceMetastoreConfig 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/resources/bds_bds_instance_metastore_config oci_bds_bds_instance_metastore_config} Resource
*
* @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 BdsBdsInstanceMetastoreConfigConfig
*/
constructor(scope: Construct, id: string, config: BdsBdsInstanceMetastoreConfigConfig);
private _activateTrigger?;
get activateTrigger(): number;
set activateTrigger(value: number);
resetActivateTrigger(): void;
get activateTriggerInput(): number | undefined;
private _bdsApiKeyId?;
get bdsApiKeyId(): string;
set bdsApiKeyId(value: string);
get bdsApiKeyIdInput(): string | undefined;
private _bdsApiKeyPassphrase?;
get bdsApiKeyPassphrase(): string;
set bdsApiKeyPassphrase(value: string);
get bdsApiKeyPassphraseInput(): string | undefined;
private _bdsInstanceId?;
get bdsInstanceId(): string;
set bdsInstanceId(value: string);
get bdsInstanceIdInput(): string | undefined;
private _clusterAdminPassword?;
get clusterAdminPassword(): string;
set clusterAdminPassword(value: string);
get clusterAdminPasswordInput(): string | undefined;
private _displayName?;
get displayName(): string;
set displayName(value: string);
resetDisplayName(): void;
get displayNameInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _metastoreId?;
get metastoreId(): string;
set metastoreId(value: string);
get metastoreIdInput(): string | undefined;
get metastoreType(): string;
get state(): string;
get timeCreated(): string;
get timeUpdated(): string;
private _timeouts;
get timeouts(): BdsBdsInstanceMetastoreConfigTimeoutsOutputReference;
putTimeouts(value: BdsBdsInstanceMetastoreConfigTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | BdsBdsInstanceMetastoreConfigTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}