UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

190 lines (189 loc) 8.8 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DatacatalogConnectionConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#catalog_id DatacatalogConnection#catalog_id} */ readonly catalogId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#data_asset_key DatacatalogConnection#data_asset_key} */ readonly dataAssetKey: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#description DatacatalogConnection#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#display_name DatacatalogConnection#display_name} */ readonly displayName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#enc_properties DatacatalogConnection#enc_properties} */ readonly encProperties?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#id DatacatalogConnection#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/datacatalog_connection#is_default DatacatalogConnection#is_default} */ readonly isDefault?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#properties DatacatalogConnection#properties} */ readonly properties: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#type_key DatacatalogConnection#type_key} */ readonly typeKey: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#timeouts DatacatalogConnection#timeouts} */ readonly timeouts?: DatacatalogConnectionTimeouts; } export interface DatacatalogConnectionTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#create DatacatalogConnection#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#delete DatacatalogConnection#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#update DatacatalogConnection#update} */ readonly update?: string; } export declare function datacatalogConnectionTimeoutsToTerraform(struct?: DatacatalogConnectionTimeouts | cdktf.IResolvable): any; export declare function datacatalogConnectionTimeoutsToHclTerraform(struct?: DatacatalogConnectionTimeouts | cdktf.IResolvable): any; export declare class DatacatalogConnectionTimeoutsOutputReference 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(): DatacatalogConnectionTimeouts | cdktf.IResolvable | undefined; set internalValue(value: DatacatalogConnectionTimeouts | 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/datacatalog_connection oci_datacatalog_connection} */ export declare class DatacatalogConnection extends cdktf.TerraformResource { static readonly tfResourceType = "oci_datacatalog_connection"; /** * Generates CDKTF code for importing a DatacatalogConnection 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 DatacatalogConnection to import * @param importFromId The id of the existing DatacatalogConnection that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/datacatalog_connection#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DatacatalogConnection 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/datacatalog_connection oci_datacatalog_connection} 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 DatacatalogConnectionConfig */ constructor(scope: Construct, id: string, config: DatacatalogConnectionConfig); 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; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; private _displayName?; get displayName(): string; set displayName(value: string); get displayNameInput(): string | undefined; private _encProperties?; get encProperties(): { [key: string]: string; }; set encProperties(value: { [key: string]: string; }); resetEncProperties(): void; get encPropertiesInput(): { [key: string]: string; } | undefined; get externalKey(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _isDefault?; get isDefault(): boolean | cdktf.IResolvable; set isDefault(value: boolean | cdktf.IResolvable); resetIsDefault(): void; get isDefaultInput(): boolean | cdktf.IResolvable | undefined; get key(): string; private _properties?; get properties(): { [key: string]: string; }; set properties(value: { [key: string]: string; }); get propertiesInput(): { [key: string]: string; } | undefined; get state(): string; get timeCreated(): string; get timeStatusUpdated(): string; get timeUpdated(): string; private _typeKey?; get typeKey(): string; set typeKey(value: string); get typeKeyInput(): string | undefined; get updatedById(): string; get uri(): string; private _timeouts; get timeouts(): DatacatalogConnectionTimeoutsOutputReference; putTimeouts(value: DatacatalogConnectionTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | DatacatalogConnectionTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }