tccli 3.0.1179.1__py2.py3-none-any.whl → 3.0.1180.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/cdwdoris/v20211228/api.json +11 -2
- tccli/services/cynosdb/v20190107/api.json +20 -0
- tccli/services/lcic/lcic_client.py +61 -8
- tccli/services/lcic/v20220817/api.json +188 -0
- tccli/services/lcic/v20220817/examples.json +8 -0
- tccli/services/mongodb/v20190725/api.json +7 -7
- tccli/services/vpc/v20170312/api.json +3 -0
- tccli/services/vpc/v20170312/examples.json +1 -1
- {tccli-3.0.1179.1.dist-info → tccli-3.0.1180.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1179.1.dist-info → tccli-3.0.1180.1.dist-info}/RECORD +14 -14
- {tccli-3.0.1179.1.dist-info → tccli-3.0.1180.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1179.1.dist-info → tccli-3.0.1180.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1179.1.dist-info → tccli-3.0.1180.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '3.0.
|
1
|
+
__version__ = '3.0.1180.1'
|
@@ -3661,7 +3661,7 @@
|
|
3661
3661
|
},
|
3662
3662
|
{
|
3663
3663
|
"disabled": false,
|
3664
|
-
"document": "
|
3664
|
+
"document": "为空:代表当前appId下所有集群 或者 某个集群Id",
|
3665
3665
|
"example": "\"\"",
|
3666
3666
|
"member": "string",
|
3667
3667
|
"name": "Input",
|
@@ -3676,7 +3676,7 @@
|
|
3676
3676
|
"members": [
|
3677
3677
|
{
|
3678
3678
|
"disabled": false,
|
3679
|
-
"document": "
|
3679
|
+
"document": "base64编码后的数据,包含了集群的健康信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
3680
3680
|
"example": "xxx",
|
3681
3681
|
"member": "string",
|
3682
3682
|
"name": "Data",
|
@@ -7957,6 +7957,15 @@
|
|
7957
7957
|
"name": "OldPwd",
|
7958
7958
|
"required": false,
|
7959
7959
|
"type": "string"
|
7960
|
+
},
|
7961
|
+
{
|
7962
|
+
"disabled": false,
|
7963
|
+
"document": "绑定的子用户uin",
|
7964
|
+
"example": "123124123",
|
7965
|
+
"member": "string",
|
7966
|
+
"name": "CamUin",
|
7967
|
+
"required": false,
|
7968
|
+
"type": "string"
|
7960
7969
|
}
|
7961
7970
|
],
|
7962
7971
|
"usage": "in"
|
@@ -3382,6 +3382,16 @@
|
|
3382
3382
|
"output_required": false,
|
3383
3383
|
"type": "string",
|
3384
3384
|
"value_allowed_null": true
|
3385
|
+
},
|
3386
|
+
{
|
3387
|
+
"disabled": false,
|
3388
|
+
"document": "实例存储类型\n注意:此字段可能返回 null,表示取不到有效值。",
|
3389
|
+
"example": "无",
|
3390
|
+
"member": "string",
|
3391
|
+
"name": "InstanceStorageType",
|
3392
|
+
"output_required": false,
|
3393
|
+
"type": "string",
|
3394
|
+
"value_allowed_null": true
|
3385
3395
|
}
|
3386
3396
|
],
|
3387
3397
|
"usage": "out"
|
@@ -6597,6 +6607,16 @@
|
|
6597
6607
|
"output_required": false,
|
6598
6608
|
"type": "string",
|
6599
6609
|
"value_allowed_null": true
|
6610
|
+
},
|
6611
|
+
{
|
6612
|
+
"disabled": false,
|
6613
|
+
"document": "实例存储类型\n注意:此字段可能返回 null,表示取不到有效值。",
|
6614
|
+
"example": "无",
|
6615
|
+
"member": "string",
|
6616
|
+
"name": "InstanceStorageType",
|
6617
|
+
"output_required": false,
|
6618
|
+
"type": "string",
|
6619
|
+
"value_allowed_null": true
|
6600
6620
|
}
|
6601
6621
|
],
|
6602
6622
|
"usage": "out"
|
@@ -173,7 +173,7 @@ def doAddGroupMember(args, parsed_globals):
|
|
173
173
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
174
174
|
|
175
175
|
|
176
|
-
def
|
176
|
+
def doDescribeRecordStream(args, parsed_globals):
|
177
177
|
g_param = parse_global_arg(parsed_globals)
|
178
178
|
|
179
179
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -202,11 +202,11 @@ def doGetRoomMessage(args, parsed_globals):
|
|
202
202
|
client = mod.LcicClient(cred, g_param[OptionsDefine.Region], profile)
|
203
203
|
client._sdkVersion += ("_CLI_" + __version__)
|
204
204
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
205
|
-
model = models.
|
205
|
+
model = models.DescribeRecordStreamRequest()
|
206
206
|
model.from_json_string(json.dumps(args))
|
207
207
|
start_time = time.time()
|
208
208
|
while True:
|
209
|
-
rsp = client.
|
209
|
+
rsp = client.DescribeRecordStream(model)
|
210
210
|
result = rsp.to_json_string()
|
211
211
|
try:
|
212
212
|
json_obj = json.loads(result)
|
@@ -1629,7 +1629,7 @@ def doCreateGroupWithSubGroup(args, parsed_globals):
|
|
1629
1629
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
1630
1630
|
|
1631
1631
|
|
1632
|
-
def
|
1632
|
+
def doGetRoomMessage(args, parsed_globals):
|
1633
1633
|
g_param = parse_global_arg(parsed_globals)
|
1634
1634
|
|
1635
1635
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -1658,11 +1658,11 @@ def doDescribeGroupList(args, parsed_globals):
|
|
1658
1658
|
client = mod.LcicClient(cred, g_param[OptionsDefine.Region], profile)
|
1659
1659
|
client._sdkVersion += ("_CLI_" + __version__)
|
1660
1660
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
1661
|
-
model = models.
|
1661
|
+
model = models.GetRoomMessageRequest()
|
1662
1662
|
model.from_json_string(json.dumps(args))
|
1663
1663
|
start_time = time.time()
|
1664
1664
|
while True:
|
1665
|
-
rsp = client.
|
1665
|
+
rsp = client.GetRoomMessage(model)
|
1666
1666
|
result = rsp.to_json_string()
|
1667
1667
|
try:
|
1668
1668
|
json_obj = json.loads(result)
|
@@ -2045,6 +2045,58 @@ def doForbidSendMsg(args, parsed_globals):
|
|
2045
2045
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2046
2046
|
|
2047
2047
|
|
2048
|
+
def doDescribeGroupList(args, parsed_globals):
|
2049
|
+
g_param = parse_global_arg(parsed_globals)
|
2050
|
+
|
2051
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
2052
|
+
cred = credential.CVMRoleCredential()
|
2053
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
2054
|
+
cred = credential.STSAssumeRoleCredential(
|
2055
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
2056
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
2057
|
+
)
|
2058
|
+
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):
|
2059
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
2060
|
+
else:
|
2061
|
+
cred = credential.Credential(
|
2062
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
2063
|
+
)
|
2064
|
+
http_profile = HttpProfile(
|
2065
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
2066
|
+
reqMethod="POST",
|
2067
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
2068
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
2069
|
+
)
|
2070
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
2071
|
+
if g_param[OptionsDefine.Language]:
|
2072
|
+
profile.language = g_param[OptionsDefine.Language]
|
2073
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
2074
|
+
client = mod.LcicClient(cred, g_param[OptionsDefine.Region], profile)
|
2075
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
2076
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
2077
|
+
model = models.DescribeGroupListRequest()
|
2078
|
+
model.from_json_string(json.dumps(args))
|
2079
|
+
start_time = time.time()
|
2080
|
+
while True:
|
2081
|
+
rsp = client.DescribeGroupList(model)
|
2082
|
+
result = rsp.to_json_string()
|
2083
|
+
try:
|
2084
|
+
json_obj = json.loads(result)
|
2085
|
+
except TypeError as e:
|
2086
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
2087
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
2088
|
+
break
|
2089
|
+
cur_time = time.time()
|
2090
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
2091
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
2092
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
2093
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
2094
|
+
else:
|
2095
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
2096
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
2097
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2098
|
+
|
2099
|
+
|
2048
2100
|
def doLoginUser(args, parsed_globals):
|
2049
2101
|
g_param = parse_global_arg(parsed_globals)
|
2050
2102
|
|
@@ -3203,7 +3255,7 @@ ACTION_MAP = {
|
|
3203
3255
|
"DeleteRecord": doDeleteRecord,
|
3204
3256
|
"DescribeRoomForbiddenUser": doDescribeRoomForbiddenUser,
|
3205
3257
|
"AddGroupMember": doAddGroupMember,
|
3206
|
-
"
|
3258
|
+
"DescribeRecordStream": doDescribeRecordStream,
|
3207
3259
|
"SetWatermark": doSetWatermark,
|
3208
3260
|
"DescribeDocumentsByRoom": doDescribeDocumentsByRoom,
|
3209
3261
|
"DeleteGroup": doDeleteGroup,
|
@@ -3231,7 +3283,7 @@ ACTION_MAP = {
|
|
3231
3283
|
"DescribeDocuments": doDescribeDocuments,
|
3232
3284
|
"SendRoomNormalMessage": doSendRoomNormalMessage,
|
3233
3285
|
"CreateGroupWithSubGroup": doCreateGroupWithSubGroup,
|
3234
|
-
"
|
3286
|
+
"GetRoomMessage": doGetRoomMessage,
|
3235
3287
|
"DeleteSupervisor": doDeleteSupervisor,
|
3236
3288
|
"DeleteUser": doDeleteUser,
|
3237
3289
|
"RegisterUser": doRegisterUser,
|
@@ -3239,6 +3291,7 @@ ACTION_MAP = {
|
|
3239
3291
|
"BindDocumentToRoom": doBindDocumentToRoom,
|
3240
3292
|
"LoginOriginId": doLoginOriginId,
|
3241
3293
|
"ForbidSendMsg": doForbidSendMsg,
|
3294
|
+
"DescribeGroupList": doDescribeGroupList,
|
3242
3295
|
"LoginUser": doLoginUser,
|
3243
3296
|
"CreateGroupWithMembers": doCreateGroupWithMembers,
|
3244
3297
|
"BatchAddGroupMember": doBatchAddGroupMember,
|
@@ -231,6 +231,13 @@
|
|
231
231
|
"output": "DescribeQuestionListResponse",
|
232
232
|
"status": "online"
|
233
233
|
},
|
234
|
+
"DescribeRecordStream": {
|
235
|
+
"document": "录制流查询",
|
236
|
+
"input": "DescribeRecordStreamRequest",
|
237
|
+
"name": "获取流信息",
|
238
|
+
"output": "DescribeRecordStreamResponse",
|
239
|
+
"status": "online"
|
240
|
+
},
|
234
241
|
"DescribeRoom": {
|
235
242
|
"document": "获取房间配置信息",
|
236
243
|
"input": "DescribeRoomRequest",
|
@@ -3089,6 +3096,82 @@
|
|
3089
3096
|
],
|
3090
3097
|
"type": "object"
|
3091
3098
|
},
|
3099
|
+
"DescribeRecordStreamRequest": {
|
3100
|
+
"document": "DescribeRecordStream请求参数结构体",
|
3101
|
+
"members": [
|
3102
|
+
{
|
3103
|
+
"disabled": false,
|
3104
|
+
"document": "学校ID",
|
3105
|
+
"example": "12345",
|
3106
|
+
"member": "uint64",
|
3107
|
+
"name": "SdkAppId",
|
3108
|
+
"required": true,
|
3109
|
+
"type": "int"
|
3110
|
+
},
|
3111
|
+
{
|
3112
|
+
"disabled": false,
|
3113
|
+
"document": "房间ID",
|
3114
|
+
"example": "9090",
|
3115
|
+
"member": "uint64",
|
3116
|
+
"name": "RoomId",
|
3117
|
+
"required": true,
|
3118
|
+
"type": "int"
|
3119
|
+
}
|
3120
|
+
],
|
3121
|
+
"type": "object"
|
3122
|
+
},
|
3123
|
+
"DescribeRecordStreamResponse": {
|
3124
|
+
"document": "DescribeRecordStream返回参数结构体",
|
3125
|
+
"members": [
|
3126
|
+
{
|
3127
|
+
"disabled": false,
|
3128
|
+
"document": "学校ID",
|
3129
|
+
"example": "328910",
|
3130
|
+
"member": "uint64",
|
3131
|
+
"name": "SchoolId",
|
3132
|
+
"output_required": false,
|
3133
|
+
"type": "int",
|
3134
|
+
"value_allowed_null": false
|
3135
|
+
},
|
3136
|
+
{
|
3137
|
+
"disabled": false,
|
3138
|
+
"document": "课堂ID",
|
3139
|
+
"example": "123",
|
3140
|
+
"member": "uint64",
|
3141
|
+
"name": "ClassId",
|
3142
|
+
"output_required": false,
|
3143
|
+
"type": "int",
|
3144
|
+
"value_allowed_null": false
|
3145
|
+
},
|
3146
|
+
{
|
3147
|
+
"disabled": false,
|
3148
|
+
"document": "课堂类型",
|
3149
|
+
"example": "2",
|
3150
|
+
"member": "uint64",
|
3151
|
+
"name": "ClassType",
|
3152
|
+
"output_required": false,
|
3153
|
+
"type": "int",
|
3154
|
+
"value_allowed_null": false
|
3155
|
+
},
|
3156
|
+
{
|
3157
|
+
"disabled": false,
|
3158
|
+
"document": "用户流信息",
|
3159
|
+
"example": "无",
|
3160
|
+
"member": "SingleStreamInfo",
|
3161
|
+
"name": "StreamInfo",
|
3162
|
+
"output_required": false,
|
3163
|
+
"type": "list",
|
3164
|
+
"value_allowed_null": false
|
3165
|
+
},
|
3166
|
+
{
|
3167
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
3168
|
+
"member": "string",
|
3169
|
+
"name": "RequestId",
|
3170
|
+
"type": "string"
|
3171
|
+
}
|
3172
|
+
],
|
3173
|
+
"type": "object"
|
3174
|
+
},
|
3092
3175
|
"DescribeRoomForbiddenUserRequest": {
|
3093
3176
|
"document": "DescribeRoomForbiddenUser请求参数结构体",
|
3094
3177
|
"members": [
|
@@ -6764,6 +6847,111 @@
|
|
6764
6847
|
],
|
6765
6848
|
"type": "object"
|
6766
6849
|
},
|
6850
|
+
"SingleStreamInfo": {
|
6851
|
+
"document": "录制流信息",
|
6852
|
+
"members": [
|
6853
|
+
{
|
6854
|
+
"disabled": false,
|
6855
|
+
"document": "用户ID\n注意:此字段可能返回 null,表示取不到有效值。",
|
6856
|
+
"example": "123",
|
6857
|
+
"member": "string",
|
6858
|
+
"name": "UserId",
|
6859
|
+
"output_required": false,
|
6860
|
+
"required": false,
|
6861
|
+
"type": "string",
|
6862
|
+
"value_allowed_null": true
|
6863
|
+
},
|
6864
|
+
{
|
6865
|
+
"disabled": false,
|
6866
|
+
"document": "开始时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
6867
|
+
"example": "1233",
|
6868
|
+
"member": "uint64",
|
6869
|
+
"name": "StartTime",
|
6870
|
+
"output_required": false,
|
6871
|
+
"required": false,
|
6872
|
+
"type": "int",
|
6873
|
+
"value_allowed_null": true
|
6874
|
+
},
|
6875
|
+
{
|
6876
|
+
"disabled": false,
|
6877
|
+
"document": "结束时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
6878
|
+
"example": "21412",
|
6879
|
+
"member": "uint64",
|
6880
|
+
"name": "StopTime",
|
6881
|
+
"output_required": false,
|
6882
|
+
"required": false,
|
6883
|
+
"type": "int",
|
6884
|
+
"value_allowed_null": true
|
6885
|
+
},
|
6886
|
+
{
|
6887
|
+
"disabled": false,
|
6888
|
+
"document": "总时长\n注意:此字段可能返回 null,表示取不到有效值。",
|
6889
|
+
"example": "12",
|
6890
|
+
"member": "uint64",
|
6891
|
+
"name": "Duration",
|
6892
|
+
"output_required": false,
|
6893
|
+
"required": false,
|
6894
|
+
"type": "int",
|
6895
|
+
"value_allowed_null": true
|
6896
|
+
},
|
6897
|
+
{
|
6898
|
+
"disabled": false,
|
6899
|
+
"document": "文件格式\n注意:此字段可能返回 null,表示取不到有效值。",
|
6900
|
+
"example": "mp4",
|
6901
|
+
"member": "string",
|
6902
|
+
"name": "FileFormat",
|
6903
|
+
"output_required": false,
|
6904
|
+
"required": false,
|
6905
|
+
"type": "string",
|
6906
|
+
"value_allowed_null": true
|
6907
|
+
},
|
6908
|
+
{
|
6909
|
+
"disabled": false,
|
6910
|
+
"document": "流url\n注意:此字段可能返回 null,表示取不到有效值。",
|
6911
|
+
"example": "http://123.com",
|
6912
|
+
"member": "string",
|
6913
|
+
"name": "RecordUrl",
|
6914
|
+
"output_required": false,
|
6915
|
+
"required": false,
|
6916
|
+
"type": "string",
|
6917
|
+
"value_allowed_null": true
|
6918
|
+
},
|
6919
|
+
{
|
6920
|
+
"disabled": false,
|
6921
|
+
"document": "流大小\n注意:此字段可能返回 null,表示取不到有效值。",
|
6922
|
+
"example": "123",
|
6923
|
+
"member": "uint64",
|
6924
|
+
"name": "RecordSize",
|
6925
|
+
"output_required": false,
|
6926
|
+
"required": false,
|
6927
|
+
"type": "int",
|
6928
|
+
"value_allowed_null": true
|
6929
|
+
},
|
6930
|
+
{
|
6931
|
+
"disabled": false,
|
6932
|
+
"document": "流ID\n注意:此字段可能返回 null,表示取不到有效值。",
|
6933
|
+
"example": "1238392",
|
6934
|
+
"member": "string",
|
6935
|
+
"name": "VideoId",
|
6936
|
+
"output_required": false,
|
6937
|
+
"required": false,
|
6938
|
+
"type": "string",
|
6939
|
+
"value_allowed_null": true
|
6940
|
+
},
|
6941
|
+
{
|
6942
|
+
"disabled": false,
|
6943
|
+
"document": "流类型\n注意:此字段可能返回 null,表示取不到有效值。",
|
6944
|
+
"example": "mix",
|
6945
|
+
"member": "string",
|
6946
|
+
"name": "Role",
|
6947
|
+
"output_required": false,
|
6948
|
+
"required": false,
|
6949
|
+
"type": "string",
|
6950
|
+
"value_allowed_null": true
|
6951
|
+
}
|
6952
|
+
],
|
6953
|
+
"usage": "both"
|
6954
|
+
},
|
6767
6955
|
"StartRoomRequest": {
|
6768
6956
|
"document": "StartRoom请求参数结构体",
|
6769
6957
|
"members": [
|
@@ -282,6 +282,14 @@
|
|
282
282
|
"title": "示例"
|
283
283
|
}
|
284
284
|
],
|
285
|
+
"DescribeRecordStream": [
|
286
|
+
{
|
287
|
+
"document": "获取流信息",
|
288
|
+
"input": "POST / HTTP/1.1\nHost: lcic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeRecordStream\n<公共请求参数>\n\n{\n \"SdkAppId\": 1,\n \"RoomId\": 1\n}",
|
289
|
+
"output": "{\n \"Response\": {\n \"ClassId\": 3211258275,\n \"ClassType\": 2,\n \"RequestId\": \"6a0cd621-e6df-46a5-8ce8-29800e49679d\",\n \"SchoolId\": 39233193,\n \"StreamInfo\": [\n {\n \"Duration\": 224,\n \"FileFormat\": \"mp4\",\n \"RecordSize\": 14966923,\n \"RecordUrl\": \"https://20910970.vod2.myqcloud.com/6cac6e5evodcq100915970/adcjfhbshgahd87/f0.mp4\",\n \"Role\": \"main\",\n \"StartTime\": 1721099743,\n \"StopTime\": 1721099964,\n \"UserId\": \"2TW2Kv091028NAmYkCQlsrT1lXgk\",\n \"VideoId\": \"125312342212911616\"\n }\n ]\n }\n}",
|
290
|
+
"title": "DescribeRecordStream"
|
291
|
+
}
|
292
|
+
],
|
285
293
|
"DescribeRoom": [
|
286
294
|
{
|
287
295
|
"document": "获取房间信息",
|
@@ -5010,20 +5010,20 @@
|
|
5010
5010
|
},
|
5011
5011
|
{
|
5012
5012
|
"disabled": false,
|
5013
|
-
"document": "实例配置变更后的内存大小。- 单位:GB
|
5013
|
+
"document": "实例配置变更后的内存大小。- 单位:GB。为空时,默认取实例当前的内存大小。<br> 注意:内存和磁盘必须同时升配或同时降配,即 Memory 与 Volume 需同时配置变更。",
|
5014
5014
|
"example": "4",
|
5015
5015
|
"member": "uint64",
|
5016
5016
|
"name": "Memory",
|
5017
|
-
"required":
|
5017
|
+
"required": false,
|
5018
5018
|
"type": "int"
|
5019
5019
|
},
|
5020
5020
|
{
|
5021
5021
|
"disabled": false,
|
5022
|
-
"document": "实例配置变更后的硬盘大小,单位:GB
|
5022
|
+
"document": "实例配置变更后的硬盘大小,单位:GB。为空时,默认取当前实例的磁盘大小。\n- 内存和磁盘必须同时升配或同时降配,即 Memory 与 Volume 需同时配置变更。\n- 降配时,变更后的磁盘容量必须大于已用磁盘容量的1.2倍。",
|
5023
5023
|
"example": "250",
|
5024
5024
|
"member": "uint64",
|
5025
5025
|
"name": "Volume",
|
5026
|
-
"required":
|
5026
|
+
"required": false,
|
5027
5027
|
"type": "int"
|
5028
5028
|
},
|
5029
5029
|
{
|
@@ -5037,7 +5037,7 @@
|
|
5037
5037
|
},
|
5038
5038
|
{
|
5039
5039
|
"disabled": false,
|
5040
|
-
"document": "
|
5040
|
+
"document": "实例变更后mongod的节点数(不包含readonly节点数)。\n- 变更mongod CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。\n- 变更 mongos CPU与内存规格时,该参数可以不配置或者输入当前 mongod(不包含readonly) 节点数量。\n- 节点变更时(全部类型),该参数可不配置或输入变更后的 mongod(不包含readonl) 节点数量。\n- 副本集节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinNodeNum 与 MaxNodeNum 获取。\n- 分片集群每个分片节点数:请确认节点数量取值范围,通过云数据库的售卖规格 [DescribeSpecInfo ](https://cloud.tencent.com/document/product/240/38565)接口返回的参数 MinReplicateSetNodeNum 与 MaxReplicateSetNodeNum 获取。",
|
5041
5041
|
"example": "3",
|
5042
5042
|
"member": "uint64",
|
5043
5043
|
"name": "NodeNum",
|
@@ -5046,7 +5046,7 @@
|
|
5046
5046
|
},
|
5047
5047
|
{
|
5048
5048
|
"disabled": false,
|
5049
|
-
"document": "
|
5049
|
+
"document": "实例变更后的分片数。\n- 取值范围请通过云数据库的售卖规格[DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 接口返回的参数**MinReplicateSetNum**与**MaxReplicateSetNum**获取。- 该参数只能增加不能减少。",
|
5050
5050
|
"example": "3",
|
5051
5051
|
"member": "uint64",
|
5052
5052
|
"name": "ReplicateSetNum",
|
@@ -5064,7 +5064,7 @@
|
|
5064
5064
|
},
|
5065
5065
|
{
|
5066
5066
|
"disabled": false,
|
5067
|
-
"document": "分片实例配置变更后的mongos
|
5067
|
+
"document": "分片实例配置变更后的mongos内存大小。单位:GB。",
|
5068
5068
|
"example": "2",
|
5069
5069
|
"member": "string",
|
5070
5070
|
"name": "MongosMemory",
|
@@ -20042,6 +20042,7 @@
|
|
20042
20042
|
"example": "无",
|
20043
20043
|
"member": "string",
|
20044
20044
|
"name": "SslClientConfigsSet",
|
20045
|
+
"output_required": true,
|
20045
20046
|
"type": "string",
|
20046
20047
|
"value_allowed_null": false
|
20047
20048
|
},
|
@@ -20051,6 +20052,7 @@
|
|
20051
20052
|
"example": "无",
|
20052
20053
|
"member": "SslClientConfig",
|
20053
20054
|
"name": "SslClientConfig",
|
20055
|
+
"output_required": true,
|
20054
20056
|
"type": "list",
|
20055
20057
|
"value_allowed_null": false
|
20056
20058
|
},
|
@@ -20060,6 +20062,7 @@
|
|
20060
20062
|
"example": "1",
|
20061
20063
|
"member": "uint64",
|
20062
20064
|
"name": "Authenticated",
|
20065
|
+
"output_required": true,
|
20063
20066
|
"type": "int",
|
20064
20067
|
"value_allowed_null": false
|
20065
20068
|
},
|
@@ -2208,7 +2208,7 @@
|
|
2208
2208
|
{
|
2209
2209
|
"document": "下载SSL-VPN-CLIENT配置",
|
2210
2210
|
"input": "https://vpc.tencentcloudapi.com/?Action=DownloadVpnGatewaySslClientCert\n&SslVpnClientId=vpnc--84tby4k2\n&<公共请求参数>",
|
2211
|
-
"output": "{\n \"Response\": {\n \"SslClientConfig\": [\n {\n \"
|
2211
|
+
"output": "{\n \"Response\": {\n \"SslClientConfigsSet\": \"abc\",\n \"SslClientConfig\": [\n {\n \"SslVpnClientConfiguration\": \"abc\",\n \"SslVpnRootCert\": \"abc\",\n \"SslVpnKey\": \"abc\",\n \"SslVpnCert\": \"abc\",\n \"SslVpnClientId\": \"abc\"\n }\n ],\n \"Authenticated\": 1,\n \"RequestId\": \"abc\"\n }\n}",
|
2212
2212
|
"title": "下载SSL-VPN-CLIENT配置"
|
2213
2213
|
}
|
2214
2214
|
],
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1180.1
|
4
4
|
Summary: Universal Command Line Environment for Tencent Cloud
|
5
5
|
Project-URL: Bug Tracker, https://github.com/TencentCloud/tencentcloud-cli/issues
|
6
6
|
Project-URL: Homepage, https://github.com/TencentCloud/tencentcloud-cli
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
14
14
|
Requires-Dist: jmespath==0.10.0
|
15
15
|
Requires-Dist: six==1.16.0
|
16
|
-
Requires-Dist: tencentcloud-sdk-python>=3.0.
|
16
|
+
Requires-Dist: tencentcloud-sdk-python>=3.0.1180
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
19
19
|
# 命令行工具简介
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tccli/__init__.py,sha256=
|
1
|
+
tccli/__init__.py,sha256=vyqSUIBvf8X3j5PKoDof443ZVUHQKIXHrelR9jkZhUk,27
|
2
2
|
tccli/argparser.py,sha256=iFaw_iIMdyVwUdcv2_2OHQfe7-7j9yGzoOgXgXswoBo,5555
|
3
3
|
tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
|
4
4
|
tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
|
@@ -220,7 +220,7 @@ tccli/services/cdwch/v20200915/api.json,sha256=jUWMo4gB0qAqXDUKC-lrQo8Oahkfuo7To
|
|
220
220
|
tccli/services/cdwch/v20200915/examples.json,sha256=SBR9XQLvfmxRtulLC7WE_IkYx7GF504_c2EHgZqeghY,44555
|
221
221
|
tccli/services/cdwdoris/__init__.py,sha256=rIQBmZynEI3sojHPPC3vLhdJ9YAOx5QnDIxvObAi2w4,95
|
222
222
|
tccli/services/cdwdoris/cdwdoris_client.py,sha256=tbamInvgB32KIxP0ZCRrlG75yCFwX4uyr1JNuHIeMHU,192002
|
223
|
-
tccli/services/cdwdoris/v20211228/api.json,sha256=
|
223
|
+
tccli/services/cdwdoris/v20211228/api.json,sha256=Tkw9QMsTeU7-oe6UOeBhM1pZMrB1lvFyEVwz_YY1QQk,255772
|
224
224
|
tccli/services/cdwdoris/v20211228/examples.json,sha256=E1JSLYqcGuyMcmfM0zCGh_khOD1iKR9bUUB26qBgHbI,48321
|
225
225
|
tccli/services/cdwpg/__init__.py,sha256=Vls5x8VLkhT0eXbX41lUKDOUN0u8oUZjX8skg5C_k_Y,89
|
226
226
|
tccli/services/cdwpg/cdwpg_client.py,sha256=Z-YWAbaTxFBB-HrdYz7yLwlgo76v9uijXu0-fEnmdr8,30333
|
@@ -340,7 +340,7 @@ tccli/services/cws/v20180312/api.json,sha256=yvPs5gzcrgBkZti57TJNssoNSIq0rgozU3F
|
|
340
340
|
tccli/services/cws/v20180312/examples.json,sha256=QmYFbj9zOOBlm4aAxhOw45f5SPrzp5SDfqTv5b3n3Go,17899
|
341
341
|
tccli/services/cynosdb/__init__.py,sha256=MBWPrBSMnHBk0CGpJoI_LU1UxxPO0CX-LO2xxuCFCzg,93
|
342
342
|
tccli/services/cynosdb/cynosdb_client.py,sha256=1Wgqxi3C9Naf5rA042xczfr8Og8XD-kdF3SgeIR-dPI,459046
|
343
|
-
tccli/services/cynosdb/v20190107/api.json,sha256=
|
343
|
+
tccli/services/cynosdb/v20190107/api.json,sha256=4vkAXUBbwTyCYiiuRdY7JV1dVKo6sMt-Xr-AxZww4g8,668740
|
344
344
|
tccli/services/cynosdb/v20190107/examples.json,sha256=ayLgZecdxyUMVmKrgYg7OMYu_YYth8YJ6suaP8vLyCA,159797
|
345
345
|
tccli/services/dasb/__init__.py,sha256=x5ez0S2wQBIe-qTkGhVvwqG-rdYdP4NXZn2WfQDvF98,87
|
346
346
|
tccli/services/dasb/dasb_client.py,sha256=KkX0_bjs0-afswXxS0mMqMEuIT03KNTS0Azrs7kTLiY,196880
|
@@ -601,9 +601,9 @@ tccli/services/kms/kms_client.py,sha256=gBosdPuGEJt4xD-5QdBx3eqVL-3UoESCCP_xvKCw
|
|
601
601
|
tccli/services/kms/v20190118/api.json,sha256=FAIPC6stikv6WldKGPI1J33WR0pgrf9Yz5uJ6ducq2g,130175
|
602
602
|
tccli/services/kms/v20190118/examples.json,sha256=wIHfpOM36AUpbkqd6bp0XDLYikW3aqf70jb_ReRbMOU,39719
|
603
603
|
tccli/services/lcic/__init__.py,sha256=40LoQA43SPCIDlxfUjHIJ7I0XD-hvtjYZHHmkODBTG8,87
|
604
|
-
tccli/services/lcic/lcic_client.py,sha256=
|
605
|
-
tccli/services/lcic/v20220817/api.json,sha256=
|
606
|
-
tccli/services/lcic/v20220817/examples.json,sha256=
|
604
|
+
tccli/services/lcic/lcic_client.py,sha256=rmWfYyr0FU7PXF2EGWN1Hcm5H83So__-J4WBdeunVKo,196495
|
605
|
+
tccli/services/lcic/v20220817/api.json,sha256=dHyyPpW7YGuOPaJgGJVN6rBRw6unXlLRByKUT4ZbaxQ,241876
|
606
|
+
tccli/services/lcic/v20220817/examples.json,sha256=ko1U-VdHw3A2ceJZ1Qhaa_dWd6HjEw9CyRnlIwtTayg,52150
|
607
607
|
tccli/services/lighthouse/__init__.py,sha256=mthGX-k-GPfpudeGSVAEXUMitx-xg7Aw2ZcXxrjf_78,99
|
608
608
|
tccli/services/lighthouse/lighthouse_client.py,sha256=rEbJoZeoN4IXJ9jsTZZiRy1BCqYReO-E7dX9Xw3cmFs,344732
|
609
609
|
tccli/services/lighthouse/v20200324/api.json,sha256=2BmFTBhYZy7zO_3K2Lr_JXTDUtoTYOqI4mzPA9ljEdo,375764
|
@@ -658,7 +658,7 @@ tccli/services/mongodb/__init__.py,sha256=Xj1cMJt16_OaoYzXR0TgIRPw-DADd-yJkmk3Ce
|
|
658
658
|
tccli/services/mongodb/mongodb_client.py,sha256=0spoHSRt14B4XKjdARXkSwlvc5JhtmymdWA9SxqCyhk,176731
|
659
659
|
tccli/services/mongodb/v20180408/api.json,sha256=l4yqKb-EpX1lQQbdCwh9d2YggVEV6jyVtPLjGl0pIP4,59863
|
660
660
|
tccli/services/mongodb/v20180408/examples.json,sha256=m0QxtHY1zfQK9fElicK1tjYJzpO9C3WGAFZcQFtxUB0,9405
|
661
|
-
tccli/services/mongodb/v20190725/api.json,sha256=
|
661
|
+
tccli/services/mongodb/v20190725/api.json,sha256=09MrmQuKCM8gbVRNVLsKGQOsy_YojZleNAxArwsHDZM,249135
|
662
662
|
tccli/services/mongodb/v20190725/examples.json,sha256=b5grDSGwY3JgwxtHuvEOiZDB0oRp3cbj7SorolAqNR0,73232
|
663
663
|
tccli/services/monitor/__init__.py,sha256=Fqyy64XBMByiqJHyjxbaJeQDJAGMyktujsYRmXhosc8,93
|
664
664
|
tccli/services/monitor/monitor_client.py,sha256=871iRrgD7D3FFVvEEUZ5t3clOdLVudndM8AUlIXQZNY,495612
|
@@ -1056,8 +1056,8 @@ tccli/services/vod/v20180717/api.json,sha256=pP7koQOkN12CEaiLhQzGPHWhFyeYyrZy_LM
|
|
1056
1056
|
tccli/services/vod/v20180717/examples.json,sha256=Zx_qoBBBzUyTrH_AZ0nLAmmU3EqoxcsITYNp2T7h3R8,402906
|
1057
1057
|
tccli/services/vpc/__init__.py,sha256=3Uy1NP1qkZo8Nd-p-jr1ioM8nnurpWlZOgH6iB3HT7M,85
|
1058
1058
|
tccli/services/vpc/vpc_client.py,sha256=KqDpR6FmfkCiIUwrms-r2KYj07wDgEDGnF4U3cqJkBM,1092438
|
1059
|
-
tccli/services/vpc/v20170312/api.json,sha256=
|
1060
|
-
tccli/services/vpc/v20170312/examples.json,sha256=
|
1059
|
+
tccli/services/vpc/v20170312/api.json,sha256=7bjfhHzuAdm-90bTfLi6jIsEhcZAKIL-hoMIv_mfkeU,1204586
|
1060
|
+
tccli/services/vpc/v20170312/examples.json,sha256=Uum28mpd6wkwnENunfTS30_uY1I54WuJphMZmOMqh8o,423532
|
1061
1061
|
tccli/services/vrs/__init__.py,sha256=wd5Otb4faSI7EjUxu_vldqDm0UVy5iVTZYbLgHCVoHk,85
|
1062
1062
|
tccli/services/vrs/vrs_client.py,sha256=GoEtSeQJUcGDUenhtMEXSM0UvCGBZe-hx068V6TAwI8,27146
|
1063
1063
|
tccli/services/vrs/v20200824/api.json,sha256=-RAHUjoUQ6ABAue48S6BCCvHsGD2nhsgyjrNzIKau00,30735
|
@@ -1104,8 +1104,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
|
|
1104
1104
|
tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
|
1105
1105
|
tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
|
1106
1106
|
tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
|
1107
|
-
tccli-3.0.
|
1108
|
-
tccli-3.0.
|
1109
|
-
tccli-3.0.
|
1110
|
-
tccli-3.0.
|
1111
|
-
tccli-3.0.
|
1107
|
+
tccli-3.0.1180.1.dist-info/METADATA,sha256=cq_z42-NtbV32Kc26DSA0vgtb6IcGLJ75T1ZiEAABlk,16172
|
1108
|
+
tccli-3.0.1180.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
|
1109
|
+
tccli-3.0.1180.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
|
1110
|
+
tccli-3.0.1180.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
1111
|
+
tccli-3.0.1180.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|