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

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

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link CreateCommandResponseBody} extends {@link TeaModel}
 *
 * 

CreateCommandResponseBody

*/ public class CreateCommandResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("CommandId") private String commandId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private CreateCommandResponseBody(Builder builder) { this.commandId = builder.commandId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static CreateCommandResponseBody 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 ID of the command.

* * example: *

c-7d2a745b412b4601b2d47f6a768d****

*/ public Builder commandId(String commandId) { this.commandId = commandId; return this; } /** *

The ID of the request.

* * example: *

473469C7-AA6F-4DC5-B3DB-A3DC0DE3****

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public CreateCommandResponseBody build() { return new CreateCommandResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy