import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface GuideVersionConfig extends cdktf.TerraformMetaArguments { /** * The ID of the guide this version belongs to. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#guide_id GuideVersion#guide_id} */ readonly guideId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#id GuideVersion#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; /** * The instruction given to this version of the guide, for how it should behave when interacting with a User. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#instruction GuideVersion#instruction} */ readonly instruction: string; /** * resources block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#resources GuideVersion#resources} */ readonly resources?: GuideVersionResources; /** * variables block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#variables GuideVersion#variables} */ readonly variables?: GuideVersionVariables[] | cdktf.IResolvable; } export interface GuideVersionResourcesDataAction { /** * The id of the data action. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#data_action_id GuideVersion#data_action_id} */ readonly dataActionId: string; /** * The optional description of the data action. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#description GuideVersion#description} */ readonly description?: string; /** * The label of the GC data action as referenced in the guide instruction. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#label GuideVersion#label} */ readonly label: string; } export declare function guideVersionResourcesDataActionToTerraform(struct?: GuideVersionResourcesDataAction | cdktf.IResolvable): any; export declare function guideVersionResourcesDataActionToHclTerraform(struct?: GuideVersionResourcesDataAction | cdktf.IResolvable): any; export declare class GuideVersionResourcesDataActionOutputReference 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(): GuideVersionResourcesDataAction | cdktf.IResolvable | undefined; set internalValue(value: GuideVersionResourcesDataAction | cdktf.IResolvable | undefined); private _dataActionId?; get dataActionId(): string; set dataActionId(value: string); get dataActionIdInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _label?; get label(): string; set label(value: string); get labelInput(): string; } export declare class GuideVersionResourcesDataActionList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: GuideVersionResourcesDataAction[] | 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): GuideVersionResourcesDataActionOutputReference; } export interface GuideVersionResources { /** * data_action block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#data_action GuideVersion#data_action} */ readonly dataAction?: GuideVersionResourcesDataAction[] | cdktf.IResolvable; } export declare function guideVersionResourcesToTerraform(struct?: GuideVersionResourcesOutputReference | GuideVersionResources): any; export declare function guideVersionResourcesToHclTerraform(struct?: GuideVersionResourcesOutputReference | GuideVersionResources): any; export declare class GuideVersionResourcesOutputReference 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(): GuideVersionResources | undefined; set internalValue(value: GuideVersionResources | undefined); private _dataAction; get dataAction(): GuideVersionResourcesDataActionList; putDataAction(value: GuideVersionResourcesDataAction[] | cdktf.IResolvable): void; resetDataAction(): void; get dataActionInput(): any; } export interface GuideVersionVariables { /** * The description of the variable used by Guides runtime for input/output handling. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#description GuideVersion#description} */ readonly description?: string; /** * The name of the variable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#name GuideVersion#name} */ readonly name: string; /** * The scope that determines the variable's usage context within Guides runtime. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#scope GuideVersion#scope} */ readonly scope: string; /** * The data type of the variable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#type GuideVersion#type} */ readonly type: string; } export declare function guideVersionVariablesToTerraform(struct?: GuideVersionVariables | cdktf.IResolvable): any; export declare function guideVersionVariablesToHclTerraform(struct?: GuideVersionVariables | cdktf.IResolvable): any; export declare class GuideVersionVariablesOutputReference 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(): GuideVersionVariables | cdktf.IResolvable | undefined; set internalValue(value: GuideVersionVariables | cdktf.IResolvable | undefined); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _scope?; get scope(): string; set scope(value: string); get scopeInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; } export declare class GuideVersionVariablesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: GuideVersionVariables[] | 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): GuideVersionVariablesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version genesyscloud_guide_version} */ export declare class GuideVersion extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_guide_version"; /** * Generates CDKTF code for importing a GuideVersion 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 GuideVersion to import * @param importFromId The id of the existing GuideVersion that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/guide_version#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the GuideVersion 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/guide_version genesyscloud_guide_version} 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 GuideVersionConfig */ constructor(scope: Construct, id: string, config: GuideVersionConfig); private _guideId?; get guideId(): string; set guideId(value: string); get guideIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instruction?; get instruction(): string; set instruction(value: string); get instructionInput(): string; private _resources; get resources(): GuideVersionResourcesOutputReference; putResources(value: GuideVersionResources): void; resetResources(): void; get resourcesInput(): GuideVersionResources; private _variables; get variables(): GuideVersionVariablesList; putVariables(value: GuideVersionVariables[] | cdktf.IResolvable): void; resetVariables(): void; get variablesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }