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

com.aliyun.sdk.service.ecs20140526.models.ModifyInvocationAttributeResponseBody 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 com.aliyun.core.annotation.*;
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 { @NameInMap("CommandId") private String commandId; @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 its `CommandId` is returned only when `CommandContent` changes. * * No new command is added and the `CommandId` of the command that is running is returned if `CommandContent` has no changes. * * If you set `KeepCommand` to `true` when you called the [InvokeCommand](~~64841~~) or [RunCommand](~~141751~~) operation, the added command is retained. Otherwise, commands related to the task are deleted after executions are complete or the task is manually stopped. */ public Builder commandId(String commandId) { this.commandId = commandId; return this; } /** * The request ID. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public ModifyInvocationAttributeResponseBody build() { return new ModifyInvocationAttributeResponseBody(this); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy