com.aliyun.ice20201109.models.GetPipelineRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class GetPipelineRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 96e8864746a0b6f3
*/
@NameInMap("PipelineId")
public String pipelineId;
public static GetPipelineRequest build(java.util.Map map) throws Exception {
GetPipelineRequest self = new GetPipelineRequest();
return TeaModel.build(map, self);
}
public GetPipelineRequest setPipelineId(String pipelineId) {
this.pipelineId = pipelineId;
return this;
}
public String getPipelineId() {
return this.pipelineId;
}
}