/******************************************************************************* * Copyright 2012-2019 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. * ***************************************************************************** * * AWS Tools for Windows (TM) PowerShell (TM) * */ using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.Text; using Amazon.PowerShell.Common; using Amazon.Runtime; using Amazon.RAM; using Amazon.RAM.Model; namespace Amazon.PowerShell.Cmdlets.RAM { /// /// Removes the specified principals or resources from participating in the specified /// resource share. /// [Cmdlet("Disconnect", "RAMResourceShare", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] [OutputType("Amazon.RAM.Model.ResourceShareAssociation")] [AWSCmdlet("Calls the AWS Resource Access Manager (RAM) DisassociateResourceShare API operation.", Operation = new[] {"DisassociateResourceShare"}, SelectReturnType = typeof(Amazon.RAM.Model.DisassociateResourceShareResponse))] [AWSCmdletOutput("Amazon.RAM.Model.ResourceShareAssociation or Amazon.RAM.Model.DisassociateResourceShareResponse", "This cmdlet returns a collection of Amazon.RAM.Model.ResourceShareAssociation objects.", "The service call response (type Amazon.RAM.Model.DisassociateResourceShareResponse) can also be referenced from properties attached to the cmdlet entry in the $AWSHistory stack." )] public partial class DisconnectRAMResourceShareCmdlet : AmazonRAMClientCmdlet, IExecutor { #region Parameter Principal /// /// /// Specifies a list of one or more principals that no longer are to have access to the /// resources in this resource share.You can include the following values:Not all resource types can be shared with IAM roles and users. For more information, /// see Sharing /// with IAM roles and users in the Resource Access Manager User Guide. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("Principals")] public System.String[] Principal { get; set; } #endregion #region Parameter ResourceArn /// /// /// Specifies a list of Amazon /// Resource Names (ARNs) for one or more resources that you want to remove from the /// resource share. After the operation runs, these resources are no longer shared with /// principals associated with the resource share. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("ResourceArns")] public System.String[] ResourceArn { get; set; } #endregion #region Parameter ResourceShareArn /// /// /// Specifies Amazon /// Resource Name (ARN) of the resource share that you want to remove resources or /// principals from. /// /// #if !MODULAR [System.Management.Automation.Parameter(Position = 0, ValueFromPipelineByPropertyName = true, ValueFromPipeline = true)] #else [System.Management.Automation.Parameter(Position = 0, ValueFromPipelineByPropertyName = true, ValueFromPipeline = true, Mandatory = true)] [System.Management.Automation.AllowEmptyString] [System.Management.Automation.AllowNull] #endif [Amazon.PowerShell.Common.AWSRequiredParameter] public System.String ResourceShareArn { get; set; } #endregion #region Parameter Source /// /// /// Specifies from which source accounts the service principal no longer has access to /// the resources in this resource share. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] [Alias("Sources")] public System.String[] Source { get; set; } #endregion #region Parameter ClientToken /// /// /// Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency /// of the request. This lets you safely retry the request without accidentally performing /// the same operation a second time. Passing the same value to a later call to an operation /// requires that you also pass the same value for all other parameters. We recommend /// that you use a UUID /// type of value..If you don't provide this value, then Amazon Web Services generates a random one for /// you.If you retry the operation with the same ClientToken, but with different /// parameters, the retry fails with an IdempotentParameterMismatch error. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public System.String ClientToken { get; set; } #endregion #region Parameter Select /// /// Use the -Select parameter to control the cmdlet output. The default value is 'ResourceShareAssociations'. /// Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.RAM.Model.DisassociateResourceShareResponse). /// Specifying the name of a property of type Amazon.RAM.Model.DisassociateResourceShareResponse will result in that property being returned. /// Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public string Select { get; set; } = "ResourceShareAssociations"; #endregion #region Parameter PassThru /// /// Changes the cmdlet behavior to return the value passed to the ResourceShareArn parameter. /// The -PassThru parameter is deprecated, use -Select '^ResourceShareArn' instead. This parameter will be removed in a future version. /// [System.Obsolete("The -PassThru parameter is deprecated, use -Select '^ResourceShareArn' instead. This parameter will be removed in a future version.")] [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public SwitchParameter PassThru { get; set; } #endregion #region Parameter Force /// /// This parameter overrides confirmation prompts to force /// the cmdlet to continue its operation. This parameter should always /// be used with caution. /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] public SwitchParameter Force { get; set; } #endregion protected override void ProcessRecord() { this._AWSSignerType = "v4"; base.ProcessRecord(); var resourceIdentifiersText = FormatParameterValuesForConfirmationMsg(nameof(this.ResourceShareArn), MyInvocation.BoundParameters); if (!ConfirmShouldProceed(this.Force.IsPresent, resourceIdentifiersText, "Disconnect-RAMResourceShare (DisassociateResourceShare)")) { return; } var context = new CmdletContext(); // allow for manipulation of parameters prior to loading into context PreExecutionContextLoad(context); #pragma warning disable CS0618, CS0612 //A class member was marked with the Obsolete attribute if (ParameterWasBound(nameof(this.Select))) { context.Select = CreateSelectDelegate(Select) ?? throw new System.ArgumentException("Invalid value for -Select parameter.", nameof(this.Select)); if (this.PassThru.IsPresent) { throw new System.ArgumentException("-PassThru cannot be used when -Select is specified.", nameof(this.Select)); } } else if (this.PassThru.IsPresent) { context.Select = (response, cmdlet) => this.ResourceShareArn; } #pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute context.ClientToken = this.ClientToken; if (this.Principal != null) { context.Principal = new List(this.Principal); } if (this.ResourceArn != null) { context.ResourceArn = new List(this.ResourceArn); } context.ResourceShareArn = this.ResourceShareArn; #if MODULAR if (this.ResourceShareArn == null && ParameterWasBound(nameof(this.ResourceShareArn))) { WriteWarning("You are passing $null as a value for parameter ResourceShareArn which is marked as required. In case you believe this parameter was incorrectly marked as required, report this by opening an issue at https://github.com/aws/aws-tools-for-powershell/issues."); } #endif if (this.Source != null) { context.Source = new List(this.Source); } // allow further manipulation of loaded context prior to processing PostExecutionContextLoad(context); var output = Execute(context) as CmdletOutput; ProcessOutput(output); } #region IExecutor Members public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.RAM.Model.DisassociateResourceShareRequest(); if (cmdletContext.ClientToken != null) { request.ClientToken = cmdletContext.ClientToken; } if (cmdletContext.Principal != null) { request.Principals = cmdletContext.Principal; } if (cmdletContext.ResourceArn != null) { request.ResourceArns = cmdletContext.ResourceArn; } if (cmdletContext.ResourceShareArn != null) { request.ResourceShareArn = cmdletContext.ResourceShareArn; } if (cmdletContext.Source != null) { request.Sources = cmdletContext.Source; } CmdletOutput output; // issue call var client = Client ?? CreateClient(_CurrentCredentials, _RegionEndpoint); try { var response = CallAWSServiceOperation(client, request); object pipelineOutput = null; pipelineOutput = cmdletContext.Select(response, this); output = new CmdletOutput { PipelineOutput = pipelineOutput, ServiceResponse = response }; } catch (Exception e) { output = new CmdletOutput { ErrorResponse = e }; } return output; } public ExecutorContext CreateContext() { return new CmdletContext(); } #endregion #region AWS Service Operation Call private Amazon.RAM.Model.DisassociateResourceShareResponse CallAWSServiceOperation(IAmazonRAM client, Amazon.RAM.Model.DisassociateResourceShareRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Resource Access Manager (RAM)", "DisassociateResourceShare"); try { #if DESKTOP return client.DisassociateResourceShare(request); #elif CORECLR return client.DisassociateResourceShareAsync(request).GetAwaiter().GetResult(); #else #error "Unknown build edition" #endif } catch (AmazonServiceException exc) { var webException = exc.InnerException as System.Net.WebException; if (webException != null) { throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException); } throw; } } #endregion internal partial class CmdletContext : ExecutorContext { public System.String ClientToken { get; set; } public List Principal { get; set; } public List ResourceArn { get; set; } public System.String ResourceShareArn { get; set; } public List Source { get; set; } public System.Func Select { get; set; } = (response, cmdlet) => response.ResourceShareAssociations; } } }