import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ArchitectDatatableConfig extends cdktf.TerraformMetaArguments { /** * Description of the architect_datatable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#description ArchitectDatatable#description} */ readonly description?: string; /** * The division to which this architect_datatable will belong. If not set, the home division will be used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#division_id ArchitectDatatable#division_id} */ readonly divisionId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#id ArchitectDatatable#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; /** * Name of the architect_datatable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#name ArchitectDatatable#name} */ readonly name: string; /** * properties block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#properties ArchitectDatatable#properties} */ readonly properties: ArchitectDatatableProperties[] | cdktf.IResolvable; } export interface ArchitectDatatableProperties { /** * Default value of the property. This is converted to the proper type for non-strings (e.g. set 'true' or 'false' for booleans). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#default ArchitectDatatable#default} */ readonly default?: string; /** * Name of the property. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#name ArchitectDatatable#name} */ readonly name: string; /** * Display title of the property. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#title ArchitectDatatable#title} */ readonly title?: string; /** * Type of the property (boolean | string | integer | number). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#type ArchitectDatatable#type} */ readonly type: string; } export declare function architectDatatablePropertiesToTerraform(struct?: ArchitectDatatableProperties | cdktf.IResolvable): any; export declare function architectDatatablePropertiesToHclTerraform(struct?: ArchitectDatatableProperties | cdktf.IResolvable): any; export declare class ArchitectDatatablePropertiesOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): ArchitectDatatableProperties | cdktf.IResolvable | undefined; set internalValue(value: ArchitectDatatableProperties | cdktf.IResolvable | undefined); private _default?; get default(): string; set default(value: string); resetDefault(): void; get defaultInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _title?; get title(): string; set title(value: string); resetTitle(): void; get titleInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; } export declare class ArchitectDatatablePropertiesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ArchitectDatatableProperties[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): ArchitectDatatablePropertiesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable genesyscloud_architect_datatable} */ export declare class ArchitectDatatable extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_architect_datatable"; /** * Generates CDKTF code for importing a ArchitectDatatable resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the ArchitectDatatable to import * @param importFromId The id of the existing ArchitectDatatable that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ArchitectDatatable 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/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_datatable genesyscloud_architect_datatable} 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 ArchitectDatatableConfig */ constructor(scope: Construct, id: string, config: ArchitectDatatableConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _divisionId?; get divisionId(): string; set divisionId(value: string); resetDivisionId(): void; get divisionIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _properties; get properties(): ArchitectDatatablePropertiesList; putProperties(value: ArchitectDatatableProperties[] | cdktf.IResolvable): void; get propertiesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }