tccli 3.0.1287.1__py2.py3-none-any.whl → 3.0.1288.1__py2.py3-none-any.whl

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.
Files changed (38) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/billing/v20180709/api.json +254 -254
  3. tccli/services/captcha/v20190722/api.json +79 -77
  4. tccli/services/cdc/v20201214/api.json +16 -16
  5. tccli/services/cfs/v20190719/api.json +1 -1
  6. tccli/services/cvm/cvm_client.py +53 -0
  7. tccli/services/cvm/v20170312/api.json +110 -5
  8. tccli/services/cvm/v20170312/examples.json +8 -0
  9. tccli/services/cwp/v20180228/api.json +63 -15
  10. tccli/services/domain/v20180808/api.json +49 -29
  11. tccli/services/ess/v20201111/api.json +25 -1
  12. tccli/services/essbasic/v20210526/api.json +27 -3
  13. tccli/services/hunyuan/v20230901/api.json +45 -12
  14. tccli/services/lke/v20231130/api.json +4 -4
  15. tccli/services/lke/v20231130/examples.json +1 -1
  16. tccli/services/mariadb/v20170312/api.json +30 -30
  17. tccli/services/mongodb/v20190725/api.json +3 -3
  18. tccli/services/redis/v20180412/api.json +4 -4
  19. tccli/services/ses/v20201002/api.json +1 -1
  20. tccli/services/tat/v20201028/api.json +7 -7
  21. tccli/services/tcb/v20180608/api.json +232 -231
  22. tccli/services/tcb/v20180608/examples.json +1 -7
  23. tccli/services/tdmq/v20200217/api.json +231 -221
  24. tccli/services/teo/v20220901/api.json +129 -7
  25. tccli/services/trocket/trocket_client.py +53 -0
  26. tccli/services/trocket/v20230308/api.json +61 -0
  27. tccli/services/trocket/v20230308/examples.json +8 -0
  28. tccli/services/trro/trro_client.py +53 -0
  29. tccli/services/trro/v20220325/api.json +70 -0
  30. tccli/services/trro/v20220325/examples.json +8 -0
  31. tccli/services/waf/v20180125/api.json +225 -0
  32. tccli/services/waf/v20180125/examples.json +24 -0
  33. tccli/services/waf/waf_client.py +159 -0
  34. {tccli-3.0.1287.1.dist-info → tccli-3.0.1288.1.dist-info}/METADATA +2 -2
  35. {tccli-3.0.1287.1.dist-info → tccli-3.0.1288.1.dist-info}/RECORD +38 -38
  36. {tccli-3.0.1287.1.dist-info → tccli-3.0.1288.1.dist-info}/WHEEL +0 -0
  37. {tccli-3.0.1287.1.dist-info → tccli-3.0.1288.1.dist-info}/entry_points.txt +0 -0
  38. {tccli-3.0.1287.1.dist-info → tccli-3.0.1288.1.dist-info}/license_files/LICENSE +0 -0
@@ -933,7 +933,7 @@
933
933
  {
934
934
  "disabled": false,
935
935
  "document": "私有网络(VPC) ID,若网络类型选择的是VPC,该字段为必填。",
936
- "example": "123",
936
+ "example": "6235990",
937
937
  "member": "string",
938
938
  "name": "VpcId",
939
939
  "required": false,
@@ -1317,6 +1317,58 @@ def doDescribeImageSharePermission(args, parsed_globals):
1317
1317
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1318
1318
 
1319
1319
 
1320
+ def doDescribeInstancesAttributes(args, parsed_globals):
1321
+ g_param = parse_global_arg(parsed_globals)
1322
+
1323
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
1324
+ cred = credential.CVMRoleCredential()
1325
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
1326
+ cred = credential.STSAssumeRoleCredential(
1327
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
1328
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
1329
+ )
1330
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
1331
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
1332
+ else:
1333
+ cred = credential.Credential(
1334
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
1335
+ )
1336
+ http_profile = HttpProfile(
1337
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
1338
+ reqMethod="POST",
1339
+ endpoint=g_param[OptionsDefine.Endpoint],
1340
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
1341
+ )
1342
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
1343
+ if g_param[OptionsDefine.Language]:
1344
+ profile.language = g_param[OptionsDefine.Language]
1345
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
1346
+ client = mod.CvmClient(cred, g_param[OptionsDefine.Region], profile)
1347
+ client._sdkVersion += ("_CLI_" + __version__)
1348
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
1349
+ model = models.DescribeInstancesAttributesRequest()
1350
+ model.from_json_string(json.dumps(args))
1351
+ start_time = time.time()
1352
+ while True:
1353
+ rsp = client.DescribeInstancesAttributes(model)
1354
+ result = rsp.to_json_string()
1355
+ try:
1356
+ json_obj = json.loads(result)
1357
+ except TypeError as e:
1358
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
1359
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
1360
+ break
1361
+ cur_time = time.time()
1362
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
1363
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
1364
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
1365
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
1366
+ else:
1367
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
1368
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
1369
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1370
+
1371
+
1320
1372
  def doDescribeRegions(args, parsed_globals):
1321
1373
  g_param = parse_global_arg(parsed_globals)
1322
1374
 
@@ -5305,6 +5357,7 @@ ACTION_MAP = {
5305
5357
  "DisassociateSecurityGroups": doDisassociateSecurityGroups,
5306
5358
  "RemoveChcDeployVpc": doRemoveChcDeployVpc,
5307
5359
  "DescribeImageSharePermission": doDescribeImageSharePermission,
5360
+ "DescribeInstancesAttributes": doDescribeInstancesAttributes,
5308
5361
  "DescribeRegions": doDescribeRegions,
5309
5362
  "DescribeInstancesModification": doDescribeInstancesModification,
5310
5363
  "CreateKeyPair": doCreateKeyPair,
@@ -259,6 +259,13 @@
259
259
  "output": "DescribeInstancesActionTimerResponse",
260
260
  "status": "online"
261
261
  },
262
+ "DescribeInstancesAttributes": {
263
+ "document": "获取指定实例的属性,目前支持查询实例自定义数据User-Data。",
264
+ "input": "DescribeInstancesAttributesRequest",
265
+ "name": "批量获取指定实例属性",
266
+ "output": "DescribeInstancesAttributesResponse",
267
+ "status": "online"
268
+ },
262
269
  "DescribeInstancesModification": {
263
270
  "document": "本接口 (DescribeInstancesModification) 用于查询指定实例支持调整的机型配置。",
264
271
  "input": "DescribeInstancesModificationRequest",
@@ -1041,6 +1048,23 @@
1041
1048
  ],
1042
1049
  "type": "object"
1043
1050
  },
1051
+ "Attribute": {
1052
+ "document": "属性信息",
1053
+ "members": [
1054
+ {
1055
+ "disabled": false,
1056
+ "document": "实例的自定义数据。",
1057
+ "example": "TXlVc2VyRGF0YQo=\t",
1058
+ "member": "string",
1059
+ "name": "UserData",
1060
+ "output_required": false,
1061
+ "required": false,
1062
+ "type": "string",
1063
+ "value_allowed_null": false
1064
+ }
1065
+ ],
1066
+ "usage": "both"
1067
+ },
1044
1068
  "ChargePrepaid": {
1045
1069
  "document": "描述预付费模式,即包年包月相关参数。包括购买时长和自动续费逻辑等。",
1046
1070
  "members": [
@@ -3974,6 +3998,52 @@
3974
3998
  ],
3975
3999
  "type": "object"
3976
4000
  },
4001
+ "DescribeInstancesAttributesRequest": {
4002
+ "document": "DescribeInstancesAttributes请求参数结构体",
4003
+ "members": [
4004
+ {
4005
+ "disabled": false,
4006
+ "document": "需要获取的实例属性。可选值:\nUserData: 实例自定义数据",
4007
+ "example": "[\"UserData\"]",
4008
+ "member": "string",
4009
+ "name": "Attributes",
4010
+ "required": true,
4011
+ "type": "list"
4012
+ },
4013
+ {
4014
+ "disabled": false,
4015
+ "document": "实例ID列表",
4016
+ "example": "[\"ins-lyxxskp2\"]",
4017
+ "member": "string",
4018
+ "name": "InstanceIds",
4019
+ "required": true,
4020
+ "type": "list"
4021
+ }
4022
+ ],
4023
+ "type": "object"
4024
+ },
4025
+ "DescribeInstancesAttributesResponse": {
4026
+ "document": "DescribeInstancesAttributes返回参数结构体",
4027
+ "members": [
4028
+ {
4029
+ "disabled": false,
4030
+ "document": "指定的实例属性列表",
4031
+ "example": "无",
4032
+ "member": "InstanceAttribute",
4033
+ "name": "InstanceSet",
4034
+ "output_required": true,
4035
+ "type": "list",
4036
+ "value_allowed_null": false
4037
+ },
4038
+ {
4039
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
4040
+ "member": "string",
4041
+ "name": "RequestId",
4042
+ "type": "string"
4043
+ }
4044
+ ],
4045
+ "type": "object"
4046
+ },
3977
4047
  "DescribeInstancesModificationRequest": {
3978
4048
  "document": "DescribeInstancesModification请求参数结构体",
3979
4049
  "members": [
@@ -4785,13 +4855,13 @@
4785
4855
  },
4786
4856
  {
4787
4857
  "disabled": false,
4788
- "document": "查询返回的维修任务列表。\n注意:此字段可能返回 null,表示取不到有效值。",
4789
- "example": "NA",
4858
+ "document": "查询返回的维修任务列表。",
4859
+ "example": "",
4790
4860
  "member": "RepairTaskInfo",
4791
4861
  "name": "RepairTaskInfoSet",
4792
4862
  "output_required": true,
4793
4863
  "type": "list",
4794
- "value_allowed_null": true
4864
+ "value_allowed_null": false
4795
4865
  },
4796
4866
  {
4797
4867
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
@@ -5169,13 +5239,22 @@
5169
5239
  "type": "string"
5170
5240
  },
5171
5241
  {
5172
- "disabled": false,
5173
- "document": "是否强制关机",
5242
+ "disabled": true,
5243
+ "document": "是否强制关机。本参数已弃用,推荐使用StopType,不可以与参数StopType同时使用。",
5174
5244
  "example": "False",
5175
5245
  "member": "bool",
5176
5246
  "name": "ForceStop",
5177
5247
  "required": false,
5178
5248
  "type": "bool"
5249
+ },
5250
+ {
5251
+ "disabled": false,
5252
+ "document": "实例的关闭模式。取值范围:<br><li>SOFT_FIRST:表示在正常关闭失败后进行强制关闭</li><br><li>HARD:直接强制关闭</li><br><li>SOFT:仅软关机</li><br>默认取值:SOFT。",
5253
+ "example": "HARD",
5254
+ "member": "string",
5255
+ "name": "StopType",
5256
+ "required": false,
5257
+ "type": "string"
5179
5258
  }
5180
5259
  ],
5181
5260
  "type": "object"
@@ -7495,6 +7574,32 @@
7495
7574
  ],
7496
7575
  "usage": "out"
7497
7576
  },
7577
+ "InstanceAttribute": {
7578
+ "document": "实例属性",
7579
+ "members": [
7580
+ {
7581
+ "disabled": false,
7582
+ "document": "实例 ID。",
7583
+ "example": "ins-lyxxskp2",
7584
+ "member": "string",
7585
+ "name": "InstanceId",
7586
+ "output_required": false,
7587
+ "type": "string",
7588
+ "value_allowed_null": false
7589
+ },
7590
+ {
7591
+ "disabled": false,
7592
+ "document": "实例属性信息。",
7593
+ "example": "无",
7594
+ "member": "Attribute",
7595
+ "name": "Attributes",
7596
+ "output_required": false,
7597
+ "type": "object",
7598
+ "value_allowed_null": false
7599
+ }
7600
+ ],
7601
+ "usage": "out"
7602
+ },
7498
7603
  "InstanceChargePrepaid": {
7499
7604
  "document": "描述了实例的计费模式",
7500
7605
  "members": [
@@ -320,6 +320,14 @@
320
320
  "title": "查询定时任务"
321
321
  }
322
322
  ],
323
+ "DescribeInstancesAttributes": [
324
+ {
325
+ "document": "",
326
+ "input": "POST / HTTP/1.1\nHost: cvm.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeInstancesAttributes\n<公共请求参数>\n\n{\n \"Attributes\": [\n \"UserData\"\n ],\n \"InstanceIds\": [\n \"ins-pgklxcq0\"\n ]\n}",
327
+ "output": "{\n \"Response\": {\n \"InstanceSet\": [\n {\n \"Attributes\": {\n \"UserData\": \"TXlVc2VyRGF0YQo=\"\n },\n \"InstanceId\": \"ins-pgklxcq0\"\n }\n ],\n \"RequestId\": \"bd249418-331b-43c7-b872-3ae94fe84af9\"\n }\n}",
328
+ "title": "查询指定实例列表的实例属性"
329
+ }
330
+ ],
323
331
  "DescribeInstancesModification": [
324
332
  {
325
333
  "document": "查询指定实例支持调整的机型配置",
@@ -5983,7 +5983,7 @@
5983
5983
  },
5984
5984
  {
5985
5985
  "disabled": false,
5986
- "document": "防护级别:0基础版,1专业版,2旗舰版,3普惠版",
5986
+ "document": "防护级别:0基础版,1专业版,2旗舰版,3轻量版",
5987
5987
  "example": "1",
5988
5988
  "member": "uint64",
5989
5989
  "name": "ProtectLevel",
@@ -14584,7 +14584,7 @@
14584
14584
  },
14585
14585
  {
14586
14586
  "disabled": false,
14587
- "document": "备份模式: 0按周,1按天",
14587
+ "document": "备份模式: 0按周,1按天,2不备份",
14588
14588
  "example": "1",
14589
14589
  "member": "uint64",
14590
14590
  "name": "BackupType",
@@ -29823,6 +29823,24 @@
29823
29823
  "name": "By",
29824
29824
  "required": false,
29825
29825
  "type": "string"
29826
+ },
29827
+ {
29828
+ "disabled": false,
29829
+ "document": "事件创建起始时间",
29830
+ "example": "2025-02-10 16:00:01",
29831
+ "member": "string",
29832
+ "name": "CreateBeginTime",
29833
+ "required": false,
29834
+ "type": "string"
29835
+ },
29836
+ {
29837
+ "disabled": false,
29838
+ "document": "事件创建结束时间",
29839
+ "example": "2025-02-10 16:00:01",
29840
+ "member": "string",
29841
+ "name": "CreateEndTime",
29842
+ "required": false,
29843
+ "type": "string"
29826
29844
  }
29827
29845
  ],
29828
29846
  "type": "object"
@@ -29833,7 +29851,7 @@
29833
29851
  {
29834
29852
  "disabled": false,
29835
29853
  "document": "事件列表",
29836
- "example": "[ { \"Id\": 10001, \"CreateTime\": \"2024-05-14 11:01:02\", \"ModifyTime\": \"2024-07-19 17:59:03\", \"Quuid\": \"1c26308c-5493-4eaf-a817-112ec25f4991\", \"Uuid\": \"1c26308c-5493-4eaf-a817-112ec25f4991\", \"Status\": 2, \"BaitFilePath\": \"/home/.yjfile/121hcXh.doc\", \"FilePath\": \"/usr/bin/bash\", \"FileMd5\": \"708c8760385810080c4d17fa84d325ca\", \"FileSize\": 964536, \"Pid\": 32254, \"PidParam\": \"bash -c echo \\\"Csip data test\\\" >> /home/.yjfile/121hcXh.doc 1>&2\", \"Type\": 0, \"PsTree\": \"W3sicGlkIjozMjI1NCwiZXhlIjoiL3Vzci9iaW4vYmFzaCIsImNtZGxpbmUiOiJiYXNoIC1jIGVjaG8gXCJDc2lwIGRhdGEgdGVzdFwiIFx1MDAzZVx1MDAzZSAvaG9tZS8ueWpmaWxlLzEyMWhjWGguZG9jICAxXHUwMDNlXHUwMDI2MiIsImFjY291bnQiOiIwOjAiLCJzdGFydF90aW1lIjoxNzE1NjU1NjYyLCJleGVfcGVybSI6Ii1yd3hyLXhyLXgiLCJleGVfbXRpbWUiOjE1ODU3MDc0NTEsInNlc3Npb25pZCI6MzIyNTQsInNzaF9zb3VyY2UiOiIxMTMuMTA4Ljc3LjUzOjM5NjIyIiwic3NoX3NlcnZpY2UiOiIxNzIuMTYuNDkuMTA0OjIyIn0seyJwaWQiOjMyMjUyLCJleGUiOiIvdXNyL3NiaW4vc3NoZCIsImNtZGxpbmUiOiIvdXNyL3NiaW4vc3NoZCAtRCAtUiIsImFjY291bnQiOiIwOjAiLCJzdGFydF90aW1lIjoxNzE1NjU1NjYxLCJleGVfcGVybSI6Ii1yd3hyLXhyLXgiLCJleGVfbXRpbWUiOjE2OTExNjQ4NTIsInNlc3Npb25pZCI6MzIyNTJ9XQ==\", \"ProcessStartTime\": \"2024-05-14 11:01:02\", \"InstanceId\": \"ins-qwea\", \"HostName\": \"机器名称\", \"StrategyId\": 10001, \"StrategyName\": \"测试勿动\", \"HostIp\": \"1.1.1.1\", \"WanIp\": \"1.1.1.1\", \"SnapshotNum\": 45 } ]",
29854
+ "example": "[ { \"Id\": 10001, \"CreateTime\": \"2024-05-14 11:01:02\" } ]",
29837
29855
  "member": "RansomDefenseEvent",
29838
29856
  "name": "List",
29839
29857
  "output_required": true,
@@ -42441,6 +42459,16 @@
42441
42459
  "output_required": true,
42442
42460
  "type": "string",
42443
42461
  "value_allowed_null": false
42462
+ },
42463
+ {
42464
+ "disabled": false,
42465
+ "document": "主机类型",
42466
+ "example": "CVM",
42467
+ "member": "string",
42468
+ "name": "MachineType",
42469
+ "output_required": false,
42470
+ "type": "string",
42471
+ "value_allowed_null": false
42444
42472
  }
42445
42473
  ],
42446
42474
  "usage": "out"
@@ -44368,7 +44396,7 @@
44368
44396
  },
44369
44397
  {
44370
44398
  "disabled": false,
44371
- "document": "防护版本:BASIC_VERSION 基础版, PRO_VERSION 专业版,Flagship 旗舰版,GENERAL_DISCOUNT 普惠版",
44399
+ "document": "防护版本:BASIC_VERSION 基础版, PRO_VERSION 专业版,Flagship 旗舰版,GENERAL_DISCOUNT 轻量版",
44372
44400
  "example": "BASIC_VERSION",
44373
44401
  "member": "string",
44374
44402
  "name": "ProtectType",
@@ -44888,7 +44916,7 @@
44888
44916
  },
44889
44917
  {
44890
44918
  "disabled": false,
44891
- "document": "防护版本 BASIC_VERSION 基础版, PRO_VERSION 专业版,Flagship 旗舰版,GENERAL_DISCOUNT 普惠版.",
44919
+ "document": "防护版本 BASIC_VERSION 基础版, PRO_VERSION 专业版,Flagship 旗舰版,GENERAL_DISCOUNT 轻量版.",
44892
44920
  "example": "BASIC_VERSION",
44893
44921
  "member": "string",
44894
44922
  "name": "ProtectType",
@@ -49357,7 +49385,7 @@
49357
49385
  },
49358
49386
  {
49359
49387
  "disabled": false,
49360
- "document": "机器付费版本,0 基础版,1专业版,2旗舰版,3普惠版",
49388
+ "document": "机器付费版本,0 基础版,1专业版,2旗舰版,3轻量版",
49361
49389
  "example": "1",
49362
49390
  "member": "uint64",
49363
49391
  "name": "PayVersion",
@@ -49504,7 +49532,7 @@
49504
49532
  {
49505
49533
  "disabled": false,
49506
49534
  "document": "攻击数据包",
49507
- "example": "POST /wls-wsat/CoordinatorPortType HTTP/1.1\r\nX-Stgw-Time: 1730212752.801\r\nHost: h2.lghd111.com\r\nX-Client-Proto: https\r\nX-Forwarded-Proto: https\r\nX-Client-Proto-Ver: HTTP/1.1\r\nX-Real-IP: 180.184.132.93\r\nX-Forwarded-For: 223.160.168.205, 180.184.132.93\r\nConnection: keep-alive\r\nContent-Length: 602131\r\nX-Bd-Tlb-Waf-Token: 760b7cc634ab0dc34e478204cbf9d5d7\r\nUser-Agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36\r\nCmd: whoami\r\nContent-Type: text/xml\r\nAccept-Encoding: gzip\r\nX-Client-Scheme: https\r\nX-Real-Port: 59809\r\nX-Waf-RequestId: 68f116341c0029caf481ddf6cec16bd1\r\nX-Waf-Account-Id: 2102099106\r\nX-TLB-Cluster: antiddos_shanghai1\r\nX-TLB-Server-Addr: 192.168.0.173\r\nX-TT-LOGID: 20241029223911B8C44E08BB016F27DA08\r\n\r\n<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<soapenv:Envelope\n xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:wsa=\"http://www.w3.org/2005/08/addressing\"\n xmlns:asy=\"http://www.bea.com/async/AsyncResponseService\">\n <soapenv:Header>\n <wsa:Action/>\n <wsa:RelatesTo/>\n <asy:onAsyncDelivery/>\n <work:WorkContext\n xmlns:work=\"http://bea.com/2004/06/soap/workarea/\">\n <class>\n <string>oracle.toplink.internal.sessions.UnitOfWorkChangeSet</string>\n <void>\n <array class=\"byte\" length=\"5010\">\n <void index=\"0\">\n <byte>-84</byte>\n </void>\n <void index=\"1\">\n <byte>-19</byte>\n </void>\n <void index=\"2\">\n <byte>0</byte>\n </void>\n <void index=\"3\">\n <byte>5</byte>\n </void>\n <void index=\"4\">\n <byte>115</byte>\n </void>\n <void index=\"5\">\n <byte>114</byte>\n </void>\n <void index=\"6\">\n <byte>0</byte>\n </void>\n <void index=\"7\">\n <byte>23</byte>\n </void>\n <void index=\"8\">\n <byte>106</byte>\n </void>\n <void index=\"9\">\n <byte>97</byte>\n </void>\n <void index=\"10\">\n <byte>118</byte>\n </void>\n <void index=\"11\">\n <byte>97</byte>\n </vo****",
49535
+ "example": "POST /wls-wsat/CoordinatorPortType HTTP/1.1X-Stgw-Time: 1730212752.801Host: h2.lghd111.comX-Client-Proto: httpsX-Forwarded-Proto: httpsX-Client-Proto-Ver: HTTP/1.1X-Real-IP: 180.184.132.93X-Forwarded-For: 223.160.168.205",
49508
49536
  "member": "string",
49509
49537
  "name": "NetPayload",
49510
49538
  "output_required": true,
@@ -49573,7 +49601,7 @@
49573
49601
  },
49574
49602
  {
49575
49603
  "disabled": false,
49576
- "document": "机器付费版本,0 基础版,1专业版,2旗舰版,3普惠版",
49604
+ "document": "机器付费版本,0 基础版,1专业版,2旗舰版,3轻量版",
49577
49605
  "example": "1",
49578
49606
  "member": "uint64",
49579
49607
  "name": "PayVersion",
@@ -49624,7 +49652,7 @@
49624
49652
  {
49625
49653
  "disabled": false,
49626
49654
  "document": "进程树,需要用base64 解码",
49627
- "example": "W3sicGlkIjoyODc0MCwiZXhlIjoiL3Vzci9iaW4vY3VybCIsImFjY291bnQiOiIwOjAiLCJjbWRsaW5lIjoiY3VybCAtcyAtTCBodHRwczovL2Rvd25sb2FkLmMzcG9vbC5vcmcveG1yaWdfc2V0dXAvcmF3L21hc3Rlci91bmluc3RhbGxfYzNwb29sX21pbmVyLnNoIiwic3NoX3NlcnZpY2UiOiIxMC4xMC42LjE0OjIyIiwic3NoX3NvdXJjZSI6IjE4My4xNC4yOS42NTozMDM4MyIsInN0YXJ0X3RpbWUiOjE3MzA0MzA1NTN9LHsicGlkIjoyODczNiwiZXhlIjoiL3Vzci9iaW4vYmFzaCIsImFjY291bnQiOiIwOjAiLCJjbWRsaW5lIjoiYmFzaCAuL3h4bC1qb2IvZXhlY3V0b3IvZ2x1ZXNvdXJjZS8xODc5NzhfMTE2OTg5NzkxMTEwLnNoIGRlbW9Kb2JIYW5kbGVyIDAgMCIsInNzaF9zZXJ2aWNlIjoiMTAuMTAuNi4xNDoyMiIsInNzaF9zb3VyY2UiOiIxODMuMTQuMjkuNjU6MzAzODMiLCJzdGFydF90aW1lIjoxNzMwNDMwNTUzfSx7InBpZCI6MTU5NjgsImV4ZSI6Ii9kYXRhL2pkay0xNy4wLjguMSsxL2Jpbi9qYXZhIiwiYWNjb3VudCI6IjA6MCIsImNtZGxpbmUiOiJqYXZhIC1YbXg1MTJtIC1YbXMxMjhtIC1Yc3M1MTJrIC1qYXIgLS1hZGQtb3BlbnMgamF2YS5iYXNlL2phdmEubGFuZy5yZWZsZWN0PUFMTC1VTk5BTUVEIC0tYWRkLW9wZW5zIGphdmEuYmFzZS9qYXZhLmxhbmc9QUxMLVVOTkFNRUQgL2RhdGEvYXBpL3Nob3AvY29uc3VtZXIvY29uc3VtZXItMS4wLjIuMi5qYXIiLCJzc2hfc2VydmljZSI6IjEwLjEwLjYuMTQ6MjIiLCJzc2hfc291cmNlIjoiMTgzLjE0LjI5LjY1OjMwMzgzIiwic3RhcnRfdGltZSI6MTczMDE4NTEyM30seyJwaWQiOjEsImV4ZSI6Ii91c3IvbGliL3N5c3RlbWQvc3lzdGVtZCIsImFjY291bnQiOiIwOjAiLCJjbWRsaW5lIjoiL3Vzci9saWIvc3lzdGVtZC9zeXN0ZW1kIC0tc3dpdGNoZWQtcm9vdCAtLXN5c3RlbSAtLWRlc2VyaWFsaXplIDIyIiwic3RhcnRfdGltZSI6MTcxNzA1NTg4****",
49655
+ "example": "YW*jZA==",
49628
49656
  "member": "string",
49629
49657
  "name": "HostOpProcessTree",
49630
49658
  "output_required": false,
@@ -51328,7 +51356,7 @@
51328
51356
  },
51329
51357
  {
51330
51358
  "disabled": false,
51331
- "document": "备份状态:0备份中,1正常,2、3失败,4快照已过期,9快照已删除",
51359
+ "document": "备份状态:0备份中,1正常,2、3失败,4快照已过期,5快照数量超出限制,9快照已删除",
51332
51360
  "example": "1",
51333
51361
  "member": "uint64",
51334
51362
  "name": "BackupStatus",
@@ -51871,7 +51899,7 @@
51871
51899
  },
51872
51900
  {
51873
51901
  "disabled": false,
51874
- "document": "备份模式: 0按周,1按天",
51902
+ "document": "备份模式: 0按周,1按天,2不备份",
51875
51903
  "example": "0",
51876
51904
  "member": "uint64",
51877
51905
  "name": "BackupType",
@@ -52313,13 +52341,23 @@
52313
52341
  },
52314
52342
  {
52315
52343
  "disabled": false,
52316
- "document": "版本信息:0-基础版 1-专业版 2-旗舰版 3-普惠版",
52344
+ "document": "版本信息:0-基础版 1-专业版 2-旗舰版 3-轻量版",
52317
52345
  "example": "1",
52318
52346
  "member": "uint64",
52319
52347
  "name": "HostVersion",
52320
52348
  "output_required": true,
52321
52349
  "type": "int",
52322
52350
  "value_allowed_null": false
52351
+ },
52352
+ {
52353
+ "disabled": false,
52354
+ "document": "机器所属专区类型 CVM 云服务器, BM 黑石, ECM 边缘计算, LH 轻量应用服务器 ,Other 混合云专区",
52355
+ "example": "CVM",
52356
+ "member": "string",
52357
+ "name": "MachineType",
52358
+ "output_required": false,
52359
+ "type": "string",
52360
+ "value_allowed_null": false
52323
52361
  }
52324
52362
  ],
52325
52363
  "usage": "out"
@@ -52449,7 +52487,7 @@
52449
52487
  },
52450
52488
  {
52451
52489
  "disabled": false,
52452
- "document": "版本信息:0-基础版 1-专业版 2-旗舰版 3-普惠版",
52490
+ "document": "版本信息:0-基础版 1-专业版 2-旗舰版 3-轻量版",
52453
52491
  "example": "0",
52454
52492
  "member": "uint64",
52455
52493
  "name": "HostVersion",
@@ -52466,6 +52504,16 @@
52466
52504
  "output_required": true,
52467
52505
  "type": "string",
52468
52506
  "value_allowed_null": false
52507
+ },
52508
+ {
52509
+ "disabled": false,
52510
+ "document": "机器所属专区类型 CVM 云服务器, BM 黑石, ECM 边缘计算, LH 轻量应用服务器 ,Other 混合云专区",
52511
+ "example": "CVM",
52512
+ "member": "string",
52513
+ "name": "MachineType",
52514
+ "output_required": false,
52515
+ "type": "string",
52516
+ "value_allowed_null": false
52469
52517
  }
52470
52518
  ],
52471
52519
  "usage": "out"
@@ -58366,7 +58414,7 @@
58366
58414
  },
58367
58415
  {
58368
58416
  "disabled": false,
58369
- "document": "0 专业版,1 旗舰版,2 LH普惠版(仅限LH使用),3 CVM普惠版(仅限CVM使用)",
58417
+ "document": "0 专业版,1 旗舰版,2 LH轻量版(仅限LH使用),3 CVM轻量版(仅限CVM使用)",
58370
58418
  "example": "1",
58371
58419
  "member": "int64",
58372
58420
  "name": "UpgradeType",
@@ -59168,7 +59216,7 @@
59168
59216
  },
59169
59217
  {
59170
59218
  "disabled": false,
59171
- "document": "版本信息:0-基础版 1-专业版 2-旗舰版 3-普惠版",
59219
+ "document": "版本信息:0-基础版 1-专业版 2-旗舰版 3-轻量版",
59172
59220
  "example": "1",
59173
59221
  "member": "uint64",
59174
59222
  "name": "HostVersion",