/* * 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.simplesystemsmanagement.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetDocumentRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The name of the SSM document. *
*/ private String name; /** ** An optional field specifying the version of the artifact associated with the document. For example, * "Release 12, Update 6". This value is unique across all versions of a document and can't be changed. *
*/ private String versionName; /** ** The document version for which you want information. *
*/ private String documentVersion; /** ** Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the default * format. *
*/ private String documentFormat; /** ** The name of the SSM document. *
* * @param name * The name of the SSM document. */ public void setName(String name) { this.name = name; } /** ** The name of the SSM document. *
* * @return The name of the SSM document. */ public String getName() { return this.name; } /** ** The name of the SSM document. *
* * @param name * The name of the SSM document. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDocumentRequest withName(String name) { setName(name); return this; } /** ** An optional field specifying the version of the artifact associated with the document. For example, * "Release 12, Update 6". This value is unique across all versions of a document and can't be changed. *
* * @param versionName * An optional field specifying the version of the artifact associated with the document. For example, * "Release 12, Update 6". This value is unique across all versions of a document and can't be changed. */ public void setVersionName(String versionName) { this.versionName = versionName; } /** ** An optional field specifying the version of the artifact associated with the document. For example, * "Release 12, Update 6". This value is unique across all versions of a document and can't be changed. *
* * @return An optional field specifying the version of the artifact associated with the document. For example, * "Release 12, Update 6". This value is unique across all versions of a document and can't be changed. */ public String getVersionName() { return this.versionName; } /** ** An optional field specifying the version of the artifact associated with the document. For example, * "Release 12, Update 6". This value is unique across all versions of a document and can't be changed. *
* * @param versionName * An optional field specifying the version of the artifact associated with the document. For example, * "Release 12, Update 6". This value is unique across all versions of a document and can't be changed. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDocumentRequest withVersionName(String versionName) { setVersionName(versionName); return this; } /** ** The document version for which you want information. *
* * @param documentVersion * The document version for which you want information. */ public void setDocumentVersion(String documentVersion) { this.documentVersion = documentVersion; } /** ** The document version for which you want information. *
* * @return The document version for which you want information. */ public String getDocumentVersion() { return this.documentVersion; } /** ** The document version for which you want information. *
* * @param documentVersion * The document version for which you want information. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDocumentRequest withDocumentVersion(String documentVersion) { setDocumentVersion(documentVersion); return this; } /** ** Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the default * format. *
* * @param documentFormat * Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the * default format. * @see DocumentFormat */ public void setDocumentFormat(String documentFormat) { this.documentFormat = documentFormat; } /** ** Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the default * format. *
* * @return Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the * default format. * @see DocumentFormat */ public String getDocumentFormat() { return this.documentFormat; } /** ** Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the default * format. *
* * @param documentFormat * Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the * default format. * @return Returns a reference to this object so that method calls can be chained together. * @see DocumentFormat */ public GetDocumentRequest withDocumentFormat(String documentFormat) { setDocumentFormat(documentFormat); return this; } /** ** Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the default * format. *
* * @param documentFormat * Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the * default format. * @return Returns a reference to this object so that method calls can be chained together. * @see DocumentFormat */ public GetDocumentRequest withDocumentFormat(DocumentFormat documentFormat) { this.documentFormat = documentFormat.toString(); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getVersionName() != null) sb.append("VersionName: ").append(getVersionName()).append(","); if (getDocumentVersion() != null) sb.append("DocumentVersion: ").append(getDocumentVersion()).append(","); if (getDocumentFormat() != null) sb.append("DocumentFormat: ").append(getDocumentFormat()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetDocumentRequest == false) return false; GetDocumentRequest other = (GetDocumentRequest) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getVersionName() == null ^ this.getVersionName() == null) return false; if (other.getVersionName() != null && other.getVersionName().equals(this.getVersionName()) == false) return false; if (other.getDocumentVersion() == null ^ this.getDocumentVersion() == null) return false; if (other.getDocumentVersion() != null && other.getDocumentVersion().equals(this.getDocumentVersion()) == false) return false; if (other.getDocumentFormat() == null ^ this.getDocumentFormat() == null) return false; if (other.getDocumentFormat() != null && other.getDocumentFormat().equals(this.getDocumentFormat()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getVersionName() == null) ? 0 : getVersionName().hashCode()); hashCode = prime * hashCode + ((getDocumentVersion() == null) ? 0 : getDocumentVersion().hashCode()); hashCode = prime * hashCode + ((getDocumentFormat() == null) ? 0 : getDocumentFormat().hashCode()); return hashCode; } @Override public GetDocumentRequest clone() { return (GetDocumentRequest) super.clone(); } }