/** *

A floating-point percentage of the desired number of tasks to place and keep running in the task set.

*/ export interface _Scale { /** *

The value, specified as a percent total of a service's desiredCount, to scale the task set. Accepted values are numbers between 0 and 100.

*/ value?: number; /** *

The unit of measure for the scale value.

*/ unit?: "PERCENT" | string; } export declare type _UnmarshalledScale = _Scale;