代码修改后的版本,全部提交

This commit is contained in:
ss001
2026-02-07 15:48:27 +08:00
parent cccbaa37c9
commit c2cda58c65
15604 changed files with 2455502 additions and 0 deletions

View File

@@ -0,0 +1,80 @@
/*
* Copyright (c) 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.
*/
namespace TencentCloud.Vod.V20180717.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeStorageDetailsRequest : AbstractModel
{
/// <summary>
/// 起始时间,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#52)。
/// </summary>
[JsonProperty("StartTime")]
public string StartTime{ get; set; }
/// <summary>
/// 结束时间,需大于开始日期,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#52)。
/// </summary>
[JsonProperty("EndTime")]
public string EndTime{ get; set; }
/// <summary>
/// 查询时间间隔,有效值:
/// <li>Minute每分钟一个统计数据。</li>
/// <li>Hour每小时一个统计数据。</li>
/// <li>Day每天一个统计数据。</li>
/// 默认按时间跨度决定小于1小时按分钟小于等于7天按小时大于7天按天展示。
/// </summary>
[JsonProperty("Interval")]
public string Interval{ get; set; }
/// <summary>
/// 查询的存储类型,有效值:
/// <li>TotalStorage存储总量。</li>
/// <li>StandardStorage标准存储。</li>
/// <li>InfrequentStorage低频存储。</li>
/// 默认值为 TotalStorage。
/// </summary>
[JsonProperty("StorageType")]
public string StorageType{ get; set; }
/// <summary>
/// 点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源则将该字段填写为子应用 ID否则无需填写该字段。
/// 当该字段为1时表示以管理员身份查询所有子应用含主应用的用量合计。
/// </summary>
[JsonProperty("SubAppId")]
public ulong? SubAppId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "StartTime", this.StartTime);
this.SetParamSimple(map, prefix + "EndTime", this.EndTime);
this.SetParamSimple(map, prefix + "Interval", this.Interval);
this.SetParamSimple(map, prefix + "StorageType", this.StorageType);
this.SetParamSimple(map, prefix + "SubAppId", this.SubAppId);
}
}
}