tencentcloud-sdk-nodejs-cdn 4.1.131 → 4.1.137

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-cdn",
3
- "version": "4.1.131",
3
+ "version": "4.1.137",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -275,8 +275,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
275
275
  */
276
276
  DescribeCdnOriginIp(req?: DescribeCdnOriginIpRequest, cb?: (error: string, rep: DescribeCdnOriginIpResponse) => void): Promise<DescribeCdnOriginIpResponse>;
277
277
  /**
278
- * DescribeBillingData 用于查询实际计费数据明细。
279
- */
278
+ * DescribeBillingData 用于查询实际计费数据明细。
279
+ 注意:
280
+ 受计费算法的影响,计费数据接口返回的数据均存在一定延时。小时结算客户预计延时3-5小时。月结算客户预计延迟4-28小时,在凌晨4点(不含4点)之前,仅能查询到前2天数据,4点(含)之后,能查询到前1天数据。若您对数据及时性较强的诉求,建议使用[监控访问数据](https://cloud.tencent.com/document/product/228/30986)。
281
+ */
280
282
  DescribeBillingData(req: DescribeBillingDataRequest, cb?: (error: string, rep: DescribeBillingDataResponse) => void): Promise<DescribeBillingDataResponse>;
281
283
  /**
282
284
  * DescribePushQuota 用于查询预热配额和每日可用量。
@@ -395,8 +395,10 @@ class Client extends TencentCloudCommon.AbstractClient {
395
395
  return this.request("DescribeCdnOriginIp", req, cb);
396
396
  }
397
397
  /**
398
- * DescribeBillingData 用于查询实际计费数据明细。
399
- */
398
+ * DescribeBillingData 用于查询实际计费数据明细。
399
+ 注意:
400
+ 受计费算法的影响,计费数据接口返回的数据均存在一定延时。小时结算客户预计延时3-5小时。月结算客户预计延迟4-28小时,在凌晨4点(不含4点)之前,仅能查询到前2天数据,4点(含)之后,能查询到前1天数据。若您对数据及时性较强的诉求,建议使用[监控访问数据](https://cloud.tencent.com/document/product/228/30986)。
401
+ */
400
402
  async DescribeBillingData(req, cb) {
401
403
  return this.request("DescribeBillingData", req, cb);
402
404
  }
@@ -4400,6 +4400,11 @@ export interface UrlRedirectRule {
4400
4400
  注意:此字段可能返回 null,表示取不到有效值。
4401
4401
  */
4402
4402
  FullMatch?: boolean;
4403
+ /**
4404
+ * pattern是否支持正则
4405
+ 注意:此字段可能返回 null,表示取不到有效值。
4406
+ */
4407
+ Regex?: boolean;
4403
4408
  }
4404
4409
  /**
4405
4410
  * 刷新/预热 可用量及配额
@@ -5476,11 +5481,11 @@ export interface DescribeBillingDataResponse {
5476
5481
  hour:1 小时粒度
5477
5482
  day:天粒度
5478
5483
  */
5479
- Interval: string;
5484
+ Interval?: string;
5480
5485
  /**
5481
5486
  * 数据明细
5482
5487
  */
5483
- Data: Array<ResourceBillingData>;
5488
+ Data?: Array<ResourceBillingData>;
5484
5489
  /**
5485
5490
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5486
5491
  */