com.akeyless.auth.swagger.model.SetUAMPolicyCredsParams Maven / Gradle / Ivy
/*
* Auth - Application API
* Auth manages access policies for services that need access policies management for their clients. Auth also issues temporary credentials for the services' clients and validates them for the services
*
* OpenAPI spec version: 1.0.2
* Contact: [email protected]
*
* 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 com.akeyless.auth.swagger.model;
import java.util.Objects;
import com.akeyless.auth.swagger.model.PolicyRules;
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;
/**
* SetUAMPolicyCredsParams
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-11-21T16:11:23.052+02:00")
public class SetUAMPolicyCredsParams {
@SerializedName("expires")
private Long expires = null;
@SerializedName("policy_rules_type")
private String policyRulesType = null;
@SerializedName("rules")
private PolicyRules rules = null;
@SerializedName("update_modes")
private List updateModes = null;
public SetUAMPolicyCredsParams expires(Long expires) {
this.expires = expires;
return this;
}
/**
* Policy expiration date (Unix timestamp).
* @return expires
**/
@ApiModelProperty(value = "Policy expiration date (Unix timestamp).")
public Long getExpires() {
return expires;
}
public void setExpires(Long expires) {
this.expires = expires;
}
public SetUAMPolicyCredsParams policyRulesType(String policyRulesType) {
this.policyRulesType = policyRulesType;
return this;
}
/**
* Get policyRulesType
* @return policyRulesType
**/
@ApiModelProperty(value = "")
public String getPolicyRulesType() {
return policyRulesType;
}
public void setPolicyRulesType(String policyRulesType) {
this.policyRulesType = policyRulesType;
}
public SetUAMPolicyCredsParams rules(PolicyRules rules) {
this.rules = rules;
return this;
}
/**
* Get rules
* @return rules
**/
@ApiModelProperty(value = "")
public PolicyRules getRules() {
return rules;
}
public void setRules(PolicyRules rules) {
this.rules = rules;
}
public SetUAMPolicyCredsParams updateModes(List updateModes) {
this.updateModes = updateModes;
return this;
}
public SetUAMPolicyCredsParams addUpdateModesItem(String updateModesItem) {
if (this.updateModes == null) {
this.updateModes = new ArrayList();
}
this.updateModes.add(updateModesItem);
return this;
}
/**
* Array of policy parameters names to be updated (update_key, update_exp, update_cidr). All the parameters will be updated in case of empty array
* @return updateModes
**/
@ApiModelProperty(value = "Array of policy parameters names to be updated (update_key, update_exp, update_cidr). All the parameters will be updated in case of empty array")
public List getUpdateModes() {
return updateModes;
}
public void setUpdateModes(List updateModes) {
this.updateModes = updateModes;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SetUAMPolicyCredsParams setUAMPolicyCredsParams = (SetUAMPolicyCredsParams) o;
return Objects.equals(this.expires, setUAMPolicyCredsParams.expires) &&
Objects.equals(this.policyRulesType, setUAMPolicyCredsParams.policyRulesType) &&
Objects.equals(this.rules, setUAMPolicyCredsParams.rules) &&
Objects.equals(this.updateModes, setUAMPolicyCredsParams.updateModes);
}
@Override
public int hashCode() {
return Objects.hash(expires, policyRulesType, rules, updateModes);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SetUAMPolicyCredsParams {\n");
sb.append(" expires: ").append(toIndentedString(expires)).append("\n");
sb.append(" policyRulesType: ").append(toIndentedString(policyRulesType)).append("\n");
sb.append(" rules: ").append(toIndentedString(rules)).append("\n");
sb.append(" updateModes: ").append(toIndentedString(updateModes)).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 ");
}
}