Amazon.CodePipeline.AmazonCodePipelineClient.UpdatePipeline C# (CSharp) Метод

UpdatePipeline() публичный Метод

Updates a specified pipeline with edits or changes to its structure. Use a JSON file with the pipeline structure in conjunction with UpdatePipeline to provide the full structure of the pipeline. Updating the pipeline increases the version number of the pipeline by 1.
/// The specified action declaration was specified in an invalid format. /// /// Reserved for future use. /// /// The specified stage declaration was specified in an invalid format. /// /// The specified structure was specified in an invalid format. /// /// The validation was specified in an invalid format. ///
public UpdatePipeline ( PipelineDeclaration pipeline ) : Amazon.CodePipeline.Model.UpdatePipelineResponse
pipeline Amazon.CodePipeline.Model.PipelineDeclaration The name of the pipeline to be updated.
Результат Amazon.CodePipeline.Model.UpdatePipelineResponse
        public UpdatePipelineResponse UpdatePipeline(PipelineDeclaration pipeline)
        {
            var request = new UpdatePipelineRequest();
            request.Pipeline = pipeline;
            return UpdatePipeline(request);
        }

Same methods

AmazonCodePipelineClient::UpdatePipeline ( Amazon.CodePipeline.Model.UpdatePipelineRequest request ) : Amazon.CodePipeline.Model.UpdatePipelineResponse
AmazonCodePipelineClient