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

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

Go to download

The AWS SDK for Java with support for OSGi. The AWS 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).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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;

/**
 * 

* Describes stack or user permissions. *

*/ public class Permission implements Serializable, Cloneable { /** *

* A stack ID. *

*/ private String stackId; /** *

* The Amazon Resource Name (ARN) for an AWS Identity and Access Management * (IAM) role. For more information about IAM ARNs, see Using Identifiers. *

*/ private String iamUserArn; /** *

* Whether the user can use SSH. *

*/ private Boolean allowSsh; /** *

* Whether the user can use sudo. *

*/ private Boolean allowSudo; /** *

* The user's permission level, which must be the following: *

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

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

*/ private String level; /** *

* A stack ID. *

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

* A stack ID. *

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

* A stack ID. *

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

* The Amazon Resource Name (ARN) for an AWS Identity and Access Management * (IAM) role. For more information about IAM ARNs, see Using Identifiers. *

* * @param iamUserArn * The Amazon Resource Name (ARN) for an AWS Identity and Access * Management (IAM) role. For more information about IAM ARNs, see Using Identifiers. */ public void setIamUserArn(String iamUserArn) { this.iamUserArn = iamUserArn; } /** *

* The Amazon Resource Name (ARN) for an AWS Identity and Access Management * (IAM) role. For more information about IAM ARNs, see Using Identifiers. *

* * @return The Amazon Resource Name (ARN) for an AWS Identity and Access * Management (IAM) role. For more information about IAM ARNs, see * Using Identifiers. */ public String getIamUserArn() { return this.iamUserArn; } /** *

* The Amazon Resource Name (ARN) for an AWS Identity and Access Management * (IAM) role. For more information about IAM ARNs, see Using Identifiers. *

* * @param iamUserArn * The Amazon Resource Name (ARN) for an AWS Identity and Access * Management (IAM) role. For more information about IAM ARNs, see Using Identifiers. * @return Returns a reference to this object so that method calls can be * chained together. */ public Permission withIamUserArn(String iamUserArn) { setIamUserArn(iamUserArn); return this; } /** *

* Whether the user can use SSH. *

* * @param allowSsh * Whether the user can use SSH. */ public void setAllowSsh(Boolean allowSsh) { this.allowSsh = allowSsh; } /** *

* Whether the user can use SSH. *

* * @return Whether the user can use SSH. */ public Boolean getAllowSsh() { return this.allowSsh; } /** *

* Whether the user can use SSH. *

* * @param allowSsh * Whether the user can use SSH. * @return Returns a reference to this object so that method calls can be * chained together. */ public Permission withAllowSsh(Boolean allowSsh) { setAllowSsh(allowSsh); return this; } /** *

* Whether the user can use SSH. *

* * @return Whether the user can use SSH. */ public Boolean isAllowSsh() { return this.allowSsh; } /** *

* Whether the user can use sudo. *

* * @param allowSudo * Whether the user can use sudo. */ public void setAllowSudo(Boolean allowSudo) { this.allowSudo = allowSudo; } /** *

* Whether the user can use sudo. *

* * @return Whether the user can use sudo. */ public Boolean getAllowSudo() { return this.allowSudo; } /** *

* Whether the user can use sudo. *

* * @param allowSudo * Whether the user can use sudo. * @return Returns a reference to this object so that method calls can be * chained together. */ public Permission withAllowSudo(Boolean allowSudo) { setAllowSudo(allowSudo); return this; } /** *

* Whether the user can use sudo. *

* * @return Whether the user can use sudo. */ public Boolean isAllowSudo() { return this.allowSudo; } /** *

* The user's permission level, which must be the following: *

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

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

* * @param level * The user's permission level, which must be the following:

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

* For more information on 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 the following: *

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

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

* * @return The user's permission level, which must be the following:

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

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

* The user's permission level, which must be the following: *

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

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

* * @param level * The user's permission level, which must be the following:

*
    *
  • *

    * deny *

    *
  • *
  • *

    * show *

    *
  • *
  • *

    * deploy *

    *
  • *
  • *

    * manage *

    *
  • *
  • *

    * iam_only *

    *
  • *
*

* For more information on 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 Permission 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: " + getStackId() + ","); if (getIamUserArn() != null) sb.append("IamUserArn: " + getIamUserArn() + ","); if (getAllowSsh() != null) sb.append("AllowSsh: " + getAllowSsh() + ","); if (getAllowSudo() != null) sb.append("AllowSudo: " + getAllowSudo() + ","); if (getLevel() != null) sb.append("Level: " + 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 Permission == false) return false; Permission other = (Permission) 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 Permission clone() { try { return (Permission) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy