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

com.volcengine.model.live.DescribeLiveMetricTrafficDataBody Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.live;


import com.alibaba.fastjson.JSON;

import java.util.List;

/**
 * DescribeLiveMetricTrafficDataBody
 */
@lombok.Data
public final class DescribeLiveMetricTrafficDataBody {

    /**
     * 

域名列表。缺省情况表示该用户的所有域名。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "DomainList") private List domainList; /** *

查询流粒度数据时的应用名参数。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "App") private String app; /** *

查询流粒度数据时的流名称参数。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Stream") private String stream; /** *

推拉流协议,缺省情况下,表示查询所有协议,支持的协议如下所示。

* * * *

- HTTP-FLV

* *

- HTTP-HLS

* *

- RTMP

* *

- RTM

* *

- SRT

* *

- QUIC

* * * *

:::tip

* *

如果设置推拉流协议为 QUIC,不能同时传其他协议。

* *

:::

*/ @com.alibaba.fastjson.annotation.JSONField(name = "ProtocolList") private List protocolList; /** *

运营商,缺省情况下,表示查询所有运营商,支持的运营商如下所示。

* * * *

- telecom:中国电信;

* *

- unicom:中国联通;

* *

- mobile:中国移动;

* *

- btvn:广电网;

* *

- drpeng:鹏博士。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "ISPList") private List iSPList; /** *

查询单个或多个出口外网 IP 地址数据,第四个地址位需要改为 000。例如,实际 IP 地址为 10.255.159.10,则请求时取 10.255.159.000。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "IPList") private List iPList; /** *

CDN 节点 IP 所属区域的列表。缺省情况下表示所有区域。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "RegionList") private List regionList; /** *

客户端 IP 所属区域的列表,缺省情况下表示所有区域。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "UserRegionList") private List userRegionList; /** *

查询的起始时间,RFC3339 格式的 UTC 时间,精度为 s。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "StartTime") private String startTime; /** *

查询的结束时间,RFC3339 格式的 UTC 时间,精度为 s。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "EndTime") private String endTime; /** *

聚合的时间粒度,单位为 s,默认值为 300。支持如下时间粒度。

* * * *

- 60:支持单次查询时间跨度为 24 小时,历史查询时间范围为 7 天;

* *

- 300:支持单次查询时间跨度为 31 天,历史查询时间范围为 93 天;

* *

- 3600:支持单次查询时间跨度为 93 天,历史查询时间范围为 93 天。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Aggregation") private Integer aggregation; /** *

数据拆分的维度,支持以下取值。

* *

- Domain

* *

- Protocol

* *

- IP

* *

- ISP

* * * *

设置为空时不进行数据拆分。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "DetailField") private List detailField; @Override public String toString() { return JSON.toJSONString(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy