import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ScriptConfig extends cdktf.TerraformMetaArguments { /** * Specify division id * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/script#division_id Script#division_id} */ readonly divisionId?: string; /** * Hash value of the script file content. Used to detect changes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/script#file_content_hash Script#file_content_hash} */ readonly fileContentHash?: string; /** * Path to the script file to upload. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/script#filepath Script#filepath} */ readonly filepath: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/script#id Script#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; /** * Display name for the script. A reliably unique name is recommended. Updating this field will result in the script being dropped and recreated with a new GUID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/script#script_name Script#script_name} */ readonly scriptName: string; /** * A substitution is a key value pair where the key is the value you want to replace, and the value is the value to substitute in its place. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/script#substitutions Script#substitutions} */ readonly substitutions?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/script genesyscloud_script} */ export declare class Script extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_script"; /** * Generates CDKTF code for importing a Script 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 Script to import * @param importFromId The id of the existing Script that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/script#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Script 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/script genesyscloud_script} 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 ScriptConfig */ constructor(scope: Construct, id: string, config: ScriptConfig); private _divisionId?; get divisionId(): string; set divisionId(value: string); resetDivisionId(): void; get divisionIdInput(): string; private _fileContentHash?; get fileContentHash(): string; set fileContentHash(value: string); resetFileContentHash(): void; get fileContentHashInput(): string; private _filepath?; get filepath(): string; set filepath(value: string); get filepathInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _scriptName?; get scriptName(): string; set scriptName(value: string); get scriptNameInput(): string; private _substitutions?; get substitutions(): { [key: string]: string; }; set substitutions(value: { [key: string]: string; }); resetSubstitutions(): void; get substitutionsInput(): { [key: string]: string; }; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }