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

com.amazonaws.services.codeguruprofiler.model.PutPermissionRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon CodeGuru Profiler module holds the client classes that are used for communicating with Amazon CodeGuru Profiler Service

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2019-2024 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.codeguruprofiler.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* The structure representing the putPermissionRequest. *

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

* Specifies an action group that contains permissions to add to a profiling group resource. One action group is * supported, agentPermissions, which grants permission to perform actions required by the profiling * agent, ConfigureAgent and PostAgentProfile permissions. *

*/ private String actionGroup; /** *

* A list ARNs for the roles and users you want to grant access to the profiling group. Wildcards are not are * supported in the ARNs. *

*/ private java.util.List principals; /** *

* The name of the profiling group to grant access to. *

*/ private String profilingGroupName; /** *

* A universally unique identifier (UUID) for the revision of the policy you are adding to the profiling group. Do * not specify this when you add permissions to a profiling group for the first time. If a policy already exists on * the profiling group, you must specify the revisionId. *

*/ private String revisionId; /** *

* Specifies an action group that contains permissions to add to a profiling group resource. One action group is * supported, agentPermissions, which grants permission to perform actions required by the profiling * agent, ConfigureAgent and PostAgentProfile permissions. *

* * @param actionGroup * Specifies an action group that contains permissions to add to a profiling group resource. One action group * is supported, agentPermissions, which grants permission to perform actions required by the * profiling agent, ConfigureAgent and PostAgentProfile permissions. * @see ActionGroup */ public void setActionGroup(String actionGroup) { this.actionGroup = actionGroup; } /** *

* Specifies an action group that contains permissions to add to a profiling group resource. One action group is * supported, agentPermissions, which grants permission to perform actions required by the profiling * agent, ConfigureAgent and PostAgentProfile permissions. *

* * @return Specifies an action group that contains permissions to add to a profiling group resource. One action * group is supported, agentPermissions, which grants permission to perform actions required by * the profiling agent, ConfigureAgent and PostAgentProfile permissions. * @see ActionGroup */ public String getActionGroup() { return this.actionGroup; } /** *

* Specifies an action group that contains permissions to add to a profiling group resource. One action group is * supported, agentPermissions, which grants permission to perform actions required by the profiling * agent, ConfigureAgent and PostAgentProfile permissions. *

* * @param actionGroup * Specifies an action group that contains permissions to add to a profiling group resource. One action group * is supported, agentPermissions, which grants permission to perform actions required by the * profiling agent, ConfigureAgent and PostAgentProfile permissions. * @return Returns a reference to this object so that method calls can be chained together. * @see ActionGroup */ public PutPermissionRequest withActionGroup(String actionGroup) { setActionGroup(actionGroup); return this; } /** *

* Specifies an action group that contains permissions to add to a profiling group resource. One action group is * supported, agentPermissions, which grants permission to perform actions required by the profiling * agent, ConfigureAgent and PostAgentProfile permissions. *

* * @param actionGroup * Specifies an action group that contains permissions to add to a profiling group resource. One action group * is supported, agentPermissions, which grants permission to perform actions required by the * profiling agent, ConfigureAgent and PostAgentProfile permissions. * @return Returns a reference to this object so that method calls can be chained together. * @see ActionGroup */ public PutPermissionRequest withActionGroup(ActionGroup actionGroup) { this.actionGroup = actionGroup.toString(); return this; } /** *

* A list ARNs for the roles and users you want to grant access to the profiling group. Wildcards are not are * supported in the ARNs. *

* * @return A list ARNs for the roles and users you want to grant access to the profiling group. Wildcards are not * are supported in the ARNs. */ public java.util.List getPrincipals() { return principals; } /** *

* A list ARNs for the roles and users you want to grant access to the profiling group. Wildcards are not are * supported in the ARNs. *

* * @param principals * A list ARNs for the roles and users you want to grant access to the profiling group. Wildcards are not are * supported in the ARNs. */ public void setPrincipals(java.util.Collection principals) { if (principals == null) { this.principals = null; return; } this.principals = new java.util.ArrayList(principals); } /** *

* A list ARNs for the roles and users you want to grant access to the profiling group. Wildcards are not are * supported in the ARNs. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setPrincipals(java.util.Collection)} or {@link #withPrincipals(java.util.Collection)} if you want to * override the existing values. *

* * @param principals * A list ARNs for the roles and users you want to grant access to the profiling group. Wildcards are not are * supported in the ARNs. * @return Returns a reference to this object so that method calls can be chained together. */ public PutPermissionRequest withPrincipals(String... principals) { if (this.principals == null) { setPrincipals(new java.util.ArrayList(principals.length)); } for (String ele : principals) { this.principals.add(ele); } return this; } /** *

* A list ARNs for the roles and users you want to grant access to the profiling group. Wildcards are not are * supported in the ARNs. *

* * @param principals * A list ARNs for the roles and users you want to grant access to the profiling group. Wildcards are not are * supported in the ARNs. * @return Returns a reference to this object so that method calls can be chained together. */ public PutPermissionRequest withPrincipals(java.util.Collection principals) { setPrincipals(principals); return this; } /** *

* The name of the profiling group to grant access to. *

* * @param profilingGroupName * The name of the profiling group to grant access to. */ public void setProfilingGroupName(String profilingGroupName) { this.profilingGroupName = profilingGroupName; } /** *

* The name of the profiling group to grant access to. *

* * @return The name of the profiling group to grant access to. */ public String getProfilingGroupName() { return this.profilingGroupName; } /** *

* The name of the profiling group to grant access to. *

* * @param profilingGroupName * The name of the profiling group to grant access to. * @return Returns a reference to this object so that method calls can be chained together. */ public PutPermissionRequest withProfilingGroupName(String profilingGroupName) { setProfilingGroupName(profilingGroupName); return this; } /** *

* A universally unique identifier (UUID) for the revision of the policy you are adding to the profiling group. Do * not specify this when you add permissions to a profiling group for the first time. If a policy already exists on * the profiling group, you must specify the revisionId. *

* * @param revisionId * A universally unique identifier (UUID) for the revision of the policy you are adding to the profiling * group. Do not specify this when you add permissions to a profiling group for the first time. If a policy * already exists on the profiling group, you must specify the revisionId. */ public void setRevisionId(String revisionId) { this.revisionId = revisionId; } /** *

* A universally unique identifier (UUID) for the revision of the policy you are adding to the profiling group. Do * not specify this when you add permissions to a profiling group for the first time. If a policy already exists on * the profiling group, you must specify the revisionId. *

* * @return A universally unique identifier (UUID) for the revision of the policy you are adding to the profiling * group. Do not specify this when you add permissions to a profiling group for the first time. If a policy * already exists on the profiling group, you must specify the revisionId. */ public String getRevisionId() { return this.revisionId; } /** *

* A universally unique identifier (UUID) for the revision of the policy you are adding to the profiling group. Do * not specify this when you add permissions to a profiling group for the first time. If a policy already exists on * the profiling group, you must specify the revisionId. *

* * @param revisionId * A universally unique identifier (UUID) for the revision of the policy you are adding to the profiling * group. Do not specify this when you add permissions to a profiling group for the first time. If a policy * already exists on the profiling group, you must specify the revisionId. * @return Returns a reference to this object so that method calls can be chained together. */ public PutPermissionRequest withRevisionId(String revisionId) { setRevisionId(revisionId); 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 (getActionGroup() != null) sb.append("ActionGroup: ").append(getActionGroup()).append(","); if (getPrincipals() != null) sb.append("Principals: ").append(getPrincipals()).append(","); if (getProfilingGroupName() != null) sb.append("ProfilingGroupName: ").append(getProfilingGroupName()).append(","); if (getRevisionId() != null) sb.append("RevisionId: ").append(getRevisionId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PutPermissionRequest == false) return false; PutPermissionRequest other = (PutPermissionRequest) obj; if (other.getActionGroup() == null ^ this.getActionGroup() == null) return false; if (other.getActionGroup() != null && other.getActionGroup().equals(this.getActionGroup()) == false) return false; if (other.getPrincipals() == null ^ this.getPrincipals() == null) return false; if (other.getPrincipals() != null && other.getPrincipals().equals(this.getPrincipals()) == false) return false; if (other.getProfilingGroupName() == null ^ this.getProfilingGroupName() == null) return false; if (other.getProfilingGroupName() != null && other.getProfilingGroupName().equals(this.getProfilingGroupName()) == false) return false; if (other.getRevisionId() == null ^ this.getRevisionId() == null) return false; if (other.getRevisionId() != null && other.getRevisionId().equals(this.getRevisionId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getActionGroup() == null) ? 0 : getActionGroup().hashCode()); hashCode = prime * hashCode + ((getPrincipals() == null) ? 0 : getPrincipals().hashCode()); hashCode = prime * hashCode + ((getProfilingGroupName() == null) ? 0 : getProfilingGroupName().hashCode()); hashCode = prime * hashCode + ((getRevisionId() == null) ? 0 : getRevisionId().hashCode()); return hashCode; } @Override public PutPermissionRequest clone() { return (PutPermissionRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy