@cdktf/provider-databricks
Version:
Prebuilt databricks Provider for Terraform CDK (cdktf)
100 lines (99 loc) • 5.38 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DefaultNamespaceSettingConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/default_namespace_setting#etag DefaultNamespaceSetting#etag}
*/
readonly etag?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/default_namespace_setting#id DefaultNamespaceSetting#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/databricks/databricks/1.86.0/docs/resources/default_namespace_setting#setting_name DefaultNamespaceSetting#setting_name}
*/
readonly settingName?: string;
/**
* namespace block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/default_namespace_setting#namespace DefaultNamespaceSetting#namespace}
*/
readonly namespace: DefaultNamespaceSettingNamespace;
}
export interface DefaultNamespaceSettingNamespace {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/default_namespace_setting#value DefaultNamespaceSetting#value}
*/
readonly value?: string;
}
export declare function defaultNamespaceSettingNamespaceToTerraform(struct?: DefaultNamespaceSettingNamespaceOutputReference | DefaultNamespaceSettingNamespace): any;
export declare function defaultNamespaceSettingNamespaceToHclTerraform(struct?: DefaultNamespaceSettingNamespaceOutputReference | DefaultNamespaceSettingNamespace): any;
export declare class DefaultNamespaceSettingNamespaceOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @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(): DefaultNamespaceSettingNamespace | undefined;
set internalValue(value: DefaultNamespaceSettingNamespace | undefined);
private _value?;
get value(): string;
set value(value: string);
resetValue(): void;
get valueInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/default_namespace_setting databricks_default_namespace_setting}
*/
export declare class DefaultNamespaceSetting extends cdktf.TerraformResource {
static readonly tfResourceType = "databricks_default_namespace_setting";
/**
* Generates CDKTF code for importing a DefaultNamespaceSetting 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 DefaultNamespaceSetting to import
* @param importFromId The id of the existing DefaultNamespaceSetting that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/resources/default_namespace_setting#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DefaultNamespaceSetting 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/databricks/databricks/1.86.0/docs/resources/default_namespace_setting databricks_default_namespace_setting} 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 DefaultNamespaceSettingConfig
*/
constructor(scope: Construct, id: string, config: DefaultNamespaceSettingConfig);
private _etag?;
get etag(): string;
set etag(value: string);
resetEtag(): void;
get etagInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _settingName?;
get settingName(): string;
set settingName(value: string);
resetSettingName(): void;
get settingNameInput(): string | undefined;
private _namespace;
get namespace(): DefaultNamespaceSettingNamespaceOutputReference;
putNamespace(value: DefaultNamespaceSettingNamespace): void;
get namespaceInput(): DefaultNamespaceSettingNamespace | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}