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

com.tencentcloudapi.vod.v20180717.models.StorageStatData Maven / Gradle / Ivy

There is a newer version: 3.1.1104
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.vod.v20180717.models;

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

public class StorageStatData extends AbstractModel{

    /**
    * 点播存储的计费区域,可能值:
  • Chinese Mainland:中国境内(不包含港澳台)。
  • Outside Chinese Mainland:中国境外。
  • */ @SerializedName("Area") @Expose private String Area; /** * 当前总存储量,单位是字节。 */ @SerializedName("TotalStorage") @Expose private Long TotalStorage; /** * 当前低频存储量,单位是字节。 */ @SerializedName("InfrequentStorage") @Expose private Long InfrequentStorage; /** * 当前标准存储量,单位是字节。 */ @SerializedName("StandardStorage") @Expose private Long StandardStorage; /** * 当前归档存储量,单位是字节。 */ @SerializedName("ArchiveStorage") @Expose private Long ArchiveStorage; /** * 当前深度归档存储量,单位是字节。 */ @SerializedName("DeepArchiveStorage") @Expose private Long DeepArchiveStorage; /** * Get 点播存储的计费区域,可能值:
  • Chinese Mainland:中国境内(不包含港澳台)。
  • Outside Chinese Mainland:中国境外。
  • * @return Area 点播存储的计费区域,可能值:
  • Chinese Mainland:中国境内(不包含港澳台)。
  • Outside Chinese Mainland:中国境外。
  • */ public String getArea() { return this.Area; } /** * Set 点播存储的计费区域,可能值:
  • Chinese Mainland:中国境内(不包含港澳台)。
  • Outside Chinese Mainland:中国境外。
  • * @param Area 点播存储的计费区域,可能值:
  • Chinese Mainland:中国境内(不包含港澳台)。
  • Outside Chinese Mainland:中国境外。
  • */ public void setArea(String Area) { this.Area = Area; } /** * Get 当前总存储量,单位是字节。 * @return TotalStorage 当前总存储量,单位是字节。 */ public Long getTotalStorage() { return this.TotalStorage; } /** * Set 当前总存储量,单位是字节。 * @param TotalStorage 当前总存储量,单位是字节。 */ public void setTotalStorage(Long TotalStorage) { this.TotalStorage = TotalStorage; } /** * Get 当前低频存储量,单位是字节。 * @return InfrequentStorage 当前低频存储量,单位是字节。 */ public Long getInfrequentStorage() { return this.InfrequentStorage; } /** * Set 当前低频存储量,单位是字节。 * @param InfrequentStorage 当前低频存储量,单位是字节。 */ public void setInfrequentStorage(Long InfrequentStorage) { this.InfrequentStorage = InfrequentStorage; } /** * Get 当前标准存储量,单位是字节。 * @return StandardStorage 当前标准存储量,单位是字节。 */ public Long getStandardStorage() { return this.StandardStorage; } /** * Set 当前标准存储量,单位是字节。 * @param StandardStorage 当前标准存储量,单位是字节。 */ public void setStandardStorage(Long StandardStorage) { this.StandardStorage = StandardStorage; } /** * Get 当前归档存储量,单位是字节。 * @return ArchiveStorage 当前归档存储量,单位是字节。 */ public Long getArchiveStorage() { return this.ArchiveStorage; } /** * Set 当前归档存储量,单位是字节。 * @param ArchiveStorage 当前归档存储量,单位是字节。 */ public void setArchiveStorage(Long ArchiveStorage) { this.ArchiveStorage = ArchiveStorage; } /** * Get 当前深度归档存储量,单位是字节。 * @return DeepArchiveStorage 当前深度归档存储量,单位是字节。 */ public Long getDeepArchiveStorage() { return this.DeepArchiveStorage; } /** * Set 当前深度归档存储量,单位是字节。 * @param DeepArchiveStorage 当前深度归档存储量,单位是字节。 */ public void setDeepArchiveStorage(Long DeepArchiveStorage) { this.DeepArchiveStorage = DeepArchiveStorage; } public StorageStatData() { } /** * 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 StorageStatData(StorageStatData source) { if (source.Area != null) { this.Area = new String(source.Area); } if (source.TotalStorage != null) { this.TotalStorage = new Long(source.TotalStorage); } if (source.InfrequentStorage != null) { this.InfrequentStorage = new Long(source.InfrequentStorage); } if (source.StandardStorage != null) { this.StandardStorage = new Long(source.StandardStorage); } if (source.ArchiveStorage != null) { this.ArchiveStorage = new Long(source.ArchiveStorage); } if (source.DeepArchiveStorage != null) { this.DeepArchiveStorage = new Long(source.DeepArchiveStorage); } } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamSimple(map, prefix + "Area", this.Area); this.setParamSimple(map, prefix + "TotalStorage", this.TotalStorage); this.setParamSimple(map, prefix + "InfrequentStorage", this.InfrequentStorage); this.setParamSimple(map, prefix + "StandardStorage", this.StandardStorage); this.setParamSimple(map, prefix + "ArchiveStorage", this.ArchiveStorage); this.setParamSimple(map, prefix + "DeepArchiveStorage", this.DeepArchiveStorage); } }




    © 2015 - 2024 Weber Informatics LLC | Privacy Policy