com.aliyun.sdk.service.ecs20140526.models.InvokeCommandResponseBody 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 InvokeCommandResponseBody} extends {@link TeaModel}
*
* InvokeCommandResponseBody
*/
public class InvokeCommandResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("InvokeId")
private String invokeId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private InvokeCommandResponseBody(Builder builder) {
this.invokeId = builder.invokeId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static InvokeCommandResponseBody create() {
return builder().build();
}
/**
* @return invokeId
*/
public String getInvokeId() {
return this.invokeId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String invokeId;
private String requestId;
/**
* The ID of the command task.
*
* example:
* t-7d2a745b412b4601b2d47f6a768d****
*/
public Builder invokeId(String invokeId) {
this.invokeId = invokeId;
return this;
}
/**
* The request ID.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public InvokeCommandResponseBody build() {
return new InvokeCommandResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy