tccli 3.0.1187.1__py2.py3-none-any.whl → 3.0.1188.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.
- tccli/__init__.py +1 -1
- tccli/services/cvm/cvm_client.py +53 -0
- tccli/services/cvm/v20170312/api.json +107 -0
- tccli/services/cvm/v20170312/examples.json +8 -0
- tccli/services/dc/v20180410/api.json +19 -19
- tccli/services/dc/v20180410/examples.json +5 -5
- tccli/services/dcdb/v20180411/api.json +20 -2
- tccli/services/dlc/dlc_client.py +106 -0
- tccli/services/dlc/v20210125/api.json +87 -0
- tccli/services/dlc/v20210125/examples.json +16 -0
- tccli/services/dts/v20211206/api.json +1 -0
- tccli/services/emr/emr_client.py +53 -0
- tccli/services/emr/v20190103/api.json +261 -0
- tccli/services/emr/v20190103/examples.json +8 -0
- tccli/services/es/v20180416/api.json +101 -0
- tccli/services/ess/ess_client.py +53 -0
- tccli/services/ess/v20201111/api.json +147 -0
- tccli/services/ess/v20201111/examples.json +8 -0
- tccli/services/mariadb/v20170312/api.json +21 -3
- tccli/services/rce/v20201103/api.json +2 -2
- tccli/services/sms/v20190711/api.json +2 -2
- tccli/services/sms/v20210111/api.json +2 -2
- tccli/services/trtc/v20190722/api.json +11 -0
- tccli/services/tse/v20201207/api.json +18 -18
- tccli/services/vclm/v20240523/api.json +2 -2
- tccli/services/vpc/v20170312/api.json +1 -1
- tccli/services/vtc/v20240223/api.json +2 -2
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/RECORD +32 -32
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/license_files/LICENSE +0 -0
@@ -322,6 +322,13 @@
|
|
322
322
|
"output": "DeleteSparkAppResponse",
|
323
323
|
"status": "online"
|
324
324
|
},
|
325
|
+
"DeleteTable": {
|
326
|
+
"document": "删除表",
|
327
|
+
"input": "DeleteTableRequest",
|
328
|
+
"name": "删除表",
|
329
|
+
"output": "DeleteTableResponse",
|
330
|
+
"status": "online"
|
331
|
+
},
|
325
332
|
"DeleteThirdPartyAccessUser": {
|
326
333
|
"document": "本接口(RegisterThirdPartyAccessUser)用于移除第三方平台访问",
|
327
334
|
"input": "DeleteThirdPartyAccessUserRequest",
|
@@ -861,6 +868,13 @@
|
|
861
868
|
"output": "ModifyWorkGroupResponse",
|
862
869
|
"status": "online"
|
863
870
|
},
|
871
|
+
"QueryInternalTableWarehouse": {
|
872
|
+
"document": "本接口(QueryInternalTableWarehouse)用于获取原生表warehouse路径",
|
873
|
+
"input": "QueryInternalTableWarehouseRequest",
|
874
|
+
"name": "获取原生表warehouse路径",
|
875
|
+
"output": "QueryInternalTableWarehouseResponse",
|
876
|
+
"status": "online"
|
877
|
+
},
|
864
878
|
"QueryResult": {
|
865
879
|
"document": "获取任务结果查询",
|
866
880
|
"input": "QueryResultRequest",
|
@@ -7220,6 +7234,33 @@
|
|
7220
7234
|
],
|
7221
7235
|
"type": "object"
|
7222
7236
|
},
|
7237
|
+
"DeleteTableRequest": {
|
7238
|
+
"document": "DeleteTable请求参数结构体",
|
7239
|
+
"members": [
|
7240
|
+
{
|
7241
|
+
"disabled": false,
|
7242
|
+
"document": "表基本信息",
|
7243
|
+
"example": "无",
|
7244
|
+
"member": "TableBaseInfo",
|
7245
|
+
"name": "TableBaseInfo",
|
7246
|
+
"required": true,
|
7247
|
+
"type": "object"
|
7248
|
+
}
|
7249
|
+
],
|
7250
|
+
"type": "object"
|
7251
|
+
},
|
7252
|
+
"DeleteTableResponse": {
|
7253
|
+
"document": "DeleteTable返回参数结构体",
|
7254
|
+
"members": [
|
7255
|
+
{
|
7256
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
7257
|
+
"member": "string",
|
7258
|
+
"name": "RequestId",
|
7259
|
+
"type": "string"
|
7260
|
+
}
|
7261
|
+
],
|
7262
|
+
"type": "object"
|
7263
|
+
},
|
7223
7264
|
"DeleteThirdPartyAccessUserRequest": {
|
7224
7265
|
"document": "DeleteThirdPartyAccessUser请求参数结构体",
|
7225
7266
|
"members": [],
|
@@ -14970,6 +15011,52 @@
|
|
14970
15011
|
],
|
14971
15012
|
"usage": "out"
|
14972
15013
|
},
|
15014
|
+
"QueryInternalTableWarehouseRequest": {
|
15015
|
+
"document": "QueryInternalTableWarehouse请求参数结构体",
|
15016
|
+
"members": [
|
15017
|
+
{
|
15018
|
+
"disabled": false,
|
15019
|
+
"document": "库名",
|
15020
|
+
"example": "db_test",
|
15021
|
+
"member": "string",
|
15022
|
+
"name": "DatabaseName",
|
15023
|
+
"required": true,
|
15024
|
+
"type": "string"
|
15025
|
+
},
|
15026
|
+
{
|
15027
|
+
"disabled": false,
|
15028
|
+
"document": "表名",
|
15029
|
+
"example": "tb_test",
|
15030
|
+
"member": "string",
|
15031
|
+
"name": "TableName",
|
15032
|
+
"required": true,
|
15033
|
+
"type": "string"
|
15034
|
+
}
|
15035
|
+
],
|
15036
|
+
"type": "object"
|
15037
|
+
},
|
15038
|
+
"QueryInternalTableWarehouseResponse": {
|
15039
|
+
"document": "QueryInternalTableWarehouse返回参数结构体",
|
15040
|
+
"members": [
|
15041
|
+
{
|
15042
|
+
"disabled": false,
|
15043
|
+
"document": "warehouse路径",
|
15044
|
+
"example": "lakefs/xxx/xxx",
|
15045
|
+
"member": "string",
|
15046
|
+
"name": "WarehousePath",
|
15047
|
+
"required": true,
|
15048
|
+
"type": "string",
|
15049
|
+
"value_allowed_null": false
|
15050
|
+
},
|
15051
|
+
{
|
15052
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
15053
|
+
"member": "string",
|
15054
|
+
"name": "RequestId",
|
15055
|
+
"type": "string"
|
15056
|
+
}
|
15057
|
+
],
|
15058
|
+
"type": "object"
|
15059
|
+
},
|
14973
15060
|
"QueryResultRequest": {
|
14974
15061
|
"document": "QueryResult请求参数结构体",
|
14975
15062
|
"members": [
|
@@ -368,6 +368,14 @@
|
|
368
368
|
"title": "删除spark作业"
|
369
369
|
}
|
370
370
|
],
|
371
|
+
"DeleteTable": [
|
372
|
+
{
|
373
|
+
"document": "",
|
374
|
+
"input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteTable\n<公共请求参数>\n\n{\n \"TableBaseInfo\": {\n \"TableName\": \"abc\",\n \"DatasourceConnectionName\": \"DataLakeCatalog\",\n \"DatabaseName\": \"db\"\n }\n}",
|
375
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"b076c1df-26f0-45b7-84f1-fa4eeca7c83f\"\n }\n}",
|
376
|
+
"title": "删除表"
|
377
|
+
}
|
378
|
+
],
|
371
379
|
"DeleteThirdPartyAccessUser": [
|
372
380
|
{
|
373
381
|
"document": "删除注册的用户",
|
@@ -996,6 +1004,14 @@
|
|
996
1004
|
"title": "修改工作组信息"
|
997
1005
|
}
|
998
1006
|
],
|
1007
|
+
"QueryInternalTableWarehouse": [
|
1008
|
+
{
|
1009
|
+
"document": "",
|
1010
|
+
"input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: QueryInternalTableWarehouse\n<公共请求参数>\n\n{\n \"TableName\": \"db_test\",\n \"DatabaseName\": \"tb_test\"\n}",
|
1011
|
+
"output": "{\n \"Response\": {\n \"WarehousePath\": \"lakefs://xxx@xxx/xxx/warehouse/db_test/tb_test/\",\n \"RequestId\": \"b8sd7dd7-ekd4-4e5e-993e-e5db64fa21c1\"\n }\n}",
|
1012
|
+
"title": "获取原生表warehouse路径"
|
1013
|
+
}
|
1014
|
+
],
|
999
1015
|
"QueryResult": [
|
1000
1016
|
{
|
1001
1017
|
"document": "",
|
tccli/services/emr/emr_client.py
CHANGED
@@ -1629,6 +1629,58 @@ def doModifyResourceScheduler(args, parsed_globals):
|
|
1629
1629
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
1630
1630
|
|
1631
1631
|
|
1632
|
+
def doDescribeResourceScheduleDiffDetail(args, parsed_globals):
|
1633
|
+
g_param = parse_global_arg(parsed_globals)
|
1634
|
+
|
1635
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
1636
|
+
cred = credential.CVMRoleCredential()
|
1637
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
1638
|
+
cred = credential.STSAssumeRoleCredential(
|
1639
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
1640
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
1641
|
+
)
|
1642
|
+
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):
|
1643
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
1644
|
+
else:
|
1645
|
+
cred = credential.Credential(
|
1646
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
1647
|
+
)
|
1648
|
+
http_profile = HttpProfile(
|
1649
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
1650
|
+
reqMethod="POST",
|
1651
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
1652
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
1653
|
+
)
|
1654
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
1655
|
+
if g_param[OptionsDefine.Language]:
|
1656
|
+
profile.language = g_param[OptionsDefine.Language]
|
1657
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
1658
|
+
client = mod.EmrClient(cred, g_param[OptionsDefine.Region], profile)
|
1659
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
1660
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
1661
|
+
model = models.DescribeResourceScheduleDiffDetailRequest()
|
1662
|
+
model.from_json_string(json.dumps(args))
|
1663
|
+
start_time = time.time()
|
1664
|
+
while True:
|
1665
|
+
rsp = client.DescribeResourceScheduleDiffDetail(model)
|
1666
|
+
result = rsp.to_json_string()
|
1667
|
+
try:
|
1668
|
+
json_obj = json.loads(result)
|
1669
|
+
except TypeError as e:
|
1670
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
1671
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
1672
|
+
break
|
1673
|
+
cur_time = time.time()
|
1674
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
1675
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
1676
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
1677
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
1678
|
+
else:
|
1679
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
1680
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
1681
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
1682
|
+
|
1683
|
+
|
1632
1684
|
def doSyncPodState(args, parsed_globals):
|
1633
1685
|
g_param = parse_global_arg(parsed_globals)
|
1634
1686
|
|
@@ -2815,6 +2867,7 @@ ACTION_MAP = {
|
|
2815
2867
|
"DescribeEmrApplicationStatics": doDescribeEmrApplicationStatics,
|
2816
2868
|
"DescribeInstanceRenewNodes": doDescribeInstanceRenewNodes,
|
2817
2869
|
"ModifyResourceScheduler": doModifyResourceScheduler,
|
2870
|
+
"DescribeResourceScheduleDiffDetail": doDescribeResourceScheduleDiffDetail,
|
2818
2871
|
"SyncPodState": doSyncPodState,
|
2819
2872
|
"CreateInstance": doCreateInstance,
|
2820
2873
|
"InquiryPriceCreateInstance": doInquiryPriceCreateInstance,
|
@@ -168,6 +168,13 @@
|
|
168
168
|
"output": "DescribeResourceScheduleResponse",
|
169
169
|
"status": "online"
|
170
170
|
},
|
171
|
+
"DescribeResourceScheduleDiffDetail": {
|
172
|
+
"document": "YARN资源调度-变更详情",
|
173
|
+
"input": "DescribeResourceScheduleDiffDetailRequest",
|
174
|
+
"name": "YARN资源调度-变更详情",
|
175
|
+
"output": "DescribeResourceScheduleDiffDetailResponse",
|
176
|
+
"status": "online"
|
177
|
+
},
|
171
178
|
"DescribeServiceNodeInfos": {
|
172
179
|
"document": "查询服务进程信息",
|
173
180
|
"input": "DescribeServiceNodeInfosRequest",
|
@@ -4425,6 +4432,52 @@
|
|
4425
4432
|
],
|
4426
4433
|
"type": "object"
|
4427
4434
|
},
|
4435
|
+
"DescribeResourceScheduleDiffDetailRequest": {
|
4436
|
+
"document": "DescribeResourceScheduleDiffDetail请求参数结构体",
|
4437
|
+
"members": [
|
4438
|
+
{
|
4439
|
+
"disabled": false,
|
4440
|
+
"document": "emr集群的英文id",
|
4441
|
+
"example": "emr-2xef56",
|
4442
|
+
"member": "string",
|
4443
|
+
"name": "InstanceId",
|
4444
|
+
"required": true,
|
4445
|
+
"type": "string"
|
4446
|
+
},
|
4447
|
+
{
|
4448
|
+
"disabled": false,
|
4449
|
+
"document": "查询的变更明细对应的调度器,可选值为fair、capacity。如果不传或者传空会使用最新的调度器",
|
4450
|
+
"example": "fair",
|
4451
|
+
"member": "string",
|
4452
|
+
"name": "Scheduler",
|
4453
|
+
"required": false,
|
4454
|
+
"type": "string"
|
4455
|
+
}
|
4456
|
+
],
|
4457
|
+
"type": "object"
|
4458
|
+
},
|
4459
|
+
"DescribeResourceScheduleDiffDetailResponse": {
|
4460
|
+
"document": "DescribeResourceScheduleDiffDetail返回参数结构体",
|
4461
|
+
"members": [
|
4462
|
+
{
|
4463
|
+
"disabled": false,
|
4464
|
+
"document": "变化项的明细\n注意:此字段可能返回 null,表示取不到有效值。",
|
4465
|
+
"example": "无",
|
4466
|
+
"member": "DiffDetail",
|
4467
|
+
"name": "Details",
|
4468
|
+
"output_required": false,
|
4469
|
+
"type": "list",
|
4470
|
+
"value_allowed_null": true
|
4471
|
+
},
|
4472
|
+
{
|
4473
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
4474
|
+
"member": "string",
|
4475
|
+
"name": "RequestId",
|
4476
|
+
"type": "string"
|
4477
|
+
}
|
4478
|
+
],
|
4479
|
+
"type": "object"
|
4480
|
+
},
|
4428
4481
|
"DescribeResourceScheduleRequest": {
|
4429
4482
|
"document": "DescribeResourceSchedule请求参数结构体",
|
4430
4483
|
"members": [
|
@@ -5084,6 +5137,214 @@
|
|
5084
5137
|
],
|
5085
5138
|
"type": "object"
|
5086
5139
|
},
|
5140
|
+
"DiffDetail": {
|
5141
|
+
"document": "动态生成的变更详情",
|
5142
|
+
"members": [
|
5143
|
+
{
|
5144
|
+
"disabled": false,
|
5145
|
+
"document": "tab页的头",
|
5146
|
+
"example": "全局设置",
|
5147
|
+
"member": "string",
|
5148
|
+
"name": "Name",
|
5149
|
+
"output_required": true,
|
5150
|
+
"type": "string",
|
5151
|
+
"value_allowed_null": false
|
5152
|
+
},
|
5153
|
+
{
|
5154
|
+
"disabled": false,
|
5155
|
+
"document": "变化项的个数",
|
5156
|
+
"example": "无",
|
5157
|
+
"member": "uint64",
|
5158
|
+
"name": "Count",
|
5159
|
+
"output_required": false,
|
5160
|
+
"type": "int",
|
5161
|
+
"value_allowed_null": false
|
5162
|
+
},
|
5163
|
+
{
|
5164
|
+
"disabled": false,
|
5165
|
+
"document": "要渲染的明细数据\n注意:此字段可能返回 null,表示取不到有效值。",
|
5166
|
+
"example": "无",
|
5167
|
+
"member": "DiffDetailItem",
|
5168
|
+
"name": "Rows",
|
5169
|
+
"output_required": false,
|
5170
|
+
"type": "list",
|
5171
|
+
"value_allowed_null": true
|
5172
|
+
},
|
5173
|
+
{
|
5174
|
+
"disabled": false,
|
5175
|
+
"document": "要渲染的头部信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
5176
|
+
"example": "无",
|
5177
|
+
"member": "DiffHeader",
|
5178
|
+
"name": "Header",
|
5179
|
+
"output_required": false,
|
5180
|
+
"type": "list",
|
5181
|
+
"value_allowed_null": true
|
5182
|
+
}
|
5183
|
+
],
|
5184
|
+
"usage": "out"
|
5185
|
+
},
|
5186
|
+
"DiffDetailItem": {
|
5187
|
+
"document": "动态生成的变更详情条目",
|
5188
|
+
"members": [
|
5189
|
+
{
|
5190
|
+
"disabled": false,
|
5191
|
+
"document": "属性\n注意:此字段可能返回 null,表示取不到有效值。",
|
5192
|
+
"example": "属性",
|
5193
|
+
"member": "string",
|
5194
|
+
"name": "Attribute",
|
5195
|
+
"output_required": false,
|
5196
|
+
"type": "string",
|
5197
|
+
"value_allowed_null": true
|
5198
|
+
},
|
5199
|
+
{
|
5200
|
+
"disabled": false,
|
5201
|
+
"document": "当前生效\n注意:此字段可能返回 null,表示取不到有效值。",
|
5202
|
+
"example": "当前生效",
|
5203
|
+
"member": "string",
|
5204
|
+
"name": "InEffect",
|
5205
|
+
"output_required": false,
|
5206
|
+
"type": "string",
|
5207
|
+
"value_allowed_null": true
|
5208
|
+
},
|
5209
|
+
{
|
5210
|
+
"disabled": false,
|
5211
|
+
"document": "待生效\n注意:此字段可能返回 null,表示取不到有效值。",
|
5212
|
+
"example": "待生效",
|
5213
|
+
"member": "string",
|
5214
|
+
"name": "PendingEffectiveness",
|
5215
|
+
"output_required": false,
|
5216
|
+
"type": "string",
|
5217
|
+
"value_allowed_null": true
|
5218
|
+
},
|
5219
|
+
{
|
5220
|
+
"disabled": false,
|
5221
|
+
"document": "操作\n注意:此字段可能返回 null,表示取不到有效值。",
|
5222
|
+
"example": "操作",
|
5223
|
+
"member": "string",
|
5224
|
+
"name": "Operation",
|
5225
|
+
"output_required": false,
|
5226
|
+
"type": "string",
|
5227
|
+
"value_allowed_null": true
|
5228
|
+
},
|
5229
|
+
{
|
5230
|
+
"disabled": false,
|
5231
|
+
"document": "队列\n注意:此字段可能返回 null,表示取不到有效值。",
|
5232
|
+
"example": "队列",
|
5233
|
+
"member": "string",
|
5234
|
+
"name": "Queue",
|
5235
|
+
"output_required": false,
|
5236
|
+
"type": "string",
|
5237
|
+
"value_allowed_null": true
|
5238
|
+
},
|
5239
|
+
{
|
5240
|
+
"disabled": false,
|
5241
|
+
"document": "配置集\n注意:此字段可能返回 null,表示取不到有效值。",
|
5242
|
+
"example": "配置集",
|
5243
|
+
"member": "string",
|
5244
|
+
"name": "ConfigSet",
|
5245
|
+
"output_required": false,
|
5246
|
+
"type": "string",
|
5247
|
+
"value_allowed_null": true
|
5248
|
+
},
|
5249
|
+
{
|
5250
|
+
"disabled": false,
|
5251
|
+
"document": "标签\n注意:此字段可能返回 null,表示取不到有效值。",
|
5252
|
+
"example": "标签",
|
5253
|
+
"member": "string",
|
5254
|
+
"name": "LabelName",
|
5255
|
+
"output_required": false,
|
5256
|
+
"type": "string",
|
5257
|
+
"value_allowed_null": true
|
5258
|
+
},
|
5259
|
+
{
|
5260
|
+
"disabled": false,
|
5261
|
+
"document": "当前所在位置\n注意:此字段可能返回 null,表示取不到有效值。",
|
5262
|
+
"example": "无",
|
5263
|
+
"member": "string",
|
5264
|
+
"name": "InEffectIndex",
|
5265
|
+
"output_required": false,
|
5266
|
+
"type": "string",
|
5267
|
+
"value_allowed_null": true
|
5268
|
+
},
|
5269
|
+
{
|
5270
|
+
"disabled": false,
|
5271
|
+
"document": "待生效的位置\n注意:此字段可能返回 null,表示取不到有效值。",
|
5272
|
+
"example": "无",
|
5273
|
+
"member": "string",
|
5274
|
+
"name": "PendingEffectIndex",
|
5275
|
+
"output_required": false,
|
5276
|
+
"type": "string",
|
5277
|
+
"value_allowed_null": true
|
5278
|
+
},
|
5279
|
+
{
|
5280
|
+
"disabled": false,
|
5281
|
+
"document": "计划模式名称\n注意:此字段可能返回 null,表示取不到有效值。",
|
5282
|
+
"example": "无",
|
5283
|
+
"member": "string",
|
5284
|
+
"name": "PlanName",
|
5285
|
+
"output_required": false,
|
5286
|
+
"type": "string",
|
5287
|
+
"value_allowed_null": true
|
5288
|
+
},
|
5289
|
+
{
|
5290
|
+
"disabled": false,
|
5291
|
+
"document": "标签\n注意:此字段可能返回 null,表示取不到有效值。",
|
5292
|
+
"example": "标签",
|
5293
|
+
"member": "string",
|
5294
|
+
"name": "Label",
|
5295
|
+
"output_required": false,
|
5296
|
+
"type": "string",
|
5297
|
+
"value_allowed_null": true
|
5298
|
+
},
|
5299
|
+
{
|
5300
|
+
"disabled": false,
|
5301
|
+
"document": "放置规则\n注意:此字段可能返回 null,表示取不到有效值。",
|
5302
|
+
"example": "规则",
|
5303
|
+
"member": "string",
|
5304
|
+
"name": "RuleName",
|
5305
|
+
"output_required": false,
|
5306
|
+
"type": "string",
|
5307
|
+
"value_allowed_null": true
|
5308
|
+
},
|
5309
|
+
{
|
5310
|
+
"disabled": false,
|
5311
|
+
"document": "用户名\n注意:此字段可能返回 null,表示取不到有效值。",
|
5312
|
+
"example": "hadoop",
|
5313
|
+
"member": "string",
|
5314
|
+
"name": "UserName",
|
5315
|
+
"output_required": false,
|
5316
|
+
"type": "string",
|
5317
|
+
"value_allowed_null": true
|
5318
|
+
}
|
5319
|
+
],
|
5320
|
+
"usage": "out"
|
5321
|
+
},
|
5322
|
+
"DiffHeader": {
|
5323
|
+
"document": "动态生成的变更详情",
|
5324
|
+
"members": [
|
5325
|
+
{
|
5326
|
+
"disabled": false,
|
5327
|
+
"document": "名称",
|
5328
|
+
"example": "Attribute",
|
5329
|
+
"member": "string",
|
5330
|
+
"name": "Name",
|
5331
|
+
"output_required": true,
|
5332
|
+
"type": "string",
|
5333
|
+
"value_allowed_null": false
|
5334
|
+
},
|
5335
|
+
{
|
5336
|
+
"disabled": false,
|
5337
|
+
"document": "ID,前端会使用",
|
5338
|
+
"example": "Attribute",
|
5339
|
+
"member": "string",
|
5340
|
+
"name": "Id",
|
5341
|
+
"output_required": true,
|
5342
|
+
"type": "string",
|
5343
|
+
"value_allowed_null": false
|
5344
|
+
}
|
5345
|
+
],
|
5346
|
+
"usage": "out"
|
5347
|
+
},
|
5087
5348
|
"DiskGroup": {
|
5088
5349
|
"document": "磁盘组。",
|
5089
5350
|
"members": [
|
@@ -192,6 +192,14 @@
|
|
192
192
|
"title": "test"
|
193
193
|
}
|
194
194
|
],
|
195
|
+
"DescribeResourceScheduleDiffDetail": [
|
196
|
+
{
|
197
|
+
"document": "",
|
198
|
+
"input": "POST / HTTP/1.1\nHost: emr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeResourceScheduleDiffDetail\n<公共请求参数>\n\n{\n \"InstanceId\": \"emr-xxx\",\n \"Scheduler\": \"fair\"\n}",
|
199
|
+
"output": "{\n \"Response\": {\n \"Details\": [\n {\n \"Count\": 1,\n \"Header\": [\n {\n \"Id\": \"Attribute\",\n \"Name\": \"属性\"\n },\n {\n \"Id\": \"InEffect\",\n \"Name\": \"当前生效值\"\n },\n {\n \"Id\": \"PendingEffectiveness\",\n \"Name\": \"待生效值\"\n },\n {\n \"Id\": \"Operation\",\n \"Name\": \"操作\"\n }\n ],\n \"Name\": \"全局配置\",\n \"Rows\": [\n {\n \"Attribute\": \"Scheduler\",\n \"InEffect\": \"fair\",\n \"Operation\": \"更新\",\n \"PendingEffectiveness\": \"capacity\"\n }\n ]\n },\n {\n \"Count\": 1,\n \"Header\": [\n {\n \"Id\": \"Attribute\",\n \"Name\": \"属性\"\n },\n {\n \"Id\": \"InEffect\",\n \"Name\": \"当前生效值\"\n },\n {\n \"Id\": \"PendingEffectiveness\",\n \"Name\": \"待生效值\"\n },\n {\n \"Id\": \"Operation\",\n \"Name\": \"操作\"\n }\n ],\n \"Name\": \"标签开关\",\n \"Rows\": [\n {\n \"Attribute\": \"LabelDir\",\n \"InEffect\": \"\",\n \"Operation\": \"更新\",\n \"PendingEffectiveness\": \"\"\n }\n ]\n }\n ],\n \"RequestId\": \"50ed72af-1cc9-4566-8080-3594994aea80\"\n }\n}",
|
200
|
+
"title": "YARN资源调度-变更详情"
|
201
|
+
}
|
202
|
+
],
|
195
203
|
"DescribeServiceNodeInfos": [
|
196
204
|
{
|
197
205
|
"document": "查询服务进程信息",
|
@@ -3444,6 +3444,15 @@
|
|
3444
3444
|
"name": "DurationType",
|
3445
3445
|
"required": false,
|
3446
3446
|
"type": "int"
|
3447
|
+
},
|
3448
|
+
{
|
3449
|
+
"disabled": false,
|
3450
|
+
"document": "索引数据",
|
3451
|
+
"example": "[\"index-4y85drgw\"]",
|
3452
|
+
"member": "string",
|
3453
|
+
"name": "BatchIndexList",
|
3454
|
+
"required": false,
|
3455
|
+
"type": "list"
|
3447
3456
|
}
|
3448
3457
|
],
|
3449
3458
|
"type": "object"
|
@@ -3501,6 +3510,16 @@
|
|
3501
3510
|
"type": "int",
|
3502
3511
|
"value_allowed_null": false
|
3503
3512
|
},
|
3513
|
+
{
|
3514
|
+
"disabled": false,
|
3515
|
+
"document": "指标数据数据\n注意:此字段可能返回 null,表示取不到有效值。",
|
3516
|
+
"example": "无",
|
3517
|
+
"member": "MetricMapByIndexId",
|
3518
|
+
"name": "MetricMapList",
|
3519
|
+
"output_required": false,
|
3520
|
+
"type": "list",
|
3521
|
+
"value_allowed_null": true
|
3522
|
+
},
|
3504
3523
|
{
|
3505
3524
|
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
3506
3525
|
"member": "string",
|
@@ -7347,6 +7366,62 @@
|
|
7347
7366
|
],
|
7348
7367
|
"usage": "out"
|
7349
7368
|
},
|
7369
|
+
"MetricAllData": {
|
7370
|
+
"document": "全部指标数据",
|
7371
|
+
"members": [
|
7372
|
+
{
|
7373
|
+
"disabled": false,
|
7374
|
+
"document": "索引流量",
|
7375
|
+
"example": "12.34454",
|
7376
|
+
"member": "float",
|
7377
|
+
"name": "IndexTraffic",
|
7378
|
+
"output_required": true,
|
7379
|
+
"type": "float",
|
7380
|
+
"value_allowed_null": false
|
7381
|
+
},
|
7382
|
+
{
|
7383
|
+
"disabled": false,
|
7384
|
+
"document": "存储大小",
|
7385
|
+
"example": "12.3432",
|
7386
|
+
"member": "float",
|
7387
|
+
"name": "Storage",
|
7388
|
+
"output_required": true,
|
7389
|
+
"type": "float",
|
7390
|
+
"value_allowed_null": false
|
7391
|
+
},
|
7392
|
+
{
|
7393
|
+
"disabled": false,
|
7394
|
+
"document": "读请求次数",
|
7395
|
+
"example": "21",
|
7396
|
+
"member": "int64",
|
7397
|
+
"name": "ReadReqTimes",
|
7398
|
+
"output_required": true,
|
7399
|
+
"type": "int",
|
7400
|
+
"value_allowed_null": false
|
7401
|
+
},
|
7402
|
+
{
|
7403
|
+
"disabled": false,
|
7404
|
+
"document": "写请求次数",
|
7405
|
+
"example": "32",
|
7406
|
+
"member": "int64",
|
7407
|
+
"name": "WriteReqTimes",
|
7408
|
+
"output_required": true,
|
7409
|
+
"type": "int",
|
7410
|
+
"value_allowed_null": false
|
7411
|
+
},
|
7412
|
+
{
|
7413
|
+
"disabled": false,
|
7414
|
+
"document": "文档数量",
|
7415
|
+
"example": "32",
|
7416
|
+
"member": "int64",
|
7417
|
+
"name": "DocCount",
|
7418
|
+
"output_required": true,
|
7419
|
+
"type": "int",
|
7420
|
+
"value_allowed_null": false
|
7421
|
+
}
|
7422
|
+
],
|
7423
|
+
"usage": "out"
|
7424
|
+
},
|
7350
7425
|
"MetricDetail": {
|
7351
7426
|
"document": "智能运维指标详情",
|
7352
7427
|
"members": [
|
@@ -7373,6 +7448,32 @@
|
|
7373
7448
|
],
|
7374
7449
|
"usage": "out"
|
7375
7450
|
},
|
7451
|
+
"MetricMapByIndexId": {
|
7452
|
+
"document": "指标数据map",
|
7453
|
+
"members": [
|
7454
|
+
{
|
7455
|
+
"disabled": false,
|
7456
|
+
"document": "实例id",
|
7457
|
+
"example": "无",
|
7458
|
+
"member": "string",
|
7459
|
+
"name": "IndexId",
|
7460
|
+
"output_required": true,
|
7461
|
+
"type": "string",
|
7462
|
+
"value_allowed_null": false
|
7463
|
+
},
|
7464
|
+
{
|
7465
|
+
"disabled": false,
|
7466
|
+
"document": "指标数据",
|
7467
|
+
"example": "无",
|
7468
|
+
"member": "MetricAllData",
|
7469
|
+
"name": "MetricAllData",
|
7470
|
+
"output_required": true,
|
7471
|
+
"type": "object",
|
7472
|
+
"value_allowed_null": false
|
7473
|
+
}
|
7474
|
+
],
|
7475
|
+
"usage": "out"
|
7476
|
+
},
|
7376
7477
|
"ModifyEsVipSecurityGroupRequest": {
|
7377
7478
|
"document": "ModifyEsVipSecurityGroup请求参数结构体",
|
7378
7479
|
"members": [
|