/******************************************************************************* * 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.KeyManagementService; using Amazon.KeyManagementService.Model; namespace Amazon.PowerShell.Cmdlets.KMS { /// /// Connects or reconnects a custom /// key store to its backing key store. For an CloudHSM key store, ConnectCustomKeyStore /// connects the key store to its associated CloudHSM cluster. For an external key store, /// ConnectCustomKeyStore connects the key store to the external key store /// proxy that communicates with your external key manager. /// /// /// /// The custom key store must be connected before you can create KMS keys in the key store /// or use the KMS keys it contains. You can disconnect and reconnect a custom key store /// at any time. /// /// The connection process for a custom key store can take an extended amount of time /// to complete. This operation starts the connection process, but it does not wait for /// it to complete. When it succeeds, this operation quickly returns an HTTP 200 response /// and a JSON object with no properties. However, this response does not indicate that /// the custom key store is connected. To get the connection state of the custom key store, /// use the DescribeCustomKeyStores operation. /// /// This operation is part of the custom /// key stores feature in KMS, which combines the convenience and extensive integration /// of KMS with the isolation and control of a key store that you own and manage. /// /// The ConnectCustomKeyStore operation might fail for various reasons. To /// find the reason, use the DescribeCustomKeyStores operation and see the ConnectionErrorCode /// in the response. For help interpreting the ConnectionErrorCode, see CustomKeyStoresListEntry. /// /// To fix the failure, use the DisconnectCustomKeyStore operation to disconnect /// the custom key store, correct the error, use the UpdateCustomKeyStore operation /// if necessary, and then use ConnectCustomKeyStore again. /// CloudHSM key store /// During the connection process for an CloudHSM key store, KMS finds the CloudHSM cluster /// that is associated with the custom key store, creates the connection infrastructure, /// connects to the cluster, logs into the CloudHSM client as the kmsuser /// CU, and rotates its password. /// /// To connect an CloudHSM key store, its associated CloudHSM cluster must have at least /// one active HSM. To get the number of active HSMs in a cluster, use the DescribeClusters /// operation. To add HSMs to the cluster, use the CreateHsm /// operation. Also, the kmsuser crypto user (CU) must not be logged into the cluster. This /// prevents KMS from using this account to log in. /// /// If you are having trouble connecting or disconnecting a CloudHSM key store, see Troubleshooting /// an CloudHSM key store in the Key Management Service Developer Guide. /// External key store /// When you connect an external key store that uses public endpoint connectivity, KMS /// tests its ability to communicate with your external key manager by sending a request /// via the external key store proxy. /// /// When you connect to an external key store that uses VPC endpoint service connectivity, /// KMS establishes the networking elements that it needs to communicate with your external /// key manager via the external key store proxy. This includes creating an interface /// endpoint to the VPC endpoint service and a private hosted zone for traffic between /// KMS and the VPC endpoint service. /// /// To connect an external key store, KMS must be able to connect to the external key /// store proxy, the external key store proxy must be able to communicate with your external /// key manager, and the external key manager must be available for cryptographic operations. /// /// If you are having trouble connecting or disconnecting an external key store, see Troubleshooting /// an external key store in the Key Management Service Developer Guide. /// Cross-account use: No. You cannot perform this operation on a custom key store /// in a different Amazon Web Services account. /// Required permissions: kms:ConnectCustomKeyStore /// (IAM policy) /// Related operations /// [Cmdlet("Connect", "KMSCustomKeyStore", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] [OutputType("None")] [AWSCmdlet("Calls the AWS Key Management Service ConnectCustomKeyStore API operation.", Operation = new[] {"ConnectCustomKeyStore"}, SelectReturnType = typeof(Amazon.KeyManagementService.Model.ConnectCustomKeyStoreResponse))] [AWSCmdletOutput("None or Amazon.KeyManagementService.Model.ConnectCustomKeyStoreResponse", "This cmdlet does not generate any output." + "The service response (type Amazon.KeyManagementService.Model.ConnectCustomKeyStoreResponse) can be referenced from properties attached to the cmdlet entry in the $AWSHistory stack." )] public partial class ConnectKMSCustomKeyStoreCmdlet : AmazonKeyManagementServiceClientCmdlet, IExecutor { #region Parameter CustomKeyStoreId /// /// /// Enter the key store ID of the custom key store that you want to connect. To find the /// ID of a custom key store, use the DescribeCustomKeyStores operation. /// /// #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 CustomKeyStoreId { get; set; } #endregion #region Parameter Select /// /// Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. /// Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.KeyManagementService.Model.ConnectCustomKeyStoreResponse). /// 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; } = "*"; #endregion #region Parameter PassThru /// /// Changes the cmdlet behavior to return the value passed to the CustomKeyStoreId parameter. /// The -PassThru parameter is deprecated, use -Select '^CustomKeyStoreId' instead. This parameter will be removed in a future version. /// [System.Obsolete("The -PassThru parameter is deprecated, use -Select '^CustomKeyStoreId' 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.CustomKeyStoreId), MyInvocation.BoundParameters); if (!ConfirmShouldProceed(this.Force.IsPresent, resourceIdentifiersText, "Connect-KMSCustomKeyStore (ConnectCustomKeyStore)")) { 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.CustomKeyStoreId; } #pragma warning restore CS0618, CS0612 //A class member was marked with the Obsolete attribute context.CustomKeyStoreId = this.CustomKeyStoreId; #if MODULAR if (this.CustomKeyStoreId == null && ParameterWasBound(nameof(this.CustomKeyStoreId))) { WriteWarning("You are passing $null as a value for parameter CustomKeyStoreId 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 // 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.KeyManagementService.Model.ConnectCustomKeyStoreRequest(); if (cmdletContext.CustomKeyStoreId != null) { request.CustomKeyStoreId = cmdletContext.CustomKeyStoreId; } 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.KeyManagementService.Model.ConnectCustomKeyStoreResponse CallAWSServiceOperation(IAmazonKeyManagementService client, Amazon.KeyManagementService.Model.ConnectCustomKeyStoreRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Key Management Service", "ConnectCustomKeyStore"); try { #if DESKTOP return client.ConnectCustomKeyStore(request); #elif CORECLR return client.ConnectCustomKeyStoreAsync(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 CustomKeyStoreId { get; set; } public System.Func Select { get; set; } = (response, cmdlet) => null; } } }