com.volcengine.model.imagex.data.DescribeImageXHitRateRequestDataReq 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.data;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
@Data
public class DescribeImageXHitRateRequestDataReq {
@JSONField(name = "ServiceIds")
private String serviceIds; // 传入多个用英文逗号分隔
@JSONField(name = "DomainNames")
private String domainNames; // 传入多个用英文逗号分隔
@JSONField(name = "GroupBy")
private String groupBy; // 维度拆分的维度值。不传表示不拆分维度。传入多个用英文逗号分隔。支持ServiceId,DomainName
@JSONField(name = "StartTime")
private String startTime; // YYYY-MM-DDThh:mm:ss±hh:mm
@JSONField(name = "EndTime")
private String endTime; // YYYY-MM-DDThh:mm:ss±hh:mm
@JSONField(name = "Interval")
private String interval; // 时间粒度,单位秒。支持300,3600,86400。不传默认查询时间段全部数据
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy