public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.CloudHSM.Model.DeleteHapgRequest();

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

            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);
        }
示例#2
0
        /// <summary>
        /// Initiates the asynchronous execution of the DeleteHapg operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DeleteHapg 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<DeleteHapgResponse> DeleteHapgAsync(DeleteHapgRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new DeleteHapgRequestMarshaller();
            var unmarshaller = DeleteHapgResponseUnmarshaller.Instance;

            return InvokeAsync<DeleteHapgRequest,DeleteHapgResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
示例#3
0
 /// <summary>
 /// Deletes a high-availability partition group.
 /// </summary>
 /// <param name="hapgArn">The ARN of the high-availability partition group 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 DeleteHapg 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<DeleteHapgResponse> DeleteHapgAsync(string hapgArn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new DeleteHapgRequest();
     request.HapgArn = hapgArn;
     return DeleteHapgAsync(request, cancellationToken);
 }
示例#4
0
        internal DeleteHapgResponse DeleteHapg(DeleteHapgRequest request)
        {
            var marshaller = new DeleteHapgRequestMarshaller();
            var unmarshaller = DeleteHapgResponseUnmarshaller.Instance;

            return Invoke<DeleteHapgRequest,DeleteHapgResponse>(request, marshaller, unmarshaller);
        }
 /// <summary>
 /// Deletes a high-availability partition group.
 /// </summary>
 /// <param name="hapgArn">The ARN of the high-availability partition group to delete.</param>
 /// 
 /// <returns>The response from the DeleteHapg 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 DeleteHapgResponse DeleteHapg(string hapgArn)
 {
     var request = new DeleteHapgRequest();
     request.HapgArn = hapgArn;
     return DeleteHapg(request);
 }
示例#6
0
        /// <summary>
        /// Initiates the asynchronous execution of the DeleteHapg operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DeleteHapg 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 EndDeleteHapg
        ///         operation.</returns>
        public IAsyncResult BeginDeleteHapg(DeleteHapgRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new DeleteHapgRequestMarshaller();
            var unmarshaller = DeleteHapgResponseUnmarshaller.Instance;

            return BeginInvoke<DeleteHapgRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
 private Amazon.CloudHSM.Model.DeleteHapgResponse CallAWSServiceOperation(IAmazonCloudHSM client, Amazon.CloudHSM.Model.DeleteHapgRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS CloudHSM", "DeleteHapg");
     try
     {
         #if DESKTOP
         return(client.DeleteHapg(request));
         #elif CORECLR
         return(client.DeleteHapgAsync(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;
     }
 }