@huaweicloud/huaweicloud-sdk-vpc 3.0.12-beta → 3.0.16-beta
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 +2 -2
- package/v2/VpcClient.js +87 -87
- package/v2/model/CreateRouteTableReq.d.ts +3 -3
- package/v2/model/ListSubnetsByTagsRequestBody.d.ts +4 -4
- package/v2/model/ListVpcsByTagsRequestBody.d.ts +4 -4
- package/v2/model/RouteTableResp.d.ts +3 -3
- package/v2/model/RouteTableRoute.d.ts +11 -0
- package/v2/model/RouteTableRoute.js +28 -0
- package/v2/model/UpdateRouteTableReq.d.ts +3 -3
- package/v2/public-api.d.ts +1 -0
- package/v2/public-api.js +1 -0
- package/v3/VpcClient.js +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@huaweicloud/huaweicloud-sdk-vpc",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.16-beta",
|
|
4
4
|
"description": "Huaweicloud SDK for vpc",
|
|
5
5
|
"main": "huaweicloud-sdk-vpc.js",
|
|
6
6
|
"typings": "huaweicloud-sdk-vpc.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.0.
|
|
17
|
+
"@huaweicloud/huaweicloud-sdk-core": "^3.0.16-beta"
|
|
18
18
|
}
|
|
19
19
|
}
|
package/v2/VpcClient.js
CHANGED
|
@@ -120,7 +120,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
120
120
|
* @throws {RequiredError}
|
|
121
121
|
*/
|
|
122
122
|
VpcClient.prototype.acceptVpcPeering = function (acceptVpcPeeringRequest) {
|
|
123
|
-
var options = exports.ParamCreater().acceptVpcPeering(acceptVpcPeeringRequest);
|
|
123
|
+
var options = (0, exports.ParamCreater)().acceptVpcPeering(acceptVpcPeeringRequest);
|
|
124
124
|
options['responseHeaders'] = [''];
|
|
125
125
|
// @ts-ignore
|
|
126
126
|
return this.hcClient.sendRequest(options);
|
|
@@ -134,7 +134,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
134
134
|
* @throws {RequiredError}
|
|
135
135
|
*/
|
|
136
136
|
VpcClient.prototype.associateRouteTable = function (associateRouteTableRequest) {
|
|
137
|
-
var options = exports.ParamCreater().associateRouteTable(associateRouteTableRequest);
|
|
137
|
+
var options = (0, exports.ParamCreater)().associateRouteTable(associateRouteTableRequest);
|
|
138
138
|
options['responseHeaders'] = [''];
|
|
139
139
|
// @ts-ignore
|
|
140
140
|
return this.hcClient.sendRequest(options);
|
|
@@ -148,7 +148,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
148
148
|
* @throws {RequiredError}
|
|
149
149
|
*/
|
|
150
150
|
VpcClient.prototype.batchCreateSubnetTags = function (batchCreateSubnetTagsRequest) {
|
|
151
|
-
var options = exports.ParamCreater().batchCreateSubnetTags(batchCreateSubnetTagsRequest);
|
|
151
|
+
var options = (0, exports.ParamCreater)().batchCreateSubnetTags(batchCreateSubnetTagsRequest);
|
|
152
152
|
options['responseHeaders'] = [''];
|
|
153
153
|
// @ts-ignore
|
|
154
154
|
return this.hcClient.sendRequest(options);
|
|
@@ -162,7 +162,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
162
162
|
* @throws {RequiredError}
|
|
163
163
|
*/
|
|
164
164
|
VpcClient.prototype.batchDeleteSubnetTags = function (batchDeleteSubnetTagsRequest) {
|
|
165
|
-
var options = exports.ParamCreater().batchDeleteSubnetTags(batchDeleteSubnetTagsRequest);
|
|
165
|
+
var options = (0, exports.ParamCreater)().batchDeleteSubnetTags(batchDeleteSubnetTagsRequest);
|
|
166
166
|
options['responseHeaders'] = [''];
|
|
167
167
|
// @ts-ignore
|
|
168
168
|
return this.hcClient.sendRequest(options);
|
|
@@ -175,7 +175,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
175
175
|
* @throws {RequiredError}
|
|
176
176
|
*/
|
|
177
177
|
VpcClient.prototype.createPort = function (createPortRequest) {
|
|
178
|
-
var options = exports.ParamCreater().createPort(createPortRequest);
|
|
178
|
+
var options = (0, exports.ParamCreater)().createPort(createPortRequest);
|
|
179
179
|
options['responseHeaders'] = [''];
|
|
180
180
|
// @ts-ignore
|
|
181
181
|
return this.hcClient.sendRequest(options);
|
|
@@ -188,7 +188,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
188
188
|
* @throws {RequiredError}
|
|
189
189
|
*/
|
|
190
190
|
VpcClient.prototype.createRouteTable = function (createRouteTableRequest) {
|
|
191
|
-
var options = exports.ParamCreater().createRouteTable(createRouteTableRequest);
|
|
191
|
+
var options = (0, exports.ParamCreater)().createRouteTable(createRouteTableRequest);
|
|
192
192
|
options['responseHeaders'] = [''];
|
|
193
193
|
// @ts-ignore
|
|
194
194
|
return this.hcClient.sendRequest(options);
|
|
@@ -201,7 +201,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
201
201
|
* @throws {RequiredError}
|
|
202
202
|
*/
|
|
203
203
|
VpcClient.prototype.createSecurityGroup = function (createSecurityGroupRequest) {
|
|
204
|
-
var options = exports.ParamCreater().createSecurityGroup(createSecurityGroupRequest);
|
|
204
|
+
var options = (0, exports.ParamCreater)().createSecurityGroup(createSecurityGroupRequest);
|
|
205
205
|
options['responseHeaders'] = [''];
|
|
206
206
|
// @ts-ignore
|
|
207
207
|
return this.hcClient.sendRequest(options);
|
|
@@ -214,7 +214,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
214
214
|
* @throws {RequiredError}
|
|
215
215
|
*/
|
|
216
216
|
VpcClient.prototype.createSecurityGroupRule = function (createSecurityGroupRuleRequest) {
|
|
217
|
-
var options = exports.ParamCreater().createSecurityGroupRule(createSecurityGroupRuleRequest);
|
|
217
|
+
var options = (0, exports.ParamCreater)().createSecurityGroupRule(createSecurityGroupRuleRequest);
|
|
218
218
|
options['responseHeaders'] = [''];
|
|
219
219
|
// @ts-ignore
|
|
220
220
|
return this.hcClient.sendRequest(options);
|
|
@@ -227,7 +227,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
227
227
|
* @throws {RequiredError}
|
|
228
228
|
*/
|
|
229
229
|
VpcClient.prototype.createSubnet = function (createSubnetRequest) {
|
|
230
|
-
var options = exports.ParamCreater().createSubnet(createSubnetRequest);
|
|
230
|
+
var options = (0, exports.ParamCreater)().createSubnet(createSubnetRequest);
|
|
231
231
|
options['responseHeaders'] = [''];
|
|
232
232
|
// @ts-ignore
|
|
233
233
|
return this.hcClient.sendRequest(options);
|
|
@@ -241,7 +241,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
241
241
|
* @throws {RequiredError}
|
|
242
242
|
*/
|
|
243
243
|
VpcClient.prototype.createSubnetTag = function (createSubnetTagRequest) {
|
|
244
|
-
var options = exports.ParamCreater().createSubnetTag(createSubnetTagRequest);
|
|
244
|
+
var options = (0, exports.ParamCreater)().createSubnetTag(createSubnetTagRequest);
|
|
245
245
|
options['responseHeaders'] = [''];
|
|
246
246
|
// @ts-ignore
|
|
247
247
|
return this.hcClient.sendRequest(options);
|
|
@@ -254,7 +254,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
254
254
|
* @throws {RequiredError}
|
|
255
255
|
*/
|
|
256
256
|
VpcClient.prototype.createVpcPeering = function (createVpcPeeringRequest) {
|
|
257
|
-
var options = exports.ParamCreater().createVpcPeering(createVpcPeeringRequest);
|
|
257
|
+
var options = (0, exports.ParamCreater)().createVpcPeering(createVpcPeeringRequest);
|
|
258
258
|
options['responseHeaders'] = [''];
|
|
259
259
|
// @ts-ignore
|
|
260
260
|
return this.hcClient.sendRequest(options);
|
|
@@ -267,7 +267,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
267
267
|
* @throws {RequiredError}
|
|
268
268
|
*/
|
|
269
269
|
VpcClient.prototype.deletePort = function (deletePortRequest) {
|
|
270
|
-
var options = exports.ParamCreater().deletePort(deletePortRequest);
|
|
270
|
+
var options = (0, exports.ParamCreater)().deletePort(deletePortRequest);
|
|
271
271
|
options['responseHeaders'] = [''];
|
|
272
272
|
// @ts-ignore
|
|
273
273
|
return this.hcClient.sendRequest(options);
|
|
@@ -280,7 +280,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
280
280
|
* @throws {RequiredError}
|
|
281
281
|
*/
|
|
282
282
|
VpcClient.prototype.deleteRouteTable = function (deleteRouteTableRequest) {
|
|
283
|
-
var options = exports.ParamCreater().deleteRouteTable(deleteRouteTableRequest);
|
|
283
|
+
var options = (0, exports.ParamCreater)().deleteRouteTable(deleteRouteTableRequest);
|
|
284
284
|
options['responseHeaders'] = [''];
|
|
285
285
|
// @ts-ignore
|
|
286
286
|
return this.hcClient.sendRequest(options);
|
|
@@ -293,7 +293,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
293
293
|
* @throws {RequiredError}
|
|
294
294
|
*/
|
|
295
295
|
VpcClient.prototype.deleteSecurityGroup = function (deleteSecurityGroupRequest) {
|
|
296
|
-
var options = exports.ParamCreater().deleteSecurityGroup(deleteSecurityGroupRequest);
|
|
296
|
+
var options = (0, exports.ParamCreater)().deleteSecurityGroup(deleteSecurityGroupRequest);
|
|
297
297
|
options['responseHeaders'] = [''];
|
|
298
298
|
// @ts-ignore
|
|
299
299
|
return this.hcClient.sendRequest(options);
|
|
@@ -306,7 +306,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
306
306
|
* @throws {RequiredError}
|
|
307
307
|
*/
|
|
308
308
|
VpcClient.prototype.deleteSecurityGroupRule = function (deleteSecurityGroupRuleRequest) {
|
|
309
|
-
var options = exports.ParamCreater().deleteSecurityGroupRule(deleteSecurityGroupRuleRequest);
|
|
309
|
+
var options = (0, exports.ParamCreater)().deleteSecurityGroupRule(deleteSecurityGroupRuleRequest);
|
|
310
310
|
options['responseHeaders'] = [''];
|
|
311
311
|
// @ts-ignore
|
|
312
312
|
return this.hcClient.sendRequest(options);
|
|
@@ -320,7 +320,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
320
320
|
* @throws {RequiredError}
|
|
321
321
|
*/
|
|
322
322
|
VpcClient.prototype.deleteSubnet = function (deleteSubnetRequest) {
|
|
323
|
-
var options = exports.ParamCreater().deleteSubnet(deleteSubnetRequest);
|
|
323
|
+
var options = (0, exports.ParamCreater)().deleteSubnet(deleteSubnetRequest);
|
|
324
324
|
options['responseHeaders'] = [''];
|
|
325
325
|
// @ts-ignore
|
|
326
326
|
return this.hcClient.sendRequest(options);
|
|
@@ -334,7 +334,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
334
334
|
* @throws {RequiredError}
|
|
335
335
|
*/
|
|
336
336
|
VpcClient.prototype.deleteSubnetTag = function (deleteSubnetTagRequest) {
|
|
337
|
-
var options = exports.ParamCreater().deleteSubnetTag(deleteSubnetTagRequest);
|
|
337
|
+
var options = (0, exports.ParamCreater)().deleteSubnetTag(deleteSubnetTagRequest);
|
|
338
338
|
options['responseHeaders'] = [''];
|
|
339
339
|
// @ts-ignore
|
|
340
340
|
return this.hcClient.sendRequest(options);
|
|
@@ -347,7 +347,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
347
347
|
* @throws {RequiredError}
|
|
348
348
|
*/
|
|
349
349
|
VpcClient.prototype.deleteVpcPeering = function (deleteVpcPeeringRequest) {
|
|
350
|
-
var options = exports.ParamCreater().deleteVpcPeering(deleteVpcPeeringRequest);
|
|
350
|
+
var options = (0, exports.ParamCreater)().deleteVpcPeering(deleteVpcPeeringRequest);
|
|
351
351
|
options['responseHeaders'] = [''];
|
|
352
352
|
// @ts-ignore
|
|
353
353
|
return this.hcClient.sendRequest(options);
|
|
@@ -361,7 +361,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
361
361
|
* @throws {RequiredError}
|
|
362
362
|
*/
|
|
363
363
|
VpcClient.prototype.disassociateRouteTable = function (disassociateRouteTableRequest) {
|
|
364
|
-
var options = exports.ParamCreater().disassociateRouteTable(disassociateRouteTableRequest);
|
|
364
|
+
var options = (0, exports.ParamCreater)().disassociateRouteTable(disassociateRouteTableRequest);
|
|
365
365
|
options['responseHeaders'] = [''];
|
|
366
366
|
// @ts-ignore
|
|
367
367
|
return this.hcClient.sendRequest(options);
|
|
@@ -385,7 +385,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
385
385
|
* @throws {RequiredError}
|
|
386
386
|
*/
|
|
387
387
|
VpcClient.prototype.listPorts = function (listPortsRequest) {
|
|
388
|
-
var options = exports.ParamCreater().listPorts(listPortsRequest);
|
|
388
|
+
var options = (0, exports.ParamCreater)().listPorts(listPortsRequest);
|
|
389
389
|
options['responseHeaders'] = [''];
|
|
390
390
|
// @ts-ignore
|
|
391
391
|
return this.hcClient.sendRequest(options);
|
|
@@ -402,7 +402,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
402
402
|
* @throws {RequiredError}
|
|
403
403
|
*/
|
|
404
404
|
VpcClient.prototype.listRouteTables = function (listRouteTablesRequest) {
|
|
405
|
-
var options = exports.ParamCreater().listRouteTables(listRouteTablesRequest);
|
|
405
|
+
var options = (0, exports.ParamCreater)().listRouteTables(listRouteTablesRequest);
|
|
406
406
|
options['responseHeaders'] = [''];
|
|
407
407
|
// @ts-ignore
|
|
408
408
|
return this.hcClient.sendRequest(options);
|
|
@@ -417,7 +417,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
417
417
|
* @throws {RequiredError}
|
|
418
418
|
*/
|
|
419
419
|
VpcClient.prototype.listSecurityGroupRules = function (listSecurityGroupRulesRequest) {
|
|
420
|
-
var options = exports.ParamCreater().listSecurityGroupRules(listSecurityGroupRulesRequest);
|
|
420
|
+
var options = (0, exports.ParamCreater)().listSecurityGroupRules(listSecurityGroupRulesRequest);
|
|
421
421
|
options['responseHeaders'] = [''];
|
|
422
422
|
// @ts-ignore
|
|
423
423
|
return this.hcClient.sendRequest(options);
|
|
@@ -433,7 +433,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
433
433
|
* @throws {RequiredError}
|
|
434
434
|
*/
|
|
435
435
|
VpcClient.prototype.listSecurityGroups = function (listSecurityGroupsRequest) {
|
|
436
|
-
var options = exports.ParamCreater().listSecurityGroups(listSecurityGroupsRequest);
|
|
436
|
+
var options = (0, exports.ParamCreater)().listSecurityGroups(listSecurityGroupsRequest);
|
|
437
437
|
options['responseHeaders'] = [''];
|
|
438
438
|
// @ts-ignore
|
|
439
439
|
return this.hcClient.sendRequest(options);
|
|
@@ -445,7 +445,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
445
445
|
* @throws {RequiredError}
|
|
446
446
|
*/
|
|
447
447
|
VpcClient.prototype.listSubnetTags = function () {
|
|
448
|
-
var options = exports.ParamCreater().listSubnetTags();
|
|
448
|
+
var options = (0, exports.ParamCreater)().listSubnetTags();
|
|
449
449
|
options['responseHeaders'] = [''];
|
|
450
450
|
// @ts-ignore
|
|
451
451
|
return this.hcClient.sendRequest(options);
|
|
@@ -460,7 +460,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
460
460
|
* @throws {RequiredError}
|
|
461
461
|
*/
|
|
462
462
|
VpcClient.prototype.listSubnets = function (listSubnetsRequest) {
|
|
463
|
-
var options = exports.ParamCreater().listSubnets(listSubnetsRequest);
|
|
463
|
+
var options = (0, exports.ParamCreater)().listSubnets(listSubnetsRequest);
|
|
464
464
|
options['responseHeaders'] = [''];
|
|
465
465
|
// @ts-ignore
|
|
466
466
|
return this.hcClient.sendRequest(options);
|
|
@@ -473,7 +473,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
473
473
|
* @throws {RequiredError}
|
|
474
474
|
*/
|
|
475
475
|
VpcClient.prototype.listSubnetsByTags = function (listSubnetsByTagsRequest) {
|
|
476
|
-
var options = exports.ParamCreater().listSubnetsByTags(listSubnetsByTagsRequest);
|
|
476
|
+
var options = (0, exports.ParamCreater)().listSubnetsByTags(listSubnetsByTagsRequest);
|
|
477
477
|
options['responseHeaders'] = [''];
|
|
478
478
|
// @ts-ignore
|
|
479
479
|
return this.hcClient.sendRequest(options);
|
|
@@ -492,7 +492,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
492
492
|
* @throws {RequiredError}
|
|
493
493
|
*/
|
|
494
494
|
VpcClient.prototype.listVpcPeerings = function (listVpcPeeringsRequest) {
|
|
495
|
-
var options = exports.ParamCreater().listVpcPeerings(listVpcPeeringsRequest);
|
|
495
|
+
var options = (0, exports.ParamCreater)().listVpcPeerings(listVpcPeeringsRequest);
|
|
496
496
|
options['responseHeaders'] = [''];
|
|
497
497
|
// @ts-ignore
|
|
498
498
|
return this.hcClient.sendRequest(options);
|
|
@@ -505,7 +505,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
505
505
|
* @throws {RequiredError}
|
|
506
506
|
*/
|
|
507
507
|
VpcClient.prototype.rejectVpcPeering = function (rejectVpcPeeringRequest) {
|
|
508
|
-
var options = exports.ParamCreater().rejectVpcPeering(rejectVpcPeeringRequest);
|
|
508
|
+
var options = (0, exports.ParamCreater)().rejectVpcPeering(rejectVpcPeeringRequest);
|
|
509
509
|
options['responseHeaders'] = [''];
|
|
510
510
|
// @ts-ignore
|
|
511
511
|
return this.hcClient.sendRequest(options);
|
|
@@ -518,7 +518,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
518
518
|
* @throws {RequiredError}
|
|
519
519
|
*/
|
|
520
520
|
VpcClient.prototype.showPort = function (showPortRequest) {
|
|
521
|
-
var options = exports.ParamCreater().showPort(showPortRequest);
|
|
521
|
+
var options = (0, exports.ParamCreater)().showPort(showPortRequest);
|
|
522
522
|
options['responseHeaders'] = [''];
|
|
523
523
|
// @ts-ignore
|
|
524
524
|
return this.hcClient.sendRequest(options);
|
|
@@ -531,7 +531,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
531
531
|
* @throws {RequiredError}
|
|
532
532
|
*/
|
|
533
533
|
VpcClient.prototype.showQuota = function (showQuotaRequest) {
|
|
534
|
-
var options = exports.ParamCreater().showQuota(showQuotaRequest);
|
|
534
|
+
var options = (0, exports.ParamCreater)().showQuota(showQuotaRequest);
|
|
535
535
|
options['responseHeaders'] = [''];
|
|
536
536
|
// @ts-ignore
|
|
537
537
|
return this.hcClient.sendRequest(options);
|
|
@@ -544,7 +544,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
544
544
|
* @throws {RequiredError}
|
|
545
545
|
*/
|
|
546
546
|
VpcClient.prototype.showRouteTable = function (showRouteTableRequest) {
|
|
547
|
-
var options = exports.ParamCreater().showRouteTable(showRouteTableRequest);
|
|
547
|
+
var options = (0, exports.ParamCreater)().showRouteTable(showRouteTableRequest);
|
|
548
548
|
options['responseHeaders'] = [''];
|
|
549
549
|
// @ts-ignore
|
|
550
550
|
return this.hcClient.sendRequest(options);
|
|
@@ -557,7 +557,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
557
557
|
* @throws {RequiredError}
|
|
558
558
|
*/
|
|
559
559
|
VpcClient.prototype.showSecurityGroup = function (showSecurityGroupRequest) {
|
|
560
|
-
var options = exports.ParamCreater().showSecurityGroup(showSecurityGroupRequest);
|
|
560
|
+
var options = (0, exports.ParamCreater)().showSecurityGroup(showSecurityGroupRequest);
|
|
561
561
|
options['responseHeaders'] = [''];
|
|
562
562
|
// @ts-ignore
|
|
563
563
|
return this.hcClient.sendRequest(options);
|
|
@@ -570,7 +570,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
570
570
|
* @throws {RequiredError}
|
|
571
571
|
*/
|
|
572
572
|
VpcClient.prototype.showSecurityGroupRule = function (showSecurityGroupRuleRequest) {
|
|
573
|
-
var options = exports.ParamCreater().showSecurityGroupRule(showSecurityGroupRuleRequest);
|
|
573
|
+
var options = (0, exports.ParamCreater)().showSecurityGroupRule(showSecurityGroupRuleRequest);
|
|
574
574
|
options['responseHeaders'] = [''];
|
|
575
575
|
// @ts-ignore
|
|
576
576
|
return this.hcClient.sendRequest(options);
|
|
@@ -583,7 +583,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
583
583
|
* @throws {RequiredError}
|
|
584
584
|
*/
|
|
585
585
|
VpcClient.prototype.showSubnet = function (showSubnetRequest) {
|
|
586
|
-
var options = exports.ParamCreater().showSubnet(showSubnetRequest);
|
|
586
|
+
var options = (0, exports.ParamCreater)().showSubnet(showSubnetRequest);
|
|
587
587
|
options['responseHeaders'] = [''];
|
|
588
588
|
// @ts-ignore
|
|
589
589
|
return this.hcClient.sendRequest(options);
|
|
@@ -596,7 +596,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
596
596
|
* @throws {RequiredError}
|
|
597
597
|
*/
|
|
598
598
|
VpcClient.prototype.showSubnetTags = function (showSubnetTagsRequest) {
|
|
599
|
-
var options = exports.ParamCreater().showSubnetTags(showSubnetTagsRequest);
|
|
599
|
+
var options = (0, exports.ParamCreater)().showSubnetTags(showSubnetTagsRequest);
|
|
600
600
|
options['responseHeaders'] = [''];
|
|
601
601
|
// @ts-ignore
|
|
602
602
|
return this.hcClient.sendRequest(options);
|
|
@@ -609,7 +609,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
609
609
|
* @throws {RequiredError}
|
|
610
610
|
*/
|
|
611
611
|
VpcClient.prototype.showVpcPeering = function (showVpcPeeringRequest) {
|
|
612
|
-
var options = exports.ParamCreater().showVpcPeering(showVpcPeeringRequest);
|
|
612
|
+
var options = (0, exports.ParamCreater)().showVpcPeering(showVpcPeeringRequest);
|
|
613
613
|
options['responseHeaders'] = [''];
|
|
614
614
|
// @ts-ignore
|
|
615
615
|
return this.hcClient.sendRequest(options);
|
|
@@ -623,7 +623,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
623
623
|
* @throws {RequiredError}
|
|
624
624
|
*/
|
|
625
625
|
VpcClient.prototype.updatePort = function (updatePortRequest) {
|
|
626
|
-
var options = exports.ParamCreater().updatePort(updatePortRequest);
|
|
626
|
+
var options = (0, exports.ParamCreater)().updatePort(updatePortRequest);
|
|
627
627
|
options['responseHeaders'] = [''];
|
|
628
628
|
// @ts-ignore
|
|
629
629
|
return this.hcClient.sendRequest(options);
|
|
@@ -637,7 +637,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
637
637
|
* @throws {RequiredError}
|
|
638
638
|
*/
|
|
639
639
|
VpcClient.prototype.updateRouteTable = function (updateRouteTableRequest) {
|
|
640
|
-
var options = exports.ParamCreater().updateRouteTable(updateRouteTableRequest);
|
|
640
|
+
var options = (0, exports.ParamCreater)().updateRouteTable(updateRouteTableRequest);
|
|
641
641
|
options['responseHeaders'] = [''];
|
|
642
642
|
// @ts-ignore
|
|
643
643
|
return this.hcClient.sendRequest(options);
|
|
@@ -652,7 +652,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
652
652
|
* @throws {RequiredError}
|
|
653
653
|
*/
|
|
654
654
|
VpcClient.prototype.updateSubnet = function (updateSubnetRequest) {
|
|
655
|
-
var options = exports.ParamCreater().updateSubnet(updateSubnetRequest);
|
|
655
|
+
var options = (0, exports.ParamCreater)().updateSubnet(updateSubnetRequest);
|
|
656
656
|
options['responseHeaders'] = [''];
|
|
657
657
|
// @ts-ignore
|
|
658
658
|
return this.hcClient.sendRequest(options);
|
|
@@ -666,7 +666,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
666
666
|
* @throws {RequiredError}
|
|
667
667
|
*/
|
|
668
668
|
VpcClient.prototype.updateVpcPeering = function (updateVpcPeeringRequest) {
|
|
669
|
-
var options = exports.ParamCreater().updateVpcPeering(updateVpcPeeringRequest);
|
|
669
|
+
var options = (0, exports.ParamCreater)().updateVpcPeering(updateVpcPeeringRequest);
|
|
670
670
|
options['responseHeaders'] = [''];
|
|
671
671
|
// @ts-ignore
|
|
672
672
|
return this.hcClient.sendRequest(options);
|
|
@@ -679,7 +679,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
679
679
|
* @throws {RequiredError}
|
|
680
680
|
*/
|
|
681
681
|
VpcClient.prototype.createPrivateip = function (createPrivateipRequest) {
|
|
682
|
-
var options = exports.ParamCreater().createPrivateip(createPrivateipRequest);
|
|
682
|
+
var options = (0, exports.ParamCreater)().createPrivateip(createPrivateipRequest);
|
|
683
683
|
options['responseHeaders'] = [''];
|
|
684
684
|
// @ts-ignore
|
|
685
685
|
return this.hcClient.sendRequest(options);
|
|
@@ -692,7 +692,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
692
692
|
* @throws {RequiredError}
|
|
693
693
|
*/
|
|
694
694
|
VpcClient.prototype.deletePrivateip = function (deletePrivateipRequest) {
|
|
695
|
-
var options = exports.ParamCreater().deletePrivateip(deletePrivateipRequest);
|
|
695
|
+
var options = (0, exports.ParamCreater)().deletePrivateip(deletePrivateipRequest);
|
|
696
696
|
options['responseHeaders'] = [''];
|
|
697
697
|
// @ts-ignore
|
|
698
698
|
return this.hcClient.sendRequest(options);
|
|
@@ -707,7 +707,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
707
707
|
* @throws {RequiredError}
|
|
708
708
|
*/
|
|
709
709
|
VpcClient.prototype.listPrivateips = function (listPrivateipsRequest) {
|
|
710
|
-
var options = exports.ParamCreater().listPrivateips(listPrivateipsRequest);
|
|
710
|
+
var options = (0, exports.ParamCreater)().listPrivateips(listPrivateipsRequest);
|
|
711
711
|
options['responseHeaders'] = [''];
|
|
712
712
|
// @ts-ignore
|
|
713
713
|
return this.hcClient.sendRequest(options);
|
|
@@ -720,7 +720,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
720
720
|
* @throws {RequiredError}
|
|
721
721
|
*/
|
|
722
722
|
VpcClient.prototype.showNetworkIpAvailabilities = function (showNetworkIpAvailabilitiesRequest) {
|
|
723
|
-
var options = exports.ParamCreater().showNetworkIpAvailabilities(showNetworkIpAvailabilitiesRequest);
|
|
723
|
+
var options = (0, exports.ParamCreater)().showNetworkIpAvailabilities(showNetworkIpAvailabilitiesRequest);
|
|
724
724
|
options['responseHeaders'] = [''];
|
|
725
725
|
// @ts-ignore
|
|
726
726
|
return this.hcClient.sendRequest(options);
|
|
@@ -733,7 +733,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
733
733
|
* @throws {RequiredError}
|
|
734
734
|
*/
|
|
735
735
|
VpcClient.prototype.showPrivateip = function (showPrivateipRequest) {
|
|
736
|
-
var options = exports.ParamCreater().showPrivateip(showPrivateipRequest);
|
|
736
|
+
var options = (0, exports.ParamCreater)().showPrivateip(showPrivateipRequest);
|
|
737
737
|
options['responseHeaders'] = [''];
|
|
738
738
|
// @ts-ignore
|
|
739
739
|
return this.hcClient.sendRequest(options);
|
|
@@ -746,7 +746,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
746
746
|
* @throws {RequiredError}
|
|
747
747
|
*/
|
|
748
748
|
VpcClient.prototype.neutronCreateSecurityGroup = function (neutronCreateSecurityGroupRequest) {
|
|
749
|
-
var options = exports.ParamCreater().neutronCreateSecurityGroup(neutronCreateSecurityGroupRequest);
|
|
749
|
+
var options = (0, exports.ParamCreater)().neutronCreateSecurityGroup(neutronCreateSecurityGroupRequest);
|
|
750
750
|
options['responseHeaders'] = [''];
|
|
751
751
|
// @ts-ignore
|
|
752
752
|
return this.hcClient.sendRequest(options);
|
|
@@ -759,7 +759,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
759
759
|
* @throws {RequiredError}
|
|
760
760
|
*/
|
|
761
761
|
VpcClient.prototype.neutronCreateSecurityGroupRule = function (neutronCreateSecurityGroupRuleRequest) {
|
|
762
|
-
var options = exports.ParamCreater().neutronCreateSecurityGroupRule(neutronCreateSecurityGroupRuleRequest);
|
|
762
|
+
var options = (0, exports.ParamCreater)().neutronCreateSecurityGroupRule(neutronCreateSecurityGroupRuleRequest);
|
|
763
763
|
options['responseHeaders'] = [''];
|
|
764
764
|
// @ts-ignore
|
|
765
765
|
return this.hcClient.sendRequest(options);
|
|
@@ -772,7 +772,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
772
772
|
* @throws {RequiredError}
|
|
773
773
|
*/
|
|
774
774
|
VpcClient.prototype.neutronDeleteSecurityGroup = function (neutronDeleteSecurityGroupRequest) {
|
|
775
|
-
var options = exports.ParamCreater().neutronDeleteSecurityGroup(neutronDeleteSecurityGroupRequest);
|
|
775
|
+
var options = (0, exports.ParamCreater)().neutronDeleteSecurityGroup(neutronDeleteSecurityGroupRequest);
|
|
776
776
|
options['responseHeaders'] = [''];
|
|
777
777
|
// @ts-ignore
|
|
778
778
|
return this.hcClient.sendRequest(options);
|
|
@@ -785,7 +785,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
785
785
|
* @throws {RequiredError}
|
|
786
786
|
*/
|
|
787
787
|
VpcClient.prototype.neutronDeleteSecurityGroupRule = function (neutronDeleteSecurityGroupRuleRequest) {
|
|
788
|
-
var options = exports.ParamCreater().neutronDeleteSecurityGroupRule(neutronDeleteSecurityGroupRuleRequest);
|
|
788
|
+
var options = (0, exports.ParamCreater)().neutronDeleteSecurityGroupRule(neutronDeleteSecurityGroupRuleRequest);
|
|
789
789
|
options['responseHeaders'] = [''];
|
|
790
790
|
// @ts-ignore
|
|
791
791
|
return this.hcClient.sendRequest(options);
|
|
@@ -810,7 +810,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
810
810
|
* @throws {RequiredError}
|
|
811
811
|
*/
|
|
812
812
|
VpcClient.prototype.neutronListSecurityGroupRules = function (neutronListSecurityGroupRulesRequest) {
|
|
813
|
-
var options = exports.ParamCreater().neutronListSecurityGroupRules(neutronListSecurityGroupRulesRequest);
|
|
813
|
+
var options = (0, exports.ParamCreater)().neutronListSecurityGroupRules(neutronListSecurityGroupRulesRequest);
|
|
814
814
|
options['responseHeaders'] = [''];
|
|
815
815
|
// @ts-ignore
|
|
816
816
|
return this.hcClient.sendRequest(options);
|
|
@@ -828,7 +828,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
828
828
|
* @throws {RequiredError}
|
|
829
829
|
*/
|
|
830
830
|
VpcClient.prototype.neutronListSecurityGroups = function (neutronListSecurityGroupsRequest) {
|
|
831
|
-
var options = exports.ParamCreater().neutronListSecurityGroups(neutronListSecurityGroupsRequest);
|
|
831
|
+
var options = (0, exports.ParamCreater)().neutronListSecurityGroups(neutronListSecurityGroupsRequest);
|
|
832
832
|
options['responseHeaders'] = [''];
|
|
833
833
|
// @ts-ignore
|
|
834
834
|
return this.hcClient.sendRequest(options);
|
|
@@ -841,7 +841,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
841
841
|
* @throws {RequiredError}
|
|
842
842
|
*/
|
|
843
843
|
VpcClient.prototype.neutronShowSecurityGroup = function (neutronShowSecurityGroupRequest) {
|
|
844
|
-
var options = exports.ParamCreater().neutronShowSecurityGroup(neutronShowSecurityGroupRequest);
|
|
844
|
+
var options = (0, exports.ParamCreater)().neutronShowSecurityGroup(neutronShowSecurityGroupRequest);
|
|
845
845
|
options['responseHeaders'] = [''];
|
|
846
846
|
// @ts-ignore
|
|
847
847
|
return this.hcClient.sendRequest(options);
|
|
@@ -854,7 +854,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
854
854
|
* @throws {RequiredError}
|
|
855
855
|
*/
|
|
856
856
|
VpcClient.prototype.neutronShowSecurityGroupRule = function (neutronShowSecurityGroupRuleRequest) {
|
|
857
|
-
var options = exports.ParamCreater().neutronShowSecurityGroupRule(neutronShowSecurityGroupRuleRequest);
|
|
857
|
+
var options = (0, exports.ParamCreater)().neutronShowSecurityGroupRule(neutronShowSecurityGroupRuleRequest);
|
|
858
858
|
options['responseHeaders'] = [''];
|
|
859
859
|
// @ts-ignore
|
|
860
860
|
return this.hcClient.sendRequest(options);
|
|
@@ -868,7 +868,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
868
868
|
* @throws {RequiredError}
|
|
869
869
|
*/
|
|
870
870
|
VpcClient.prototype.neutronUpdateSecurityGroup = function (neutronUpdateSecurityGroupRequest) {
|
|
871
|
-
var options = exports.ParamCreater().neutronUpdateSecurityGroup(neutronUpdateSecurityGroupRequest);
|
|
871
|
+
var options = (0, exports.ParamCreater)().neutronUpdateSecurityGroup(neutronUpdateSecurityGroupRequest);
|
|
872
872
|
options['responseHeaders'] = [''];
|
|
873
873
|
// @ts-ignore
|
|
874
874
|
return this.hcClient.sendRequest(options);
|
|
@@ -882,7 +882,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
882
882
|
* @throws {RequiredError}
|
|
883
883
|
*/
|
|
884
884
|
VpcClient.prototype.neutronAddFirewallRule = function (neutronAddFirewallRuleRequest) {
|
|
885
|
-
var options = exports.ParamCreater().neutronAddFirewallRule(neutronAddFirewallRuleRequest);
|
|
885
|
+
var options = (0, exports.ParamCreater)().neutronAddFirewallRule(neutronAddFirewallRuleRequest);
|
|
886
886
|
options['responseHeaders'] = [''];
|
|
887
887
|
// @ts-ignore
|
|
888
888
|
return this.hcClient.sendRequest(options);
|
|
@@ -895,7 +895,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
895
895
|
* @throws {RequiredError}
|
|
896
896
|
*/
|
|
897
897
|
VpcClient.prototype.neutronCreateFirewallGroup = function (neutronCreateFirewallGroupRequest) {
|
|
898
|
-
var options = exports.ParamCreater().neutronCreateFirewallGroup(neutronCreateFirewallGroupRequest);
|
|
898
|
+
var options = (0, exports.ParamCreater)().neutronCreateFirewallGroup(neutronCreateFirewallGroupRequest);
|
|
899
899
|
options['responseHeaders'] = [''];
|
|
900
900
|
// @ts-ignore
|
|
901
901
|
return this.hcClient.sendRequest(options);
|
|
@@ -908,7 +908,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
908
908
|
* @throws {RequiredError}
|
|
909
909
|
*/
|
|
910
910
|
VpcClient.prototype.neutronCreateFirewallPolicy = function (neutronCreateFirewallPolicyRequest) {
|
|
911
|
-
var options = exports.ParamCreater().neutronCreateFirewallPolicy(neutronCreateFirewallPolicyRequest);
|
|
911
|
+
var options = (0, exports.ParamCreater)().neutronCreateFirewallPolicy(neutronCreateFirewallPolicyRequest);
|
|
912
912
|
options['responseHeaders'] = [''];
|
|
913
913
|
// @ts-ignore
|
|
914
914
|
return this.hcClient.sendRequest(options);
|
|
@@ -921,7 +921,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
921
921
|
* @throws {RequiredError}
|
|
922
922
|
*/
|
|
923
923
|
VpcClient.prototype.neutronCreateFirewallRule = function (neutronCreateFirewallRuleRequest) {
|
|
924
|
-
var options = exports.ParamCreater().neutronCreateFirewallRule(neutronCreateFirewallRuleRequest);
|
|
924
|
+
var options = (0, exports.ParamCreater)().neutronCreateFirewallRule(neutronCreateFirewallRuleRequest);
|
|
925
925
|
options['responseHeaders'] = [''];
|
|
926
926
|
// @ts-ignore
|
|
927
927
|
return this.hcClient.sendRequest(options);
|
|
@@ -934,7 +934,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
934
934
|
* @throws {RequiredError}
|
|
935
935
|
*/
|
|
936
936
|
VpcClient.prototype.neutronDeleteFirewallGroup = function (neutronDeleteFirewallGroupRequest) {
|
|
937
|
-
var options = exports.ParamCreater().neutronDeleteFirewallGroup(neutronDeleteFirewallGroupRequest);
|
|
937
|
+
var options = (0, exports.ParamCreater)().neutronDeleteFirewallGroup(neutronDeleteFirewallGroupRequest);
|
|
938
938
|
options['responseHeaders'] = [''];
|
|
939
939
|
// @ts-ignore
|
|
940
940
|
return this.hcClient.sendRequest(options);
|
|
@@ -947,7 +947,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
947
947
|
* @throws {RequiredError}
|
|
948
948
|
*/
|
|
949
949
|
VpcClient.prototype.neutronDeleteFirewallPolicy = function (neutronDeleteFirewallPolicyRequest) {
|
|
950
|
-
var options = exports.ParamCreater().neutronDeleteFirewallPolicy(neutronDeleteFirewallPolicyRequest);
|
|
950
|
+
var options = (0, exports.ParamCreater)().neutronDeleteFirewallPolicy(neutronDeleteFirewallPolicyRequest);
|
|
951
951
|
options['responseHeaders'] = [''];
|
|
952
952
|
// @ts-ignore
|
|
953
953
|
return this.hcClient.sendRequest(options);
|
|
@@ -960,7 +960,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
960
960
|
* @throws {RequiredError}
|
|
961
961
|
*/
|
|
962
962
|
VpcClient.prototype.neutronDeleteFirewallRule = function (neutronDeleteFirewallRuleRequest) {
|
|
963
|
-
var options = exports.ParamCreater().neutronDeleteFirewallRule(neutronDeleteFirewallRuleRequest);
|
|
963
|
+
var options = (0, exports.ParamCreater)().neutronDeleteFirewallRule(neutronDeleteFirewallRuleRequest);
|
|
964
964
|
options['responseHeaders'] = [''];
|
|
965
965
|
// @ts-ignore
|
|
966
966
|
return this.hcClient.sendRequest(options);
|
|
@@ -979,7 +979,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
979
979
|
* @throws {RequiredError}
|
|
980
980
|
*/
|
|
981
981
|
VpcClient.prototype.neutronListFirewallGroups = function (neutronListFirewallGroupsRequest) {
|
|
982
|
-
var options = exports.ParamCreater().neutronListFirewallGroups(neutronListFirewallGroupsRequest);
|
|
982
|
+
var options = (0, exports.ParamCreater)().neutronListFirewallGroups(neutronListFirewallGroupsRequest);
|
|
983
983
|
options['responseHeaders'] = [''];
|
|
984
984
|
// @ts-ignore
|
|
985
985
|
return this.hcClient.sendRequest(options);
|
|
@@ -997,7 +997,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
997
997
|
* @throws {RequiredError}
|
|
998
998
|
*/
|
|
999
999
|
VpcClient.prototype.neutronListFirewallPolicies = function (neutronListFirewallPoliciesRequest) {
|
|
1000
|
-
var options = exports.ParamCreater().neutronListFirewallPolicies(neutronListFirewallPoliciesRequest);
|
|
1000
|
+
var options = (0, exports.ParamCreater)().neutronListFirewallPolicies(neutronListFirewallPoliciesRequest);
|
|
1001
1001
|
options['responseHeaders'] = [''];
|
|
1002
1002
|
// @ts-ignore
|
|
1003
1003
|
return this.hcClient.sendRequest(options);
|
|
@@ -1016,7 +1016,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1016
1016
|
* @throws {RequiredError}
|
|
1017
1017
|
*/
|
|
1018
1018
|
VpcClient.prototype.neutronListFirewallRules = function (neutronListFirewallRulesRequest) {
|
|
1019
|
-
var options = exports.ParamCreater().neutronListFirewallRules(neutronListFirewallRulesRequest);
|
|
1019
|
+
var options = (0, exports.ParamCreater)().neutronListFirewallRules(neutronListFirewallRulesRequest);
|
|
1020
1020
|
options['responseHeaders'] = [''];
|
|
1021
1021
|
// @ts-ignore
|
|
1022
1022
|
return this.hcClient.sendRequest(options);
|
|
@@ -1030,7 +1030,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1030
1030
|
* @throws {RequiredError}
|
|
1031
1031
|
*/
|
|
1032
1032
|
VpcClient.prototype.neutronRemoveFirewallRule = function (neutronRemoveFirewallRuleRequest) {
|
|
1033
|
-
var options = exports.ParamCreater().neutronRemoveFirewallRule(neutronRemoveFirewallRuleRequest);
|
|
1033
|
+
var options = (0, exports.ParamCreater)().neutronRemoveFirewallRule(neutronRemoveFirewallRuleRequest);
|
|
1034
1034
|
options['responseHeaders'] = [''];
|
|
1035
1035
|
// @ts-ignore
|
|
1036
1036
|
return this.hcClient.sendRequest(options);
|
|
@@ -1043,7 +1043,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1043
1043
|
* @throws {RequiredError}
|
|
1044
1044
|
*/
|
|
1045
1045
|
VpcClient.prototype.neutronShowFirewallGroup = function (neutronShowFirewallGroupRequest) {
|
|
1046
|
-
var options = exports.ParamCreater().neutronShowFirewallGroup(neutronShowFirewallGroupRequest);
|
|
1046
|
+
var options = (0, exports.ParamCreater)().neutronShowFirewallGroup(neutronShowFirewallGroupRequest);
|
|
1047
1047
|
options['responseHeaders'] = [''];
|
|
1048
1048
|
// @ts-ignore
|
|
1049
1049
|
return this.hcClient.sendRequest(options);
|
|
@@ -1056,7 +1056,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1056
1056
|
* @throws {RequiredError}
|
|
1057
1057
|
*/
|
|
1058
1058
|
VpcClient.prototype.neutronShowFirewallPolicy = function (neutronShowFirewallPolicyRequest) {
|
|
1059
|
-
var options = exports.ParamCreater().neutronShowFirewallPolicy(neutronShowFirewallPolicyRequest);
|
|
1059
|
+
var options = (0, exports.ParamCreater)().neutronShowFirewallPolicy(neutronShowFirewallPolicyRequest);
|
|
1060
1060
|
options['responseHeaders'] = [''];
|
|
1061
1061
|
// @ts-ignore
|
|
1062
1062
|
return this.hcClient.sendRequest(options);
|
|
@@ -1069,7 +1069,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1069
1069
|
* @throws {RequiredError}
|
|
1070
1070
|
*/
|
|
1071
1071
|
VpcClient.prototype.neutronShowFirewallRule = function (neutronShowFirewallRuleRequest) {
|
|
1072
|
-
var options = exports.ParamCreater().neutronShowFirewallRule(neutronShowFirewallRuleRequest);
|
|
1072
|
+
var options = (0, exports.ParamCreater)().neutronShowFirewallRule(neutronShowFirewallRuleRequest);
|
|
1073
1073
|
options['responseHeaders'] = [''];
|
|
1074
1074
|
// @ts-ignore
|
|
1075
1075
|
return this.hcClient.sendRequest(options);
|
|
@@ -1083,7 +1083,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1083
1083
|
* @throws {RequiredError}
|
|
1084
1084
|
*/
|
|
1085
1085
|
VpcClient.prototype.neutronUpdateFirewallGroup = function (neutronUpdateFirewallGroupRequest) {
|
|
1086
|
-
var options = exports.ParamCreater().neutronUpdateFirewallGroup(neutronUpdateFirewallGroupRequest);
|
|
1086
|
+
var options = (0, exports.ParamCreater)().neutronUpdateFirewallGroup(neutronUpdateFirewallGroupRequest);
|
|
1087
1087
|
options['responseHeaders'] = [''];
|
|
1088
1088
|
// @ts-ignore
|
|
1089
1089
|
return this.hcClient.sendRequest(options);
|
|
@@ -1097,7 +1097,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1097
1097
|
* @throws {RequiredError}
|
|
1098
1098
|
*/
|
|
1099
1099
|
VpcClient.prototype.neutronUpdateFirewallPolicy = function (neutronUpdateFirewallPolicyRequest) {
|
|
1100
|
-
var options = exports.ParamCreater().neutronUpdateFirewallPolicy(neutronUpdateFirewallPolicyRequest);
|
|
1100
|
+
var options = (0, exports.ParamCreater)().neutronUpdateFirewallPolicy(neutronUpdateFirewallPolicyRequest);
|
|
1101
1101
|
options['responseHeaders'] = [''];
|
|
1102
1102
|
// @ts-ignore
|
|
1103
1103
|
return this.hcClient.sendRequest(options);
|
|
@@ -1111,7 +1111,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1111
1111
|
* @throws {RequiredError}
|
|
1112
1112
|
*/
|
|
1113
1113
|
VpcClient.prototype.neutronUpdateFirewallRule = function (neutronUpdateFirewallRuleRequest) {
|
|
1114
|
-
var options = exports.ParamCreater().neutronUpdateFirewallRule(neutronUpdateFirewallRuleRequest);
|
|
1114
|
+
var options = (0, exports.ParamCreater)().neutronUpdateFirewallRule(neutronUpdateFirewallRuleRequest);
|
|
1115
1115
|
options['responseHeaders'] = [''];
|
|
1116
1116
|
// @ts-ignore
|
|
1117
1117
|
return this.hcClient.sendRequest(options);
|
|
@@ -1125,7 +1125,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1125
1125
|
* @throws {RequiredError}
|
|
1126
1126
|
*/
|
|
1127
1127
|
VpcClient.prototype.batchCreateVpcTags = function (batchCreateVpcTagsRequest) {
|
|
1128
|
-
var options = exports.ParamCreater().batchCreateVpcTags(batchCreateVpcTagsRequest);
|
|
1128
|
+
var options = (0, exports.ParamCreater)().batchCreateVpcTags(batchCreateVpcTagsRequest);
|
|
1129
1129
|
options['responseHeaders'] = [''];
|
|
1130
1130
|
// @ts-ignore
|
|
1131
1131
|
return this.hcClient.sendRequest(options);
|
|
@@ -1139,7 +1139,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1139
1139
|
* @throws {RequiredError}
|
|
1140
1140
|
*/
|
|
1141
1141
|
VpcClient.prototype.batchDeleteVpcTags = function (batchDeleteVpcTagsRequest) {
|
|
1142
|
-
var options = exports.ParamCreater().batchDeleteVpcTags(batchDeleteVpcTagsRequest);
|
|
1142
|
+
var options = (0, exports.ParamCreater)().batchDeleteVpcTags(batchDeleteVpcTagsRequest);
|
|
1143
1143
|
options['responseHeaders'] = [''];
|
|
1144
1144
|
// @ts-ignore
|
|
1145
1145
|
return this.hcClient.sendRequest(options);
|
|
@@ -1152,7 +1152,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1152
1152
|
* @throws {RequiredError}
|
|
1153
1153
|
*/
|
|
1154
1154
|
VpcClient.prototype.createVpc = function (createVpcRequest) {
|
|
1155
|
-
var options = exports.ParamCreater().createVpc(createVpcRequest);
|
|
1155
|
+
var options = (0, exports.ParamCreater)().createVpc(createVpcRequest);
|
|
1156
1156
|
options['responseHeaders'] = [''];
|
|
1157
1157
|
// @ts-ignore
|
|
1158
1158
|
return this.hcClient.sendRequest(options);
|
|
@@ -1166,7 +1166,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1166
1166
|
* @throws {RequiredError}
|
|
1167
1167
|
*/
|
|
1168
1168
|
VpcClient.prototype.createVpcResourceTag = function (createVpcResourceTagRequest) {
|
|
1169
|
-
var options = exports.ParamCreater().createVpcResourceTag(createVpcResourceTagRequest);
|
|
1169
|
+
var options = (0, exports.ParamCreater)().createVpcResourceTag(createVpcResourceTagRequest);
|
|
1170
1170
|
options['responseHeaders'] = [''];
|
|
1171
1171
|
// @ts-ignore
|
|
1172
1172
|
return this.hcClient.sendRequest(options);
|
|
@@ -1179,7 +1179,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1179
1179
|
* @throws {RequiredError}
|
|
1180
1180
|
*/
|
|
1181
1181
|
VpcClient.prototype.createVpcRoute = function (createVpcRouteRequest) {
|
|
1182
|
-
var options = exports.ParamCreater().createVpcRoute(createVpcRouteRequest);
|
|
1182
|
+
var options = (0, exports.ParamCreater)().createVpcRoute(createVpcRouteRequest);
|
|
1183
1183
|
options['responseHeaders'] = [''];
|
|
1184
1184
|
// @ts-ignore
|
|
1185
1185
|
return this.hcClient.sendRequest(options);
|
|
@@ -1192,7 +1192,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1192
1192
|
* @throws {RequiredError}
|
|
1193
1193
|
*/
|
|
1194
1194
|
VpcClient.prototype.deleteVpc = function (deleteVpcRequest) {
|
|
1195
|
-
var options = exports.ParamCreater().deleteVpc(deleteVpcRequest);
|
|
1195
|
+
var options = (0, exports.ParamCreater)().deleteVpc(deleteVpcRequest);
|
|
1196
1196
|
options['responseHeaders'] = [''];
|
|
1197
1197
|
// @ts-ignore
|
|
1198
1198
|
return this.hcClient.sendRequest(options);
|
|
@@ -1205,7 +1205,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1205
1205
|
* @throws {RequiredError}
|
|
1206
1206
|
*/
|
|
1207
1207
|
VpcClient.prototype.deleteVpcRoute = function (deleteVpcRouteRequest) {
|
|
1208
|
-
var options = exports.ParamCreater().deleteVpcRoute(deleteVpcRouteRequest);
|
|
1208
|
+
var options = (0, exports.ParamCreater)().deleteVpcRoute(deleteVpcRouteRequest);
|
|
1209
1209
|
options['responseHeaders'] = [''];
|
|
1210
1210
|
// @ts-ignore
|
|
1211
1211
|
return this.hcClient.sendRequest(options);
|
|
@@ -1219,7 +1219,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1219
1219
|
* @throws {RequiredError}
|
|
1220
1220
|
*/
|
|
1221
1221
|
VpcClient.prototype.deleteVpcTag = function (deleteVpcTagRequest) {
|
|
1222
|
-
var options = exports.ParamCreater().deleteVpcTag(deleteVpcTagRequest);
|
|
1222
|
+
var options = (0, exports.ParamCreater)().deleteVpcTag(deleteVpcTagRequest);
|
|
1223
1223
|
options['responseHeaders'] = [''];
|
|
1224
1224
|
// @ts-ignore
|
|
1225
1225
|
return this.hcClient.sendRequest(options);
|
|
@@ -1238,7 +1238,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1238
1238
|
* @throws {RequiredError}
|
|
1239
1239
|
*/
|
|
1240
1240
|
VpcClient.prototype.listVpcRoutes = function (listVpcRoutesRequest) {
|
|
1241
|
-
var options = exports.ParamCreater().listVpcRoutes(listVpcRoutesRequest);
|
|
1241
|
+
var options = (0, exports.ParamCreater)().listVpcRoutes(listVpcRoutesRequest);
|
|
1242
1242
|
options['responseHeaders'] = [''];
|
|
1243
1243
|
// @ts-ignore
|
|
1244
1244
|
return this.hcClient.sendRequest(options);
|
|
@@ -1250,7 +1250,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1250
1250
|
* @throws {RequiredError}
|
|
1251
1251
|
*/
|
|
1252
1252
|
VpcClient.prototype.listVpcTags = function () {
|
|
1253
|
-
var options = exports.ParamCreater().listVpcTags();
|
|
1253
|
+
var options = (0, exports.ParamCreater)().listVpcTags();
|
|
1254
1254
|
options['responseHeaders'] = [''];
|
|
1255
1255
|
// @ts-ignore
|
|
1256
1256
|
return this.hcClient.sendRequest(options);
|
|
@@ -1266,7 +1266,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1266
1266
|
* @throws {RequiredError}
|
|
1267
1267
|
*/
|
|
1268
1268
|
VpcClient.prototype.listVpcs = function (listVpcsRequest) {
|
|
1269
|
-
var options = exports.ParamCreater().listVpcs(listVpcsRequest);
|
|
1269
|
+
var options = (0, exports.ParamCreater)().listVpcs(listVpcsRequest);
|
|
1270
1270
|
options['responseHeaders'] = [''];
|
|
1271
1271
|
// @ts-ignore
|
|
1272
1272
|
return this.hcClient.sendRequest(options);
|
|
@@ -1279,7 +1279,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1279
1279
|
* @throws {RequiredError}
|
|
1280
1280
|
*/
|
|
1281
1281
|
VpcClient.prototype.listVpcsByTags = function (listVpcsByTagsRequest) {
|
|
1282
|
-
var options = exports.ParamCreater().listVpcsByTags(listVpcsByTagsRequest);
|
|
1282
|
+
var options = (0, exports.ParamCreater)().listVpcsByTags(listVpcsByTagsRequest);
|
|
1283
1283
|
options['responseHeaders'] = [''];
|
|
1284
1284
|
// @ts-ignore
|
|
1285
1285
|
return this.hcClient.sendRequest(options);
|
|
@@ -1292,7 +1292,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1292
1292
|
* @throws {RequiredError}
|
|
1293
1293
|
*/
|
|
1294
1294
|
VpcClient.prototype.showVpc = function (showVpcRequest) {
|
|
1295
|
-
var options = exports.ParamCreater().showVpc(showVpcRequest);
|
|
1295
|
+
var options = (0, exports.ParamCreater)().showVpc(showVpcRequest);
|
|
1296
1296
|
options['responseHeaders'] = [''];
|
|
1297
1297
|
// @ts-ignore
|
|
1298
1298
|
return this.hcClient.sendRequest(options);
|
|
@@ -1305,7 +1305,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1305
1305
|
* @throws {RequiredError}
|
|
1306
1306
|
*/
|
|
1307
1307
|
VpcClient.prototype.showVpcRoute = function (showVpcRouteRequest) {
|
|
1308
|
-
var options = exports.ParamCreater().showVpcRoute(showVpcRouteRequest);
|
|
1308
|
+
var options = (0, exports.ParamCreater)().showVpcRoute(showVpcRouteRequest);
|
|
1309
1309
|
options['responseHeaders'] = [''];
|
|
1310
1310
|
// @ts-ignore
|
|
1311
1311
|
return this.hcClient.sendRequest(options);
|
|
@@ -1318,7 +1318,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1318
1318
|
* @throws {RequiredError}
|
|
1319
1319
|
*/
|
|
1320
1320
|
VpcClient.prototype.showVpcTags = function (showVpcTagsRequest) {
|
|
1321
|
-
var options = exports.ParamCreater().showVpcTags(showVpcTagsRequest);
|
|
1321
|
+
var options = (0, exports.ParamCreater)().showVpcTags(showVpcTagsRequest);
|
|
1322
1322
|
options['responseHeaders'] = [''];
|
|
1323
1323
|
// @ts-ignore
|
|
1324
1324
|
return this.hcClient.sendRequest(options);
|
|
@@ -1332,7 +1332,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
1332
1332
|
* @throws {RequiredError}
|
|
1333
1333
|
*/
|
|
1334
1334
|
VpcClient.prototype.updateVpc = function (updateVpcRequest) {
|
|
1335
|
-
var options = exports.ParamCreater().updateVpc(updateVpcRequest);
|
|
1335
|
+
var options = (0, exports.ParamCreater)().updateVpc(updateVpcRequest);
|
|
1336
1336
|
options['responseHeaders'] = [''];
|
|
1337
1337
|
// @ts-ignore
|
|
1338
1338
|
return this.hcClient.sendRequest(options);
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RouteTableRoute } from './RouteTableRoute';
|
|
2
2
|
export declare class CreateRouteTableReq {
|
|
3
3
|
name?: string;
|
|
4
|
-
routes?: Array<
|
|
4
|
+
routes?: Array<RouteTableRoute>;
|
|
5
5
|
private 'vpc_id';
|
|
6
6
|
description?: string;
|
|
7
7
|
constructor(vpcId?: any);
|
|
8
8
|
withName(name: string): CreateRouteTableReq;
|
|
9
|
-
withRoutes(routes: Array<
|
|
9
|
+
withRoutes(routes: Array<RouteTableRoute>): CreateRouteTableReq;
|
|
10
10
|
withVpcId(vpcId: string): CreateRouteTableReq;
|
|
11
11
|
set vpcId(vpcId: string | undefined);
|
|
12
12
|
get vpcId(): string | undefined;
|
|
@@ -2,14 +2,14 @@ import { ListTag } from './ListTag';
|
|
|
2
2
|
import { Match } from './Match';
|
|
3
3
|
export declare class ListSubnetsByTagsRequestBody {
|
|
4
4
|
action: ListSubnetsByTagsRequestBodyActionEnum;
|
|
5
|
-
limit?:
|
|
6
|
-
offset?:
|
|
5
|
+
limit?: number;
|
|
6
|
+
offset?: number;
|
|
7
7
|
matches?: Array<Match>;
|
|
8
8
|
tags?: Array<ListTag>;
|
|
9
9
|
constructor(action?: any);
|
|
10
10
|
withAction(action: ListSubnetsByTagsRequestBodyActionEnum): ListSubnetsByTagsRequestBody;
|
|
11
|
-
withLimit(limit:
|
|
12
|
-
withOffset(offset:
|
|
11
|
+
withLimit(limit: number): ListSubnetsByTagsRequestBody;
|
|
12
|
+
withOffset(offset: number): ListSubnetsByTagsRequestBody;
|
|
13
13
|
withMatches(matches: Array<Match>): ListSubnetsByTagsRequestBody;
|
|
14
14
|
withTags(tags: Array<ListTag>): ListSubnetsByTagsRequestBody;
|
|
15
15
|
}
|
|
@@ -2,14 +2,14 @@ import { ListTag } from './ListTag';
|
|
|
2
2
|
import { Match } from './Match';
|
|
3
3
|
export declare class ListVpcsByTagsRequestBody {
|
|
4
4
|
action: ListVpcsByTagsRequestBodyActionEnum;
|
|
5
|
-
limit?:
|
|
6
|
-
offset?:
|
|
5
|
+
limit?: number;
|
|
6
|
+
offset?: number;
|
|
7
7
|
matches?: Array<Match>;
|
|
8
8
|
tags?: Array<ListTag>;
|
|
9
9
|
constructor(action?: any);
|
|
10
10
|
withAction(action: ListVpcsByTagsRequestBodyActionEnum): ListVpcsByTagsRequestBody;
|
|
11
|
-
withLimit(limit:
|
|
12
|
-
withOffset(offset:
|
|
11
|
+
withLimit(limit: number): ListVpcsByTagsRequestBody;
|
|
12
|
+
withOffset(offset: number): ListVpcsByTagsRequestBody;
|
|
13
13
|
withMatches(matches: Array<Match>): ListVpcsByTagsRequestBody;
|
|
14
14
|
withTags(tags: Array<ListTag>): ListVpcsByTagsRequestBody;
|
|
15
15
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RouteTableRoute } from './RouteTableRoute';
|
|
2
2
|
import { SubnetList } from './SubnetList';
|
|
3
3
|
export declare class RouteTableResp {
|
|
4
4
|
id: string;
|
|
5
5
|
name: string;
|
|
6
6
|
private 'default';
|
|
7
|
-
routes: Array<
|
|
7
|
+
routes: Array<RouteTableRoute>;
|
|
8
8
|
subnets: Array<SubnetList>;
|
|
9
9
|
private 'tenant_id';
|
|
10
10
|
private 'vpc_id';
|
|
@@ -15,7 +15,7 @@ export declare class RouteTableResp {
|
|
|
15
15
|
withDefault(_default: boolean): RouteTableResp;
|
|
16
16
|
set _default(_default: boolean | undefined);
|
|
17
17
|
get _default(): boolean | undefined;
|
|
18
|
-
withRoutes(routes: Array<
|
|
18
|
+
withRoutes(routes: Array<RouteTableRoute>): RouteTableResp;
|
|
19
19
|
withSubnets(subnets: Array<SubnetList>): RouteTableResp;
|
|
20
20
|
withTenantId(tenantId: string): RouteTableResp;
|
|
21
21
|
set tenantId(tenantId: string | undefined);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare class RouteTableRoute {
|
|
2
|
+
type: string;
|
|
3
|
+
destination: string;
|
|
4
|
+
nexthop: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
constructor(type?: any, destination?: any, nexthop?: any);
|
|
7
|
+
withType(type: string): RouteTableRoute;
|
|
8
|
+
withDestination(destination: string): RouteTableRoute;
|
|
9
|
+
withNexthop(nexthop: string): RouteTableRoute;
|
|
10
|
+
withDescription(description: string): RouteTableRoute;
|
|
11
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RouteTableRoute = void 0;
|
|
4
|
+
var RouteTableRoute = /** @class */ (function () {
|
|
5
|
+
function RouteTableRoute(type, destination, nexthop) {
|
|
6
|
+
this['type'] = type;
|
|
7
|
+
this['destination'] = destination;
|
|
8
|
+
this['nexthop'] = nexthop;
|
|
9
|
+
}
|
|
10
|
+
RouteTableRoute.prototype.withType = function (type) {
|
|
11
|
+
this['type'] = type;
|
|
12
|
+
return this;
|
|
13
|
+
};
|
|
14
|
+
RouteTableRoute.prototype.withDestination = function (destination) {
|
|
15
|
+
this['destination'] = destination;
|
|
16
|
+
return this;
|
|
17
|
+
};
|
|
18
|
+
RouteTableRoute.prototype.withNexthop = function (nexthop) {
|
|
19
|
+
this['nexthop'] = nexthop;
|
|
20
|
+
return this;
|
|
21
|
+
};
|
|
22
|
+
RouteTableRoute.prototype.withDescription = function (description) {
|
|
23
|
+
this['description'] = description;
|
|
24
|
+
return this;
|
|
25
|
+
};
|
|
26
|
+
return RouteTableRoute;
|
|
27
|
+
}());
|
|
28
|
+
exports.RouteTableRoute = RouteTableRoute;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RouteTableRoute } from './RouteTableRoute';
|
|
2
2
|
export declare class UpdateRouteTableReq {
|
|
3
3
|
name?: string;
|
|
4
4
|
description?: string;
|
|
5
5
|
routes?: {
|
|
6
|
-
[key: string]: Array<
|
|
6
|
+
[key: string]: Array<RouteTableRoute>;
|
|
7
7
|
};
|
|
8
8
|
constructor();
|
|
9
9
|
withName(name: string): UpdateRouteTableReq;
|
|
10
10
|
withDescription(description: string): UpdateRouteTableReq;
|
|
11
11
|
withRoutes(routes: {
|
|
12
|
-
[key: string]: Array<
|
|
12
|
+
[key: string]: Array<RouteTableRoute>;
|
|
13
13
|
}): UpdateRouteTableReq;
|
|
14
14
|
}
|
package/v2/public-api.d.ts
CHANGED
|
@@ -209,6 +209,7 @@ export * from './model/ResourceTag';
|
|
|
209
209
|
export * from './model/Route';
|
|
210
210
|
export * from './model/RouteTableListResp';
|
|
211
211
|
export * from './model/RouteTableResp';
|
|
212
|
+
export * from './model/RouteTableRoute';
|
|
212
213
|
export * from './model/RoutetableAssociateReqbody';
|
|
213
214
|
export * from './model/SecurityGroup';
|
|
214
215
|
export * from './model/SecurityGroupRule';
|
package/v2/public-api.js
CHANGED
|
@@ -221,6 +221,7 @@ __exportStar(require("./model/ResourceTag"), exports);
|
|
|
221
221
|
__exportStar(require("./model/Route"), exports);
|
|
222
222
|
__exportStar(require("./model/RouteTableListResp"), exports);
|
|
223
223
|
__exportStar(require("./model/RouteTableResp"), exports);
|
|
224
|
+
__exportStar(require("./model/RouteTableRoute"), exports);
|
|
224
225
|
__exportStar(require("./model/RoutetableAssociateReqbody"), exports);
|
|
225
226
|
__exportStar(require("./model/SecurityGroup"), exports);
|
|
226
227
|
__exportStar(require("./model/SecurityGroupRule"), exports);
|
package/v3/VpcClient.js
CHANGED
|
@@ -50,7 +50,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
50
50
|
* @throws {RequiredError}
|
|
51
51
|
*/
|
|
52
52
|
VpcClient.prototype.batchCreateSubNetworkInterface = function (batchCreateSubNetworkInterfaceRequest) {
|
|
53
|
-
var options = exports.ParamCreater().batchCreateSubNetworkInterface(batchCreateSubNetworkInterfaceRequest);
|
|
53
|
+
var options = (0, exports.ParamCreater)().batchCreateSubNetworkInterface(batchCreateSubNetworkInterfaceRequest);
|
|
54
54
|
options['responseHeaders'] = [''];
|
|
55
55
|
// @ts-ignore
|
|
56
56
|
return this.hcClient.sendRequest(options);
|
|
@@ -63,7 +63,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
63
63
|
* @throws {RequiredError}
|
|
64
64
|
*/
|
|
65
65
|
VpcClient.prototype.createSecurityGroup = function (createSecurityGroupRequest) {
|
|
66
|
-
var options = exports.ParamCreater().createSecurityGroup(createSecurityGroupRequest);
|
|
66
|
+
var options = (0, exports.ParamCreater)().createSecurityGroup(createSecurityGroupRequest);
|
|
67
67
|
options['responseHeaders'] = [''];
|
|
68
68
|
// @ts-ignore
|
|
69
69
|
return this.hcClient.sendRequest(options);
|
|
@@ -76,7 +76,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
76
76
|
* @throws {RequiredError}
|
|
77
77
|
*/
|
|
78
78
|
VpcClient.prototype.createSecurityGroupRule = function (createSecurityGroupRuleRequest) {
|
|
79
|
-
var options = exports.ParamCreater().createSecurityGroupRule(createSecurityGroupRuleRequest);
|
|
79
|
+
var options = (0, exports.ParamCreater)().createSecurityGroupRule(createSecurityGroupRuleRequest);
|
|
80
80
|
options['responseHeaders'] = [''];
|
|
81
81
|
// @ts-ignore
|
|
82
82
|
return this.hcClient.sendRequest(options);
|
|
@@ -89,7 +89,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
89
89
|
* @throws {RequiredError}
|
|
90
90
|
*/
|
|
91
91
|
VpcClient.prototype.createSubNetworkInterface = function (createSubNetworkInterfaceRequest) {
|
|
92
|
-
var options = exports.ParamCreater().createSubNetworkInterface(createSubNetworkInterfaceRequest);
|
|
92
|
+
var options = (0, exports.ParamCreater)().createSubNetworkInterface(createSubNetworkInterfaceRequest);
|
|
93
93
|
options['responseHeaders'] = [''];
|
|
94
94
|
// @ts-ignore
|
|
95
95
|
return this.hcClient.sendRequest(options);
|
|
@@ -102,7 +102,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
102
102
|
* @throws {RequiredError}
|
|
103
103
|
*/
|
|
104
104
|
VpcClient.prototype.deleteSecurityGroup = function (deleteSecurityGroupRequest) {
|
|
105
|
-
var options = exports.ParamCreater().deleteSecurityGroup(deleteSecurityGroupRequest);
|
|
105
|
+
var options = (0, exports.ParamCreater)().deleteSecurityGroup(deleteSecurityGroupRequest);
|
|
106
106
|
options['responseHeaders'] = [''];
|
|
107
107
|
// @ts-ignore
|
|
108
108
|
return this.hcClient.sendRequest(options);
|
|
@@ -115,7 +115,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
115
115
|
* @throws {RequiredError}
|
|
116
116
|
*/
|
|
117
117
|
VpcClient.prototype.deleteSecurityGroupRule = function (deleteSecurityGroupRuleRequest) {
|
|
118
|
-
var options = exports.ParamCreater().deleteSecurityGroupRule(deleteSecurityGroupRuleRequest);
|
|
118
|
+
var options = (0, exports.ParamCreater)().deleteSecurityGroupRule(deleteSecurityGroupRuleRequest);
|
|
119
119
|
options['responseHeaders'] = [''];
|
|
120
120
|
// @ts-ignore
|
|
121
121
|
return this.hcClient.sendRequest(options);
|
|
@@ -128,7 +128,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
128
128
|
* @throws {RequiredError}
|
|
129
129
|
*/
|
|
130
130
|
VpcClient.prototype.deleteSubNetworkInterface = function (deleteSubNetworkInterfaceRequest) {
|
|
131
|
-
var options = exports.ParamCreater().deleteSubNetworkInterface(deleteSubNetworkInterfaceRequest);
|
|
131
|
+
var options = (0, exports.ParamCreater)().deleteSubNetworkInterface(deleteSubNetworkInterfaceRequest);
|
|
132
132
|
options['responseHeaders'] = [''];
|
|
133
133
|
// @ts-ignore
|
|
134
134
|
return this.hcClient.sendRequest(options);
|
|
@@ -149,7 +149,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
149
149
|
* @throws {RequiredError}
|
|
150
150
|
*/
|
|
151
151
|
VpcClient.prototype.listSecurityGroupRules = function (listSecurityGroupRulesRequest) {
|
|
152
|
-
var options = exports.ParamCreater().listSecurityGroupRules(listSecurityGroupRulesRequest);
|
|
152
|
+
var options = (0, exports.ParamCreater)().listSecurityGroupRules(listSecurityGroupRulesRequest);
|
|
153
153
|
options['responseHeaders'] = [''];
|
|
154
154
|
// @ts-ignore
|
|
155
155
|
return this.hcClient.sendRequest(options);
|
|
@@ -167,7 +167,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
167
167
|
* @throws {RequiredError}
|
|
168
168
|
*/
|
|
169
169
|
VpcClient.prototype.listSecurityGroups = function (listSecurityGroupsRequest) {
|
|
170
|
-
var options = exports.ParamCreater().listSecurityGroups(listSecurityGroupsRequest);
|
|
170
|
+
var options = (0, exports.ParamCreater)().listSecurityGroups(listSecurityGroupsRequest);
|
|
171
171
|
options['responseHeaders'] = [''];
|
|
172
172
|
// @ts-ignore
|
|
173
173
|
return this.hcClient.sendRequest(options);
|
|
@@ -188,7 +188,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
188
188
|
* @throws {RequiredError}
|
|
189
189
|
*/
|
|
190
190
|
VpcClient.prototype.listSubNetworkInterfaces = function (listSubNetworkInterfacesRequest) {
|
|
191
|
-
var options = exports.ParamCreater().listSubNetworkInterfaces(listSubNetworkInterfacesRequest);
|
|
191
|
+
var options = (0, exports.ParamCreater)().listSubNetworkInterfaces(listSubNetworkInterfacesRequest);
|
|
192
192
|
options['responseHeaders'] = [''];
|
|
193
193
|
// @ts-ignore
|
|
194
194
|
return this.hcClient.sendRequest(options);
|
|
@@ -201,7 +201,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
201
201
|
* @throws {RequiredError}
|
|
202
202
|
*/
|
|
203
203
|
VpcClient.prototype.showSecurityGroup = function (showSecurityGroupRequest) {
|
|
204
|
-
var options = exports.ParamCreater().showSecurityGroup(showSecurityGroupRequest);
|
|
204
|
+
var options = (0, exports.ParamCreater)().showSecurityGroup(showSecurityGroupRequest);
|
|
205
205
|
options['responseHeaders'] = [''];
|
|
206
206
|
// @ts-ignore
|
|
207
207
|
return this.hcClient.sendRequest(options);
|
|
@@ -214,7 +214,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
214
214
|
* @throws {RequiredError}
|
|
215
215
|
*/
|
|
216
216
|
VpcClient.prototype.showSecurityGroupRule = function (showSecurityGroupRuleRequest) {
|
|
217
|
-
var options = exports.ParamCreater().showSecurityGroupRule(showSecurityGroupRuleRequest);
|
|
217
|
+
var options = (0, exports.ParamCreater)().showSecurityGroupRule(showSecurityGroupRuleRequest);
|
|
218
218
|
options['responseHeaders'] = [''];
|
|
219
219
|
// @ts-ignore
|
|
220
220
|
return this.hcClient.sendRequest(options);
|
|
@@ -227,7 +227,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
227
227
|
* @throws {RequiredError}
|
|
228
228
|
*/
|
|
229
229
|
VpcClient.prototype.showSubNetworkInterface = function (showSubNetworkInterfaceRequest) {
|
|
230
|
-
var options = exports.ParamCreater().showSubNetworkInterface(showSubNetworkInterfaceRequest);
|
|
230
|
+
var options = (0, exports.ParamCreater)().showSubNetworkInterface(showSubNetworkInterfaceRequest);
|
|
231
231
|
options['responseHeaders'] = [''];
|
|
232
232
|
// @ts-ignore
|
|
233
233
|
return this.hcClient.sendRequest(options);
|
|
@@ -239,7 +239,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
239
239
|
* @throws {RequiredError}
|
|
240
240
|
*/
|
|
241
241
|
VpcClient.prototype.showSubNetworkInterfacesQuantity = function () {
|
|
242
|
-
var options = exports.ParamCreater().showSubNetworkInterfacesQuantity();
|
|
242
|
+
var options = (0, exports.ParamCreater)().showSubNetworkInterfacesQuantity();
|
|
243
243
|
options['responseHeaders'] = [''];
|
|
244
244
|
// @ts-ignore
|
|
245
245
|
return this.hcClient.sendRequest(options);
|
|
@@ -253,7 +253,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
253
253
|
* @throws {RequiredError}
|
|
254
254
|
*/
|
|
255
255
|
VpcClient.prototype.updateSecurityGroup = function (updateSecurityGroupRequest) {
|
|
256
|
-
var options = exports.ParamCreater().updateSecurityGroup(updateSecurityGroupRequest);
|
|
256
|
+
var options = (0, exports.ParamCreater)().updateSecurityGroup(updateSecurityGroupRequest);
|
|
257
257
|
options['responseHeaders'] = [''];
|
|
258
258
|
// @ts-ignore
|
|
259
259
|
return this.hcClient.sendRequest(options);
|
|
@@ -267,7 +267,7 @@ var VpcClient = /** @class */ (function () {
|
|
|
267
267
|
* @throws {RequiredError}
|
|
268
268
|
*/
|
|
269
269
|
VpcClient.prototype.updateSubNetworkInterface = function (updateSubNetworkInterfaceRequest) {
|
|
270
|
-
var options = exports.ParamCreater().updateSubNetworkInterface(updateSubNetworkInterfaceRequest);
|
|
270
|
+
var options = (0, exports.ParamCreater)().updateSubNetworkInterface(updateSubNetworkInterfaceRequest);
|
|
271
271
|
options['responseHeaders'] = [''];
|
|
272
272
|
// @ts-ignore
|
|
273
273
|
return this.hcClient.sendRequest(options);
|