@cdktf-providers/andrewchubatiuk-ignition
Version:
Prebuilt AndrewChubatiuk/ignition Provider for Terraform CDK (cdktf)
107 lines (106 loc) • 5.15 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataIgnitionFilesystemConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem#device DataIgnitionFilesystem#device}
*/
readonly device: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem#format DataIgnitionFilesystem#format}
*/
readonly format: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem#id DataIgnitionFilesystem#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/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem#label DataIgnitionFilesystem#label}
*/
readonly label?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem#options DataIgnitionFilesystem#options}
*/
readonly options?: string[];
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem#path DataIgnitionFilesystem#path}
*/
readonly path?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem#uuid DataIgnitionFilesystem#uuid}
*/
readonly uuid?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem#wipe_filesystem DataIgnitionFilesystem#wipe_filesystem}
*/
readonly wipeFilesystem?: boolean | cdktf.IResolvable;
}
/**
* Represents a {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem ignition_filesystem}
*/
export declare class DataIgnitionFilesystem extends cdktf.TerraformDataSource {
static readonly tfResourceType = "ignition_filesystem";
/**
* Generates CDKTF code for importing a DataIgnitionFilesystem 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 DataIgnitionFilesystem to import
* @param importFromId The id of the existing DataIgnitionFilesystem that should be imported. Refer to the {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataIgnitionFilesystem to import is found
*/
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
/**
* Create a new {@link https://registry.terraform.io/providers/andrewchubatiuk/ignition/0.0.1/docs/data-sources/filesystem ignition_filesystem} 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 DataIgnitionFilesystemConfig
*/
constructor(scope: Construct, id: string, config: DataIgnitionFilesystemConfig);
private _device?;
get device(): string;
set device(value: string);
get deviceInput(): string;
private _format?;
get format(): string;
set format(value: string);
get formatInput(): string;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string;
private _label?;
get label(): string;
set label(value: string);
resetLabel(): void;
get labelInput(): string;
private _options?;
get options(): string[];
set options(value: string[]);
resetOptions(): void;
get optionsInput(): string[];
private _path?;
get path(): string;
set path(value: string);
resetPath(): void;
get pathInput(): string;
get rendered(): any;
private _uuid?;
get uuid(): string;
set uuid(value: string);
resetUuid(): void;
get uuidInput(): string;
private _wipeFilesystem?;
get wipeFilesystem(): boolean | cdktf.IResolvable;
set wipeFilesystem(value: boolean | cdktf.IResolvable);
resetWipeFilesystem(): void;
get wipeFilesystemInput(): any;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}