@huaweicloud/huaweicloud-sdk-vpc 3.0.37-rc → 3.0.38-rc
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.d.ts +661 -20
- package/v2/VpcClient.js +661 -20
- package/v2/VpcRegion.d.ts +18 -0
- package/v2/VpcRegion.js +51 -0
- package/v2/public-api.d.ts +1 -0
- package/v2/public-api.js +1 -0
- package/v3/VpcClient.d.ts +210 -0
- package/v3/VpcClient.js +210 -0
- package/v3/VpcRegion.d.ts +18 -0
- package/v3/VpcRegion.js +51 -0
- package/v3/public-api.d.ts +1 -0
- package/v3/public-api.js +1 -0
package/v2/VpcClient.js
CHANGED
|
@@ -114,6 +114,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
114
114
|
};
|
|
115
115
|
/**
|
|
116
116
|
* 租户A名下的VPC申请和租户B的VPC建立对等连接,需要等待租户B接受该请求。此接口用于租户接受其他租户发起的对等连接请求。
|
|
117
|
+
*
|
|
118
|
+
* 详细说明请参考华为云API Explorer。
|
|
119
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
120
|
+
*
|
|
117
121
|
* @summary 接受对等连接请求
|
|
118
122
|
* @param {string} peeringId 对等连接ID
|
|
119
123
|
* @param {*} [options] Override http request option.
|
|
@@ -127,6 +131,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
127
131
|
};
|
|
128
132
|
/**
|
|
129
133
|
* 路由表关联子网。子网关联路由表A后,再关联B,不需要先跟路由表A解关联再关联路由表B
|
|
134
|
+
*
|
|
135
|
+
* 详细说明请参考华为云API Explorer。
|
|
136
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
137
|
+
*
|
|
130
138
|
* @summary 子网关联路由表
|
|
131
139
|
* @param {string} routetableId 路由表ID
|
|
132
140
|
* @param {RoutetableAssociateReqbody} routetableAssociate 关联路由表与子网请求体
|
|
@@ -140,7 +148,12 @@ var VpcClient = /** @class */ (function () {
|
|
|
140
148
|
return this.hcClient.sendRequest(options);
|
|
141
149
|
};
|
|
142
150
|
/**
|
|
143
|
-
* 为指定的子网资源实例批量添加标签。
|
|
151
|
+
* 为指定的子网资源实例批量添加标签。
|
|
152
|
+
* 此接口为幂等接口:创建时如果请求体中存在重复key则报错。创建时,不允许设置重复key数据,如果数据库已存在该key,就覆盖value的值。
|
|
153
|
+
*
|
|
154
|
+
* 详细说明请参考华为云API Explorer。
|
|
155
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
156
|
+
*
|
|
144
157
|
* @summary 批量创建子网资源标签
|
|
145
158
|
* @param {string} subnetId 子网ID
|
|
146
159
|
* @param {BatchCreateSubnetTagsRequestBody} batchCreateSubnetTagsRequestBody This is a auto create Body Object
|
|
@@ -154,7 +167,12 @@ var VpcClient = /** @class */ (function () {
|
|
|
154
167
|
return this.hcClient.sendRequest(options);
|
|
155
168
|
};
|
|
156
169
|
/**
|
|
157
|
-
* 为指定的子网资源实例批量删除标签
|
|
170
|
+
* 为指定的子网资源实例批量删除标签
|
|
171
|
+
* 此接口为幂等接口:删除时,如果删除的标签不存在,默认处理成功;删除时不对标签字符集范围做校验。删除时tags结构体不能缺失,key不能为空,或者空字符串。
|
|
172
|
+
*
|
|
173
|
+
* 详细说明请参考华为云API Explorer。
|
|
174
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
175
|
+
*
|
|
158
176
|
* @summary 批量删除子网资源标签
|
|
159
177
|
* @param {string} subnetId 子网ID
|
|
160
178
|
* @param {BatchDeleteSubnetTagsRequestBody} batchDeleteSubnetTagsRequestBody This is a auto create Body Object
|
|
@@ -169,6 +187,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
169
187
|
};
|
|
170
188
|
/**
|
|
171
189
|
* 创建端口。
|
|
190
|
+
*
|
|
191
|
+
* 详细说明请参考华为云API Explorer。
|
|
192
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
193
|
+
*
|
|
172
194
|
* @summary 创建端口
|
|
173
195
|
* @param {CreatePortRequestBody} port 创建端口对象
|
|
174
196
|
* @param {*} [options] Override http request option.
|
|
@@ -182,6 +204,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
182
204
|
};
|
|
183
205
|
/**
|
|
184
206
|
* 创建路由表
|
|
207
|
+
*
|
|
208
|
+
* 详细说明请参考华为云API Explorer。
|
|
209
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
210
|
+
*
|
|
185
211
|
* @summary 创建路由表
|
|
186
212
|
* @param {CreateRoutetableReqBody} routetable 创建路由表对象,参见CreateRouteTableReq对象
|
|
187
213
|
* @param {*} [options] Override http request option.
|
|
@@ -195,6 +221,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
195
221
|
};
|
|
196
222
|
/**
|
|
197
223
|
* 创建安全组。
|
|
224
|
+
*
|
|
225
|
+
* 详细说明请参考华为云API Explorer。
|
|
226
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
227
|
+
*
|
|
198
228
|
* @summary 创建安全组
|
|
199
229
|
* @param {CreateSecurityGroupRequestBody} securityGroup 创建安全组对象
|
|
200
230
|
* @param {*} [options] Override http request option.
|
|
@@ -208,6 +238,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
208
238
|
};
|
|
209
239
|
/**
|
|
210
240
|
* 创建安全组规则。
|
|
241
|
+
*
|
|
242
|
+
* 详细说明请参考华为云API Explorer。
|
|
243
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
244
|
+
*
|
|
211
245
|
* @summary 创建安全组规则
|
|
212
246
|
* @param {CreateSecurityGroupRuleRequestBody} securityGroupRule 创建安全组规则对象
|
|
213
247
|
* @param {*} [options] Override http request option.
|
|
@@ -221,6 +255,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
221
255
|
};
|
|
222
256
|
/**
|
|
223
257
|
* 创建子网。
|
|
258
|
+
*
|
|
259
|
+
* 详细说明请参考华为云API Explorer。
|
|
260
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
261
|
+
*
|
|
224
262
|
* @summary 创建子网
|
|
225
263
|
* @param {CreateSubnetRequestBody} subnet 创建子网对象
|
|
226
264
|
* @param {*} [options] Override http request option.
|
|
@@ -233,7 +271,12 @@ var VpcClient = /** @class */ (function () {
|
|
|
233
271
|
return this.hcClient.sendRequest(options);
|
|
234
272
|
};
|
|
235
273
|
/**
|
|
236
|
-
* 给指定子网资源实例增加标签信息。
|
|
274
|
+
* 给指定子网资源实例增加标签信息。
|
|
275
|
+
* 此接口为幂等接口:创建时,如果创建的标签已经存在(key相同),则覆盖。
|
|
276
|
+
*
|
|
277
|
+
* 详细说明请参考华为云API Explorer。
|
|
278
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
279
|
+
*
|
|
237
280
|
* @summary 创建子网资源标签
|
|
238
281
|
* @param {string} subnetId 子网ID
|
|
239
282
|
* @param {CreateSubnetTagRequestBody} createSubnetTagRequestBody This is a auto create Body Object
|
|
@@ -248,6 +291,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
248
291
|
};
|
|
249
292
|
/**
|
|
250
293
|
* 创建对等连接。
|
|
294
|
+
*
|
|
295
|
+
* 详细说明请参考华为云API Explorer。
|
|
296
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
297
|
+
*
|
|
251
298
|
* @summary 创建对等连接
|
|
252
299
|
* @param {CreateVpcPeeringRequestBody} peering peering对象
|
|
253
300
|
* @param {*} [options] Override http request option.
|
|
@@ -261,6 +308,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
261
308
|
};
|
|
262
309
|
/**
|
|
263
310
|
* 删除端口。
|
|
311
|
+
*
|
|
312
|
+
* 详细说明请参考华为云API Explorer。
|
|
313
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
314
|
+
*
|
|
264
315
|
* @summary 删除端口
|
|
265
316
|
* @param {string} portId 端口ID
|
|
266
317
|
* @param {*} [options] Override http request option.
|
|
@@ -274,6 +325,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
274
325
|
};
|
|
275
326
|
/**
|
|
276
327
|
* 删除路由表
|
|
328
|
+
*
|
|
329
|
+
* 详细说明请参考华为云API Explorer。
|
|
330
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
331
|
+
*
|
|
277
332
|
* @summary 删除路由表
|
|
278
333
|
* @param {string} routetableId 路由表ID
|
|
279
334
|
* @param {*} [options] Override http request option.
|
|
@@ -287,6 +342,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
287
342
|
};
|
|
288
343
|
/**
|
|
289
344
|
* 删除安全组。
|
|
345
|
+
*
|
|
346
|
+
* 详细说明请参考华为云API Explorer。
|
|
347
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
348
|
+
*
|
|
290
349
|
* @summary 删除安全组
|
|
291
350
|
* @param {string} securityGroupId 安全组ID
|
|
292
351
|
* @param {*} [options] Override http request option.
|
|
@@ -300,6 +359,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
300
359
|
};
|
|
301
360
|
/**
|
|
302
361
|
* 删除安全组规则。
|
|
362
|
+
*
|
|
363
|
+
* 详细说明请参考华为云API Explorer。
|
|
364
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
365
|
+
*
|
|
303
366
|
* @summary 删除安全组规则
|
|
304
367
|
* @param {string} securityGroupRuleId 安全组规则ID
|
|
305
368
|
* @param {*} [options] Override http request option.
|
|
@@ -313,6 +376,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
313
376
|
};
|
|
314
377
|
/**
|
|
315
378
|
* 删除子网
|
|
379
|
+
*
|
|
380
|
+
* 详细说明请参考华为云API Explorer。
|
|
381
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
382
|
+
*
|
|
316
383
|
* @summary 删除子网
|
|
317
384
|
* @param {string} vpcId 子网对应的vpc_id
|
|
318
385
|
* @param {string} subnetId 子网ID
|
|
@@ -326,7 +393,12 @@ var VpcClient = /** @class */ (function () {
|
|
|
326
393
|
return this.hcClient.sendRequest(options);
|
|
327
394
|
};
|
|
328
395
|
/**
|
|
329
|
-
* 删除指定子网资源实例的标签信息。
|
|
396
|
+
* 删除指定子网资源实例的标签信息。
|
|
397
|
+
* 该接口为幂等接口:删除的key不存在报404,Key不能为空或者空字符串
|
|
398
|
+
*
|
|
399
|
+
* 详细说明请参考华为云API Explorer。
|
|
400
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
401
|
+
*
|
|
330
402
|
* @summary 删除子网资源标签
|
|
331
403
|
* @param {string} subnetId 子网ID
|
|
332
404
|
* @param {string} key 功能说明:键值
|
|
@@ -340,7 +412,12 @@ var VpcClient = /** @class */ (function () {
|
|
|
340
412
|
return this.hcClient.sendRequest(options);
|
|
341
413
|
};
|
|
342
414
|
/**
|
|
343
|
-
* 删除对等连接。
|
|
415
|
+
* 删除对等连接。
|
|
416
|
+
* 可以在在本端或对端任何一端删除对等连接。
|
|
417
|
+
*
|
|
418
|
+
* 详细说明请参考华为云API Explorer。
|
|
419
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
420
|
+
*
|
|
344
421
|
* @summary 删除对等连接
|
|
345
422
|
* @param {string} peeringId 对等连接ID
|
|
346
423
|
* @param {*} [options] Override http request option.
|
|
@@ -354,6 +431,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
354
431
|
};
|
|
355
432
|
/**
|
|
356
433
|
* 子网解关联路由表
|
|
434
|
+
*
|
|
435
|
+
* 详细说明请参考华为云API Explorer。
|
|
436
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
437
|
+
*
|
|
357
438
|
* @summary 子网解关联路由表
|
|
358
439
|
* @param {string} routetableId 路由表ID
|
|
359
440
|
* @param {RoutetableAssociateReqbody} routetableAssociate 关联路由表与子网请求体
|
|
@@ -368,6 +449,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
368
449
|
};
|
|
369
450
|
/**
|
|
370
451
|
* 查询提交请求的租户的所有端口,单次查询最多返回2000条数据。
|
|
452
|
+
*
|
|
453
|
+
* 详细说明请参考华为云API Explorer。
|
|
454
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
455
|
+
*
|
|
371
456
|
* @summary 查询端口列表
|
|
372
457
|
* @param {string} [name] 功能说明:按照name过滤查询 取值范围:最大长度不超过255
|
|
373
458
|
* @param {string} [id] 按照port_id过滤查询
|
|
@@ -392,6 +477,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
392
477
|
};
|
|
393
478
|
/**
|
|
394
479
|
* 查询提交请求的帐户的所有路由表列表,并根据过滤条件进行过滤
|
|
480
|
+
*
|
|
481
|
+
* 详细说明请参考华为云API Explorer。
|
|
482
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
483
|
+
*
|
|
395
484
|
* @summary 查询路由表列表
|
|
396
485
|
* @param {number} [limit] 每页返回的个数
|
|
397
486
|
* @param {string} [marker] 分页查询起始的资源ID,为空时为查询第一页
|
|
@@ -409,6 +498,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
409
498
|
};
|
|
410
499
|
/**
|
|
411
500
|
* 查询安全组规则列表。
|
|
501
|
+
*
|
|
502
|
+
* 详细说明请参考华为云API Explorer。
|
|
503
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
504
|
+
*
|
|
412
505
|
* @summary 查询安全组规则列表
|
|
413
506
|
* @param {string} [marker] 功能说明:分页查询起始的资源ID,为空时查询第一页
|
|
414
507
|
* @param {number} [limit] 每页返回的个数
|
|
@@ -424,6 +517,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
424
517
|
};
|
|
425
518
|
/**
|
|
426
519
|
* 查询安全组列表
|
|
520
|
+
*
|
|
521
|
+
* 详细说明请参考华为云API Explorer。
|
|
522
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
523
|
+
*
|
|
427
524
|
* @summary 查询安全组列表
|
|
428
525
|
* @param {number} [limit] 每页返回的个数
|
|
429
526
|
* @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
|
|
@@ -440,6 +537,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
440
537
|
};
|
|
441
538
|
/**
|
|
442
539
|
* 查询租户在指定区域和实例类型的所有标签集合
|
|
540
|
+
*
|
|
541
|
+
* 详细说明请参考华为云API Explorer。
|
|
542
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
543
|
+
*
|
|
443
544
|
* @summary 查询子网项目标签
|
|
444
545
|
* @param {*} [options] Override http request option.
|
|
445
546
|
* @throws {RequiredError}
|
|
@@ -452,6 +553,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
452
553
|
};
|
|
453
554
|
/**
|
|
454
555
|
* 查询子网列表
|
|
556
|
+
*
|
|
557
|
+
* 详细说明请参考华为云API Explorer。
|
|
558
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
559
|
+
*
|
|
455
560
|
* @summary 查询子网列表
|
|
456
561
|
* @param {number} [limit] 每页返回的个数
|
|
457
562
|
* @param {string} [marker] 分页查询起始的资源id,为空时查询第一页
|
|
@@ -467,6 +572,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
467
572
|
};
|
|
468
573
|
/**
|
|
469
574
|
* 使用标签过滤实例
|
|
575
|
+
*
|
|
576
|
+
* 详细说明请参考华为云API Explorer。
|
|
577
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
578
|
+
*
|
|
470
579
|
* @summary 查询子网资源实例
|
|
471
580
|
* @param {ListSubnetsByTagsRequestBody} listSubnetsByTagsRequestBody This is a auto create Body Object
|
|
472
581
|
* @param {*} [options] Override http request option.
|
|
@@ -480,6 +589,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
480
589
|
};
|
|
481
590
|
/**
|
|
482
591
|
* 查询提交请求的租户的所有对等连接。根据过滤条件进行过滤。
|
|
592
|
+
*
|
|
593
|
+
* 详细说明请参考华为云API Explorer。
|
|
594
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
595
|
+
*
|
|
483
596
|
* @summary 查询对等连接列表
|
|
484
597
|
* @param {number} [limit] 每页返回的个数
|
|
485
598
|
* @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
|
|
@@ -499,6 +612,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
499
612
|
};
|
|
500
613
|
/**
|
|
501
614
|
* 租户A名下的VPC申请和租户B的VPC建立对等连接,需要等待租户B接受该请求。此接口用于租户拒绝其他租户发起的对等连接请求。
|
|
615
|
+
*
|
|
616
|
+
* 详细说明请参考华为云API Explorer。
|
|
617
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
618
|
+
*
|
|
502
619
|
* @summary 拒绝对等连接请求
|
|
503
620
|
* @param {string} peeringId 对等连接ID
|
|
504
621
|
* @param {*} [options] Override http request option.
|
|
@@ -512,6 +629,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
512
629
|
};
|
|
513
630
|
/**
|
|
514
631
|
* 查询单个端口详情。
|
|
632
|
+
*
|
|
633
|
+
* 详细说明请参考华为云API Explorer。
|
|
634
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
635
|
+
*
|
|
515
636
|
* @summary 查询端口
|
|
516
637
|
* @param {string} portId 端口ID
|
|
517
638
|
* @param {*} [options] Override http request option.
|
|
@@ -525,6 +646,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
525
646
|
};
|
|
526
647
|
/**
|
|
527
648
|
* 查询单租户在VPC服务下的网络资源配额,包括vpc配额、子网配额、安全组配额、安全组规则配额、弹性公网IP配额,vpn配额等。
|
|
649
|
+
*
|
|
650
|
+
* 详细说明请参考华为云API Explorer。
|
|
651
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
652
|
+
*
|
|
528
653
|
* @summary 查询配额
|
|
529
654
|
* @param {'vpc' | 'subnet' | 'securityGroup' | 'securityGroupRule' | 'publicIp' | 'vpn' | 'vpngw' | 'vpcPeer' | 'firewall' | 'shareBandwidth' | 'shareBandwidthIP' | 'loadbalancer' | 'listener' | 'physicalConnect' | 'virtualInterface' | 'vpcContainRoutetable' | 'routetableContainRoutes'} [type] 功能说明:根据type过滤查询指定类型的配额 取值范围:vpc,subnet,securityGroup,securityGroupRule,publicIp,vpn,vpngw,vpcPeer,firewall,shareBandwidth,shareBandwidthIP,loadbalancer,listener,physicalConnect,virtualInterface,vpcContainRoutetable,routetableContainRoutes
|
|
530
655
|
* @param {*} [options] Override http request option.
|
|
@@ -538,6 +663,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
538
663
|
};
|
|
539
664
|
/**
|
|
540
665
|
* 查询路由表详情
|
|
666
|
+
*
|
|
667
|
+
* 详细说明请参考华为云API Explorer。
|
|
668
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
669
|
+
*
|
|
541
670
|
* @summary 查询路由表
|
|
542
671
|
* @param {string} routetableId 路由表ID
|
|
543
672
|
* @param {*} [options] Override http request option.
|
|
@@ -551,6 +680,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
551
680
|
};
|
|
552
681
|
/**
|
|
553
682
|
* 查询单个安全组详情。
|
|
683
|
+
*
|
|
684
|
+
* 详细说明请参考华为云API Explorer。
|
|
685
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
686
|
+
*
|
|
554
687
|
* @summary 查询安全组
|
|
555
688
|
* @param {string} securityGroupId 安全组ID
|
|
556
689
|
* @param {*} [options] Override http request option.
|
|
@@ -564,6 +697,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
564
697
|
};
|
|
565
698
|
/**
|
|
566
699
|
* 查询单个安全组规则详情
|
|
700
|
+
*
|
|
701
|
+
* 详细说明请参考华为云API Explorer。
|
|
702
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
703
|
+
*
|
|
567
704
|
* @summary 查询安全组规则
|
|
568
705
|
* @param {string} securityGroupRuleId 安全组规则ID
|
|
569
706
|
* @param {*} [options] Override http request option.
|
|
@@ -577,6 +714,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
577
714
|
};
|
|
578
715
|
/**
|
|
579
716
|
* 查询子网详情。
|
|
717
|
+
*
|
|
718
|
+
* 详细说明请参考华为云API Explorer。
|
|
719
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
720
|
+
*
|
|
580
721
|
* @summary 查询子网
|
|
581
722
|
* @param {string} subnetId 子网ID
|
|
582
723
|
* @param {*} [options] Override http request option.
|
|
@@ -590,6 +731,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
590
731
|
};
|
|
591
732
|
/**
|
|
592
733
|
* 查询指定子网实例的标签信息。
|
|
734
|
+
*
|
|
735
|
+
* 详细说明请参考华为云API Explorer。
|
|
736
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
737
|
+
*
|
|
593
738
|
* @summary 查询子网资源标签
|
|
594
739
|
* @param {string} subnetId 子网ID
|
|
595
740
|
* @param {*} [options] Override http request option.
|
|
@@ -603,6 +748,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
603
748
|
};
|
|
604
749
|
/**
|
|
605
750
|
* 查询对等连接详情。
|
|
751
|
+
*
|
|
752
|
+
* 详细说明请参考华为云API Explorer。
|
|
753
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
754
|
+
*
|
|
606
755
|
* @summary 查询对等连接
|
|
607
756
|
* @param {string} peeringId 对等连接ID
|
|
608
757
|
* @param {*} [options] Override http request option.
|
|
@@ -616,6 +765,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
616
765
|
};
|
|
617
766
|
/**
|
|
618
767
|
* 更新端口。
|
|
768
|
+
*
|
|
769
|
+
* 详细说明请参考华为云API Explorer。
|
|
770
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
771
|
+
*
|
|
619
772
|
* @summary 更新端口
|
|
620
773
|
* @param {string} portId 端口ID
|
|
621
774
|
* @param {UpdatePortRequestBody} port 更新端口对象
|
|
@@ -630,6 +783,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
630
783
|
};
|
|
631
784
|
/**
|
|
632
785
|
* 更新路由表,包括可以更新路由表的名称,描述,以及新增、更新、删除路由条目
|
|
786
|
+
*
|
|
787
|
+
* 详细说明请参考华为云API Explorer。
|
|
788
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
789
|
+
*
|
|
633
790
|
* @summary 更新路由表
|
|
634
791
|
* @param {string} routetableId 路由表ID
|
|
635
792
|
* @param {UpdateRoutetableReqBody} routetable 更新路由表对象,参见UpdateRouteTableReq对象
|
|
@@ -644,6 +801,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
644
801
|
};
|
|
645
802
|
/**
|
|
646
803
|
* 更新子网。
|
|
804
|
+
*
|
|
805
|
+
* 详细说明请参考华为云API Explorer。
|
|
806
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
807
|
+
*
|
|
647
808
|
* @summary 更新子网
|
|
648
809
|
* @param {string} vpcId 子网对应的vpc_id
|
|
649
810
|
* @param {string} subnetId 子网ID
|
|
@@ -659,6 +820,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
659
820
|
};
|
|
660
821
|
/**
|
|
661
822
|
* 更新对等连接。
|
|
823
|
+
*
|
|
824
|
+
* 详细说明请参考华为云API Explorer。
|
|
825
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
826
|
+
*
|
|
662
827
|
* @summary 更新对等连接
|
|
663
828
|
* @param {string} peeringId 对等连接ID
|
|
664
829
|
* @param {UpdateVpcPeeringRequestBody} peering 更新peering对象
|
|
@@ -673,6 +838,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
673
838
|
};
|
|
674
839
|
/**
|
|
675
840
|
* 申请私有IP。
|
|
841
|
+
*
|
|
842
|
+
* 详细说明请参考华为云API Explorer。
|
|
843
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
844
|
+
*
|
|
676
845
|
* @summary 申请私有IP
|
|
677
846
|
* @param {CreatePrivateipRequestBody} privateips 申请私有IP对象
|
|
678
847
|
* @param {*} [options] Override http request option.
|
|
@@ -686,6 +855,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
686
855
|
};
|
|
687
856
|
/**
|
|
688
857
|
* 删除私有IP。
|
|
858
|
+
*
|
|
859
|
+
* 详细说明请参考华为云API Explorer。
|
|
860
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
861
|
+
*
|
|
689
862
|
* @summary 删除私有IP
|
|
690
863
|
* @param {string} privateipId 私有IP ID
|
|
691
864
|
* @param {*} [options] Override http request option.
|
|
@@ -699,6 +872,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
699
872
|
};
|
|
700
873
|
/**
|
|
701
874
|
* 查询指定子网下的私有IP列表。
|
|
875
|
+
*
|
|
876
|
+
* 详细说明请参考华为云API Explorer。
|
|
877
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
878
|
+
*
|
|
702
879
|
* @summary 查询私有IP列表
|
|
703
880
|
* @param {string} subnetId 私有IP所在子网的唯一标识
|
|
704
881
|
* @param {number} [limit] 每页返回的个数
|
|
@@ -713,7 +890,18 @@ var VpcClient = /** @class */ (function () {
|
|
|
713
890
|
return this.hcClient.sendRequest(options);
|
|
714
891
|
};
|
|
715
892
|
/**
|
|
716
|
-
* 显示一个指定网络中的IPv4地址使用情况。
|
|
893
|
+
* 显示一个指定网络中的IPv4地址使用情况。
|
|
894
|
+
* 包括此网络中的IP总数以及已用IP总数,以及网络下每一个子网的IP地址总数和可用IP地址总数。
|
|
895
|
+
*
|
|
896
|
+
* > 须知
|
|
897
|
+
*
|
|
898
|
+
* - 系统预留地址指的是子网的第1个以及最后4个地址,一般用于网关、DHCP等服务。
|
|
899
|
+
* - 这里以及下文描述的IP地址总数、已用IP地址总数不包含系统预留地址。
|
|
900
|
+
* - 在分配IP时,用户可以指定系统预留的IP地址。但是不论IP是如何分配的,只要是处于系统预留IP地址段的IP均不会被统计到已用IP地址数目和IP地址总数中。
|
|
901
|
+
*
|
|
902
|
+
* 详细说明请参考华为云API Explorer。
|
|
903
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
904
|
+
*
|
|
717
905
|
* @summary 查询网络IP使用情况
|
|
718
906
|
* @param {string} networkId 网络ID
|
|
719
907
|
* @param {*} [options] Override http request option.
|
|
@@ -727,6 +915,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
727
915
|
};
|
|
728
916
|
/**
|
|
729
917
|
* 指定ID查询私有IP。
|
|
918
|
+
*
|
|
919
|
+
* 详细说明请参考华为云API Explorer。
|
|
920
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
921
|
+
*
|
|
730
922
|
* @summary 查询私有IP
|
|
731
923
|
* @param {string} privateipId 私有IP ID
|
|
732
924
|
* @param {*} [options] Override http request option.
|
|
@@ -740,6 +932,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
740
932
|
};
|
|
741
933
|
/**
|
|
742
934
|
* 创建安全组
|
|
935
|
+
*
|
|
936
|
+
* 详细说明请参考华为云API Explorer。
|
|
937
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
938
|
+
*
|
|
743
939
|
* @summary 创建安全组
|
|
744
940
|
* @param {NeutronCreateSecurityGroupRequestBody} securityGroup 安全组对象
|
|
745
941
|
* @param {*} [options] Override http request option.
|
|
@@ -753,6 +949,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
753
949
|
};
|
|
754
950
|
/**
|
|
755
951
|
* 创建安全组规则
|
|
952
|
+
*
|
|
953
|
+
* 详细说明请参考华为云API Explorer。
|
|
954
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
955
|
+
*
|
|
756
956
|
* @summary 创建安全组规则
|
|
757
957
|
* @param {NeutronCreateSecurityGroupRuleRequestBody} securityGroupRule 安全组规则对象
|
|
758
958
|
* @param {*} [options] Override http request option.
|
|
@@ -766,6 +966,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
766
966
|
};
|
|
767
967
|
/**
|
|
768
968
|
* 删除安全组
|
|
969
|
+
*
|
|
970
|
+
* 详细说明请参考华为云API Explorer。
|
|
971
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
972
|
+
*
|
|
769
973
|
* @summary 删除安全组
|
|
770
974
|
* @param {string} securityGroupId 安全组ID
|
|
771
975
|
* @param {*} [options] Override http request option.
|
|
@@ -779,6 +983,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
779
983
|
};
|
|
780
984
|
/**
|
|
781
985
|
* 删除安全组规则
|
|
986
|
+
*
|
|
987
|
+
* 详细说明请参考华为云API Explorer。
|
|
988
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
989
|
+
*
|
|
782
990
|
* @summary 删除安全组规则
|
|
783
991
|
* @param {string} securityGroupRuleId 安全组规则ID
|
|
784
992
|
* @param {*} [options] Override http request option.
|
|
@@ -792,6 +1000,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
792
1000
|
};
|
|
793
1001
|
/**
|
|
794
1002
|
* 查询提交请求的租户有权限查看的所有安全组规则。单次查询最多返回2000条数据,超过2000后会返回分页标记。分页查询请参考分页查询
|
|
1003
|
+
*
|
|
1004
|
+
* 详细说明请参考华为云API Explorer。
|
|
1005
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1006
|
+
*
|
|
795
1007
|
* @summary 查询安全组规则列表
|
|
796
1008
|
* @param {number} [limit] 每页返回的个数
|
|
797
1009
|
* @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
|
|
@@ -817,6 +1029,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
817
1029
|
};
|
|
818
1030
|
/**
|
|
819
1031
|
* 查询提交请求租户的所有安全组,单次查询最多返回2000条数据,超过2000后会返回分页标记。分页查询请参考分页查询 。
|
|
1032
|
+
*
|
|
1033
|
+
* 详细说明请参考华为云API Explorer。
|
|
1034
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1035
|
+
*
|
|
820
1036
|
* @summary 查询安全组列表
|
|
821
1037
|
* @param {number} [limit] 每页返回的个数
|
|
822
1038
|
* @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
|
|
@@ -835,6 +1051,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
835
1051
|
};
|
|
836
1052
|
/**
|
|
837
1053
|
* 查询安全组详情
|
|
1054
|
+
*
|
|
1055
|
+
* 详细说明请参考华为云API Explorer。
|
|
1056
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1057
|
+
*
|
|
838
1058
|
* @summary 查询安全组
|
|
839
1059
|
* @param {string} securityGroupId 安全组ID
|
|
840
1060
|
* @param {*} [options] Override http request option.
|
|
@@ -848,6 +1068,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
848
1068
|
};
|
|
849
1069
|
/**
|
|
850
1070
|
* 查询安全组规则详情。
|
|
1071
|
+
*
|
|
1072
|
+
* 详细说明请参考华为云API Explorer。
|
|
1073
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1074
|
+
*
|
|
851
1075
|
* @summary 查询安全组规则
|
|
852
1076
|
* @param {string} securityGroupRuleId 安全组规则ID
|
|
853
1077
|
* @param {*} [options] Override http request option.
|
|
@@ -861,6 +1085,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
861
1085
|
};
|
|
862
1086
|
/**
|
|
863
1087
|
* 更新安全组
|
|
1088
|
+
*
|
|
1089
|
+
* 详细说明请参考华为云API Explorer。
|
|
1090
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1091
|
+
*
|
|
864
1092
|
* @summary 更新安全组
|
|
865
1093
|
* @param {string} securityGroupId 安全组ID
|
|
866
1094
|
* @param {NeutronUpdateSecurityGroupRequestBody} securityGroup 安全组
|
|
@@ -875,6 +1103,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
875
1103
|
};
|
|
876
1104
|
/**
|
|
877
1105
|
* 插入一条网络ACL规则到某一网络ACL策略中。
|
|
1106
|
+
*
|
|
1107
|
+
* 详细说明请参考华为云API Explorer。
|
|
1108
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1109
|
+
*
|
|
878
1110
|
* @summary 插入网络ACL规则
|
|
879
1111
|
* @param {string} firewallPolicyId 网络ACL防火墙策略ID
|
|
880
1112
|
* @param {NeutronInsertFirewallRuleRequestBody} insertFirewallRule 插入ACL规则请求体
|
|
@@ -889,6 +1121,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
889
1121
|
};
|
|
890
1122
|
/**
|
|
891
1123
|
* 创建网络ACL组
|
|
1124
|
+
*
|
|
1125
|
+
* 详细说明请参考华为云API Explorer。
|
|
1126
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1127
|
+
*
|
|
892
1128
|
* @summary 创建网络ACL组
|
|
893
1129
|
* @param {NeutronCreateFirewallGroupRequestBody} firewallGroup firewall group对象
|
|
894
1130
|
* @param {*} [options] Override http request option.
|
|
@@ -902,6 +1138,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
902
1138
|
};
|
|
903
1139
|
/**
|
|
904
1140
|
* 创建网络ACL策略。
|
|
1141
|
+
*
|
|
1142
|
+
* 详细说明请参考华为云API Explorer。
|
|
1143
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1144
|
+
*
|
|
905
1145
|
* @summary 创建网络ACL策略
|
|
906
1146
|
* @param {NeutronCreateFirewallPolicyRequestBody} firewallPolicy firewall policy对象
|
|
907
1147
|
* @param {*} [options] Override http request option.
|
|
@@ -915,6 +1155,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
915
1155
|
};
|
|
916
1156
|
/**
|
|
917
1157
|
* 创建网络ACL规则。
|
|
1158
|
+
*
|
|
1159
|
+
* 详细说明请参考华为云API Explorer。
|
|
1160
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1161
|
+
*
|
|
918
1162
|
* @summary 创建网络ACL规则
|
|
919
1163
|
* @param {NeutronCreateFirewallRuleRequestBody} firewallRule firewall rule对象
|
|
920
1164
|
* @param {*} [options] Override http request option.
|
|
@@ -928,6 +1172,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
928
1172
|
};
|
|
929
1173
|
/**
|
|
930
1174
|
* 删除网络ACL组
|
|
1175
|
+
*
|
|
1176
|
+
* 详细说明请参考华为云API Explorer。
|
|
1177
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1178
|
+
*
|
|
931
1179
|
* @summary 删除网络ACL组
|
|
932
1180
|
* @param {string} firewallGroupId 网络ACL防火墙组ID
|
|
933
1181
|
* @param {*} [options] Override http request option.
|
|
@@ -941,6 +1189,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
941
1189
|
};
|
|
942
1190
|
/**
|
|
943
1191
|
* 删除网络ACL策略。
|
|
1192
|
+
*
|
|
1193
|
+
* 详细说明请参考华为云API Explorer。
|
|
1194
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1195
|
+
*
|
|
944
1196
|
* @summary 删除网络ACL策略
|
|
945
1197
|
* @param {string} firewallPolicyId 网络ACL防火墙策略ID
|
|
946
1198
|
* @param {*} [options] Override http request option.
|
|
@@ -954,6 +1206,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
954
1206
|
};
|
|
955
1207
|
/**
|
|
956
1208
|
* 删除网络ACL规则。
|
|
1209
|
+
*
|
|
1210
|
+
* 详细说明请参考华为云API Explorer。
|
|
1211
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1212
|
+
*
|
|
957
1213
|
* @summary 删除网络ACL规则
|
|
958
1214
|
* @param {string} firewallRuleId 网络ACL防火墙规则ID
|
|
959
1215
|
* @param {*} [options] Override http request option.
|
|
@@ -967,6 +1223,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
967
1223
|
};
|
|
968
1224
|
/**
|
|
969
1225
|
* 查询提交请求的租户有权限操作的所有网络ACL组信息。单次查询最多返回2000条数据,超过2000后会返回分页标记。
|
|
1226
|
+
*
|
|
1227
|
+
* 详细说明请参考华为云API Explorer。
|
|
1228
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1229
|
+
*
|
|
970
1230
|
* @summary 查询所有网络ACL组
|
|
971
1231
|
* @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
|
|
972
1232
|
* @param {number} [limit] 每页返回的个数
|
|
@@ -986,6 +1246,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
986
1246
|
};
|
|
987
1247
|
/**
|
|
988
1248
|
* 查询提交请求的租户有权限操作的所有网络ACL策略信息。单次查询最多返回2000条数据,超过2000后会返回分页标记。
|
|
1249
|
+
*
|
|
1250
|
+
* 详细说明请参考华为云API Explorer。
|
|
1251
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1252
|
+
*
|
|
989
1253
|
* @summary 查询所有网络ACL策略
|
|
990
1254
|
* @param {number} [limit] 每页返回的个数
|
|
991
1255
|
* @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
|
|
@@ -1004,6 +1268,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1004
1268
|
};
|
|
1005
1269
|
/**
|
|
1006
1270
|
* 查询提交请求的租户有权限操作的所有网络ACL规则信息。单次查询最多返回2000条数据,超过2000后会返回分页标记。
|
|
1271
|
+
*
|
|
1272
|
+
* 详细说明请参考华为云API Explorer。
|
|
1273
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1274
|
+
*
|
|
1007
1275
|
* @summary 查询所有网络ACL规则
|
|
1008
1276
|
* @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
|
|
1009
1277
|
* @param {number} [limit] 每页返回的个数
|
|
@@ -1023,6 +1291,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1023
1291
|
};
|
|
1024
1292
|
/**
|
|
1025
1293
|
* 从某一网络ACL策略中移除一条网络ACL规则。
|
|
1294
|
+
*
|
|
1295
|
+
* 详细说明请参考华为云API Explorer。
|
|
1296
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1297
|
+
*
|
|
1026
1298
|
* @summary 移除网络ACL规则
|
|
1027
1299
|
* @param {string} firewallPolicyId 网络ACL防火墙策略ID
|
|
1028
1300
|
* @param {NeutronRemoveFirewallRuleRequestBody} removeFirewallRule 移除ACL规则请求体
|
|
@@ -1037,6 +1309,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1037
1309
|
};
|
|
1038
1310
|
/**
|
|
1039
1311
|
* 查询特定网络ACL组详情。
|
|
1312
|
+
*
|
|
1313
|
+
* 详细说明请参考华为云API Explorer。
|
|
1314
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1315
|
+
*
|
|
1040
1316
|
* @summary 查询特定网络ACL组详情
|
|
1041
1317
|
* @param {string} firewallGroupId 网络ACL防火墙组ID
|
|
1042
1318
|
* @param {*} [options] Override http request option.
|
|
@@ -1050,6 +1326,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1050
1326
|
};
|
|
1051
1327
|
/**
|
|
1052
1328
|
* 查询特定网络ACL策略详情。
|
|
1329
|
+
*
|
|
1330
|
+
* 详细说明请参考华为云API Explorer。
|
|
1331
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1332
|
+
*
|
|
1053
1333
|
* @summary 查询特定网络ACL策略详情
|
|
1054
1334
|
* @param {string} firewallPolicyId 网络ACL防火墙策略ID
|
|
1055
1335
|
* @param {*} [options] Override http request option.
|
|
@@ -1063,6 +1343,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1063
1343
|
};
|
|
1064
1344
|
/**
|
|
1065
1345
|
* 查询特定网络ACL规则。
|
|
1346
|
+
*
|
|
1347
|
+
* 详细说明请参考华为云API Explorer。
|
|
1348
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1349
|
+
*
|
|
1066
1350
|
* @summary 查询特定网络ACL规则
|
|
1067
1351
|
* @param {string} firewallRuleId 网络ACL规则ID
|
|
1068
1352
|
* @param {*} [options] Override http request option.
|
|
@@ -1076,6 +1360,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1076
1360
|
};
|
|
1077
1361
|
/**
|
|
1078
1362
|
* 更新网络ACL组。
|
|
1363
|
+
*
|
|
1364
|
+
* 详细说明请参考华为云API Explorer。
|
|
1365
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1366
|
+
*
|
|
1079
1367
|
* @summary 更新网络ACL组
|
|
1080
1368
|
* @param {string} firewallGroupId 网络ACL防火墙组ID
|
|
1081
1369
|
* @param {NeutronUpdateFirewallGroupRequestBody} firewallGroup firewall group对象
|
|
@@ -1090,6 +1378,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1090
1378
|
};
|
|
1091
1379
|
/**
|
|
1092
1380
|
* 更新网络ACL策略。
|
|
1381
|
+
*
|
|
1382
|
+
* 详细说明请参考华为云API Explorer。
|
|
1383
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1384
|
+
*
|
|
1093
1385
|
* @summary 更新网络ACL策略
|
|
1094
1386
|
* @param {string} firewallPolicyId 网络ACL防火墙策略ID
|
|
1095
1387
|
* @param {NeutronUpdateFirewallPolicyRequestBody} firewallPolicy firewall policy对象
|
|
@@ -1104,6 +1396,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1104
1396
|
};
|
|
1105
1397
|
/**
|
|
1106
1398
|
* 更新网络ACL规则。
|
|
1399
|
+
*
|
|
1400
|
+
* 详细说明请参考华为云API Explorer。
|
|
1401
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1402
|
+
*
|
|
1107
1403
|
* @summary 更新网络ACL规则
|
|
1108
1404
|
* @param {string} firewallRuleId 网络ACL防火墙规则ID
|
|
1109
1405
|
* @param {NeutronUpdateFirewallRuleRequestBody} firewallRule firewall rule对象
|
|
@@ -1117,7 +1413,12 @@ var VpcClient = /** @class */ (function () {
|
|
|
1117
1413
|
return this.hcClient.sendRequest(options);
|
|
1118
1414
|
};
|
|
1119
1415
|
/**
|
|
1120
|
-
* 为指定的VPC资源实例批量添加标签。
|
|
1416
|
+
* 为指定的VPC资源实例批量添加标签。
|
|
1417
|
+
* 此接口为幂等接口:创建时如果请求体中存在重复key则报错。创建时,不允许设置重复key数据,如果数据库已存在该key,就覆盖value的值。
|
|
1418
|
+
*
|
|
1419
|
+
* 详细说明请参考华为云API Explorer。
|
|
1420
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1421
|
+
*
|
|
1121
1422
|
* @summary 批量创建VPC资源标签
|
|
1122
1423
|
* @param {string} vpcId 功能说明:虚拟私有云唯一标识 取值范围:合法UUID 约束:ID对应的VPC必须存在
|
|
1123
1424
|
* @param {BatchCreateVpcTagsRequestBody} batchCreateVpcTagsRequestBody This is a auto create Body Object
|
|
@@ -1131,7 +1432,12 @@ var VpcClient = /** @class */ (function () {
|
|
|
1131
1432
|
return this.hcClient.sendRequest(options);
|
|
1132
1433
|
};
|
|
1133
1434
|
/**
|
|
1134
|
-
* 为指定的VPC资源实例批量删除标签。
|
|
1435
|
+
* 为指定的VPC资源实例批量删除标签。
|
|
1436
|
+
* 此接口为幂等接口:删除时,如果删除的标签不存在,默认处理成功;删除时不对标签字符集范围做校验。删除时tags结构体不能缺失,key不能为空,或者空字符串。
|
|
1437
|
+
*
|
|
1438
|
+
* 详细说明请参考华为云API Explorer。
|
|
1439
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1440
|
+
*
|
|
1135
1441
|
* @summary 批量删除VPC资源标签
|
|
1136
1442
|
* @param {string} vpcId 功能说明:虚拟私有云唯一标识 取值范围:合法UUID 约束:ID对应的VPC必须存在
|
|
1137
1443
|
* @param {BatchDeleteVpcTagsRequestBody} batchDeleteVpcTagsRequestBody This is a auto create Body Object
|
|
@@ -1146,6 +1452,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1146
1452
|
};
|
|
1147
1453
|
/**
|
|
1148
1454
|
* 创建虚拟私有云。
|
|
1455
|
+
*
|
|
1456
|
+
* 详细说明请参考华为云API Explorer。
|
|
1457
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1458
|
+
*
|
|
1149
1459
|
* @summary 创建VPC
|
|
1150
1460
|
* @param {CreateVpcRequestBody} vpc 创建VPC对象
|
|
1151
1461
|
* @param {*} [options] Override http request option.
|
|
@@ -1158,7 +1468,12 @@ var VpcClient = /** @class */ (function () {
|
|
|
1158
1468
|
return this.hcClient.sendRequest(options);
|
|
1159
1469
|
};
|
|
1160
1470
|
/**
|
|
1161
|
-
* 给指定VPC资源实例增加标签信息
|
|
1471
|
+
* 给指定VPC资源实例增加标签信息
|
|
1472
|
+
* 此接口为幂等接口:创建时,如果创建的标签已经存在(key相同),则覆盖。
|
|
1473
|
+
*
|
|
1474
|
+
* 详细说明请参考华为云API Explorer。
|
|
1475
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1476
|
+
*
|
|
1162
1477
|
* @summary 创建VPC资源标签
|
|
1163
1478
|
* @param {string} vpcId 功能说明:虚拟私有云唯一标识 取值范围:合法UUID 约束:ID对应的VPC必须存在
|
|
1164
1479
|
* @param {CreateVpcResourceTagRequestBody} createVpcResourceTagRequestBody This is a auto create Body Object
|
|
@@ -1173,6 +1488,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1173
1488
|
};
|
|
1174
1489
|
/**
|
|
1175
1490
|
* 创建路由
|
|
1491
|
+
*
|
|
1492
|
+
* 详细说明请参考华为云API Explorer。
|
|
1493
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1494
|
+
*
|
|
1176
1495
|
* @summary 创建VPC路由
|
|
1177
1496
|
* @param {CreateVpcRouteRequestBody} route route对象,必选字段:destination、nexthop、type、vpc_id。
|
|
1178
1497
|
* @param {*} [options] Override http request option.
|
|
@@ -1186,6 +1505,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1186
1505
|
};
|
|
1187
1506
|
/**
|
|
1188
1507
|
* 删除虚拟私有云。
|
|
1508
|
+
*
|
|
1509
|
+
* 详细说明请参考华为云API Explorer。
|
|
1510
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1511
|
+
*
|
|
1189
1512
|
* @summary 删除VPC
|
|
1190
1513
|
* @param {string} vpcId 虚拟私有云ID
|
|
1191
1514
|
* @param {*} [options] Override http request option.
|
|
@@ -1199,6 +1522,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1199
1522
|
};
|
|
1200
1523
|
/**
|
|
1201
1524
|
* 删除路由
|
|
1525
|
+
*
|
|
1526
|
+
* 详细说明请参考华为云API Explorer。
|
|
1527
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1528
|
+
*
|
|
1202
1529
|
* @summary 删除VPC路由
|
|
1203
1530
|
* @param {string} routeId 路由ID
|
|
1204
1531
|
* @param {*} [options] Override http request option.
|
|
@@ -1211,7 +1538,12 @@ var VpcClient = /** @class */ (function () {
|
|
|
1211
1538
|
return this.hcClient.sendRequest(options);
|
|
1212
1539
|
};
|
|
1213
1540
|
/**
|
|
1214
|
-
* 删除指定VPC资源实例的标签信息
|
|
1541
|
+
* 删除指定VPC资源实例的标签信息
|
|
1542
|
+
* 该接口为幂等接口:删除的key不存在报404,Key不能为空或者空字符串
|
|
1543
|
+
*
|
|
1544
|
+
* 详细说明请参考华为云API Explorer。
|
|
1545
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1546
|
+
*
|
|
1215
1547
|
* @summary 删除VPC资源标签
|
|
1216
1548
|
* @param {string} vpcId 功能说明:虚拟私有云唯一标识 取值范围:合法UUID 约束:ID对应的VPC必须存在
|
|
1217
1549
|
* @param {string} key 功能说明:标签键
|
|
@@ -1226,6 +1558,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1226
1558
|
};
|
|
1227
1559
|
/**
|
|
1228
1560
|
* 查询提交请求的租户的所有路由列表,并根据过滤条件进行过滤。
|
|
1561
|
+
*
|
|
1562
|
+
* 详细说明请参考华为云API Explorer。
|
|
1563
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1564
|
+
*
|
|
1229
1565
|
* @summary 查询VPC路由列表
|
|
1230
1566
|
* @param {number} [limit] 每页返回的个数
|
|
1231
1567
|
* @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
|
|
@@ -1245,6 +1581,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1245
1581
|
};
|
|
1246
1582
|
/**
|
|
1247
1583
|
* 查询租户在指定区域和实例类型的所有标签集合
|
|
1584
|
+
*
|
|
1585
|
+
* 详细说明请参考华为云API Explorer。
|
|
1586
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1587
|
+
*
|
|
1248
1588
|
* @summary 查询VPC项目标签
|
|
1249
1589
|
* @param {*} [options] Override http request option.
|
|
1250
1590
|
* @throws {RequiredError}
|
|
@@ -1257,6 +1597,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1257
1597
|
};
|
|
1258
1598
|
/**
|
|
1259
1599
|
* 查询虚拟私有云列表。
|
|
1600
|
+
*
|
|
1601
|
+
* 详细说明请参考华为云API Explorer。
|
|
1602
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1603
|
+
*
|
|
1260
1604
|
* @summary 查询VPC列表
|
|
1261
1605
|
* @param {number} [limit] 每页返回的个数
|
|
1262
1606
|
* @param {string} [marker] 分页查询起始的资源ID,为空时查询第一页
|
|
@@ -1273,6 +1617,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1273
1617
|
};
|
|
1274
1618
|
/**
|
|
1275
1619
|
* 使用标签过滤实例。
|
|
1620
|
+
*
|
|
1621
|
+
* 详细说明请参考华为云API Explorer。
|
|
1622
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1623
|
+
*
|
|
1276
1624
|
* @summary 查询VPC资源实例
|
|
1277
1625
|
* @param {ListVpcsByTagsRequestBody} listVpcsByTagsRequestBody This is a auto create Body Object
|
|
1278
1626
|
* @param {*} [options] Override http request option.
|
|
@@ -1286,6 +1634,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1286
1634
|
};
|
|
1287
1635
|
/**
|
|
1288
1636
|
* 查询虚拟私有云。
|
|
1637
|
+
*
|
|
1638
|
+
* 详细说明请参考华为云API Explorer。
|
|
1639
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1640
|
+
*
|
|
1289
1641
|
* @summary 查询VPC
|
|
1290
1642
|
* @param {string} vpcId 虚拟私有云ID
|
|
1291
1643
|
* @param {*} [options] Override http request option.
|
|
@@ -1299,6 +1651,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1299
1651
|
};
|
|
1300
1652
|
/**
|
|
1301
1653
|
* 查询路由详情
|
|
1654
|
+
*
|
|
1655
|
+
* 详细说明请参考华为云API Explorer。
|
|
1656
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1657
|
+
*
|
|
1302
1658
|
* @summary 查询VPC路由
|
|
1303
1659
|
* @param {string} routeId 路由ID
|
|
1304
1660
|
* @param {*} [options] Override http request option.
|
|
@@ -1312,6 +1668,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1312
1668
|
};
|
|
1313
1669
|
/**
|
|
1314
1670
|
* 查询指定VPC实例的标签信息
|
|
1671
|
+
*
|
|
1672
|
+
* 详细说明请参考华为云API Explorer。
|
|
1673
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1674
|
+
*
|
|
1315
1675
|
* @summary 查询VPC资源标签
|
|
1316
1676
|
* @param {string} vpcId 功能说明:虚拟私有云唯一标识 取值范围:合法UUID 约束:ID对应的VPC必须存在
|
|
1317
1677
|
* @param {*} [options] Override http request option.
|
|
@@ -1325,6 +1685,10 @@ var VpcClient = /** @class */ (function () {
|
|
|
1325
1685
|
};
|
|
1326
1686
|
/**
|
|
1327
1687
|
* 更新虚拟私有云。
|
|
1688
|
+
*
|
|
1689
|
+
* 详细说明请参考华为云API Explorer。
|
|
1690
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1691
|
+
*
|
|
1328
1692
|
* @summary 更新VPC
|
|
1329
1693
|
* @param {string} vpcId 虚拟私有云ID
|
|
1330
1694
|
* @param {UpdateVpcRequestBody} vpc 更新VPC对象
|
|
@@ -1344,6 +1708,9 @@ var ParamCreater = function () {
|
|
|
1344
1708
|
return {
|
|
1345
1709
|
/**
|
|
1346
1710
|
* 租户A名下的VPC申请和租户B的VPC建立对等连接,需要等待租户B接受该请求。此接口用于租户接受其他租户发起的对等连接请求。
|
|
1711
|
+
*
|
|
1712
|
+
* 详细说明请参考华为云API Explorer。
|
|
1713
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1347
1714
|
*/
|
|
1348
1715
|
acceptVpcPeering: function (acceptVpcPeeringRequest) {
|
|
1349
1716
|
var options = {
|
|
@@ -1374,6 +1741,9 @@ var ParamCreater = function () {
|
|
|
1374
1741
|
},
|
|
1375
1742
|
/**
|
|
1376
1743
|
* 路由表关联子网。子网关联路由表A后,再关联B,不需要先跟路由表A解关联再关联路由表B
|
|
1744
|
+
*
|
|
1745
|
+
* 详细说明请参考华为云API Explorer。
|
|
1746
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1377
1747
|
*/
|
|
1378
1748
|
associateRouteTable: function (associateRouteTableRequest) {
|
|
1379
1749
|
var options = {
|
|
@@ -1411,7 +1781,11 @@ var ParamCreater = function () {
|
|
|
1411
1781
|
return options;
|
|
1412
1782
|
},
|
|
1413
1783
|
/**
|
|
1414
|
-
* 为指定的子网资源实例批量添加标签。
|
|
1784
|
+
* 为指定的子网资源实例批量添加标签。
|
|
1785
|
+
* 此接口为幂等接口:创建时如果请求体中存在重复key则报错。创建时,不允许设置重复key数据,如果数据库已存在该key,就覆盖value的值。
|
|
1786
|
+
*
|
|
1787
|
+
* 详细说明请参考华为云API Explorer。
|
|
1788
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1415
1789
|
*/
|
|
1416
1790
|
batchCreateSubnetTags: function (batchCreateSubnetTagsRequest) {
|
|
1417
1791
|
var options = {
|
|
@@ -1449,7 +1823,11 @@ var ParamCreater = function () {
|
|
|
1449
1823
|
return options;
|
|
1450
1824
|
},
|
|
1451
1825
|
/**
|
|
1452
|
-
* 为指定的子网资源实例批量删除标签
|
|
1826
|
+
* 为指定的子网资源实例批量删除标签
|
|
1827
|
+
* 此接口为幂等接口:删除时,如果删除的标签不存在,默认处理成功;删除时不对标签字符集范围做校验。删除时tags结构体不能缺失,key不能为空,或者空字符串。
|
|
1828
|
+
*
|
|
1829
|
+
* 详细说明请参考华为云API Explorer。
|
|
1830
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1453
1831
|
*/
|
|
1454
1832
|
batchDeleteSubnetTags: function (batchDeleteSubnetTagsRequest) {
|
|
1455
1833
|
var options = {
|
|
@@ -1488,6 +1866,9 @@ var ParamCreater = function () {
|
|
|
1488
1866
|
},
|
|
1489
1867
|
/**
|
|
1490
1868
|
* 创建端口。
|
|
1869
|
+
*
|
|
1870
|
+
* 详细说明请参考华为云API Explorer。
|
|
1871
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1491
1872
|
*/
|
|
1492
1873
|
createPort: function (createPortRequest) {
|
|
1493
1874
|
var options = {
|
|
@@ -1519,6 +1900,9 @@ var ParamCreater = function () {
|
|
|
1519
1900
|
},
|
|
1520
1901
|
/**
|
|
1521
1902
|
* 创建路由表
|
|
1903
|
+
*
|
|
1904
|
+
* 详细说明请参考华为云API Explorer。
|
|
1905
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1522
1906
|
*/
|
|
1523
1907
|
createRouteTable: function (createRouteTableRequest) {
|
|
1524
1908
|
var options = {
|
|
@@ -1550,6 +1934,9 @@ var ParamCreater = function () {
|
|
|
1550
1934
|
},
|
|
1551
1935
|
/**
|
|
1552
1936
|
* 创建安全组。
|
|
1937
|
+
*
|
|
1938
|
+
* 详细说明请参考华为云API Explorer。
|
|
1939
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1553
1940
|
*/
|
|
1554
1941
|
createSecurityGroup: function (createSecurityGroupRequest) {
|
|
1555
1942
|
var options = {
|
|
@@ -1581,6 +1968,9 @@ var ParamCreater = function () {
|
|
|
1581
1968
|
},
|
|
1582
1969
|
/**
|
|
1583
1970
|
* 创建安全组规则。
|
|
1971
|
+
*
|
|
1972
|
+
* 详细说明请参考华为云API Explorer。
|
|
1973
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1584
1974
|
*/
|
|
1585
1975
|
createSecurityGroupRule: function (createSecurityGroupRuleRequest) {
|
|
1586
1976
|
var options = {
|
|
@@ -1612,6 +2002,9 @@ var ParamCreater = function () {
|
|
|
1612
2002
|
},
|
|
1613
2003
|
/**
|
|
1614
2004
|
* 创建子网。
|
|
2005
|
+
*
|
|
2006
|
+
* 详细说明请参考华为云API Explorer。
|
|
2007
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1615
2008
|
*/
|
|
1616
2009
|
createSubnet: function (createSubnetRequest) {
|
|
1617
2010
|
var options = {
|
|
@@ -1642,7 +2035,11 @@ var ParamCreater = function () {
|
|
|
1642
2035
|
return options;
|
|
1643
2036
|
},
|
|
1644
2037
|
/**
|
|
1645
|
-
* 给指定子网资源实例增加标签信息。
|
|
2038
|
+
* 给指定子网资源实例增加标签信息。
|
|
2039
|
+
* 此接口为幂等接口:创建时,如果创建的标签已经存在(key相同),则覆盖。
|
|
2040
|
+
*
|
|
2041
|
+
* 详细说明请参考华为云API Explorer。
|
|
2042
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1646
2043
|
*/
|
|
1647
2044
|
createSubnetTag: function (createSubnetTagRequest) {
|
|
1648
2045
|
var options = {
|
|
@@ -1681,6 +2078,9 @@ var ParamCreater = function () {
|
|
|
1681
2078
|
},
|
|
1682
2079
|
/**
|
|
1683
2080
|
* 创建对等连接。
|
|
2081
|
+
*
|
|
2082
|
+
* 详细说明请参考华为云API Explorer。
|
|
2083
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1684
2084
|
*/
|
|
1685
2085
|
createVpcPeering: function (createVpcPeeringRequest) {
|
|
1686
2086
|
var options = {
|
|
@@ -1712,6 +2112,9 @@ var ParamCreater = function () {
|
|
|
1712
2112
|
},
|
|
1713
2113
|
/**
|
|
1714
2114
|
* 删除端口。
|
|
2115
|
+
*
|
|
2116
|
+
* 详细说明请参考华为云API Explorer。
|
|
2117
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1715
2118
|
*/
|
|
1716
2119
|
deletePort: function (deletePortRequest) {
|
|
1717
2120
|
var options = {
|
|
@@ -1742,6 +2145,9 @@ var ParamCreater = function () {
|
|
|
1742
2145
|
},
|
|
1743
2146
|
/**
|
|
1744
2147
|
* 删除路由表
|
|
2148
|
+
*
|
|
2149
|
+
* 详细说明请参考华为云API Explorer。
|
|
2150
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1745
2151
|
*/
|
|
1746
2152
|
deleteRouteTable: function (deleteRouteTableRequest) {
|
|
1747
2153
|
var options = {
|
|
@@ -1772,6 +2178,9 @@ var ParamCreater = function () {
|
|
|
1772
2178
|
},
|
|
1773
2179
|
/**
|
|
1774
2180
|
* 删除安全组。
|
|
2181
|
+
*
|
|
2182
|
+
* 详细说明请参考华为云API Explorer。
|
|
2183
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1775
2184
|
*/
|
|
1776
2185
|
deleteSecurityGroup: function (deleteSecurityGroupRequest) {
|
|
1777
2186
|
var options = {
|
|
@@ -1802,6 +2211,9 @@ var ParamCreater = function () {
|
|
|
1802
2211
|
},
|
|
1803
2212
|
/**
|
|
1804
2213
|
* 删除安全组规则。
|
|
2214
|
+
*
|
|
2215
|
+
* 详细说明请参考华为云API Explorer。
|
|
2216
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1805
2217
|
*/
|
|
1806
2218
|
deleteSecurityGroupRule: function (deleteSecurityGroupRuleRequest) {
|
|
1807
2219
|
var options = {
|
|
@@ -1832,6 +2244,9 @@ var ParamCreater = function () {
|
|
|
1832
2244
|
},
|
|
1833
2245
|
/**
|
|
1834
2246
|
* 删除子网
|
|
2247
|
+
*
|
|
2248
|
+
* 详细说明请参考华为云API Explorer。
|
|
2249
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1835
2250
|
*/
|
|
1836
2251
|
deleteSubnet: function (deleteSubnetRequest) {
|
|
1837
2252
|
var options = {
|
|
@@ -1867,7 +2282,11 @@ var ParamCreater = function () {
|
|
|
1867
2282
|
return options;
|
|
1868
2283
|
},
|
|
1869
2284
|
/**
|
|
1870
|
-
* 删除指定子网资源实例的标签信息。
|
|
2285
|
+
* 删除指定子网资源实例的标签信息。
|
|
2286
|
+
* 该接口为幂等接口:删除的key不存在报404,Key不能为空或者空字符串
|
|
2287
|
+
*
|
|
2288
|
+
* 详细说明请参考华为云API Explorer。
|
|
2289
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1871
2290
|
*/
|
|
1872
2291
|
deleteSubnetTag: function (deleteSubnetTagRequest) {
|
|
1873
2292
|
var options = {
|
|
@@ -1903,7 +2322,11 @@ var ParamCreater = function () {
|
|
|
1903
2322
|
return options;
|
|
1904
2323
|
},
|
|
1905
2324
|
/**
|
|
1906
|
-
* 删除对等连接。
|
|
2325
|
+
* 删除对等连接。
|
|
2326
|
+
* 可以在在本端或对端任何一端删除对等连接。
|
|
2327
|
+
*
|
|
2328
|
+
* 详细说明请参考华为云API Explorer。
|
|
2329
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1907
2330
|
*/
|
|
1908
2331
|
deleteVpcPeering: function (deleteVpcPeeringRequest) {
|
|
1909
2332
|
var options = {
|
|
@@ -1934,6 +2357,9 @@ var ParamCreater = function () {
|
|
|
1934
2357
|
},
|
|
1935
2358
|
/**
|
|
1936
2359
|
* 子网解关联路由表
|
|
2360
|
+
*
|
|
2361
|
+
* 详细说明请参考华为云API Explorer。
|
|
2362
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1937
2363
|
*/
|
|
1938
2364
|
disassociateRouteTable: function (disassociateRouteTableRequest) {
|
|
1939
2365
|
var options = {
|
|
@@ -1972,6 +2398,9 @@ var ParamCreater = function () {
|
|
|
1972
2398
|
},
|
|
1973
2399
|
/**
|
|
1974
2400
|
* 查询提交请求的租户的所有端口,单次查询最多返回2000条数据。
|
|
2401
|
+
*
|
|
2402
|
+
* 详细说明请参考华为云API Explorer。
|
|
2403
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
1975
2404
|
*/
|
|
1976
2405
|
listPorts: function (listPortsRequest) {
|
|
1977
2406
|
var options = {
|
|
@@ -2069,6 +2498,9 @@ var ParamCreater = function () {
|
|
|
2069
2498
|
},
|
|
2070
2499
|
/**
|
|
2071
2500
|
* 查询提交请求的帐户的所有路由表列表,并根据过滤条件进行过滤
|
|
2501
|
+
*
|
|
2502
|
+
* 详细说明请参考华为云API Explorer。
|
|
2503
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2072
2504
|
*/
|
|
2073
2505
|
listRouteTables: function (listRouteTablesRequest) {
|
|
2074
2506
|
var options = {
|
|
@@ -2124,6 +2556,9 @@ var ParamCreater = function () {
|
|
|
2124
2556
|
},
|
|
2125
2557
|
/**
|
|
2126
2558
|
* 查询安全组规则列表。
|
|
2559
|
+
*
|
|
2560
|
+
* 详细说明请参考华为云API Explorer。
|
|
2561
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2127
2562
|
*/
|
|
2128
2563
|
listSecurityGroupRules: function (listSecurityGroupRulesRequest) {
|
|
2129
2564
|
var options = {
|
|
@@ -2167,6 +2602,9 @@ var ParamCreater = function () {
|
|
|
2167
2602
|
},
|
|
2168
2603
|
/**
|
|
2169
2604
|
* 查询安全组列表
|
|
2605
|
+
*
|
|
2606
|
+
* 详细说明请参考华为云API Explorer。
|
|
2607
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2170
2608
|
*/
|
|
2171
2609
|
listSecurityGroups: function (listSecurityGroupsRequest) {
|
|
2172
2610
|
var options = {
|
|
@@ -2216,6 +2654,9 @@ var ParamCreater = function () {
|
|
|
2216
2654
|
},
|
|
2217
2655
|
/**
|
|
2218
2656
|
* 查询租户在指定区域和实例类型的所有标签集合
|
|
2657
|
+
*
|
|
2658
|
+
* 详细说明请参考华为云API Explorer。
|
|
2659
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2219
2660
|
*/
|
|
2220
2661
|
listSubnetTags: function () {
|
|
2221
2662
|
var options = {
|
|
@@ -2233,6 +2674,9 @@ var ParamCreater = function () {
|
|
|
2233
2674
|
},
|
|
2234
2675
|
/**
|
|
2235
2676
|
* 查询子网列表
|
|
2677
|
+
*
|
|
2678
|
+
* 详细说明请参考华为云API Explorer。
|
|
2679
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2236
2680
|
*/
|
|
2237
2681
|
listSubnets: function (listSubnetsRequest) {
|
|
2238
2682
|
var options = {
|
|
@@ -2276,6 +2720,9 @@ var ParamCreater = function () {
|
|
|
2276
2720
|
},
|
|
2277
2721
|
/**
|
|
2278
2722
|
* 使用标签过滤实例
|
|
2723
|
+
*
|
|
2724
|
+
* 详细说明请参考华为云API Explorer。
|
|
2725
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2279
2726
|
*/
|
|
2280
2727
|
listSubnetsByTags: function (listSubnetsByTagsRequest) {
|
|
2281
2728
|
var options = {
|
|
@@ -2307,6 +2754,9 @@ var ParamCreater = function () {
|
|
|
2307
2754
|
},
|
|
2308
2755
|
/**
|
|
2309
2756
|
* 查询提交请求的租户的所有对等连接。根据过滤条件进行过滤。
|
|
2757
|
+
*
|
|
2758
|
+
* 详细说明请参考华为云API Explorer。
|
|
2759
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2310
2760
|
*/
|
|
2311
2761
|
listVpcPeerings: function (listVpcPeeringsRequest) {
|
|
2312
2762
|
var options = {
|
|
@@ -2374,6 +2824,9 @@ var ParamCreater = function () {
|
|
|
2374
2824
|
},
|
|
2375
2825
|
/**
|
|
2376
2826
|
* 租户A名下的VPC申请和租户B的VPC建立对等连接,需要等待租户B接受该请求。此接口用于租户拒绝其他租户发起的对等连接请求。
|
|
2827
|
+
*
|
|
2828
|
+
* 详细说明请参考华为云API Explorer。
|
|
2829
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2377
2830
|
*/
|
|
2378
2831
|
rejectVpcPeering: function (rejectVpcPeeringRequest) {
|
|
2379
2832
|
var options = {
|
|
@@ -2404,6 +2857,9 @@ var ParamCreater = function () {
|
|
|
2404
2857
|
},
|
|
2405
2858
|
/**
|
|
2406
2859
|
* 查询单个端口详情。
|
|
2860
|
+
*
|
|
2861
|
+
* 详细说明请参考华为云API Explorer。
|
|
2862
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2407
2863
|
*/
|
|
2408
2864
|
showPort: function (showPortRequest) {
|
|
2409
2865
|
var options = {
|
|
@@ -2434,6 +2890,9 @@ var ParamCreater = function () {
|
|
|
2434
2890
|
},
|
|
2435
2891
|
/**
|
|
2436
2892
|
* 查询单租户在VPC服务下的网络资源配额,包括vpc配额、子网配额、安全组配额、安全组规则配额、弹性公网IP配额,vpn配额等。
|
|
2893
|
+
*
|
|
2894
|
+
* 详细说明请参考华为云API Explorer。
|
|
2895
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2437
2896
|
*/
|
|
2438
2897
|
showQuota: function (showQuotaRequest) {
|
|
2439
2898
|
var options = {
|
|
@@ -2465,6 +2924,9 @@ var ParamCreater = function () {
|
|
|
2465
2924
|
},
|
|
2466
2925
|
/**
|
|
2467
2926
|
* 查询路由表详情
|
|
2927
|
+
*
|
|
2928
|
+
* 详细说明请参考华为云API Explorer。
|
|
2929
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2468
2930
|
*/
|
|
2469
2931
|
showRouteTable: function (showRouteTableRequest) {
|
|
2470
2932
|
var options = {
|
|
@@ -2495,6 +2957,9 @@ var ParamCreater = function () {
|
|
|
2495
2957
|
},
|
|
2496
2958
|
/**
|
|
2497
2959
|
* 查询单个安全组详情。
|
|
2960
|
+
*
|
|
2961
|
+
* 详细说明请参考华为云API Explorer。
|
|
2962
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2498
2963
|
*/
|
|
2499
2964
|
showSecurityGroup: function (showSecurityGroupRequest) {
|
|
2500
2965
|
var options = {
|
|
@@ -2525,6 +2990,9 @@ var ParamCreater = function () {
|
|
|
2525
2990
|
},
|
|
2526
2991
|
/**
|
|
2527
2992
|
* 查询单个安全组规则详情
|
|
2993
|
+
*
|
|
2994
|
+
* 详细说明请参考华为云API Explorer。
|
|
2995
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2528
2996
|
*/
|
|
2529
2997
|
showSecurityGroupRule: function (showSecurityGroupRuleRequest) {
|
|
2530
2998
|
var options = {
|
|
@@ -2555,6 +3023,9 @@ var ParamCreater = function () {
|
|
|
2555
3023
|
},
|
|
2556
3024
|
/**
|
|
2557
3025
|
* 查询子网详情。
|
|
3026
|
+
*
|
|
3027
|
+
* 详细说明请参考华为云API Explorer。
|
|
3028
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2558
3029
|
*/
|
|
2559
3030
|
showSubnet: function (showSubnetRequest) {
|
|
2560
3031
|
var options = {
|
|
@@ -2585,6 +3056,9 @@ var ParamCreater = function () {
|
|
|
2585
3056
|
},
|
|
2586
3057
|
/**
|
|
2587
3058
|
* 查询指定子网实例的标签信息。
|
|
3059
|
+
*
|
|
3060
|
+
* 详细说明请参考华为云API Explorer。
|
|
3061
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2588
3062
|
*/
|
|
2589
3063
|
showSubnetTags: function (showSubnetTagsRequest) {
|
|
2590
3064
|
var options = {
|
|
@@ -2615,6 +3089,9 @@ var ParamCreater = function () {
|
|
|
2615
3089
|
},
|
|
2616
3090
|
/**
|
|
2617
3091
|
* 查询对等连接详情。
|
|
3092
|
+
*
|
|
3093
|
+
* 详细说明请参考华为云API Explorer。
|
|
3094
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2618
3095
|
*/
|
|
2619
3096
|
showVpcPeering: function (showVpcPeeringRequest) {
|
|
2620
3097
|
var options = {
|
|
@@ -2645,6 +3122,9 @@ var ParamCreater = function () {
|
|
|
2645
3122
|
},
|
|
2646
3123
|
/**
|
|
2647
3124
|
* 更新端口。
|
|
3125
|
+
*
|
|
3126
|
+
* 详细说明请参考华为云API Explorer。
|
|
3127
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2648
3128
|
*/
|
|
2649
3129
|
updatePort: function (updatePortRequest) {
|
|
2650
3130
|
var options = {
|
|
@@ -2683,6 +3163,9 @@ var ParamCreater = function () {
|
|
|
2683
3163
|
},
|
|
2684
3164
|
/**
|
|
2685
3165
|
* 更新路由表,包括可以更新路由表的名称,描述,以及新增、更新、删除路由条目
|
|
3166
|
+
*
|
|
3167
|
+
* 详细说明请参考华为云API Explorer。
|
|
3168
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2686
3169
|
*/
|
|
2687
3170
|
updateRouteTable: function (updateRouteTableRequest) {
|
|
2688
3171
|
var options = {
|
|
@@ -2721,6 +3204,9 @@ var ParamCreater = function () {
|
|
|
2721
3204
|
},
|
|
2722
3205
|
/**
|
|
2723
3206
|
* 更新子网。
|
|
3207
|
+
*
|
|
3208
|
+
* 详细说明请参考华为云API Explorer。
|
|
3209
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2724
3210
|
*/
|
|
2725
3211
|
updateSubnet: function (updateSubnetRequest) {
|
|
2726
3212
|
var options = {
|
|
@@ -2765,6 +3251,9 @@ var ParamCreater = function () {
|
|
|
2765
3251
|
},
|
|
2766
3252
|
/**
|
|
2767
3253
|
* 更新对等连接。
|
|
3254
|
+
*
|
|
3255
|
+
* 详细说明请参考华为云API Explorer。
|
|
3256
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2768
3257
|
*/
|
|
2769
3258
|
updateVpcPeering: function (updateVpcPeeringRequest) {
|
|
2770
3259
|
var options = {
|
|
@@ -2803,6 +3292,9 @@ var ParamCreater = function () {
|
|
|
2803
3292
|
},
|
|
2804
3293
|
/**
|
|
2805
3294
|
* 申请私有IP。
|
|
3295
|
+
*
|
|
3296
|
+
* 详细说明请参考华为云API Explorer。
|
|
3297
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2806
3298
|
*/
|
|
2807
3299
|
createPrivateip: function (createPrivateipRequest) {
|
|
2808
3300
|
var options = {
|
|
@@ -2834,6 +3326,9 @@ var ParamCreater = function () {
|
|
|
2834
3326
|
},
|
|
2835
3327
|
/**
|
|
2836
3328
|
* 删除私有IP。
|
|
3329
|
+
*
|
|
3330
|
+
* 详细说明请参考华为云API Explorer。
|
|
3331
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2837
3332
|
*/
|
|
2838
3333
|
deletePrivateip: function (deletePrivateipRequest) {
|
|
2839
3334
|
var options = {
|
|
@@ -2864,6 +3359,9 @@ var ParamCreater = function () {
|
|
|
2864
3359
|
},
|
|
2865
3360
|
/**
|
|
2866
3361
|
* 查询指定子网下的私有IP列表。
|
|
3362
|
+
*
|
|
3363
|
+
* 详细说明请参考华为云API Explorer。
|
|
3364
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2867
3365
|
*/
|
|
2868
3366
|
listPrivateips: function (listPrivateipsRequest) {
|
|
2869
3367
|
var options = {
|
|
@@ -2907,7 +3405,17 @@ var ParamCreater = function () {
|
|
|
2907
3405
|
return options;
|
|
2908
3406
|
},
|
|
2909
3407
|
/**
|
|
2910
|
-
* 显示一个指定网络中的IPv4地址使用情况。
|
|
3408
|
+
* 显示一个指定网络中的IPv4地址使用情况。
|
|
3409
|
+
* 包括此网络中的IP总数以及已用IP总数,以及网络下每一个子网的IP地址总数和可用IP地址总数。
|
|
3410
|
+
*
|
|
3411
|
+
* > 须知
|
|
3412
|
+
*
|
|
3413
|
+
* - 系统预留地址指的是子网的第1个以及最后4个地址,一般用于网关、DHCP等服务。
|
|
3414
|
+
* - 这里以及下文描述的IP地址总数、已用IP地址总数不包含系统预留地址。
|
|
3415
|
+
* - 在分配IP时,用户可以指定系统预留的IP地址。但是不论IP是如何分配的,只要是处于系统预留IP地址段的IP均不会被统计到已用IP地址数目和IP地址总数中。
|
|
3416
|
+
*
|
|
3417
|
+
* 详细说明请参考华为云API Explorer。
|
|
3418
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2911
3419
|
*/
|
|
2912
3420
|
showNetworkIpAvailabilities: function (showNetworkIpAvailabilitiesRequest) {
|
|
2913
3421
|
var options = {
|
|
@@ -2938,6 +3446,9 @@ var ParamCreater = function () {
|
|
|
2938
3446
|
},
|
|
2939
3447
|
/**
|
|
2940
3448
|
* 指定ID查询私有IP。
|
|
3449
|
+
*
|
|
3450
|
+
* 详细说明请参考华为云API Explorer。
|
|
3451
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2941
3452
|
*/
|
|
2942
3453
|
showPrivateip: function (showPrivateipRequest) {
|
|
2943
3454
|
var options = {
|
|
@@ -2968,6 +3479,9 @@ var ParamCreater = function () {
|
|
|
2968
3479
|
},
|
|
2969
3480
|
/**
|
|
2970
3481
|
* 创建安全组
|
|
3482
|
+
*
|
|
3483
|
+
* 详细说明请参考华为云API Explorer。
|
|
3484
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
2971
3485
|
*/
|
|
2972
3486
|
neutronCreateSecurityGroup: function (neutronCreateSecurityGroupRequest) {
|
|
2973
3487
|
var options = {
|
|
@@ -2999,6 +3513,9 @@ var ParamCreater = function () {
|
|
|
2999
3513
|
},
|
|
3000
3514
|
/**
|
|
3001
3515
|
* 创建安全组规则
|
|
3516
|
+
*
|
|
3517
|
+
* 详细说明请参考华为云API Explorer。
|
|
3518
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3002
3519
|
*/
|
|
3003
3520
|
neutronCreateSecurityGroupRule: function (neutronCreateSecurityGroupRuleRequest) {
|
|
3004
3521
|
var options = {
|
|
@@ -3030,6 +3547,9 @@ var ParamCreater = function () {
|
|
|
3030
3547
|
},
|
|
3031
3548
|
/**
|
|
3032
3549
|
* 删除安全组
|
|
3550
|
+
*
|
|
3551
|
+
* 详细说明请参考华为云API Explorer。
|
|
3552
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3033
3553
|
*/
|
|
3034
3554
|
neutronDeleteSecurityGroup: function (neutronDeleteSecurityGroupRequest) {
|
|
3035
3555
|
var options = {
|
|
@@ -3060,6 +3580,9 @@ var ParamCreater = function () {
|
|
|
3060
3580
|
},
|
|
3061
3581
|
/**
|
|
3062
3582
|
* 删除安全组规则
|
|
3583
|
+
*
|
|
3584
|
+
* 详细说明请参考华为云API Explorer。
|
|
3585
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3063
3586
|
*/
|
|
3064
3587
|
neutronDeleteSecurityGroupRule: function (neutronDeleteSecurityGroupRuleRequest) {
|
|
3065
3588
|
var options = {
|
|
@@ -3090,6 +3613,9 @@ var ParamCreater = function () {
|
|
|
3090
3613
|
},
|
|
3091
3614
|
/**
|
|
3092
3615
|
* 查询提交请求的租户有权限查看的所有安全组规则。单次查询最多返回2000条数据,超过2000后会返回分页标记。分页查询请参考分页查询
|
|
3616
|
+
*
|
|
3617
|
+
* 详细说明请参考华为云API Explorer。
|
|
3618
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3093
3619
|
*/
|
|
3094
3620
|
neutronListSecurityGroupRules: function (neutronListSecurityGroupRulesRequest) {
|
|
3095
3621
|
var options = {
|
|
@@ -3193,6 +3719,9 @@ var ParamCreater = function () {
|
|
|
3193
3719
|
},
|
|
3194
3720
|
/**
|
|
3195
3721
|
* 查询提交请求租户的所有安全组,单次查询最多返回2000条数据,超过2000后会返回分页标记。分页查询请参考分页查询 。
|
|
3722
|
+
*
|
|
3723
|
+
* 详细说明请参考华为云API Explorer。
|
|
3724
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3196
3725
|
*/
|
|
3197
3726
|
neutronListSecurityGroups: function (neutronListSecurityGroupsRequest) {
|
|
3198
3727
|
var options = {
|
|
@@ -3254,6 +3783,9 @@ var ParamCreater = function () {
|
|
|
3254
3783
|
},
|
|
3255
3784
|
/**
|
|
3256
3785
|
* 查询安全组详情
|
|
3786
|
+
*
|
|
3787
|
+
* 详细说明请参考华为云API Explorer。
|
|
3788
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3257
3789
|
*/
|
|
3258
3790
|
neutronShowSecurityGroup: function (neutronShowSecurityGroupRequest) {
|
|
3259
3791
|
var options = {
|
|
@@ -3284,6 +3816,9 @@ var ParamCreater = function () {
|
|
|
3284
3816
|
},
|
|
3285
3817
|
/**
|
|
3286
3818
|
* 查询安全组规则详情。
|
|
3819
|
+
*
|
|
3820
|
+
* 详细说明请参考华为云API Explorer。
|
|
3821
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3287
3822
|
*/
|
|
3288
3823
|
neutronShowSecurityGroupRule: function (neutronShowSecurityGroupRuleRequest) {
|
|
3289
3824
|
var options = {
|
|
@@ -3314,6 +3849,9 @@ var ParamCreater = function () {
|
|
|
3314
3849
|
},
|
|
3315
3850
|
/**
|
|
3316
3851
|
* 更新安全组
|
|
3852
|
+
*
|
|
3853
|
+
* 详细说明请参考华为云API Explorer。
|
|
3854
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3317
3855
|
*/
|
|
3318
3856
|
neutronUpdateSecurityGroup: function (neutronUpdateSecurityGroupRequest) {
|
|
3319
3857
|
var options = {
|
|
@@ -3352,6 +3890,9 @@ var ParamCreater = function () {
|
|
|
3352
3890
|
},
|
|
3353
3891
|
/**
|
|
3354
3892
|
* 插入一条网络ACL规则到某一网络ACL策略中。
|
|
3893
|
+
*
|
|
3894
|
+
* 详细说明请参考华为云API Explorer。
|
|
3895
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3355
3896
|
*/
|
|
3356
3897
|
neutronAddFirewallRule: function (neutronAddFirewallRuleRequest) {
|
|
3357
3898
|
var options = {
|
|
@@ -3390,6 +3931,9 @@ var ParamCreater = function () {
|
|
|
3390
3931
|
},
|
|
3391
3932
|
/**
|
|
3392
3933
|
* 创建网络ACL组
|
|
3934
|
+
*
|
|
3935
|
+
* 详细说明请参考华为云API Explorer。
|
|
3936
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3393
3937
|
*/
|
|
3394
3938
|
neutronCreateFirewallGroup: function (neutronCreateFirewallGroupRequest) {
|
|
3395
3939
|
var options = {
|
|
@@ -3421,6 +3965,9 @@ var ParamCreater = function () {
|
|
|
3421
3965
|
},
|
|
3422
3966
|
/**
|
|
3423
3967
|
* 创建网络ACL策略。
|
|
3968
|
+
*
|
|
3969
|
+
* 详细说明请参考华为云API Explorer。
|
|
3970
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3424
3971
|
*/
|
|
3425
3972
|
neutronCreateFirewallPolicy: function (neutronCreateFirewallPolicyRequest) {
|
|
3426
3973
|
var options = {
|
|
@@ -3452,6 +3999,9 @@ var ParamCreater = function () {
|
|
|
3452
3999
|
},
|
|
3453
4000
|
/**
|
|
3454
4001
|
* 创建网络ACL规则。
|
|
4002
|
+
*
|
|
4003
|
+
* 详细说明请参考华为云API Explorer。
|
|
4004
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3455
4005
|
*/
|
|
3456
4006
|
neutronCreateFirewallRule: function (neutronCreateFirewallRuleRequest) {
|
|
3457
4007
|
var options = {
|
|
@@ -3483,6 +4033,9 @@ var ParamCreater = function () {
|
|
|
3483
4033
|
},
|
|
3484
4034
|
/**
|
|
3485
4035
|
* 删除网络ACL组
|
|
4036
|
+
*
|
|
4037
|
+
* 详细说明请参考华为云API Explorer。
|
|
4038
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3486
4039
|
*/
|
|
3487
4040
|
neutronDeleteFirewallGroup: function (neutronDeleteFirewallGroupRequest) {
|
|
3488
4041
|
var options = {
|
|
@@ -3513,6 +4066,9 @@ var ParamCreater = function () {
|
|
|
3513
4066
|
},
|
|
3514
4067
|
/**
|
|
3515
4068
|
* 删除网络ACL策略。
|
|
4069
|
+
*
|
|
4070
|
+
* 详细说明请参考华为云API Explorer。
|
|
4071
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3516
4072
|
*/
|
|
3517
4073
|
neutronDeleteFirewallPolicy: function (neutronDeleteFirewallPolicyRequest) {
|
|
3518
4074
|
var options = {
|
|
@@ -3543,6 +4099,9 @@ var ParamCreater = function () {
|
|
|
3543
4099
|
},
|
|
3544
4100
|
/**
|
|
3545
4101
|
* 删除网络ACL规则。
|
|
4102
|
+
*
|
|
4103
|
+
* 详细说明请参考华为云API Explorer。
|
|
4104
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3546
4105
|
*/
|
|
3547
4106
|
neutronDeleteFirewallRule: function (neutronDeleteFirewallRuleRequest) {
|
|
3548
4107
|
var options = {
|
|
@@ -3573,6 +4132,9 @@ var ParamCreater = function () {
|
|
|
3573
4132
|
},
|
|
3574
4133
|
/**
|
|
3575
4134
|
* 查询提交请求的租户有权限操作的所有网络ACL组信息。单次查询最多返回2000条数据,超过2000后会返回分页标记。
|
|
4135
|
+
*
|
|
4136
|
+
* 详细说明请参考华为云API Explorer。
|
|
4137
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3576
4138
|
*/
|
|
3577
4139
|
neutronListFirewallGroups: function (neutronListFirewallGroupsRequest) {
|
|
3578
4140
|
var options = {
|
|
@@ -3640,6 +4202,9 @@ var ParamCreater = function () {
|
|
|
3640
4202
|
},
|
|
3641
4203
|
/**
|
|
3642
4204
|
* 查询提交请求的租户有权限操作的所有网络ACL策略信息。单次查询最多返回2000条数据,超过2000后会返回分页标记。
|
|
4205
|
+
*
|
|
4206
|
+
* 详细说明请参考华为云API Explorer。
|
|
4207
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3643
4208
|
*/
|
|
3644
4209
|
neutronListFirewallPolicies: function (neutronListFirewallPoliciesRequest) {
|
|
3645
4210
|
var options = {
|
|
@@ -3701,6 +4266,9 @@ var ParamCreater = function () {
|
|
|
3701
4266
|
},
|
|
3702
4267
|
/**
|
|
3703
4268
|
* 查询提交请求的租户有权限操作的所有网络ACL规则信息。单次查询最多返回2000条数据,超过2000后会返回分页标记。
|
|
4269
|
+
*
|
|
4270
|
+
* 详细说明请参考华为云API Explorer。
|
|
4271
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3704
4272
|
*/
|
|
3705
4273
|
neutronListFirewallRules: function (neutronListFirewallRulesRequest) {
|
|
3706
4274
|
var options = {
|
|
@@ -3768,6 +4336,9 @@ var ParamCreater = function () {
|
|
|
3768
4336
|
},
|
|
3769
4337
|
/**
|
|
3770
4338
|
* 从某一网络ACL策略中移除一条网络ACL规则。
|
|
4339
|
+
*
|
|
4340
|
+
* 详细说明请参考华为云API Explorer。
|
|
4341
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3771
4342
|
*/
|
|
3772
4343
|
neutronRemoveFirewallRule: function (neutronRemoveFirewallRuleRequest) {
|
|
3773
4344
|
var options = {
|
|
@@ -3806,6 +4377,9 @@ var ParamCreater = function () {
|
|
|
3806
4377
|
},
|
|
3807
4378
|
/**
|
|
3808
4379
|
* 查询特定网络ACL组详情。
|
|
4380
|
+
*
|
|
4381
|
+
* 详细说明请参考华为云API Explorer。
|
|
4382
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3809
4383
|
*/
|
|
3810
4384
|
neutronShowFirewallGroup: function (neutronShowFirewallGroupRequest) {
|
|
3811
4385
|
var options = {
|
|
@@ -3836,6 +4410,9 @@ var ParamCreater = function () {
|
|
|
3836
4410
|
},
|
|
3837
4411
|
/**
|
|
3838
4412
|
* 查询特定网络ACL策略详情。
|
|
4413
|
+
*
|
|
4414
|
+
* 详细说明请参考华为云API Explorer。
|
|
4415
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3839
4416
|
*/
|
|
3840
4417
|
neutronShowFirewallPolicy: function (neutronShowFirewallPolicyRequest) {
|
|
3841
4418
|
var options = {
|
|
@@ -3866,6 +4443,9 @@ var ParamCreater = function () {
|
|
|
3866
4443
|
},
|
|
3867
4444
|
/**
|
|
3868
4445
|
* 查询特定网络ACL规则。
|
|
4446
|
+
*
|
|
4447
|
+
* 详细说明请参考华为云API Explorer。
|
|
4448
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3869
4449
|
*/
|
|
3870
4450
|
neutronShowFirewallRule: function (neutronShowFirewallRuleRequest) {
|
|
3871
4451
|
var options = {
|
|
@@ -3896,6 +4476,9 @@ var ParamCreater = function () {
|
|
|
3896
4476
|
},
|
|
3897
4477
|
/**
|
|
3898
4478
|
* 更新网络ACL组。
|
|
4479
|
+
*
|
|
4480
|
+
* 详细说明请参考华为云API Explorer。
|
|
4481
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3899
4482
|
*/
|
|
3900
4483
|
neutronUpdateFirewallGroup: function (neutronUpdateFirewallGroupRequest) {
|
|
3901
4484
|
var options = {
|
|
@@ -3934,6 +4517,9 @@ var ParamCreater = function () {
|
|
|
3934
4517
|
},
|
|
3935
4518
|
/**
|
|
3936
4519
|
* 更新网络ACL策略。
|
|
4520
|
+
*
|
|
4521
|
+
* 详细说明请参考华为云API Explorer。
|
|
4522
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3937
4523
|
*/
|
|
3938
4524
|
neutronUpdateFirewallPolicy: function (neutronUpdateFirewallPolicyRequest) {
|
|
3939
4525
|
var options = {
|
|
@@ -3972,6 +4558,9 @@ var ParamCreater = function () {
|
|
|
3972
4558
|
},
|
|
3973
4559
|
/**
|
|
3974
4560
|
* 更新网络ACL规则。
|
|
4561
|
+
*
|
|
4562
|
+
* 详细说明请参考华为云API Explorer。
|
|
4563
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
3975
4564
|
*/
|
|
3976
4565
|
neutronUpdateFirewallRule: function (neutronUpdateFirewallRuleRequest) {
|
|
3977
4566
|
var options = {
|
|
@@ -4009,7 +4598,11 @@ var ParamCreater = function () {
|
|
|
4009
4598
|
return options;
|
|
4010
4599
|
},
|
|
4011
4600
|
/**
|
|
4012
|
-
* 为指定的VPC资源实例批量添加标签。
|
|
4601
|
+
* 为指定的VPC资源实例批量添加标签。
|
|
4602
|
+
* 此接口为幂等接口:创建时如果请求体中存在重复key则报错。创建时,不允许设置重复key数据,如果数据库已存在该key,就覆盖value的值。
|
|
4603
|
+
*
|
|
4604
|
+
* 详细说明请参考华为云API Explorer。
|
|
4605
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4013
4606
|
*/
|
|
4014
4607
|
batchCreateVpcTags: function (batchCreateVpcTagsRequest) {
|
|
4015
4608
|
var options = {
|
|
@@ -4047,7 +4640,11 @@ var ParamCreater = function () {
|
|
|
4047
4640
|
return options;
|
|
4048
4641
|
},
|
|
4049
4642
|
/**
|
|
4050
|
-
* 为指定的VPC资源实例批量删除标签。
|
|
4643
|
+
* 为指定的VPC资源实例批量删除标签。
|
|
4644
|
+
* 此接口为幂等接口:删除时,如果删除的标签不存在,默认处理成功;删除时不对标签字符集范围做校验。删除时tags结构体不能缺失,key不能为空,或者空字符串。
|
|
4645
|
+
*
|
|
4646
|
+
* 详细说明请参考华为云API Explorer。
|
|
4647
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4051
4648
|
*/
|
|
4052
4649
|
batchDeleteVpcTags: function (batchDeleteVpcTagsRequest) {
|
|
4053
4650
|
var options = {
|
|
@@ -4086,6 +4683,9 @@ var ParamCreater = function () {
|
|
|
4086
4683
|
},
|
|
4087
4684
|
/**
|
|
4088
4685
|
* 创建虚拟私有云。
|
|
4686
|
+
*
|
|
4687
|
+
* 详细说明请参考华为云API Explorer。
|
|
4688
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4089
4689
|
*/
|
|
4090
4690
|
createVpc: function (createVpcRequest) {
|
|
4091
4691
|
var options = {
|
|
@@ -4116,7 +4716,11 @@ var ParamCreater = function () {
|
|
|
4116
4716
|
return options;
|
|
4117
4717
|
},
|
|
4118
4718
|
/**
|
|
4119
|
-
* 给指定VPC资源实例增加标签信息
|
|
4719
|
+
* 给指定VPC资源实例增加标签信息
|
|
4720
|
+
* 此接口为幂等接口:创建时,如果创建的标签已经存在(key相同),则覆盖。
|
|
4721
|
+
*
|
|
4722
|
+
* 详细说明请参考华为云API Explorer。
|
|
4723
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4120
4724
|
*/
|
|
4121
4725
|
createVpcResourceTag: function (createVpcResourceTagRequest) {
|
|
4122
4726
|
var options = {
|
|
@@ -4155,6 +4759,9 @@ var ParamCreater = function () {
|
|
|
4155
4759
|
},
|
|
4156
4760
|
/**
|
|
4157
4761
|
* 创建路由
|
|
4762
|
+
*
|
|
4763
|
+
* 详细说明请参考华为云API Explorer。
|
|
4764
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4158
4765
|
*/
|
|
4159
4766
|
createVpcRoute: function (createVpcRouteRequest) {
|
|
4160
4767
|
var options = {
|
|
@@ -4186,6 +4793,9 @@ var ParamCreater = function () {
|
|
|
4186
4793
|
},
|
|
4187
4794
|
/**
|
|
4188
4795
|
* 删除虚拟私有云。
|
|
4796
|
+
*
|
|
4797
|
+
* 详细说明请参考华为云API Explorer。
|
|
4798
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4189
4799
|
*/
|
|
4190
4800
|
deleteVpc: function (deleteVpcRequest) {
|
|
4191
4801
|
var options = {
|
|
@@ -4216,6 +4826,9 @@ var ParamCreater = function () {
|
|
|
4216
4826
|
},
|
|
4217
4827
|
/**
|
|
4218
4828
|
* 删除路由
|
|
4829
|
+
*
|
|
4830
|
+
* 详细说明请参考华为云API Explorer。
|
|
4831
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4219
4832
|
*/
|
|
4220
4833
|
deleteVpcRoute: function (deleteVpcRouteRequest) {
|
|
4221
4834
|
var options = {
|
|
@@ -4245,7 +4858,11 @@ var ParamCreater = function () {
|
|
|
4245
4858
|
return options;
|
|
4246
4859
|
},
|
|
4247
4860
|
/**
|
|
4248
|
-
* 删除指定VPC资源实例的标签信息
|
|
4861
|
+
* 删除指定VPC资源实例的标签信息
|
|
4862
|
+
* 该接口为幂等接口:删除的key不存在报404,Key不能为空或者空字符串
|
|
4863
|
+
*
|
|
4864
|
+
* 详细说明请参考华为云API Explorer。
|
|
4865
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4249
4866
|
*/
|
|
4250
4867
|
deleteVpcTag: function (deleteVpcTagRequest) {
|
|
4251
4868
|
var options = {
|
|
@@ -4282,6 +4899,9 @@ var ParamCreater = function () {
|
|
|
4282
4899
|
},
|
|
4283
4900
|
/**
|
|
4284
4901
|
* 查询提交请求的租户的所有路由列表,并根据过滤条件进行过滤。
|
|
4902
|
+
*
|
|
4903
|
+
* 详细说明请参考华为云API Explorer。
|
|
4904
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4285
4905
|
*/
|
|
4286
4906
|
listVpcRoutes: function (listVpcRoutesRequest) {
|
|
4287
4907
|
var options = {
|
|
@@ -4349,6 +4969,9 @@ var ParamCreater = function () {
|
|
|
4349
4969
|
},
|
|
4350
4970
|
/**
|
|
4351
4971
|
* 查询租户在指定区域和实例类型的所有标签集合
|
|
4972
|
+
*
|
|
4973
|
+
* 详细说明请参考华为云API Explorer。
|
|
4974
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4352
4975
|
*/
|
|
4353
4976
|
listVpcTags: function () {
|
|
4354
4977
|
var options = {
|
|
@@ -4366,6 +4989,9 @@ var ParamCreater = function () {
|
|
|
4366
4989
|
},
|
|
4367
4990
|
/**
|
|
4368
4991
|
* 查询虚拟私有云列表。
|
|
4992
|
+
*
|
|
4993
|
+
* 详细说明请参考华为云API Explorer。
|
|
4994
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4369
4995
|
*/
|
|
4370
4996
|
listVpcs: function (listVpcsRequest) {
|
|
4371
4997
|
var options = {
|
|
@@ -4415,6 +5041,9 @@ var ParamCreater = function () {
|
|
|
4415
5041
|
},
|
|
4416
5042
|
/**
|
|
4417
5043
|
* 使用标签过滤实例。
|
|
5044
|
+
*
|
|
5045
|
+
* 详细说明请参考华为云API Explorer。
|
|
5046
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4418
5047
|
*/
|
|
4419
5048
|
listVpcsByTags: function (listVpcsByTagsRequest) {
|
|
4420
5049
|
var options = {
|
|
@@ -4446,6 +5075,9 @@ var ParamCreater = function () {
|
|
|
4446
5075
|
},
|
|
4447
5076
|
/**
|
|
4448
5077
|
* 查询虚拟私有云。
|
|
5078
|
+
*
|
|
5079
|
+
* 详细说明请参考华为云API Explorer。
|
|
5080
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4449
5081
|
*/
|
|
4450
5082
|
showVpc: function (showVpcRequest) {
|
|
4451
5083
|
var options = {
|
|
@@ -4476,6 +5108,9 @@ var ParamCreater = function () {
|
|
|
4476
5108
|
},
|
|
4477
5109
|
/**
|
|
4478
5110
|
* 查询路由详情
|
|
5111
|
+
*
|
|
5112
|
+
* 详细说明请参考华为云API Explorer。
|
|
5113
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4479
5114
|
*/
|
|
4480
5115
|
showVpcRoute: function (showVpcRouteRequest) {
|
|
4481
5116
|
var options = {
|
|
@@ -4506,6 +5141,9 @@ var ParamCreater = function () {
|
|
|
4506
5141
|
},
|
|
4507
5142
|
/**
|
|
4508
5143
|
* 查询指定VPC实例的标签信息
|
|
5144
|
+
*
|
|
5145
|
+
* 详细说明请参考华为云API Explorer。
|
|
5146
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4509
5147
|
*/
|
|
4510
5148
|
showVpcTags: function (showVpcTagsRequest) {
|
|
4511
5149
|
var options = {
|
|
@@ -4536,6 +5174,9 @@ var ParamCreater = function () {
|
|
|
4536
5174
|
},
|
|
4537
5175
|
/**
|
|
4538
5176
|
* 更新虚拟私有云。
|
|
5177
|
+
*
|
|
5178
|
+
* 详细说明请参考华为云API Explorer。
|
|
5179
|
+
* Please refer to Huawei cloud API Explorer for details.
|
|
4539
5180
|
*/
|
|
4540
5181
|
updateVpc: function (updateVpcRequest) {
|
|
4541
5182
|
var options = {
|