com.aliyun.sdk.service.ecs20140526.models.ModifyInvocationAttributeResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ecs20140526 Show documentation
Show all versions of alibabacloud-ecs20140526 Show documentation
Alibaba Cloud Ecs (20140526) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link ModifyInvocationAttributeResponseBody} extends {@link TeaModel}
*
* ModifyInvocationAttributeResponseBody
*/
public class ModifyInvocationAttributeResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("CommandId")
private String commandId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private ModifyInvocationAttributeResponseBody(Builder builder) {
this.commandId = builder.commandId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ModifyInvocationAttributeResponseBody create() {
return builder().build();
}
/**
* @return commandId
*/
public String getCommandId() {
return this.commandId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String commandId;
private String requestId;
/**
* The command ID.
*
* - A new command is added and the
CommandId
value of the new command is returned only when CommandContent
is changed.
* - No new command is added and the
CommandId
value of the command that is running is returned if CommandContent
is not changed.
* - If you set
KeepCommand
to true
when you called the InvokeCommand or RunCommand operation, a new command is added and retained. Otherwise, commands related to the task are deleted after all executions of the task are complete or the task is manually stopped.
*
*
* example:
* c-hz01272yr52****
*/
public Builder commandId(String commandId) {
this.commandId = commandId;
return this;
}
/**
* The request ID.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ModifyInvocationAttributeResponseBody build() {
return new ModifyInvocationAttributeResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy