public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.SimpleSystemsManagement.Model.GetDocumentRequest(); if (cmdletContext.DocumentFormat != null) { request.DocumentFormat = cmdletContext.DocumentFormat; } if (cmdletContext.DocumentVersion != null) { request.DocumentVersion = cmdletContext.DocumentVersion; } if (cmdletContext.Name != null) { request.Name = cmdletContext.Name; } if (cmdletContext.VersionName != null) { request.VersionName = cmdletContext.VersionName; } 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 GetDocument operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetDocument operation on AmazonSimpleSystemsManagementClient.</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 EndGetDocument /// operation.</returns> public IAsyncResult BeginGetDocument(GetDocumentRequest request, AsyncCallback callback, object state) { var marshaller = new GetDocumentRequestMarshaller(); var unmarshaller = GetDocumentResponseUnmarshaller.Instance; return BeginInvoke<GetDocumentRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Gets the contents of the specified SSM document. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetDocument service method.</param> /// /// <returns>The response from the GetDocument service method, as returned by SimpleSystemsManagement.</returns> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InternalServerErrorException"> /// An error occurred on the server side. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentException"> /// The specified document does not exist. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentVersionException"> /// The document version is not valid or does not exist. /// </exception> public GetDocumentResponse GetDocument(GetDocumentRequest request) { var marshaller = new GetDocumentRequestMarshaller(); var unmarshaller = GetDocumentResponseUnmarshaller.Instance; return Invoke<GetDocumentRequest,GetDocumentResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Gets the contents of the specified SSM document. /// </summary> /// <param name="name">The name of the SSM document.</param> /// /// <returns>The response from the GetDocument service method, as returned by SimpleSystemsManagement.</returns> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InternalServerErrorException"> /// An error occurred on the server side. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentException"> /// The specified document does not exist. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentVersionException"> /// The document version is not valid or does not exist. /// </exception> public GetDocumentResponse GetDocument(string name) { var request = new GetDocumentRequest(); request.Name = name; return GetDocument(request); }
/// <summary> /// Initiates the asynchronous execution of the GetDocument operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetDocument 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<GetDocumentResponse> GetDocumentAsync(GetDocumentRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new GetDocumentRequestMarshaller(); var unmarshaller = GetDocumentResponseUnmarshaller.Instance; return InvokeAsync<GetDocumentRequest,GetDocumentResponse>(request, marshaller, unmarshaller, cancellationToken); }
/// <summary> /// Gets the contents of the specified SSM document. /// </summary> /// <param name="name">The name of the SSM document.</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 GetDocument service method, as returned by SimpleSystemsManagement.</returns> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InternalServerErrorException"> /// An error occurred on the server side. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentException"> /// The specified document does not exist. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentVersionException"> /// The document version is not valid or does not exist. /// </exception> public Task<GetDocumentResponse> GetDocumentAsync(string name, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var request = new GetDocumentRequest(); request.Name = name; return GetDocumentAsync(request, cancellationToken); }
private Amazon.SimpleSystemsManagement.Model.GetDocumentResponse CallAWSServiceOperation(IAmazonSimpleSystemsManagement client, Amazon.SimpleSystemsManagement.Model.GetDocumentRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Systems Manager", "GetDocument"); try { #if DESKTOP return(client.GetDocument(request)); #elif CORECLR return(client.GetDocumentAsync(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; } }