public GoCDCreatePipelineConfigRequest(string group, GoCDPipeline pipeline)
 {
     this.Group    = group;
     this.Pipeline = pipeline;
 }
Example #2
0
 public async Task <GoCDPipelineConfig> CreateAsync(string group, GoCDPipeline pipeline)
 {
     return(await this.CreateAsync(new GoCDCreatePipelineConfigRequest(group, pipeline)));
 }