@huaweicloud/huaweicloud-sdk-cdn 3.1.30 → 3.1.31
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +2 -2
- package/v1/CdnRegion.js +1 -2
- package/v2/CdnRegion.js +1 -2
- package/v2/model/DomainsWithPort.d.ts +0 -12
- package/v2/model/DomainsWithPort.js +0 -42
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@huaweicloud/huaweicloud-sdk-cdn",
|
3
|
-
"version": "3.1.
|
3
|
+
"version": "3.1.31",
|
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.
|
17
|
+
"@huaweicloud/huaweicloud-sdk-core": "^3.1.31"
|
18
18
|
}
|
19
19
|
}
|
package/v1/CdnRegion.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.CdnRegion = void 0;
|
4
4
|
var region_1 = require("@huaweicloud/huaweicloud-sdk-core/region/region");
|
5
|
-
var CdnRegion = /** @class */ (function () {
|
5
|
+
var CdnRegion = exports.CdnRegion = /** @class */ (function () {
|
6
6
|
function CdnRegion() {
|
7
7
|
}
|
8
8
|
CdnRegion.valueOf = function (regionId) {
|
@@ -23,4 +23,3 @@ var CdnRegion = /** @class */ (function () {
|
|
23
23
|
};
|
24
24
|
return CdnRegion;
|
25
25
|
}());
|
26
|
-
exports.CdnRegion = CdnRegion;
|
package/v2/CdnRegion.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.CdnRegion = void 0;
|
4
4
|
var region_1 = require("@huaweicloud/huaweicloud-sdk-core/region/region");
|
5
|
-
var CdnRegion = /** @class */ (function () {
|
5
|
+
var CdnRegion = exports.CdnRegion = /** @class */ (function () {
|
6
6
|
function CdnRegion() {
|
7
7
|
}
|
8
8
|
CdnRegion.valueOf = function (regionId) {
|
@@ -23,4 +23,3 @@ var CdnRegion = /** @class */ (function () {
|
|
23
23
|
};
|
24
24
|
return CdnRegion;
|
25
25
|
}());
|
26
|
-
exports.CdnRegion = CdnRegion;
|
@@ -11,9 +11,6 @@ export declare class DomainsWithPort {
|
|
11
11
|
disabled?: number;
|
12
12
|
locked?: number;
|
13
13
|
private 'service_area'?;
|
14
|
-
private 'banned_reason'?;
|
15
|
-
private 'locked_reason'?;
|
16
|
-
private 'enterprise_project_id'?;
|
17
14
|
constructor();
|
18
15
|
withId(id: string): DomainsWithPort;
|
19
16
|
withBusinessType(businessType: string): DomainsWithPort;
|
@@ -38,15 +35,6 @@ export declare class DomainsWithPort {
|
|
38
35
|
withServiceArea(serviceArea: DomainsWithPortServiceAreaEnum): DomainsWithPort;
|
39
36
|
set serviceArea(serviceArea: DomainsWithPortServiceAreaEnum | undefined);
|
40
37
|
get serviceArea(): DomainsWithPortServiceAreaEnum | undefined;
|
41
|
-
withBannedReason(bannedReason: string): DomainsWithPort;
|
42
|
-
set bannedReason(bannedReason: string | undefined);
|
43
|
-
get bannedReason(): string | undefined;
|
44
|
-
withLockedReason(lockedReason: string): DomainsWithPort;
|
45
|
-
set lockedReason(lockedReason: string | undefined);
|
46
|
-
get lockedReason(): string | undefined;
|
47
|
-
withEnterpriseProjectId(enterpriseProjectId: string): DomainsWithPort;
|
48
|
-
set enterpriseProjectId(enterpriseProjectId: string | undefined);
|
49
|
-
get enterpriseProjectId(): string | undefined;
|
50
38
|
}
|
51
39
|
/**
|
52
40
|
* @export
|
@@ -108,48 +108,6 @@ var DomainsWithPort = /** @class */ (function () {
|
|
108
108
|
enumerable: false,
|
109
109
|
configurable: true
|
110
110
|
});
|
111
|
-
DomainsWithPort.prototype.withBannedReason = function (bannedReason) {
|
112
|
-
this['banned_reason'] = bannedReason;
|
113
|
-
return this;
|
114
|
-
};
|
115
|
-
Object.defineProperty(DomainsWithPort.prototype, "bannedReason", {
|
116
|
-
get: function () {
|
117
|
-
return this['banned_reason'];
|
118
|
-
},
|
119
|
-
set: function (bannedReason) {
|
120
|
-
this['banned_reason'] = bannedReason;
|
121
|
-
},
|
122
|
-
enumerable: false,
|
123
|
-
configurable: true
|
124
|
-
});
|
125
|
-
DomainsWithPort.prototype.withLockedReason = function (lockedReason) {
|
126
|
-
this['locked_reason'] = lockedReason;
|
127
|
-
return this;
|
128
|
-
};
|
129
|
-
Object.defineProperty(DomainsWithPort.prototype, "lockedReason", {
|
130
|
-
get: function () {
|
131
|
-
return this['locked_reason'];
|
132
|
-
},
|
133
|
-
set: function (lockedReason) {
|
134
|
-
this['locked_reason'] = lockedReason;
|
135
|
-
},
|
136
|
-
enumerable: false,
|
137
|
-
configurable: true
|
138
|
-
});
|
139
|
-
DomainsWithPort.prototype.withEnterpriseProjectId = function (enterpriseProjectId) {
|
140
|
-
this['enterprise_project_id'] = enterpriseProjectId;
|
141
|
-
return this;
|
142
|
-
};
|
143
|
-
Object.defineProperty(DomainsWithPort.prototype, "enterpriseProjectId", {
|
144
|
-
get: function () {
|
145
|
-
return this['enterprise_project_id'];
|
146
|
-
},
|
147
|
-
set: function (enterpriseProjectId) {
|
148
|
-
this['enterprise_project_id'] = enterpriseProjectId;
|
149
|
-
},
|
150
|
-
enumerable: false,
|
151
|
-
configurable: true
|
152
|
-
});
|
153
111
|
return DomainsWithPort;
|
154
112
|
}());
|
155
113
|
exports.DomainsWithPort = DomainsWithPort;
|