Class DeviceConstraint
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.resource.v1alpha3.DeviceConstraint
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<DeviceConstraintBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class DeviceConstraint extends Object implements io.fabric8.kubernetes.api.builder.Editable<DeviceConstraintBuilder>, io.fabric8.kubernetes.api.model.KubernetesResourceDeviceConstraint must have exactly one field set besides Requests.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeviceConstraint()No args constructor for use in serializationDeviceConstraint(String matchAttribute, List<String> requests)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeviceConstraintBuilderedit()Map<String,Object>getAdditionalProperties()StringgetMatchAttribute()MatchAttribute requires that all devices in question have this attribute and that its type and value are the same across those devices.List<String>getRequests()Requests is a list of the one or more requests in this claim which must co-satisfy this constraint.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetMatchAttribute(String matchAttribute)MatchAttribute requires that all devices in question have this attribute and that its type and value are the same across those devices.voidsetRequests(List<String> requests)Requests is a list of the one or more requests in this claim which must co-satisfy this constraint.DeviceConstraintBuildertoBuilder()
-
-
-
Method Detail
-
getMatchAttribute
public String getMatchAttribute()
MatchAttribute requires that all devices in question have this attribute and that its type and value are the same across those devices.For example, if you specified "dra.example.com/numa" (a hypothetical example!), then only devices in the same NUMA node will be chosen. A device which does not have that attribute will not be chosen. All devices should use a value of the same type for this attribute because that is part of its specification, but if one device doesn't, then it also will not be chosen.
Must include the domain qualifier.
-
setMatchAttribute
public void setMatchAttribute(String matchAttribute)
MatchAttribute requires that all devices in question have this attribute and that its type and value are the same across those devices.For example, if you specified "dra.example.com/numa" (a hypothetical example!), then only devices in the same NUMA node will be chosen. A device which does not have that attribute will not be chosen. All devices should use a value of the same type for this attribute because that is part of its specification, but if one device doesn't, then it also will not be chosen.
Must include the domain qualifier.
-
getRequests
public List<String> getRequests()
Requests is a list of the one or more requests in this claim which must co-satisfy this constraint. If a request is fulfilled by multiple devices, then all of the devices must satisfy the constraint. If this is not specified, this constraint applies to all requests in this claim.
-
setRequests
public void setRequests(List<String> requests)
Requests is a list of the one or more requests in this claim which must co-satisfy this constraint. If a request is fulfilled by multiple devices, then all of the devices must satisfy the constraint. If this is not specified, this constraint applies to all requests in this claim.
-
edit
public DeviceConstraintBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<DeviceConstraintBuilder>
-
toBuilder
public DeviceConstraintBuilder toBuilder()
-
-