CapacityRequestPolicyRange defines a valid range for consumable capacity values.
Min specifies the minimum capacity allowed for a consumption request.
Min must be greater than or equal to zero, and less than or equal to the capacity value. requestPolicy.default must be more than or equal to the minimum.
Max defines the upper limit for capacity that can be requested.
Max must be less than or equal to the capacity value. Min and requestPolicy.default must be less than or equal to the maximum.
Step defines the step size between valid capacity amounts within the range.
Max (if set) and requestPolicy.default must be a multiple of Step. Min + Step must be less than or equal to the capacity value.
Returns the class of this.
this
Returns a string representation of this.
This method is used to convert the values of string interpolation expressions to strings.
Returns this |> transform if this is non-null, and null otherwise.
this |> transform
null
This method is the complement of the ?? operator and the equivalent of an Option type's map and flatMap methods.
??
Option
map
flatMap
Tells if this object has a property with the given name.
name
Returns the value of the property with the given name.
Throws if a property with this name does not exist.
Returns null if a property with this name does not exist.
Converts this object to a Dynamic object.
Dynamic
Converts this object to a Map.
Map
CapacityRequestPolicyRange defines a valid range for consumable capacity values.