tccli 3.0.1202.1__py2.py3-none-any.whl → 3.0.1204.1__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- tccli/__init__.py +1 -1
- tccli/services/apm/v20210622/api.json +17 -17
- tccli/services/apm/v20210622/examples.json +1 -1
- tccli/services/cdwdoris/v20211228/api.json +82 -0
- tccli/services/cls/v20201016/api.json +9 -0
- tccli/services/cvm/v20170312/api.json +3 -0
- tccli/services/essbasic/essbasic_client.py +53 -0
- tccli/services/essbasic/v20210526/api.json +78 -4
- tccli/services/essbasic/v20210526/examples.json +14 -0
- tccli/services/mariadb/mariadb_client.py +57 -4
- tccli/services/mariadb/v20170312/api.json +64 -0
- tccli/services/mariadb/v20170312/examples.json +8 -0
- tccli/services/mrs/v20200910/api.json +18 -18
- tccli/services/scf/v20180416/api.json +2 -2
- tccli/services/scf/v20180416/examples.json +1 -1
- tccli/services/sqlserver/v20180328/api.json +1 -1
- tccli/services/tcss/v20201101/api.json +9 -0
- tccli/services/vclm/v20240523/api.json +19 -0
- tccli/services/vpc/v20170312/api.json +6 -4
- tccli/services/vpc/v20170312/examples.json +1 -1
- tccli/services/waf/v20180125/api.json +336 -13
- tccli/services/waf/v20180125/examples.json +1 -1
- {tccli-3.0.1202.1.dist-info → tccli-3.0.1204.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1202.1.dist-info → tccli-3.0.1204.1.dist-info}/RECORD +27 -27
- {tccli-3.0.1202.1.dist-info → tccli-3.0.1204.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1202.1.dist-info → tccli-3.0.1204.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1202.1.dist-info → tccli-3.0.1204.1.dist-info}/license_files/LICENSE +0 -0
@@ -182,6 +182,13 @@
|
|
182
182
|
"output": "DescribeDBSlowLogsResponse",
|
183
183
|
"status": "online"
|
184
184
|
},
|
185
|
+
"DescribeDBSyncMode": {
|
186
|
+
"document": "本接口(DescribeDBSyncMode)用于查询云数据库实例的同步模式。",
|
187
|
+
"input": "DescribeDBSyncModeRequest",
|
188
|
+
"name": "查询同步模式",
|
189
|
+
"output": "DescribeDBSyncModeResponse",
|
190
|
+
"status": "online"
|
191
|
+
},
|
185
192
|
"DescribeDBTmpInstances": {
|
186
193
|
"document": "本接口(DescribeDBTmpInstances)用于获取实例回档生成的临时实例",
|
187
194
|
"input": "DescribeDBTmpInstancesRequest",
|
@@ -4983,6 +4990,63 @@
|
|
4983
4990
|
],
|
4984
4991
|
"type": "object"
|
4985
4992
|
},
|
4993
|
+
"DescribeDBSyncModeRequest": {
|
4994
|
+
"document": "DescribeDBSyncMode请求参数结构体",
|
4995
|
+
"members": [
|
4996
|
+
{
|
4997
|
+
"disabled": false,
|
4998
|
+
"document": "实例ID,形如:tdsql-ow728lmc",
|
4999
|
+
"example": "tdsql-avw0207d",
|
5000
|
+
"member": "string",
|
5001
|
+
"name": "InstanceId",
|
5002
|
+
"required": true,
|
5003
|
+
"type": "string"
|
5004
|
+
}
|
5005
|
+
],
|
5006
|
+
"type": "object"
|
5007
|
+
},
|
5008
|
+
"DescribeDBSyncModeResponse": {
|
5009
|
+
"document": "DescribeDBSyncMode返回参数结构体",
|
5010
|
+
"members": [
|
5011
|
+
{
|
5012
|
+
"disabled": false,
|
5013
|
+
"document": "同步模式:0 异步,1 强同步, 2 强同步可退化",
|
5014
|
+
"example": "0",
|
5015
|
+
"member": "int64",
|
5016
|
+
"name": "SyncMode",
|
5017
|
+
"required": true,
|
5018
|
+
"type": "int",
|
5019
|
+
"value_allowed_null": false
|
5020
|
+
},
|
5021
|
+
{
|
5022
|
+
"disabled": false,
|
5023
|
+
"document": "是否有修改流程在执行中:1 是, 0 否。",
|
5024
|
+
"example": "0",
|
5025
|
+
"member": "int64",
|
5026
|
+
"name": "IsModifying",
|
5027
|
+
"required": true,
|
5028
|
+
"type": "int",
|
5029
|
+
"value_allowed_null": false
|
5030
|
+
},
|
5031
|
+
{
|
5032
|
+
"disabled": false,
|
5033
|
+
"document": "当前复制方式,0 异步,1 同步",
|
5034
|
+
"example": "0",
|
5035
|
+
"member": "int64",
|
5036
|
+
"name": "CurrentSyncMode",
|
5037
|
+
"required": true,
|
5038
|
+
"type": "int",
|
5039
|
+
"value_allowed_null": false
|
5040
|
+
},
|
5041
|
+
{
|
5042
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
5043
|
+
"member": "string",
|
5044
|
+
"name": "RequestId",
|
5045
|
+
"type": "string"
|
5046
|
+
}
|
5047
|
+
],
|
5048
|
+
"type": "object"
|
5049
|
+
},
|
4986
5050
|
"DescribeDBTmpInstancesRequest": {
|
4987
5051
|
"document": "DescribeDBTmpInstances请求参数结构体",
|
4988
5052
|
"members": [
|
@@ -208,6 +208,14 @@
|
|
208
208
|
"title": "查询慢查询日志列表"
|
209
209
|
}
|
210
210
|
],
|
211
|
+
"DescribeDBSyncMode": [
|
212
|
+
{
|
213
|
+
"document": "",
|
214
|
+
"input": "https://mariadb.tencentcloudapi.com/?Action=DescribeDBSyncMode\n&InstanceId=tdsql-avw0207d\n&<公共请求参数>",
|
215
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"901bd41c-08a2-4001-8364-5a63f32056ae\",\n \"SyncMode\": 0,\n \"CurrentSyncMode\": 0,\n \"IsModifying\": 0\n }\n}",
|
216
|
+
"title": "查询云数据库同步模式"
|
217
|
+
}
|
218
|
+
],
|
211
219
|
"DescribeDBTmpInstances": [
|
212
220
|
{
|
213
221
|
"document": "",
|
@@ -6485,24 +6485,6 @@
|
|
6485
6485
|
"ImageToObjectRequest": {
|
6486
6486
|
"document": "ImageToObject请求参数结构体",
|
6487
6487
|
"members": [
|
6488
|
-
{
|
6489
|
-
"disabled": false,
|
6490
|
-
"document": "图片列表,允许传入多张图片,目前只支持传入图片base64编码,图片url暂不支持",
|
6491
|
-
"example": "无",
|
6492
|
-
"member": "ImageInfo",
|
6493
|
-
"name": "ImageInfoList",
|
6494
|
-
"required": true,
|
6495
|
-
"type": "list"
|
6496
|
-
},
|
6497
|
-
{
|
6498
|
-
"disabled": false,
|
6499
|
-
"document": "图片处理参数",
|
6500
|
-
"example": "无",
|
6501
|
-
"member": "HandleParam",
|
6502
|
-
"name": "HandleParam",
|
6503
|
-
"required": true,
|
6504
|
-
"type": "object"
|
6505
|
-
},
|
6506
6488
|
{
|
6507
6489
|
"disabled": false,
|
6508
6490
|
"document": "报告类型,目前支持11(检验报告),12(检查报告),15(病理报告),28(出院报告),29(入院报告),210(门诊病历),212(手术记录),218(诊断证明),363(心电图),27(内窥镜检查),215(处方单),219(免疫接种证明),301(C14呼气试验)。如果不清楚报告类型,可以使用分类引擎,该字段传0(同时IsUsedClassify字段必须为True,否则无法输出结果)",
|
@@ -6521,6 +6503,24 @@
|
|
6521
6503
|
"required": true,
|
6522
6504
|
"type": "bool"
|
6523
6505
|
},
|
6506
|
+
{
|
6507
|
+
"disabled": false,
|
6508
|
+
"document": "图片处理参数",
|
6509
|
+
"example": "无",
|
6510
|
+
"member": "HandleParam",
|
6511
|
+
"name": "HandleParam",
|
6512
|
+
"required": false,
|
6513
|
+
"type": "object"
|
6514
|
+
},
|
6515
|
+
{
|
6516
|
+
"disabled": false,
|
6517
|
+
"document": "图片列表,允许传入多张图片,目前只支持传入图片base64编码,图片url暂不支持",
|
6518
|
+
"example": "无",
|
6519
|
+
"member": "ImageInfo",
|
6520
|
+
"name": "ImageInfoList",
|
6521
|
+
"required": false,
|
6522
|
+
"type": "list"
|
6523
|
+
},
|
6524
6524
|
{
|
6525
6525
|
"disabled": false,
|
6526
6526
|
"document": "后付费的用户类型,新客户传1,老客户可不传或传 0。2022 年 12 月 15 新增了计费项,在此时间之前已经通过商务指定优惠价格的大客户,请不传这个字段或传 0,如果传 1 会导致以前获得的折扣价格失效。在 2022 年 12 月 15 日之后,通过商务指定优惠价格的大客户请传 1。",
|
@@ -3476,7 +3476,7 @@
|
|
3476
3476
|
"example": "10",
|
3477
3477
|
"member": "int64",
|
3478
3478
|
"name": "TotalCount",
|
3479
|
-
"
|
3479
|
+
"output_required": true,
|
3480
3480
|
"type": "int",
|
3481
3481
|
"value_allowed_null": true
|
3482
3482
|
},
|
@@ -3486,7 +3486,7 @@
|
|
3486
3486
|
"example": "无",
|
3487
3487
|
"member": "RequestStatus",
|
3488
3488
|
"name": "Data",
|
3489
|
-
"
|
3489
|
+
"output_required": true,
|
3490
3490
|
"type": "list",
|
3491
3491
|
"value_allowed_null": true
|
3492
3492
|
},
|
@@ -172,7 +172,7 @@
|
|
172
172
|
{
|
173
173
|
"document": "",
|
174
174
|
"input": "https://scf.tencentcloudapi.com/?Action=GetRequestStatus\n&FunctionName=<FunctionName>\n&FunctionRequestId=<FunctionRequestId>\n&<公共请求参数>",
|
175
|
-
"output": "{\n \"Response\": {\n \"TotalCount\":
|
175
|
+
"output": "{\n \"Response\": {\n \"TotalCount\": 0,\n \"Data\": [\n {\n \"FunctionName\": \"abc\",\n \"RetMsg\": \"abc\",\n \"RequestId\": \"abc\",\n \"StartTime\": \"abc\",\n \"RetCode\": 0,\n \"Duration\": 0,\n \"MemUsage\": 0,\n \"RetryNum\": 0\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
|
176
176
|
"title": "获取函数运行状态"
|
177
177
|
}
|
178
178
|
],
|
@@ -2377,7 +2377,7 @@
|
|
2377
2377
|
},
|
2378
2378
|
{
|
2379
2379
|
"disabled": false,
|
2380
|
-
"document": "购买实例的宿主机类型,CLOUD_PREMIUM
|
2380
|
+
"document": "购买实例的宿主机类型,CLOUD_PREMIUM-虚拟机高性能云硬盘,CLOUD_SSD-虚拟机SSD云硬盘,CLOUD_HSSD-虚拟机增强型SSD云硬盘,CLOUD_BSSD-虚拟机通用型SSD云盘",
|
2381
2381
|
"example": "CLOUD_PREMIUM",
|
2382
2382
|
"member": "string",
|
2383
2383
|
"name": "MachineType",
|
@@ -41553,6 +41553,15 @@
|
|
41553
41553
|
"name": "ConnDetectConfig",
|
41554
41554
|
"required": false,
|
41555
41555
|
"type": "list"
|
41556
|
+
},
|
41557
|
+
{
|
41558
|
+
"disabled": false,
|
41559
|
+
"document": "仓库唯一id",
|
41560
|
+
"example": "无",
|
41561
|
+
"member": "int64",
|
41562
|
+
"name": "RegistryId",
|
41563
|
+
"required": false,
|
41564
|
+
"type": "int"
|
41556
41565
|
}
|
41557
41566
|
],
|
41558
41567
|
"type": "object"
|
@@ -254,6 +254,16 @@
|
|
254
254
|
"type": "string",
|
255
255
|
"value_allowed_null": false
|
256
256
|
},
|
257
|
+
{
|
258
|
+
"disabled": false,
|
259
|
+
"document": "掩码视频链接",
|
260
|
+
"example": "https://aiar.com/xxx/mask.mp4",
|
261
|
+
"member": "string",
|
262
|
+
"name": "MaskVideoUrl",
|
263
|
+
"output_required": false,
|
264
|
+
"type": "string",
|
265
|
+
"value_allowed_null": false
|
266
|
+
},
|
257
267
|
{
|
258
268
|
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
259
269
|
"member": "string",
|
@@ -601,6 +611,15 @@
|
|
601
611
|
"name": "EnableBodyJoins",
|
602
612
|
"required": false,
|
603
613
|
"type": "bool"
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"disabled": false,
|
617
|
+
"document": "最终视频是否保留原图的背景(该模式对于tuziwu、huajiangwu不生效)\n",
|
618
|
+
"example": "false",
|
619
|
+
"member": "bool",
|
620
|
+
"name": "EnableSegment",
|
621
|
+
"required": false,
|
622
|
+
"type": "bool"
|
604
623
|
}
|
605
624
|
],
|
606
625
|
"type": "object"
|
@@ -1711,7 +1711,7 @@
|
|
1711
1711
|
"DisassociateAddress": {
|
1712
1712
|
"document": "本接口 (DisassociateAddress) 用于解绑[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)。\n* 支持CVM实例,弹性网卡上的EIP解绑\n* 不支持NAT上的EIP解绑。NAT上的EIP解绑请参考[DisassociateNatGatewayAddress](https://cloud.tencent.com/document/api/215/36716)\n* 只有状态为 BIND 和 BIND_ENI 的 EIP 才能进行解绑定操作。",
|
1713
1713
|
"input": "DisassociateAddressRequest",
|
1714
|
-
"name": "
|
1714
|
+
"name": "解绑弹性公网IP",
|
1715
1715
|
"output": "DisassociateAddressResponse",
|
1716
1716
|
"status": "online"
|
1717
1717
|
},
|
@@ -5087,7 +5087,7 @@
|
|
5087
5087
|
"value_allowed_null": true
|
5088
5088
|
},
|
5089
5089
|
{
|
5090
|
-
"disabled":
|
5090
|
+
"disabled": true,
|
5091
5091
|
"document": "是否支持ipv6路由表\n注意:此字段可能返回 null,表示取不到有效值。",
|
5092
5092
|
"example": "True",
|
5093
5093
|
"member": "string",
|
@@ -12846,7 +12846,7 @@
|
|
12846
12846
|
},
|
12847
12847
|
{
|
12848
12848
|
"disabled": false,
|
12849
|
-
"document": "每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。详细的过滤条件如下:\n<li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。</li>\n<li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。</li>\n<li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。</li>\n<li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING','BINDING','BIND','UNBINDING','UNBIND','OFFLINING','BIND_ENI'。</li>\n<li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。</li>\n<li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。</li>\n<li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。</li>\n<li> is-arrears - String - 是否必填:否 - (过滤条件)按照 EIP 是否欠费进行过滤。(TRUE:EIP 处于欠费状态|FALSE:EIP 费用状态正常)</li>\n<li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP', 'EIP','AnycastEIP','HighQualityEIP'。默认值是'EIP'。</li>\n<li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP','CMCC','CUCC', 'CTCC'</li>\n<li> dedicated-cluster-id - String - 是否必填:否 - (过滤条件)按照 CDC 的唯一 ID 过滤。CDC 唯一 ID 形如:cluster-11112222。</li>\n<li> tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。</li>\n<li> tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。</li>\n<li> tag:tag-key - String - 是否必填:否 - (过滤条件)按照标签键值对进行过滤。tag-key使用具体的标签键进行替换。</li>",
|
12849
|
+
"document": "每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。详细的过滤条件如下:\n<li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。</li>\n<li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。</li>\n<li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。</li>\n<li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING','BINDING','BIND','UNBINDING','UNBIND','OFFLINING','BIND_ENI'。</li>\n<li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。</li>\n<li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。</li>\n<li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。</li>\n<li> is-arrears - String - 是否必填:否 - (过滤条件)按照 EIP 是否欠费进行过滤。(TRUE:EIP 处于欠费状态|FALSE:EIP 费用状态正常)</li>\n<li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP', 'EIP','AnycastEIP','HighQualityEIP', 'AntiDDoSEIP'。默认值是'EIP'。</li>\n<li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP','CMCC','CUCC', 'CTCC'</li>\n<li> dedicated-cluster-id - String - 是否必填:否 - (过滤条件)按照 CDC 的唯一 ID 过滤。CDC 唯一 ID 形如:cluster-11112222。</li>\n<li> tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。</li>\n<li> tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。</li>\n<li> tag:tag-key - String - 是否必填:否 - (过滤条件)按照标签键值对进行过滤。tag-key使用具体的标签键进行替换。</li>",
|
12850
12850
|
"example": "无",
|
12851
12851
|
"member": "Filter",
|
12852
12852
|
"name": "Filters",
|
@@ -12883,6 +12883,7 @@
|
|
12883
12883
|
"example": "10",
|
12884
12884
|
"member": "int64",
|
12885
12885
|
"name": "TotalCount",
|
12886
|
+
"output_required": true,
|
12886
12887
|
"type": "int",
|
12887
12888
|
"value_allowed_null": false
|
12888
12889
|
},
|
@@ -12892,6 +12893,7 @@
|
|
12892
12893
|
"example": "无",
|
12893
12894
|
"member": "Address",
|
12894
12895
|
"name": "AddressSet",
|
12896
|
+
"output_required": true,
|
12895
12897
|
"type": "list",
|
12896
12898
|
"value_allowed_null": false
|
12897
12899
|
},
|
@@ -20425,7 +20427,7 @@
|
|
20425
20427
|
},
|
20426
20428
|
{
|
20427
20429
|
"disabled": false,
|
20428
|
-
"document": "表示解绑 EIP 之后是否分配普通公网 IP。取值范围:<br><li
|
20430
|
+
"document": "表示解绑 EIP 之后是否分配普通公网 IP。取值范围:<br><li />TRUE:表示解绑 EIP 之后分配普通公网 IP。<br><li />FALSE:表示解绑 EIP 之后不分配普通公网 IP。<br>默认取值:FALSE。<br><br>只有满足以下条件时才能指定该参数:<br><li /> 只有在解绑主网卡的主内网 IP 上的 EIP 时才能指定该参数。<br><li />解绑 EIP 后重新分配普通公网 IP 操作一个账号每天最多操作 10 次;详情可通过 [DescribeAddressQuota](https://cloud.tencent.com/document/api/213/1378) 接口获取。",
|
20429
20431
|
"example": "True",
|
20430
20432
|
"member": "bool",
|
20431
20433
|
"name": "ReallocateNormalPublicIp",
|
@@ -1238,7 +1238,7 @@
|
|
1238
1238
|
{
|
1239
1239
|
"document": "查询EIP信息。",
|
1240
1240
|
"input": "POST / HTTP/1.1\nHost: vpc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeAddresses\n<公共请求参数>\n\n{}",
|
1241
|
-
"output": "{\n \"Response\": {\n \"TotalCount\": 2,\n \"AddressSet\": [\n {\n \"AddressId\": \"eip-qhx8udkc\",\n \"AddressName\": \"未命名\",\n \"AddressIp\": \"1.14.91.34\",\n \"AddressStatus\": \"UNBIND\",\n \"AddressType\": \"EIP\",\n \"InstanceId\": \"ins-wf123456\",\n \"InstanceType\": null,\n \"NetworkInterfaceId\": \"eni-12345678\",\n \"PrivateAddressIp\": \"10.2.3.4\",\n \"IsArrears\": false,\n \"IsBlocked\": false,\n \"IsEipDirectConnection\": false,\n \"EipAlgType\": {\n \"Ftp\": true,\n \"Sip\": true\n },\n \"LocalBgp\": false,\n \"CascadeRelease\": false,\n \"CreatedTime\": \"2022-08-11T03:57:05Z\",\n \"TagSet\": [],\n \"InternetChargeType\": \"TRAFFIC_POSTPAID_BY_HOUR\",\n \"Bandwidth\": 1,\n \"DeadlineDate\": null,\n \"InternetServiceProvider\": \"BGP\"\n },\n {\n \"AddressId\": \"eip-qygpzm9y\",\n \"AddressName\": \"未命名\",\n \"AddressIp\": \"1.14.90.212\",\n \"AddressStatus\": \"UNBIND\",\n \"AddressType\": \"EIP\",\n \"InstanceId\": \"ins-12345678\",\n \"InstanceType\": null,\n \"NetworkInterfaceId\": \"eni-12345678\",\n \"PrivateAddressIp\": \"10.3.4.5.6\",\n \"IsArrears\": false,\n \"IsBlocked\": false,\n \"IsEipDirectConnection\": false,\n \"EipAlgType\": {\n \"Ftp\": true,\n \"Sip\": true\n },\n \"LocalBgp\": false,\n \"CascadeRelease\": false,\n \"CreatedTime\": \"2022-08-11T03:47:03Z\",\n \"TagSet\": [],\n \"InternetChargeType\": \"TRAFFIC_POSTPAID_BY_HOUR\",\n \"Bandwidth\": 1,\n \"DeadlineDate\": null,\n \"InternetServiceProvider\": \"BGP\"\n }\n ],\n \"RequestId\": \"4ead34c4-3112-40fe-bbde-2295eee9d664\"\n }\n}",
|
1241
|
+
"output": "{\n \"Response\": {\n \"TotalCount\": 2,\n \"AddressSet\": [\n {\n \"AddressId\": \"eip-qhx8udkc\",\n \"AddressName\": \"未命名\",\n \"AddressIp\": \"1.14.91.34\",\n \"AddressStatus\": \"UNBIND\",\n \"AddressType\": \"EIP\",\n \"InstanceId\": \"ins-wf123456\",\n \"InstanceType\": null,\n \"NetworkInterfaceId\": \"eni-12345678\",\n \"PrivateAddressIp\": \"10.2.3.4\",\n \"IsArrears\": false,\n \"IsBlocked\": false,\n \"IsEipDirectConnection\": false,\n \"EipAlgType\": {\n \"Ftp\": true,\n \"Sip\": true\n },\n \"LocalBgp\": false,\n \"CascadeRelease\": false,\n \"CreatedTime\": \"2022-08-11T03:57:05Z\",\n \"TagSet\": [],\n \"InternetChargeType\": \"TRAFFIC_POSTPAID_BY_HOUR\",\n \"Bandwidth\": 1,\n \"DeadlineDate\": null,\n \"Egress\": \"center_egress1\",\n \"InternetServiceProvider\": \"BGP\"\n },\n {\n \"AddressId\": \"eip-qygpzm9y\",\n \"AddressName\": \"未命名\",\n \"AddressIp\": \"1.14.90.212\",\n \"AddressStatus\": \"UNBIND\",\n \"AddressType\": \"EIP\",\n \"InstanceId\": \"ins-12345678\",\n \"InstanceType\": null,\n \"NetworkInterfaceId\": \"eni-12345678\",\n \"PrivateAddressIp\": \"10.3.4.5.6\",\n \"IsArrears\": false,\n \"IsBlocked\": false,\n \"IsEipDirectConnection\": false,\n \"Egress\": \"center_egress1\",\n \"EipAlgType\": {\n \"Ftp\": true,\n \"Sip\": true\n },\n \"LocalBgp\": false,\n \"CascadeRelease\": false,\n \"CreatedTime\": \"2022-08-11T03:47:03Z\",\n \"TagSet\": [],\n \"InternetChargeType\": \"TRAFFIC_POSTPAID_BY_HOUR\",\n \"Bandwidth\": 1,\n \"DeadlineDate\": null,\n \"InternetServiceProvider\": \"BGP\"\n }\n ],\n \"RequestId\": \"4ead34c4-3112-40fe-bbde-2295eee9d664\"\n }\n}",
|
1242
1242
|
"title": "查询EIP信息"
|
1243
1243
|
},
|
1244
1244
|
{
|