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

com.aliyun.cdn20180510.models.DescribeEsExecuteDataResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DescribeEsExecuteDataResponseBody extends TeaModel {
    /**
     * 

The content of the script.

*/ @NameInMap("Contents") public java.util.List contents; /** *

The ID of the request.

*/ @NameInMap("RequestId") public String requestId; public static DescribeEsExecuteDataResponseBody build(java.util.Map map) throws Exception { DescribeEsExecuteDataResponseBody self = new DescribeEsExecuteDataResponseBody(); return TeaModel.build(map, self); } public DescribeEsExecuteDataResponseBody setContents(java.util.List contents) { this.contents = contents; return this; } public java.util.List getContents() { return this.contents; } public DescribeEsExecuteDataResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class DescribeEsExecuteDataResponseBodyContents extends TeaModel { /** *

The time and column names in the table that shows the status of the script.

*/ @NameInMap("Columns") public java.util.List columns; /** *

The name of the table that shows the status of the script.

*/ @NameInMap("Name") public String name; /** *

The list of timestamps and values in the corresponding columns of the table that shows the status of the script.

*/ @NameInMap("Points") public java.util.List points; public static DescribeEsExecuteDataResponseBodyContents build(java.util.Map map) throws Exception { DescribeEsExecuteDataResponseBodyContents self = new DescribeEsExecuteDataResponseBodyContents(); return TeaModel.build(map, self); } public DescribeEsExecuteDataResponseBodyContents setColumns(java.util.List columns) { this.columns = columns; return this; } public java.util.List getColumns() { return this.columns; } public DescribeEsExecuteDataResponseBodyContents setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public DescribeEsExecuteDataResponseBodyContents setPoints(java.util.List points) { this.points = points; return this; } public java.util.List getPoints() { return this.points; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy