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

com.tencentcloudapi.ecdn.v20191012.models.DescribeEcdnDomainStatisticsRequest Maven / Gradle / Ivy

There is a newer version: 3.1.977
Show newest version
/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.tencentcloudapi.ecdn.v20191012.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class DescribeEcdnDomainStatisticsRequest extends AbstractModel{

    /**
    * 查询起始时间,如:2019-12-13 00:00:00。
起止时间不超过90天。
    */
    @SerializedName("StartTime")
    @Expose
    private String StartTime;

    /**
    * 查询结束时间,如:2019-12-13 23:59:59。
起止时间不超过90天。
    */
    @SerializedName("EndTime")
    @Expose
    private String EndTime;

    /**
    * 统计指标名称:
flux:流量,单位为 byte
bandwidth:带宽,单位为 bps
request:请求数,单位为 次
    */
    @SerializedName("Metrics")
    @Expose
    private String [] Metrics;

    /**
    * 指定查询域名列表
    */
    @SerializedName("Domains")
    @Expose
    private String [] Domains;

    /**
    * 指定要查询的项目 ID,[前往查看项目 ID](https://console.cloud.tencent.com/project)
未填充域名情况下,指定项目查询,若填充了具体域名信息,以域名为主
    */
    @SerializedName("Projects")
    @Expose
    private Long [] Projects;

    /**
    * 列表分页起始地址,默认0。
    */
    @SerializedName("Offset")
    @Expose
    private Long Offset;

    /**
    * 列表分页记录条数,默认1000,最大3000。
    */
    @SerializedName("Limit")
    @Expose
    private Long Limit;

    /**
    * 统计区域:
mainland: 境内
oversea: 境外
global: 全部
默认 global
    */
    @SerializedName("Area")
    @Expose
    private String Area;

    /**
     * Get 查询起始时间,如:2019-12-13 00:00:00。
起止时间不超过90天。 
     * @return StartTime 查询起始时间,如:2019-12-13 00:00:00。
起止时间不超过90天。
     */
    public String getStartTime() {
        return this.StartTime;
    }

    /**
     * Set 查询起始时间,如:2019-12-13 00:00:00。
起止时间不超过90天。
     * @param StartTime 查询起始时间,如:2019-12-13 00:00:00。
起止时间不超过90天。
     */
    public void setStartTime(String StartTime) {
        this.StartTime = StartTime;
    }

    /**
     * Get 查询结束时间,如:2019-12-13 23:59:59。
起止时间不超过90天。 
     * @return EndTime 查询结束时间,如:2019-12-13 23:59:59。
起止时间不超过90天。
     */
    public String getEndTime() {
        return this.EndTime;
    }

    /**
     * Set 查询结束时间,如:2019-12-13 23:59:59。
起止时间不超过90天。
     * @param EndTime 查询结束时间,如:2019-12-13 23:59:59。
起止时间不超过90天。
     */
    public void setEndTime(String EndTime) {
        this.EndTime = EndTime;
    }

    /**
     * Get 统计指标名称:
flux:流量,单位为 byte
bandwidth:带宽,单位为 bps
request:请求数,单位为 次 
     * @return Metrics 统计指标名称:
flux:流量,单位为 byte
bandwidth:带宽,单位为 bps
request:请求数,单位为 次
     */
    public String [] getMetrics() {
        return this.Metrics;
    }

    /**
     * Set 统计指标名称:
flux:流量,单位为 byte
bandwidth:带宽,单位为 bps
request:请求数,单位为 次
     * @param Metrics 统计指标名称:
flux:流量,单位为 byte
bandwidth:带宽,单位为 bps
request:请求数,单位为 次
     */
    public void setMetrics(String [] Metrics) {
        this.Metrics = Metrics;
    }

    /**
     * Get 指定查询域名列表 
     * @return Domains 指定查询域名列表
     */
    public String [] getDomains() {
        return this.Domains;
    }

    /**
     * Set 指定查询域名列表
     * @param Domains 指定查询域名列表
     */
    public void setDomains(String [] Domains) {
        this.Domains = Domains;
    }

    /**
     * Get 指定要查询的项目 ID,[前往查看项目 ID](https://console.cloud.tencent.com/project)
未填充域名情况下,指定项目查询,若填充了具体域名信息,以域名为主 
     * @return Projects 指定要查询的项目 ID,[前往查看项目 ID](https://console.cloud.tencent.com/project)
未填充域名情况下,指定项目查询,若填充了具体域名信息,以域名为主
     */
    public Long [] getProjects() {
        return this.Projects;
    }

    /**
     * Set 指定要查询的项目 ID,[前往查看项目 ID](https://console.cloud.tencent.com/project)
未填充域名情况下,指定项目查询,若填充了具体域名信息,以域名为主
     * @param Projects 指定要查询的项目 ID,[前往查看项目 ID](https://console.cloud.tencent.com/project)
未填充域名情况下,指定项目查询,若填充了具体域名信息,以域名为主
     */
    public void setProjects(Long [] Projects) {
        this.Projects = Projects;
    }

    /**
     * Get 列表分页起始地址,默认0。 
     * @return Offset 列表分页起始地址,默认0。
     */
    public Long getOffset() {
        return this.Offset;
    }

    /**
     * Set 列表分页起始地址,默认0。
     * @param Offset 列表分页起始地址,默认0。
     */
    public void setOffset(Long Offset) {
        this.Offset = Offset;
    }

    /**
     * Get 列表分页记录条数,默认1000,最大3000。 
     * @return Limit 列表分页记录条数,默认1000,最大3000。
     */
    public Long getLimit() {
        return this.Limit;
    }

    /**
     * Set 列表分页记录条数,默认1000,最大3000。
     * @param Limit 列表分页记录条数,默认1000,最大3000。
     */
    public void setLimit(Long Limit) {
        this.Limit = Limit;
    }

    /**
     * Get 统计区域:
mainland: 境内
oversea: 境外
global: 全部
默认 global 
     * @return Area 统计区域:
mainland: 境内
oversea: 境外
global: 全部
默认 global
     */
    public String getArea() {
        return this.Area;
    }

    /**
     * Set 统计区域:
mainland: 境内
oversea: 境外
global: 全部
默认 global
     * @param Area 统计区域:
mainland: 境内
oversea: 境外
global: 全部
默认 global
     */
    public void setArea(String Area) {
        this.Area = Area;
    }

    public DescribeEcdnDomainStatisticsRequest() {
    }

    /**
     * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
     *       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
     */
    public DescribeEcdnDomainStatisticsRequest(DescribeEcdnDomainStatisticsRequest source) {
        if (source.StartTime != null) {
            this.StartTime = new String(source.StartTime);
        }
        if (source.EndTime != null) {
            this.EndTime = new String(source.EndTime);
        }
        if (source.Metrics != null) {
            this.Metrics = new String[source.Metrics.length];
            for (int i = 0; i < source.Metrics.length; i++) {
                this.Metrics[i] = new String(source.Metrics[i]);
            }
        }
        if (source.Domains != null) {
            this.Domains = new String[source.Domains.length];
            for (int i = 0; i < source.Domains.length; i++) {
                this.Domains[i] = new String(source.Domains[i]);
            }
        }
        if (source.Projects != null) {
            this.Projects = new Long[source.Projects.length];
            for (int i = 0; i < source.Projects.length; i++) {
                this.Projects[i] = new Long(source.Projects[i]);
            }
        }
        if (source.Offset != null) {
            this.Offset = new Long(source.Offset);
        }
        if (source.Limit != null) {
            this.Limit = new Long(source.Limit);
        }
        if (source.Area != null) {
            this.Area = new String(source.Area);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "StartTime", this.StartTime);
        this.setParamSimple(map, prefix + "EndTime", this.EndTime);
        this.setParamArraySimple(map, prefix + "Metrics.", this.Metrics);
        this.setParamArraySimple(map, prefix + "Domains.", this.Domains);
        this.setParamArraySimple(map, prefix + "Projects.", this.Projects);
        this.setParamSimple(map, prefix + "Offset", this.Offset);
        this.setParamSimple(map, prefix + "Limit", this.Limit);
        this.setParamSimple(map, prefix + "Area", this.Area);

    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy