@cdktf/provider-azurerm
Version:
Prebuilt azurerm Provider for Terraform CDK (cdktf)
262 lines (261 loc) • 12.6 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataFactoryCustomDatasetConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#additional_properties DataFactoryCustomDataset#additional_properties}
*/
readonly additionalProperties?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#annotations DataFactoryCustomDataset#annotations}
*/
readonly annotations?: string[];
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#data_factory_id DataFactoryCustomDataset#data_factory_id}
*/
readonly dataFactoryId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#description DataFactoryCustomDataset#description}
*/
readonly description?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#folder DataFactoryCustomDataset#folder}
*/
readonly folder?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#id DataFactoryCustomDataset#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/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#name DataFactoryCustomDataset#name}
*/
readonly name: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#parameters DataFactoryCustomDataset#parameters}
*/
readonly parameters?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#schema_json DataFactoryCustomDataset#schema_json}
*/
readonly schemaJson?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#type DataFactoryCustomDataset#type}
*/
readonly type: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#type_properties_json DataFactoryCustomDataset#type_properties_json}
*/
readonly typePropertiesJson: string;
/**
* linked_service block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#linked_service DataFactoryCustomDataset#linked_service}
*/
readonly linkedService: DataFactoryCustomDatasetLinkedService;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#timeouts DataFactoryCustomDataset#timeouts}
*/
readonly timeouts?: DataFactoryCustomDatasetTimeouts;
}
export interface DataFactoryCustomDatasetLinkedService {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#name DataFactoryCustomDataset#name}
*/
readonly name: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#parameters DataFactoryCustomDataset#parameters}
*/
readonly parameters?: {
[key: string]: string;
};
}
export declare function dataFactoryCustomDatasetLinkedServiceToTerraform(struct?: DataFactoryCustomDatasetLinkedServiceOutputReference | DataFactoryCustomDatasetLinkedService): any;
export declare function dataFactoryCustomDatasetLinkedServiceToHclTerraform(struct?: DataFactoryCustomDatasetLinkedServiceOutputReference | DataFactoryCustomDatasetLinkedService): any;
export declare class DataFactoryCustomDatasetLinkedServiceOutputReference 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(): DataFactoryCustomDatasetLinkedService | undefined;
set internalValue(value: DataFactoryCustomDatasetLinkedService | undefined);
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _parameters?;
get parameters(): {
[key: string]: string;
};
set parameters(value: {
[key: string]: string;
});
resetParameters(): void;
get parametersInput(): {
[key: string]: string;
} | undefined;
}
export interface DataFactoryCustomDatasetTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#create DataFactoryCustomDataset#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#delete DataFactoryCustomDataset#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#read DataFactoryCustomDataset#read}
*/
readonly read?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#update DataFactoryCustomDataset#update}
*/
readonly update?: string;
}
export declare function dataFactoryCustomDatasetTimeoutsToTerraform(struct?: DataFactoryCustomDatasetTimeouts | cdktf.IResolvable): any;
export declare function dataFactoryCustomDatasetTimeoutsToHclTerraform(struct?: DataFactoryCustomDatasetTimeouts | cdktf.IResolvable): any;
export declare class DataFactoryCustomDatasetTimeoutsOutputReference 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(): DataFactoryCustomDatasetTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: DataFactoryCustomDatasetTimeouts | 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 _read?;
get read(): string;
set read(value: string);
resetRead(): void;
get readInput(): 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/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset azurerm_data_factory_custom_dataset}
*/
export declare class DataFactoryCustomDataset extends cdktf.TerraformResource {
static readonly tfResourceType = "azurerm_data_factory_custom_dataset";
/**
* Generates CDKTF code for importing a DataFactoryCustomDataset 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 DataFactoryCustomDataset to import
* @param importFromId The id of the existing DataFactoryCustomDataset that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataFactoryCustomDataset 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/hashicorp/azurerm/3.116.0/docs/resources/data_factory_custom_dataset azurerm_data_factory_custom_dataset} 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 DataFactoryCustomDatasetConfig
*/
constructor(scope: Construct, id: string, config: DataFactoryCustomDatasetConfig);
private _additionalProperties?;
get additionalProperties(): {
[key: string]: string;
};
set additionalProperties(value: {
[key: string]: string;
});
resetAdditionalProperties(): void;
get additionalPropertiesInput(): {
[key: string]: string;
} | undefined;
private _annotations?;
get annotations(): string[];
set annotations(value: string[]);
resetAnnotations(): void;
get annotationsInput(): string[] | undefined;
private _dataFactoryId?;
get dataFactoryId(): string;
set dataFactoryId(value: string);
get dataFactoryIdInput(): string | undefined;
private _description?;
get description(): string;
set description(value: string);
resetDescription(): void;
get descriptionInput(): string | undefined;
private _folder?;
get folder(): string;
set folder(value: string);
resetFolder(): void;
get folderInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _parameters?;
get parameters(): {
[key: string]: string;
};
set parameters(value: {
[key: string]: string;
});
resetParameters(): void;
get parametersInput(): {
[key: string]: string;
} | undefined;
private _schemaJson?;
get schemaJson(): string;
set schemaJson(value: string);
resetSchemaJson(): void;
get schemaJsonInput(): string | undefined;
private _type?;
get type(): string;
set type(value: string);
get typeInput(): string | undefined;
private _typePropertiesJson?;
get typePropertiesJson(): string;
set typePropertiesJson(value: string);
get typePropertiesJsonInput(): string | undefined;
private _linkedService;
get linkedService(): DataFactoryCustomDatasetLinkedServiceOutputReference;
putLinkedService(value: DataFactoryCustomDatasetLinkedService): void;
get linkedServiceInput(): DataFactoryCustomDatasetLinkedService | undefined;
private _timeouts;
get timeouts(): DataFactoryCustomDatasetTimeoutsOutputReference;
putTimeouts(value: DataFactoryCustomDatasetTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | DataFactoryCustomDatasetTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}