Container for the parameters to the DeleteHsm operation. Deletes an HSM. After completion, this operation cannot be undone and your key material cannot be recovered.
Inheritance: AmazonCloudHSMRequest
        public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.CloudHSM.Model.DeleteHsmRequest();

            if (cmdletContext.HsmArn != null)
            {
                request.HsmArn = cmdletContext.HsmArn;
            }

            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);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Initiates the asynchronous execution of the DeleteHsm operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DeleteHsm operation.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        /// <returns>The task object representing the asynchronous operation.</returns>
        public Task<DeleteHsmResponse> DeleteHsmAsync(DeleteHsmRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new DeleteHsmRequestMarshaller();
            var unmarshaller = DeleteHsmResponseUnmarshaller.Instance;

            return InvokeAsync<DeleteHsmRequest,DeleteHsmResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Deletes an HSM. Once complete, this operation cannot be undone and your key material
 /// cannot be recovered.
 /// </summary>
 /// <param name="hsmArn">The ARN of the HSM to delete.</param>
 /// <param name="cancellationToken">
 ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
 /// </param>
 /// 
 /// <returns>The response from the DeleteHsm service method, as returned by CloudHSM.</returns>
 /// <exception cref="Amazon.CloudHSM.Model.CloudHsmInternalException">
 /// Indicates that an internal error occurred.
 /// </exception>
 /// <exception cref="Amazon.CloudHSM.Model.CloudHsmServiceException">
 /// Indicates that an exception occurred in the AWS CloudHSM service.
 /// </exception>
 /// <exception cref="Amazon.CloudHSM.Model.InvalidRequestException">
 /// Indicates that one or more of the request parameters are not valid.
 /// </exception>
 public Task<DeleteHsmResponse> DeleteHsmAsync(string hsmArn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new DeleteHsmRequest();
     request.HsmArn = hsmArn;
     return DeleteHsmAsync(request, cancellationToken);
 }
Ejemplo n.º 4
0
        internal DeleteHsmResponse DeleteHsm(DeleteHsmRequest request)
        {
            var marshaller = new DeleteHsmRequestMarshaller();
            var unmarshaller = DeleteHsmResponseUnmarshaller.Instance;

            return Invoke<DeleteHsmRequest,DeleteHsmResponse>(request, marshaller, unmarshaller);
        }
 private Amazon.CloudHSM.Model.DeleteHsmResponse CallAWSServiceOperation(IAmazonCloudHSM client, Amazon.CloudHSM.Model.DeleteHsmRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS CloudHSM", "DeleteHsm");
     try
     {
         #if DESKTOP
         return(client.DeleteHsm(request));
         #elif CORECLR
         return(client.DeleteHsmAsync(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;
     }
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Deletes an HSM. Once complete, this operation cannot be undone and your key material
 /// cannot be recovered.
 /// </summary>
 /// <param name="hsmArn">The ARN of the HSM to delete.</param>
 /// 
 /// <returns>The response from the DeleteHsm service method, as returned by CloudHSM.</returns>
 /// <exception cref="Amazon.CloudHSM.Model.CloudHsmInternalException">
 /// Indicates that an internal error occurred.
 /// </exception>
 /// <exception cref="Amazon.CloudHSM.Model.CloudHsmServiceException">
 /// Indicates that an exception occurred in the AWS CloudHSM service.
 /// </exception>
 /// <exception cref="Amazon.CloudHSM.Model.InvalidRequestException">
 /// Indicates that one or more of the request parameters are not valid.
 /// </exception>
 public DeleteHsmResponse DeleteHsm(string hsmArn)
 {
     var request = new DeleteHsmRequest();
     request.HsmArn = hsmArn;
     return DeleteHsm(request);
 }
Ejemplo n.º 7
0
        /// <summary>
        /// Initiates the asynchronous execution of the DeleteHsm operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DeleteHsm operation on AmazonCloudHSMClient.</param>
        /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
        /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
        ///          procedure using the AsyncState property.</param>
        /// 
        /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteHsm
        ///         operation.</returns>
        public IAsyncResult BeginDeleteHsm(DeleteHsmRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new DeleteHsmRequestMarshaller();
            var unmarshaller = DeleteHsmResponseUnmarshaller.Instance;

            return BeginInvoke<DeleteHsmRequest>(request, marshaller, unmarshaller,
                callback, state);
        }