All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.ecs20140526.models.RunCommandResponseBody Maven / Gradle / Ivy

There is a newer version: 5.0.29
Show newest version
// 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 RunCommandResponseBody} extends {@link TeaModel}
 *
 * 

RunCommandResponseBody

*/ public class RunCommandResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("CommandId") private String commandId; @com.aliyun.core.annotation.NameInMap("InvokeId") private String invokeId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private RunCommandResponseBody(Builder builder) { this.commandId = builder.commandId; this.invokeId = builder.invokeId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static RunCommandResponseBody create() { return builder().build(); } /** * @return commandId */ public String getCommandId() { return this.commandId; } /** * @return invokeId */ public String getInvokeId() { return this.invokeId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String commandId; private String invokeId; private String requestId; /** * The command ID. */ public Builder commandId(String commandId) { this.commandId = commandId; return this; } /** * The command task ID. */ public Builder invokeId(String invokeId) { this.invokeId = invokeId; return this; } /** * The request ID. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public RunCommandResponseBody build() { return new RunCommandResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy