Class AWSSubnets
- java.lang.Object
-
- io.fabric8.openshift.api.model.operator.v1.AWSSubnets
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<AWSSubnetsBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class AWSSubnets extends Object implements io.fabric8.kubernetes.api.builder.Editable<AWSSubnetsBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
AWSSubnets contains a list of references to AWS subnets by ID or name.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AWSSubnets()No args constructor for use in serializationAWSSubnets(List<String> ids, List<String> names)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AWSSubnetsBuilderedit()Map<String,Object>getAdditionalProperties()List<String>getIds()ids specifies a list of AWS subnets by subnet ID.List<String>getNames()names specifies a list of AWS subnets by subnet name.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetIds(List<String> ids)ids specifies a list of AWS subnets by subnet ID.voidsetNames(List<String> names)names specifies a list of AWS subnets by subnet name.AWSSubnetsBuildertoBuilder()
-
-
-
Method Detail
-
getIds
public List<String> getIds()
ids specifies a list of AWS subnets by subnet ID. Subnet IDs must start with "subnet-", consist only of alphanumeric characters, must be exactly 24 characters long, must be unique, and the total number of subnets specified by ids and names must not exceed 10.
-
setIds
public void setIds(List<String> ids)
ids specifies a list of AWS subnets by subnet ID. Subnet IDs must start with "subnet-", consist only of alphanumeric characters, must be exactly 24 characters long, must be unique, and the total number of subnets specified by ids and names must not exceed 10.
-
getNames
public List<String> getNames()
names specifies a list of AWS subnets by subnet name. Subnet names must not start with "subnet-", must not include commas, must be under 256 characters in length, must be unique, and the total number of subnets specified by ids and names must not exceed 10.
-
setNames
public void setNames(List<String> names)
names specifies a list of AWS subnets by subnet name. Subnet names must not start with "subnet-", must not include commas, must be under 256 characters in length, must be unique, and the total number of subnets specified by ids and names must not exceed 10.
-
edit
public AWSSubnetsBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<AWSSubnetsBuilder>
-
toBuilder
public AWSSubnetsBuilder toBuilder()
-
-