/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.apigatewayv2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *

* Updates a Model. *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class UpdateModelRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The API identifier. *

*/ private String apiId; /** *

* The content-type for the model, for example, "application/json". *

*/ private String contentType; /** *

* The description of the model. *

*/ private String description; /** *

* The model ID. *

*/ private String modelId; /** *

* The name of the model. *

*/ private String name; /** *

* The schema for the model. For application/json models, this should be JSON schema draft 4 model. *

*/ private String schema; /** *

* The API identifier. *

* * @param apiId * The API identifier. */ public void setApiId(String apiId) { this.apiId = apiId; } /** *

* The API identifier. *

* * @return The API identifier. */ public String getApiId() { return this.apiId; } /** *

* The API identifier. *

* * @param apiId * The API identifier. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateModelRequest withApiId(String apiId) { setApiId(apiId); return this; } /** *

* The content-type for the model, for example, "application/json". *

* * @param contentType * The content-type for the model, for example, "application/json". */ public void setContentType(String contentType) { this.contentType = contentType; } /** *

* The content-type for the model, for example, "application/json". *

* * @return The content-type for the model, for example, "application/json". */ public String getContentType() { return this.contentType; } /** *

* The content-type for the model, for example, "application/json". *

* * @param contentType * The content-type for the model, for example, "application/json". * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateModelRequest withContentType(String contentType) { setContentType(contentType); return this; } /** *

* The description of the model. *

* * @param description * The description of the model. */ public void setDescription(String description) { this.description = description; } /** *

* The description of the model. *

* * @return The description of the model. */ public String getDescription() { return this.description; } /** *

* The description of the model. *

* * @param description * The description of the model. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateModelRequest withDescription(String description) { setDescription(description); return this; } /** *

* The model ID. *

* * @param modelId * The model ID. */ public void setModelId(String modelId) { this.modelId = modelId; } /** *

* The model ID. *

* * @return The model ID. */ public String getModelId() { return this.modelId; } /** *

* The model ID. *

* * @param modelId * The model ID. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateModelRequest withModelId(String modelId) { setModelId(modelId); return this; } /** *

* The name of the model. *

* * @param name * The name of the model. */ public void setName(String name) { this.name = name; } /** *

* The name of the model. *

* * @return The name of the model. */ public String getName() { return this.name; } /** *

* The name of the model. *

* * @param name * The name of the model. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateModelRequest withName(String name) { setName(name); return this; } /** *

* The schema for the model. For application/json models, this should be JSON schema draft 4 model. *

* * @param schema * The schema for the model. For application/json models, this should be JSON schema draft 4 model. */ public void setSchema(String schema) { this.schema = schema; } /** *

* The schema for the model. For application/json models, this should be JSON schema draft 4 model. *

* * @return The schema for the model. For application/json models, this should be JSON schema draft 4 model. */ public String getSchema() { return this.schema; } /** *

* The schema for the model. For application/json models, this should be JSON schema draft 4 model. *

* * @param schema * The schema for the model. For application/json models, this should be JSON schema draft 4 model. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateModelRequest withSchema(String schema) { setSchema(schema); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getApiId() != null) sb.append("ApiId: ").append(getApiId()).append(","); if (getContentType() != null) sb.append("ContentType: ").append(getContentType()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getModelId() != null) sb.append("ModelId: ").append(getModelId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getSchema() != null) sb.append("Schema: ").append(getSchema()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateModelRequest == false) return false; UpdateModelRequest other = (UpdateModelRequest) obj; if (other.getApiId() == null ^ this.getApiId() == null) return false; if (other.getApiId() != null && other.getApiId().equals(this.getApiId()) == false) return false; if (other.getContentType() == null ^ this.getContentType() == null) return false; if (other.getContentType() != null && other.getContentType().equals(this.getContentType()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getModelId() == null ^ this.getModelId() == null) return false; if (other.getModelId() != null && other.getModelId().equals(this.getModelId()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getSchema() == null ^ this.getSchema() == null) return false; if (other.getSchema() != null && other.getSchema().equals(this.getSchema()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getApiId() == null) ? 0 : getApiId().hashCode()); hashCode = prime * hashCode + ((getContentType() == null) ? 0 : getContentType().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getModelId() == null) ? 0 : getModelId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getSchema() == null) ? 0 : getSchema().hashCode()); return hashCode; } @Override public UpdateModelRequest clone() { return (UpdateModelRequest) super.clone(); } }