All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.identitymanagement.model.UpdateServerCertificateRequest Maven / Gradle / Ivy

Go to download

The Amazon Web Services SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

The newest version!
/*
 * Copyright 2010-2014 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.identitymanagement.model;

import java.io.Serializable;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * Container for the parameters to the {@link com.amazonaws.services.identitymanagement.AmazonIdentityManagement#updateServerCertificate(UpdateServerCertificateRequest) UpdateServerCertificate operation}.
 * 

* Updates the name and/or the path of the specified server certificate. *

*

* IMPORTANT: You should understand the implications of changing a * server certificate's path or name. For more information, see Managing * Server Certificates in Using AWS Identity and Access Management. *

*

* NOTE:To change a server certificate name the requester must * have appropriate permissions on both the source object and the target * object. For example, to change the name from ProductionCert to * ProdCert, the entity making the request must have permission on * ProductionCert and ProdCert, or must have permission on all (*). For * more information about permissions, see Permissions and Policies. *

* * @see com.amazonaws.services.identitymanagement.AmazonIdentityManagement#updateServerCertificate(UpdateServerCertificateRequest) */ public class UpdateServerCertificateRequest extends AmazonWebServiceRequest implements Serializable { /** * The name of the server certificate that you want to update. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
*/ private String serverCertificateName; /** * The new path for the server certificate. Include this only if you are * updating the server certificate's path. *

* Constraints:
* Length: 1 - 512
* Pattern: (\u002F)|(\u002F[\u0021-\u007F]+\u002F)
*/ private String newPath; /** * The new name for the server certificate. Include this only if you are * updating the server certificate's name. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
*/ private String newServerCertificateName; /** * Default constructor for a new UpdateServerCertificateRequest object. Callers should use the * setter or fluent setter (with...) methods to initialize this object after creating it. */ public UpdateServerCertificateRequest() {} /** * Constructs a new UpdateServerCertificateRequest object. * Callers should use the setter or fluent setter (with...) methods to * initialize any additional object members. * * @param serverCertificateName The name of the server certificate that * you want to update. */ public UpdateServerCertificateRequest(String serverCertificateName) { setServerCertificateName(serverCertificateName); } /** * The name of the server certificate that you want to update. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
* * @return The name of the server certificate that you want to update. */ public String getServerCertificateName() { return serverCertificateName; } /** * The name of the server certificate that you want to update. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
* * @param serverCertificateName The name of the server certificate that you want to update. */ public void setServerCertificateName(String serverCertificateName) { this.serverCertificateName = serverCertificateName; } /** * The name of the server certificate that you want to update. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
* * @param serverCertificateName The name of the server certificate that you want to update. * * @return A reference to this updated object so that method calls can be chained * together. */ public UpdateServerCertificateRequest withServerCertificateName(String serverCertificateName) { this.serverCertificateName = serverCertificateName; return this; } /** * The new path for the server certificate. Include this only if you are * updating the server certificate's path. *

* Constraints:
* Length: 1 - 512
* Pattern: (\u002F)|(\u002F[\u0021-\u007F]+\u002F)
* * @return The new path for the server certificate. Include this only if you are * updating the server certificate's path. */ public String getNewPath() { return newPath; } /** * The new path for the server certificate. Include this only if you are * updating the server certificate's path. *

* Constraints:
* Length: 1 - 512
* Pattern: (\u002F)|(\u002F[\u0021-\u007F]+\u002F)
* * @param newPath The new path for the server certificate. Include this only if you are * updating the server certificate's path. */ public void setNewPath(String newPath) { this.newPath = newPath; } /** * The new path for the server certificate. Include this only if you are * updating the server certificate's path. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 512
* Pattern: (\u002F)|(\u002F[\u0021-\u007F]+\u002F)
* * @param newPath The new path for the server certificate. Include this only if you are * updating the server certificate's path. * * @return A reference to this updated object so that method calls can be chained * together. */ public UpdateServerCertificateRequest withNewPath(String newPath) { this.newPath = newPath; return this; } /** * The new name for the server certificate. Include this only if you are * updating the server certificate's name. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
* * @return The new name for the server certificate. Include this only if you are * updating the server certificate's name. */ public String getNewServerCertificateName() { return newServerCertificateName; } /** * The new name for the server certificate. Include this only if you are * updating the server certificate's name. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
* * @param newServerCertificateName The new name for the server certificate. Include this only if you are * updating the server certificate's name. */ public void setNewServerCertificateName(String newServerCertificateName) { this.newServerCertificateName = newServerCertificateName; } /** * The new name for the server certificate. Include this only if you are * updating the server certificate's name. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
* * @param newServerCertificateName The new name for the server certificate. Include this only if you are * updating the server certificate's name. * * @return A reference to this updated object so that method calls can be chained * together. */ public UpdateServerCertificateRequest withNewServerCertificateName(String newServerCertificateName) { this.newServerCertificateName = newServerCertificateName; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getServerCertificateName() != null) sb.append("ServerCertificateName: " + getServerCertificateName() + ","); if (getNewPath() != null) sb.append("NewPath: " + getNewPath() + ","); if (getNewServerCertificateName() != null) sb.append("NewServerCertificateName: " + getNewServerCertificateName() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getServerCertificateName() == null) ? 0 : getServerCertificateName().hashCode()); hashCode = prime * hashCode + ((getNewPath() == null) ? 0 : getNewPath().hashCode()); hashCode = prime * hashCode + ((getNewServerCertificateName() == null) ? 0 : getNewServerCertificateName().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateServerCertificateRequest == false) return false; UpdateServerCertificateRequest other = (UpdateServerCertificateRequest)obj; if (other.getServerCertificateName() == null ^ this.getServerCertificateName() == null) return false; if (other.getServerCertificateName() != null && other.getServerCertificateName().equals(this.getServerCertificateName()) == false) return false; if (other.getNewPath() == null ^ this.getNewPath() == null) return false; if (other.getNewPath() != null && other.getNewPath().equals(this.getNewPath()) == false) return false; if (other.getNewServerCertificateName() == null ^ this.getNewServerCertificateName() == null) return false; if (other.getNewServerCertificateName() != null && other.getNewServerCertificateName().equals(this.getNewServerCertificateName()) == false) return false; return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy