org.finra.herd.sdk.model.NamespaceIamRoleAuthorizationCreateRequest Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import org.finra.herd.sdk.model.IamRole;
/**
* NamespaceIamRoleAuthorizationCreateRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class NamespaceIamRoleAuthorizationCreateRequest {
@JsonProperty("namespace")
private String namespace = null;
@JsonProperty("iamRoles")
private List iamRoles = null;
public NamespaceIamRoleAuthorizationCreateRequest namespace(String namespace) {
this.namespace = namespace;
return this;
}
/**
* The namespace to give authorizations to
* @return namespace
**/
@ApiModelProperty(value = "The namespace to give authorizations to")
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public NamespaceIamRoleAuthorizationCreateRequest iamRoles(List iamRoles) {
this.iamRoles = iamRoles;
return this;
}
public NamespaceIamRoleAuthorizationCreateRequest addIamRolesItem(IamRole iamRolesItem) {
if (this.iamRoles == null) {
this.iamRoles = new ArrayList();
}
this.iamRoles.add(iamRolesItem);
return this;
}
/**
* The list of IAM roles to authorize
* @return iamRoles
**/
@ApiModelProperty(value = "The list of IAM roles to authorize")
public List getIamRoles() {
return iamRoles;
}
public void setIamRoles(List iamRoles) {
this.iamRoles = iamRoles;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NamespaceIamRoleAuthorizationCreateRequest namespaceIamRoleAuthorizationCreateRequest = (NamespaceIamRoleAuthorizationCreateRequest) o;
return Objects.equals(this.namespace, namespaceIamRoleAuthorizationCreateRequest.namespace) &&
Objects.equals(this.iamRoles, namespaceIamRoleAuthorizationCreateRequest.iamRoles);
}
@Override
public int hashCode() {
return Objects.hash(namespace, iamRoles);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class NamespaceIamRoleAuthorizationCreateRequest {\n");
sb.append(" namespace: ").append(toIndentedString(namespace)).append("\n");
sb.append(" iamRoles: ").append(toIndentedString(iamRoles)).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 ");
}
}