After you create an SSM document, you can use CreateAssociation to associate it with one or more running instances.
public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.SimpleSystemsManagement.Model.CreateDocumentRequest(); if (cmdletContext.Attachment != null) { request.Attachments = cmdletContext.Attachment; } if (cmdletContext.Content != null) { request.Content = cmdletContext.Content; } if (cmdletContext.DocumentFormat != null) { request.DocumentFormat = cmdletContext.DocumentFormat; } if (cmdletContext.DocumentType != null) { request.DocumentType = cmdletContext.DocumentType; } if (cmdletContext.Name != null) { request.Name = cmdletContext.Name; } if (cmdletContext.Tag != null) { request.Tags = cmdletContext.Tag; } if (cmdletContext.TargetType != null) { request.TargetType = cmdletContext.TargetType; } 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); }
private Amazon.SimpleSystemsManagement.Model.CreateDocumentResponse CallAWSServiceOperation(IAmazonSimpleSystemsManagement client, Amazon.SimpleSystemsManagement.Model.CreateDocumentRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Systems Manager", "CreateDocument"); try { #if DESKTOP return(client.CreateDocument(request)); #elif CORECLR return(client.CreateDocumentAsync(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; } }
/// <summary> /// Initiates the asynchronous execution of the CreateDocument operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CreateDocument 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 EndCreateDocument /// operation.</returns> public IAsyncResult BeginCreateDocument(CreateDocumentRequest request, AsyncCallback callback, object state) { var marshaller = new CreateDocumentRequestMarshaller(); var unmarshaller = CreateDocumentResponseUnmarshaller.Instance; return BeginInvoke<CreateDocumentRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Creates an SSM document. /// /// /// <para> /// After you create an SSM document, you can use CreateAssociation to associate it with /// one or more running instances. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateDocument service method.</param> /// /// <returns>The response from the CreateDocument service method, as returned by SimpleSystemsManagement.</returns> /// <exception cref="Amazon.SimpleSystemsManagement.Model.DocumentAlreadyExistsException"> /// The specified SSM document already exists. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.DocumentLimitExceededException"> /// You can have at most 200 active SSM documents. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InternalServerErrorException"> /// An error occurred on the server side. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentContentException"> /// The content for the SSM document is not valid. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentSchemaVersionException"> /// The version of the document schema is not supported. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.MaxDocumentSizeExceededException"> /// The size limit of an SSM document is 64 KB. /// </exception> public CreateDocumentResponse CreateDocument(CreateDocumentRequest request) { var marshaller = new CreateDocumentRequestMarshaller(); var unmarshaller = CreateDocumentResponseUnmarshaller.Instance; return Invoke<CreateDocumentRequest,CreateDocumentResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Creates an SSM document. /// /// /// <para> /// After you create an SSM document, you can use CreateAssociation to associate it with /// one or more running instances. /// </para> /// </summary> /// <param name="content">A valid JSON string.</param> /// <param name="name">A name for the SSM document.</param> /// /// <returns>The response from the CreateDocument service method, as returned by SimpleSystemsManagement.</returns> /// <exception cref="Amazon.SimpleSystemsManagement.Model.DocumentAlreadyExistsException"> /// The specified SSM document already exists. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.DocumentLimitExceededException"> /// You can have at most 200 active SSM documents. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InternalServerErrorException"> /// An error occurred on the server side. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentContentException"> /// The content for the SSM document is not valid. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentSchemaVersionException"> /// The version of the document schema is not supported. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.MaxDocumentSizeExceededException"> /// The size limit of an SSM document is 64 KB. /// </exception> public CreateDocumentResponse CreateDocument(string content, string name) { var request = new CreateDocumentRequest(); request.Content = content; request.Name = name; return CreateDocument(request); }
/// <summary> /// Initiates the asynchronous execution of the CreateDocument operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CreateDocument 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<CreateDocumentResponse> CreateDocumentAsync(CreateDocumentRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new CreateDocumentRequestMarshaller(); var unmarshaller = CreateDocumentResponseUnmarshaller.Instance; return InvokeAsync<CreateDocumentRequest,CreateDocumentResponse>(request, marshaller, unmarshaller, cancellationToken); }
/// <summary> /// Creates an SSM document. /// /// /// <para> /// After you create an SSM document, you can use CreateAssociation to associate it with /// one or more running instances. /// </para> /// </summary> /// <param name="content">A valid JSON string.</param> /// <param name="name">A name for 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 CreateDocument service method, as returned by SimpleSystemsManagement.</returns> /// <exception cref="Amazon.SimpleSystemsManagement.Model.DocumentAlreadyExistsException"> /// The specified SSM document already exists. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.DocumentLimitExceededException"> /// You can have at most 200 active SSM documents. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InternalServerErrorException"> /// An error occurred on the server side. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentContentException"> /// The content for the SSM document is not valid. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.InvalidDocumentSchemaVersionException"> /// The version of the document schema is not supported. /// </exception> /// <exception cref="Amazon.SimpleSystemsManagement.Model.MaxDocumentSizeExceededException"> /// The size limit of an SSM document is 64 KB. /// </exception> public Task<CreateDocumentResponse> CreateDocumentAsync(string content, string name, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var request = new CreateDocumentRequest(); request.Content = content; request.Name = name; return CreateDocumentAsync(request, cancellationToken); }