Class IDRange
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.extensions.IDRange
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<IDRangeBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class IDRange extends Object implements io.fabric8.kubernetes.api.builder.Editable<IDRangeBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IDRangeBuilderedit()Map<String,Object>getAdditionalProperties()LonggetMax()max is the end of the range, inclusive.LonggetMin()min is the start of the range, inclusive.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetMax(Long max)max is the end of the range, inclusive.voidsetMin(Long min)min is the start of the range, inclusive.IDRangeBuildertoBuilder()
-
-
-
Method Detail
-
getMax
public Long getMax()
max is the end of the range, inclusive.
-
setMax
public void setMax(Long max)
max is the end of the range, inclusive.
-
getMin
public Long getMin()
min is the start of the range, inclusive.
-
setMin
public void setMin(Long min)
min is the start of the range, inclusive.
-
edit
public IDRangeBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<IDRangeBuilder>
-
toBuilder
public IDRangeBuilder toBuilder()
-
-