
io.kubernetes.client.models.V1beta1ResourceRule Maven / Gradle / Ivy
/*
* Kubernetes
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: v1.11.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.kubernetes.client.models;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.
*/
@ApiModel(description = "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.")
public class V1beta1ResourceRule {
@SerializedName("apiGroups")
private List apiGroups = null;
@SerializedName("resourceNames")
private List resourceNames = null;
@SerializedName("resources")
private List resources = null;
@SerializedName("verbs")
private List verbs = new ArrayList();
public V1beta1ResourceRule apiGroups(List apiGroups) {
this.apiGroups = apiGroups;
return this;
}
public V1beta1ResourceRule addApiGroupsItem(String apiGroupsItem) {
if (this.apiGroups == null) {
this.apiGroups = new ArrayList();
}
this.apiGroups.add(apiGroupsItem);
return this;
}
/**
* APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.
* @return apiGroups
**/
@ApiModelProperty(value = "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.")
public List getApiGroups() {
return apiGroups;
}
public void setApiGroups(List apiGroups) {
this.apiGroups = apiGroups;
}
public V1beta1ResourceRule resourceNames(List resourceNames) {
this.resourceNames = resourceNames;
return this;
}
public V1beta1ResourceRule addResourceNamesItem(String resourceNamesItem) {
if (this.resourceNames == null) {
this.resourceNames = new ArrayList();
}
this.resourceNames.add(resourceNamesItem);
return this;
}
/**
* ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.
* @return resourceNames
**/
@ApiModelProperty(value = "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.")
public List getResourceNames() {
return resourceNames;
}
public void setResourceNames(List resourceNames) {
this.resourceNames = resourceNames;
}
public V1beta1ResourceRule resources(List resources) {
this.resources = resources;
return this;
}
public V1beta1ResourceRule addResourcesItem(String resourcesItem) {
if (this.resources == null) {
this.resources = new ArrayList();
}
this.resources.add(resourcesItem);
return this;
}
/**
* Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups. \"*_/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.
* @return resources
**/
@ApiModelProperty(value = "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups. \"*_/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.")
public List getResources() {
return resources;
}
public void setResources(List resources) {
this.resources = resources;
}
public V1beta1ResourceRule verbs(List verbs) {
this.verbs = verbs;
return this;
}
public V1beta1ResourceRule addVerbsItem(String verbsItem) {
this.verbs.add(verbsItem);
return this;
}
/**
* Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.
* @return verbs
**/
@ApiModelProperty(required = true, value = "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.")
public List getVerbs() {
return verbs;
}
public void setVerbs(List verbs) {
this.verbs = verbs;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1beta1ResourceRule v1beta1ResourceRule = (V1beta1ResourceRule) o;
return Objects.equals(this.apiGroups, v1beta1ResourceRule.apiGroups) &&
Objects.equals(this.resourceNames, v1beta1ResourceRule.resourceNames) &&
Objects.equals(this.resources, v1beta1ResourceRule.resources) &&
Objects.equals(this.verbs, v1beta1ResourceRule.verbs);
}
@Override
public int hashCode() {
return Objects.hash(apiGroups, resourceNames, resources, verbs);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1beta1ResourceRule {\n");
sb.append(" apiGroups: ").append(toIndentedString(apiGroups)).append("\n");
sb.append(" resourceNames: ").append(toIndentedString(resourceNames)).append("\n");
sb.append(" resources: ").append(toIndentedString(resources)).append("\n");
sb.append(" verbs: ").append(toIndentedString(verbs)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy