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

com.amazonaws.services.opsworks.model.SetPermissionRequest Maven / Gradle / Ivy

/*
 * Copyright 2013-2018 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.opsworks.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 SetPermissionRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The stack ID. *

*/ private String stackId; /** *

* The user's IAM ARN. This can also be a federated user's ARN. *

*/ private String iamUserArn; /** *

* The user is allowed to use SSH to communicate with the instance. *

*/ private Boolean allowSsh; /** *

* The user is allowed to use sudo to elevate privileges. *

*/ private Boolean allowSudo; /** *

* The user's permission level, which must be set to one of the following strings. You cannot set your own * permissions level. *

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

* For more information about the permissions associated with these levels, see Managing User * Permissions. *

*/ private String level; /** *

* The stack ID. *

* * @param stackId * The stack ID. */ public void setStackId(String stackId) { this.stackId = stackId; } /** *

* The stack ID. *

* * @return The stack ID. */ public String getStackId() { return this.stackId; } /** *

* The stack ID. *

* * @param stackId * The stack ID. * @return Returns a reference to this object so that method calls can be chained together. */ public SetPermissionRequest withStackId(String stackId) { setStackId(stackId); return this; } /** *

* The user's IAM ARN. This can also be a federated user's ARN. *

* * @param iamUserArn * The user's IAM ARN. This can also be a federated user's ARN. */ public void setIamUserArn(String iamUserArn) { this.iamUserArn = iamUserArn; } /** *

* The user's IAM ARN. This can also be a federated user's ARN. *

* * @return The user's IAM ARN. This can also be a federated user's ARN. */ public String getIamUserArn() { return this.iamUserArn; } /** *

* The user's IAM ARN. This can also be a federated user's ARN. *

* * @param iamUserArn * The user's IAM ARN. This can also be a federated user's ARN. * @return Returns a reference to this object so that method calls can be chained together. */ public SetPermissionRequest withIamUserArn(String iamUserArn) { setIamUserArn(iamUserArn); return this; } /** *

* The user is allowed to use SSH to communicate with the instance. *

* * @param allowSsh * The user is allowed to use SSH to communicate with the instance. */ public void setAllowSsh(Boolean allowSsh) { this.allowSsh = allowSsh; } /** *

* The user is allowed to use SSH to communicate with the instance. *

* * @return The user is allowed to use SSH to communicate with the instance. */ public Boolean getAllowSsh() { return this.allowSsh; } /** *

* The user is allowed to use SSH to communicate with the instance. *

* * @param allowSsh * The user is allowed to use SSH to communicate with the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public SetPermissionRequest withAllowSsh(Boolean allowSsh) { setAllowSsh(allowSsh); return this; } /** *

* The user is allowed to use SSH to communicate with the instance. *

* * @return The user is allowed to use SSH to communicate with the instance. */ public Boolean isAllowSsh() { return this.allowSsh; } /** *

* The user is allowed to use sudo to elevate privileges. *

* * @param allowSudo * The user is allowed to use sudo to elevate privileges. */ public void setAllowSudo(Boolean allowSudo) { this.allowSudo = allowSudo; } /** *

* The user is allowed to use sudo to elevate privileges. *

* * @return The user is allowed to use sudo to elevate privileges. */ public Boolean getAllowSudo() { return this.allowSudo; } /** *

* The user is allowed to use sudo to elevate privileges. *

* * @param allowSudo * The user is allowed to use sudo to elevate privileges. * @return Returns a reference to this object so that method calls can be chained together. */ public SetPermissionRequest withAllowSudo(Boolean allowSudo) { setAllowSudo(allowSudo); return this; } /** *

* The user is allowed to use sudo to elevate privileges. *

* * @return The user is allowed to use sudo to elevate privileges. */ public Boolean isAllowSudo() { return this.allowSudo; } /** *

* The user's permission level, which must be set to one of the following strings. You cannot set your own * permissions level. *

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

* For more information about the permissions associated with these levels, see Managing User * Permissions. *

* * @param level * The user's permission level, which must be set to one of the following strings. You cannot set your own * permissions level.

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

* For more information about the permissions associated with these levels, see Managing User * Permissions. */ public void setLevel(String level) { this.level = level; } /** *

* The user's permission level, which must be set to one of the following strings. You cannot set your own * permissions level. *

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

* For more information about the permissions associated with these levels, see Managing User * Permissions. *

* * @return The user's permission level, which must be set to one of the following strings. You cannot set your own * permissions level.

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

* For more information about the permissions associated with these levels, see Managing User * Permissions. */ public String getLevel() { return this.level; } /** *

* The user's permission level, which must be set to one of the following strings. You cannot set your own * permissions level. *

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

* For more information about the permissions associated with these levels, see Managing User * Permissions. *

* * @param level * The user's permission level, which must be set to one of the following strings. You cannot set your own * permissions level.

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

* For more information about the permissions associated with these levels, see Managing User * Permissions. * @return Returns a reference to this object so that method calls can be chained together. */ public SetPermissionRequest withLevel(String level) { setLevel(level); 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 (getStackId() != null) sb.append("StackId: ").append(getStackId()).append(","); if (getIamUserArn() != null) sb.append("IamUserArn: ").append(getIamUserArn()).append(","); if (getAllowSsh() != null) sb.append("AllowSsh: ").append(getAllowSsh()).append(","); if (getAllowSudo() != null) sb.append("AllowSudo: ").append(getAllowSudo()).append(","); if (getLevel() != null) sb.append("Level: ").append(getLevel()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SetPermissionRequest == false) return false; SetPermissionRequest other = (SetPermissionRequest) obj; if (other.getStackId() == null ^ this.getStackId() == null) return false; if (other.getStackId() != null && other.getStackId().equals(this.getStackId()) == false) return false; if (other.getIamUserArn() == null ^ this.getIamUserArn() == null) return false; if (other.getIamUserArn() != null && other.getIamUserArn().equals(this.getIamUserArn()) == false) return false; if (other.getAllowSsh() == null ^ this.getAllowSsh() == null) return false; if (other.getAllowSsh() != null && other.getAllowSsh().equals(this.getAllowSsh()) == false) return false; if (other.getAllowSudo() == null ^ this.getAllowSudo() == null) return false; if (other.getAllowSudo() != null && other.getAllowSudo().equals(this.getAllowSudo()) == false) return false; if (other.getLevel() == null ^ this.getLevel() == null) return false; if (other.getLevel() != null && other.getLevel().equals(this.getLevel()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getStackId() == null) ? 0 : getStackId().hashCode()); hashCode = prime * hashCode + ((getIamUserArn() == null) ? 0 : getIamUserArn().hashCode()); hashCode = prime * hashCode + ((getAllowSsh() == null) ? 0 : getAllowSsh().hashCode()); hashCode = prime * hashCode + ((getAllowSudo() == null) ? 0 : getAllowSudo().hashCode()); hashCode = prime * hashCode + ((getLevel() == null) ? 0 : getLevel().hashCode()); return hashCode; } @Override public SetPermissionRequest clone() { return (SetPermissionRequest) super.clone(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy