import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface EmployeeperformanceExternalmetricsDefinitionsConfig extends cdktf.TerraformMetaArguments { /** * The default objective type of the External Metric Definition * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/employeeperformance_externalmetrics_definitions#default_objective_type EmployeeperformanceExternalmetricsDefinitions#default_objective_type} */ readonly defaultObjectiveType: string; /** * True if the External Metric Definition is enabled * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/employeeperformance_externalmetrics_definitions#enabled EmployeeperformanceExternalmetricsDefinitions#enabled} */ readonly enabled: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/employeeperformance_externalmetrics_definitions#id EmployeeperformanceExternalmetricsDefinitions#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 name of the External Metric Definition * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/employeeperformance_externalmetrics_definitions#name EmployeeperformanceExternalmetricsDefinitions#name} */ readonly name: string; /** * The decimal precision of the External Metric Definition. Must be at least 0 and at most 5 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/employeeperformance_externalmetrics_definitions#precision EmployeeperformanceExternalmetricsDefinitions#precision} */ readonly precision: number; /** * The unit of the External Metric Definition. Note: Changing the unit property will cause the external metric object to be dropped and recreated with a new ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/employeeperformance_externalmetrics_definitions#unit EmployeeperformanceExternalmetricsDefinitions#unit} */ readonly unit: string; /** * The unit definition of the External Metric Definition. Note: Changing the unit definition property will cause the external metric object to be dropped and recreated with a new ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/employeeperformance_externalmetrics_definitions#unit_definition EmployeeperformanceExternalmetricsDefinitions#unit_definition} */ readonly unitDefinition?: string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/employeeperformance_externalmetrics_definitions genesyscloud_employeeperformance_externalmetrics_definitions} */ export declare class EmployeeperformanceExternalmetricsDefinitions extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_employeeperformance_externalmetrics_definitions"; /** * Generates CDKTF code for importing a EmployeeperformanceExternalmetricsDefinitions 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 EmployeeperformanceExternalmetricsDefinitions to import * @param importFromId The id of the existing EmployeeperformanceExternalmetricsDefinitions that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/employeeperformance_externalmetrics_definitions#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the EmployeeperformanceExternalmetricsDefinitions 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/employeeperformance_externalmetrics_definitions genesyscloud_employeeperformance_externalmetrics_definitions} 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 EmployeeperformanceExternalmetricsDefinitionsConfig */ constructor(scope: Construct, id: string, config: EmployeeperformanceExternalmetricsDefinitionsConfig); private _defaultObjectiveType?; get defaultObjectiveType(): string; set defaultObjectiveType(value: string); get defaultObjectiveTypeInput(): string; private _enabled?; get enabled(): boolean | cdktf.IResolvable; set enabled(value: boolean | cdktf.IResolvable); get enabledInput(): any; 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 _precision?; get precision(): number; set precision(value: number); get precisionInput(): number; private _unit?; get unit(): string; set unit(value: string); get unitInput(): string; private _unitDefinition?; get unitDefinition(): string; set unitDefinition(value: string); resetUnitDefinition(): void; get unitDefinitionInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }