@huaweicloud/huaweicloud-sdk-cdn 3.1.32 → 3.1.34

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@huaweicloud/huaweicloud-sdk-cdn",
3
- "version": "3.1.32",
3
+ "version": "3.1.34",
4
4
  "description": "Huaweicloud SDK for cdn",
5
5
  "main": "huaweicloud-sdk-cdn.js",
6
6
  "typings": "huaweicloud-sdk-cdn.d.ts",
@@ -14,6 +14,6 @@
14
14
  "author": "HuaweiCloud_SDK",
15
15
  "license": "Apache-2.0",
16
16
  "dependencies": {
17
- "@huaweicloud/huaweicloud-sdk-core": "^3.1.32"
17
+ "@huaweicloud/huaweicloud-sdk-core": "^3.1.34"
18
18
  }
19
19
  }
@@ -1,8 +1,10 @@
1
1
  export declare class RefreshTaskRequestBody {
2
2
  type?: RefreshTaskRequestBodyTypeEnum;
3
+ mode?: boolean;
3
4
  urls: Array<string>;
4
5
  constructor(urls?: any);
5
6
  withType(type: RefreshTaskRequestBodyTypeEnum): RefreshTaskRequestBody;
7
+ withMode(mode: boolean): RefreshTaskRequestBody;
6
8
  withUrls(urls: Array<string>): RefreshTaskRequestBody;
7
9
  }
8
10
  /**
@@ -9,6 +9,10 @@ var RefreshTaskRequestBody = /** @class */ (function () {
9
9
  this['type'] = type;
10
10
  return this;
11
11
  };
12
+ RefreshTaskRequestBody.prototype.withMode = function (mode) {
13
+ this['mode'] = mode;
14
+ return this;
15
+ };
12
16
  RefreshTaskRequestBody.prototype.withUrls = function (urls) {
13
17
  this['urls'] = urls;
14
18
  return this;