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

com.aliyun.ess20220222.models.CreateEciScalingConfigurationResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ess20220222.models;

import com.aliyun.tea.*;

public class CreateEciScalingConfigurationResponseBody extends TeaModel {
    /**
     * 

The request ID.

* * example: *

89945DD3-9072-47D0-A318-353284CF****

*/ @NameInMap("RequestId") public String requestId; /** *

The ID of the elastic container instance (container group).

* * example: *

eci-uf6fonnghi50u374****

*/ @NameInMap("ScalingConfigurationId") public String scalingConfigurationId; public static CreateEciScalingConfigurationResponseBody build(java.util.Map map) throws Exception { CreateEciScalingConfigurationResponseBody self = new CreateEciScalingConfigurationResponseBody(); return TeaModel.build(map, self); } public CreateEciScalingConfigurationResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public CreateEciScalingConfigurationResponseBody setScalingConfigurationId(String scalingConfigurationId) { this.scalingConfigurationId = scalingConfigurationId; return this; } public String getScalingConfigurationId() { return this.scalingConfigurationId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy