public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.Redshift.Model.DeleteSnapshotCopyGrantRequest(); if (cmdletContext.SnapshotCopyGrantName != null) { request.SnapshotCopyGrantName = cmdletContext.SnapshotCopyGrantName; } 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); }
/// <summary> /// Initiates the asynchronous execution of the DeleteSnapshotCopyGrant operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteSnapshotCopyGrant operation on AmazonRedshiftClient.</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 EndDeleteSnapshotCopyGrant /// operation.</returns> public IAsyncResult BeginDeleteSnapshotCopyGrant(DeleteSnapshotCopyGrantRequest request, AsyncCallback callback, object state) { var marshaller = new DeleteSnapshotCopyGrantRequestMarshaller(); var unmarshaller = DeleteSnapshotCopyGrantResponseUnmarshaller.Instance; return BeginInvoke<DeleteSnapshotCopyGrantRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Deletes the specified snapshot copy grant. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteSnapshotCopyGrant service method.</param> /// /// <returns>The response from the DeleteSnapshotCopyGrant service method, as returned by Redshift.</returns> /// <exception cref="Amazon.Redshift.Model.InvalidSnapshotCopyGrantStateException"> /// The snapshot copy grant can't be deleted because it is used by one or more clusters. /// </exception> /// <exception cref="Amazon.Redshift.Model.SnapshotCopyGrantNotFoundException"> /// The specified snapshot copy grant can't be found. Make sure that the name is typed /// correctly and that the grant exists in the destination region. /// </exception> public DeleteSnapshotCopyGrantResponse DeleteSnapshotCopyGrant(DeleteSnapshotCopyGrantRequest request) { var marshaller = new DeleteSnapshotCopyGrantRequestMarshaller(); var unmarshaller = DeleteSnapshotCopyGrantResponseUnmarshaller.Instance; return Invoke<DeleteSnapshotCopyGrantRequest,DeleteSnapshotCopyGrantResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the DeleteSnapshotCopyGrant operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteSnapshotCopyGrant 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<DeleteSnapshotCopyGrantResponse> DeleteSnapshotCopyGrantAsync(DeleteSnapshotCopyGrantRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DeleteSnapshotCopyGrantRequestMarshaller(); var unmarshaller = DeleteSnapshotCopyGrantResponseUnmarshaller.Instance; return InvokeAsync<DeleteSnapshotCopyGrantRequest,DeleteSnapshotCopyGrantResponse>(request, marshaller, unmarshaller, cancellationToken); }
private Amazon.Redshift.Model.DeleteSnapshotCopyGrantResponse CallAWSServiceOperation(IAmazonRedshift client, Amazon.Redshift.Model.DeleteSnapshotCopyGrantRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Redshift", "DeleteSnapshotCopyGrant"); try { #if DESKTOP return(client.DeleteSnapshotCopyGrant(request)); #elif CORECLR return(client.DeleteSnapshotCopyGrantAsync(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; } }