/* * Copyright 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. */ /* * Do not modify this file. This file is generated from the codeguruprofiler-2019-07-18.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CodeGuruProfiler.Model { /// <summary> /// Container for the parameters to the PutPermission operation. /// Adds permissions to a profiling group's resource-based policy that are provided using /// an action group. If a profiling group doesn't have a resource-based policy, one is /// created for it using the permissions in the action group and the roles and users in /// the <code>principals</code> parameter. /// /// <pre><code> <p> The one supported action group that can be added is <code>agentPermission</code> /// which grants <code>ConfigureAgent</code> and <code>PostAgent</code> /// permissions. For more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-ug/resource-based-policies.html">Resource-based /// policies in CodeGuru Profiler</a> in the <i>Amazon CodeGuru Profiler User /// Guide</i>, <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_ConfigureAgent.html"> /// <code>ConfigureAgent</code> </a>, and <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_PostAgentProfile.html"> /// <code>PostAgentProfile</code> </a>. </p> <p> The first /// time you call <code>PutPermission</code> on a profiling group, do not /// specify a <code>revisionId</code> because it doesn't have a resource-based /// policy. Subsequent calls must provide a <code>revisionId</code> to specify /// which revision of the resource-based policy to add the permissions to. </p> /// <p> The response contains the profiling group's JSON-formatted resource policy. /// </p> </code></pre> /// </summary> public partial class PutPermissionRequest : AmazonCodeGuruProfilerRequest { private ActionGroup _actionGroup; private List<string> _principals = new List<string>(); private string _profilingGroupName; private string _revisionId; /// <summary> /// Gets and sets the property ActionGroup. /// <para> /// Specifies an action group that contains permissions to add to a profiling group resource. /// One action group is supported, <code>agentPermissions</code>, which grants permission /// to perform actions required by the profiling agent, <code>ConfigureAgent</code> and /// <code>PostAgentProfile</code> permissions. /// </para> /// </summary> [AWSProperty(Required=true)] public ActionGroup ActionGroup { get { return this._actionGroup; } set { this._actionGroup = value; } } // Check to see if ActionGroup property is set internal bool IsSetActionGroup() { return this._actionGroup != null; } /// <summary> /// Gets and sets the property Principals. /// <para> /// 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. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=50)] public List<string> Principals { get { return this._principals; } set { this._principals = value; } } // Check to see if Principals property is set internal bool IsSetPrincipals() { return this._principals != null && this._principals.Count > 0; } /// <summary> /// Gets and sets the property ProfilingGroupName. /// <para> /// The name of the profiling group to grant access to. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=255)] public string ProfilingGroupName { get { return this._profilingGroupName; } set { this._profilingGroupName = value; } } // Check to see if ProfilingGroupName property is set internal bool IsSetProfilingGroupName() { return this._profilingGroupName != null; } /// <summary> /// Gets and sets the property RevisionId. /// <para> /// 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 <code>revisionId</code>. /// </para> /// </summary> public string RevisionId { get { return this._revisionId; } set { this._revisionId = value; } } // Check to see if RevisionId property is set internal bool IsSetRevisionId() { return this._revisionId != null; } } }