com.aliyun.iot20180120.models.UpdateJobShrinkRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class UpdateJobShrinkRequest extends TeaModel {
@NameInMap("Description")
public String description;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("JobId")
public String jobId;
@NameInMap("RolloutConfig")
public String rolloutConfigShrink;
@NameInMap("TimeoutConfig")
public String timeoutConfigShrink;
public static UpdateJobShrinkRequest build(java.util.Map map) throws Exception {
UpdateJobShrinkRequest self = new UpdateJobShrinkRequest();
return TeaModel.build(map, self);
}
public UpdateJobShrinkRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public UpdateJobShrinkRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public UpdateJobShrinkRequest setJobId(String jobId) {
this.jobId = jobId;
return this;
}
public String getJobId() {
return this.jobId;
}
public UpdateJobShrinkRequest setRolloutConfigShrink(String rolloutConfigShrink) {
this.rolloutConfigShrink = rolloutConfigShrink;
return this;
}
public String getRolloutConfigShrink() {
return this.rolloutConfigShrink;
}
public UpdateJobShrinkRequest setTimeoutConfigShrink(String timeoutConfigShrink) {
this.timeoutConfigShrink = timeoutConfigShrink;
return this;
}
public String getTimeoutConfigShrink() {
return this.timeoutConfigShrink;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy