com.volcengine.model.imagex.v2.DescribeImageXMirrorRequestHttpCodeOverviewBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.imagex.v2;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* DescribeImageXMirrorRequestHttpCodeOverviewBody
*/
@lombok.Data
public final class DescribeImageXMirrorRequestHttpCodeOverviewBody {
/**
* 服务 ID。支持查询多个服务,传入多个时用英文逗号“,”分割,缺省情况下表示查询所有服务。您可以在 veImageX 控制台的[服务管理](https://console.volcengine.com/imagex/service_manage/)模块或者调用 [GetAllImageServices](https://www.volcengine.com/docs/508/9360) 接口获取服务 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ServiceIds")
private List serviceIds;
/**
* 域名。支持查询多个域名,传入多个时用英文逗号“,”分割,缺省情况下表示查询所有域名。您可以通过调用 [GetServiceDomains](https://www.volcengine.com/docs/508/9379) 获取服务下所有域名信息。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "DomainNames")
private List domainNames;
/**
* 获取数据起始时间点。日期格式按照 ISO8601 表示法,格式为:YYYY-MM-DDThh:mm:ss±hh:mm,比如`2019-06-02T00:00:00+08:00`。
*
* :::tip
*
* 由于仅支持查询近 93 天的历史数据,则若此刻时间为`2011-11-21T16:14:00+08:00`,那么您可输入最早的开始时间为`2011-08-21T00:00:00+08:00`。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "StartTime")
private String startTime;
/**
* 获取数据结束时间点。日期格式按照 ISO8601 表示法,格式为:YYYY-MM-DDThh:mm:ss±hh:mm,比如`2019-06-02T00:00:00+08:00`。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "EndTime")
private String endTime;
/**
* 状态码是否聚合,取值如下所示:
*
*
*
* - `true`:聚合
*
* - `false`:(默认)不聚合
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AggregateCode")
private String aggregateCode;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy