Class FixedIPs
- java.lang.Object
-
- io.fabric8.openshift.api.model.machine.v1alpha1.FixedIPs
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<FixedIPsBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class FixedIPs extends Object implements io.fabric8.kubernetes.api.builder.Editable<FixedIPsBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FixedIPsBuilderedit()Map<String,Object>getAdditionalProperties()StringgetIpAddress()ipAddress is a specific IP address to use in the given subnet.StringgetSubnetID()subnetID specifies the ID of the subnet where the fixed IP will be allocated.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetIpAddress(String ipAddress)ipAddress is a specific IP address to use in the given subnet.voidsetSubnetID(String subnetID)subnetID specifies the ID of the subnet where the fixed IP will be allocated.FixedIPsBuildertoBuilder()
-
-
-
Method Detail
-
getIpAddress
public String getIpAddress()
ipAddress is a specific IP address to use in the given subnet. Port creation will fail if the address is not available. If not specified, an available IP from the given subnet will be selected automatically.
-
setIpAddress
public void setIpAddress(String ipAddress)
ipAddress is a specific IP address to use in the given subnet. Port creation will fail if the address is not available. If not specified, an available IP from the given subnet will be selected automatically.
-
getSubnetID
public String getSubnetID()
subnetID specifies the ID of the subnet where the fixed IP will be allocated.
-
setSubnetID
public void setSubnetID(String subnetID)
subnetID specifies the ID of the subnet where the fixed IP will be allocated.
-
edit
public FixedIPsBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<FixedIPsBuilder>
-
toBuilder
public FixedIPsBuilder toBuilder()
-
-