@cdktf-providers/community-terraform-providers-ignition
Version:
Prebuilt community-terraform-providers/ignition Provider for Terraform CDK (cdktf)
98 lines (97 loc) • 4.73 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataIgnitionLinkConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/community-terraform-providers/ignition/2.5.1/docs/data-sources/link#gid DataIgnitionLink#gid}
*/
readonly gid?: number;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/community-terraform-providers/ignition/2.5.1/docs/data-sources/link#hard DataIgnitionLink#hard}
*/
readonly hard?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/community-terraform-providers/ignition/2.5.1/docs/data-sources/link#id DataIgnitionLink#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/community-terraform-providers/ignition/2.5.1/docs/data-sources/link#overwrite DataIgnitionLink#overwrite}
*/
readonly overwrite?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/community-terraform-providers/ignition/2.5.1/docs/data-sources/link#path DataIgnitionLink#path}
*/
readonly path: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/community-terraform-providers/ignition/2.5.1/docs/data-sources/link#target DataIgnitionLink#target}
*/
readonly target: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/community-terraform-providers/ignition/2.5.1/docs/data-sources/link#uid DataIgnitionLink#uid}
*/
readonly uid?: number;
}
/**
* Represents a {@link https://registry.terraform.io/providers/community-terraform-providers/ignition/2.5.1/docs/data-sources/link ignition_link}
*/
export declare class DataIgnitionLink extends cdktf.TerraformDataSource {
static readonly tfResourceType = "ignition_link";
/**
* Generates CDKTF code for importing a DataIgnitionLink 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 DataIgnitionLink to import
* @param importFromId The id of the existing DataIgnitionLink that should be imported. Refer to the {@link https://registry.terraform.io/providers/community-terraform-providers/ignition/2.5.1/docs/data-sources/link#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataIgnitionLink 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/community-terraform-providers/ignition/2.5.1/docs/data-sources/link ignition_link} 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 DataIgnitionLinkConfig
*/
constructor(scope: Construct, id: string, config: DataIgnitionLinkConfig);
private _gid?;
get gid(): number;
set gid(value: number);
resetGid(): void;
get gidInput(): number;
private _hard?;
get hard(): boolean | cdktf.IResolvable;
set hard(value: boolean | cdktf.IResolvable);
resetHard(): void;
get hardInput(): any;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string;
private _overwrite?;
get overwrite(): boolean | cdktf.IResolvable;
set overwrite(value: boolean | cdktf.IResolvable);
resetOverwrite(): void;
get overwriteInput(): any;
private _path?;
get path(): string;
set path(value: string);
get pathInput(): string;
get rendered(): any;
private _target?;
get target(): string;
set target(value: string);
get targetInput(): string;
private _uid?;
get uid(): number;
set uid(value: number);
resetUid(): void;
get uidInput(): number;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}