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

com.aliyun.cs20151215.models.DescribeEdgeMachineActiveProcessResponseBody Maven / Gradle / Ivy

There is a newer version: 4.8.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;

import com.aliyun.tea.*;

public class DescribeEdgeMachineActiveProcessResponseBody extends TeaModel {
    /**
     * 

The activation progress list.

* * example: *

[{"content":"步骤 "颁发激活凭证" 执行开始","id":0,"level":3,"timestamp":1625994913000},{"content":"步骤 "颁发激活凭证" 执行成功","id":1,"level":3,"timestamp":1625994914000},{"content":"步骤 "初始化主机配置" 执行开始","id":2,"level":3,"timestamp":1625994975000},{"content":"步骤 "初始化主机配置" 执行成功","id":3,"level":3,"timestamp":1625994975000}]

*/ @NameInMap("logs") public String logs; /** *

The activation progress.

* * example: *

100

*/ @NameInMap("progress") public Long progress; /** *

The request ID.

* * example: *

b62796a8-c5a6-4d3f-beb2-7650e4309cb1

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

The activation status.

* * example: *

ACTIVATED

*/ @NameInMap("state") public String state; /** *

The activation step.

* * example: *

步骤 "初始化主机配置" 执行成功

*/ @NameInMap("step") public String step; public static DescribeEdgeMachineActiveProcessResponseBody build(java.util.Map map) throws Exception { DescribeEdgeMachineActiveProcessResponseBody self = new DescribeEdgeMachineActiveProcessResponseBody(); return TeaModel.build(map, self); } public DescribeEdgeMachineActiveProcessResponseBody setLogs(String logs) { this.logs = logs; return this; } public String getLogs() { return this.logs; } public DescribeEdgeMachineActiveProcessResponseBody setProgress(Long progress) { this.progress = progress; return this; } public Long getProgress() { return this.progress; } public DescribeEdgeMachineActiveProcessResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeEdgeMachineActiveProcessResponseBody setState(String state) { this.state = state; return this; } public String getState() { return this.state; } public DescribeEdgeMachineActiveProcessResponseBody setStep(String step) { this.step = step; return this; } public String getStep() { return this.step; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy