Class SecurityGroupFilter
- java.lang.Object
-
- io.fabric8.openshift.api.model.machine.v1alpha1.SecurityGroupFilter
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<SecurityGroupFilterBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class SecurityGroupFilter extends Object implements io.fabric8.kubernetes.api.builder.Editable<SecurityGroupFilterBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SecurityGroupFilter()No args constructor for use in serializationSecurityGroupFilter(String description, String id, Integer limit, String marker, String name, String notTags, String notTagsAny, String projectId, String sortDir, String sortKey, String tags, String tagsAny, String tenantId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SecurityGroupFilterBuilderedit()Map<String,Object>getAdditionalProperties()StringgetDescription()description filters security groups by description.StringgetId()id specifies the ID of a security group to use.IntegergetLimit()Deprecated: limit is silently ignored.StringgetMarker()Deprecated: marker is silently ignored.StringgetName()name filters security groups by name.StringgetNotTags()notTags filters by security groups which don't match all specified tags.StringgetNotTagsAny()notTagsAny filters by security groups which don't match any specified tags.StringgetProjectId()projectId filters security groups by project ID.StringgetSortDir()Deprecated: sortDir is silently ignored.StringgetSortKey()Deprecated: sortKey is silently ignored.StringgetTags()tags filters by security groups containing all specified tags.StringgetTagsAny()tagsAny filters by security groups containing any specified tags.StringgetTenantId()tenantId filters security groups by tenant ID.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetDescription(String description)description filters security groups by description.voidsetId(String id)id specifies the ID of a security group to use.voidsetLimit(Integer limit)Deprecated: limit is silently ignored.voidsetMarker(String marker)Deprecated: marker is silently ignored.voidsetName(String name)name filters security groups by name.voidsetNotTags(String notTags)notTags filters by security groups which don't match all specified tags.voidsetNotTagsAny(String notTagsAny)notTagsAny filters by security groups which don't match any specified tags.voidsetProjectId(String projectId)projectId filters security groups by project ID.voidsetSortDir(String sortDir)Deprecated: sortDir is silently ignored.voidsetSortKey(String sortKey)Deprecated: sortKey is silently ignored.voidsetTags(String tags)tags filters by security groups containing all specified tags.voidsetTagsAny(String tagsAny)tagsAny filters by security groups containing any specified tags.voidsetTenantId(String tenantId)tenantId filters security groups by tenant ID.SecurityGroupFilterBuildertoBuilder()
-
-
-
Method Detail
-
getDescription
public String getDescription()
description filters security groups by description.
-
setDescription
public void setDescription(String description)
description filters security groups by description.
-
getId
public String getId()
id specifies the ID of a security group to use. If set, id will not be validated before use. An invalid id will result in failure to create a server with an appropriate error message.
-
setId
public void setId(String id)
id specifies the ID of a security group to use. If set, id will not be validated before use. An invalid id will result in failure to create a server with an appropriate error message.
-
getLimit
public Integer getLimit()
Deprecated: limit is silently ignored. It has no replacement.
-
setLimit
public void setLimit(Integer limit)
Deprecated: limit is silently ignored. It has no replacement.
-
getMarker
public String getMarker()
Deprecated: marker is silently ignored. It has no replacement.
-
setMarker
public void setMarker(String marker)
Deprecated: marker is silently ignored. It has no replacement.
-
getName
public String getName()
name filters security groups by name.
-
setName
public void setName(String name)
name filters security groups by name.
-
getNotTags
public String getNotTags()
notTags filters by security groups which don't match all specified tags. NOT (t1 AND t2...) Multiple tags are comma separated.
-
setNotTags
public void setNotTags(String notTags)
notTags filters by security groups which don't match all specified tags. NOT (t1 AND t2...) Multiple tags are comma separated.
-
getNotTagsAny
public String getNotTagsAny()
notTagsAny filters by security groups which don't match any specified tags. NOT (t1 OR t2...) Multiple tags are comma separated.
-
setNotTagsAny
public void setNotTagsAny(String notTagsAny)
notTagsAny filters by security groups which don't match any specified tags. NOT (t1 OR t2...) Multiple tags are comma separated.
-
getProjectId
public String getProjectId()
projectId filters security groups by project ID.
-
setProjectId
public void setProjectId(String projectId)
projectId filters security groups by project ID.
-
getSortDir
public String getSortDir()
Deprecated: sortDir is silently ignored. It has no replacement.
-
setSortDir
public void setSortDir(String sortDir)
Deprecated: sortDir is silently ignored. It has no replacement.
-
getSortKey
public String getSortKey()
Deprecated: sortKey is silently ignored. It has no replacement.
-
setSortKey
public void setSortKey(String sortKey)
Deprecated: sortKey is silently ignored. It has no replacement.
-
getTags
public String getTags()
tags filters by security groups containing all specified tags. Multiple tags are comma separated.
-
setTags
public void setTags(String tags)
tags filters by security groups containing all specified tags. Multiple tags are comma separated.
-
getTagsAny
public String getTagsAny()
tagsAny filters by security groups containing any specified tags. Multiple tags are comma separated.
-
setTagsAny
public void setTagsAny(String tagsAny)
tagsAny filters by security groups containing any specified tags. Multiple tags are comma separated.
-
getTenantId
public String getTenantId()
tenantId filters security groups by tenant ID. Deprecated: use projectId instead. tenantId will be ignored if projectId is set.
-
setTenantId
public void setTenantId(String tenantId)
tenantId filters security groups by tenant ID. Deprecated: use projectId instead. tenantId will be ignored if projectId is set.
-
edit
public SecurityGroupFilterBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<SecurityGroupFilterBuilder>
-
toBuilder
public SecurityGroupFilterBuilder toBuilder()
-
-