tccli-intl-en 3.0.1250.1__py2.py3-none-any.whl → 3.0.1252.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 CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1250.1'
1
+ __version__ = '3.0.1252.1'
@@ -1344,7 +1344,7 @@
1344
1344
  {
1345
1345
  "disabled": false,
1346
1346
  "document": "Called number.",
1347
- "example": "008613012345678",
1347
+ "example": "0086130xxxxxxxx",
1348
1348
  "member": "string",
1349
1349
  "name": "Callee",
1350
1350
  "required": true,
@@ -1362,7 +1362,7 @@
1362
1362
  {
1363
1363
  "disabled": false,
1364
1364
  "document": "Parameter.",
1365
- "example": "{\"foo\":\"bar\"}",
1365
+ "example": "",
1366
1366
  "member": "Variable",
1367
1367
  "name": "Variables",
1368
1368
  "required": false,
@@ -1468,7 +1468,7 @@
1468
1468
  {
1469
1469
  "disabled": false,
1470
1470
  "document": "Called number.",
1471
- "example": "008613012345678",
1471
+ "example": "0086xxx",
1472
1472
  "member": "string",
1473
1473
  "name": "Callee",
1474
1474
  "required": true,
@@ -1531,7 +1531,7 @@
1531
1531
  {
1532
1532
  "disabled": false,
1533
1533
  "document": "Caller number list",
1534
- "example": "[008613912341234, 008613912341235]",
1534
+ "example": "[\"string\"]",
1535
1535
  "member": "string",
1536
1536
  "name": "Callers",
1537
1537
  "required": false,
@@ -1675,7 +1675,7 @@
1675
1675
  {
1676
1676
  "disabled": true,
1677
1677
  "document": "Prompt word variable.",
1678
- "example": "[{\"Key\":\"foo\",\"Value\":\"bar\"}]",
1678
+ "example": "",
1679
1679
  "member": "Variable",
1680
1680
  "name": "PromptVariables",
1681
1681
  "required": false,
@@ -1693,7 +1693,7 @@
1693
1693
  {
1694
1694
  "disabled": false,
1695
1695
  "document": "Call content extraction configuration.",
1696
- "example": "[{\"InfoType\": \"Boolean\", \"InfoName\": \"兴趣\", \"InfoContent\": \"用户是否对产品感兴趣\"}]",
1696
+ "example": "",
1697
1697
  "member": "AICallExtractConfigElement",
1698
1698
  "name": "ExtractConfig",
1699
1699
  "required": false,
@@ -1702,7 +1702,7 @@
1702
1702
  {
1703
1703
  "disabled": false,
1704
1704
  "document": "Model temperature control.",
1705
- "example": "0",
1705
+ "example": "0.1",
1706
1706
  "member": "float",
1707
1707
  "name": "Temperature",
1708
1708
  "required": false,
@@ -1711,7 +1711,7 @@
1711
1711
  {
1712
1712
  "disabled": false,
1713
1713
  "document": "Common variable: <p>prompt content variable</p> <p>welcome message variable</p> <p>welcome message delay playback (in seconds): welcome-message-delay</p> <p>dify variable</p>. \n\ndify-inputs-xxx specifies the inputs variable for dify.\n2. the dify-inputs-user specifies the user value for dify.\n3. dify-inputs-conversation_id is the conversation_id value of dify.",
1714
- "example": "[{\"Key\":\"foo\",\"Value\":\"bar\"}]",
1714
+ "example": "",
1715
1715
  "member": "Variable",
1716
1716
  "name": "Variables",
1717
1717
  "required": false,
@@ -2565,6 +2565,58 @@ def doDescribeDBInstanceInter(args, parsed_globals):
2565
2565
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2566
2566
 
2567
2567
 
2568
+ def doCompleteMigration(args, parsed_globals):
2569
+ g_param = parse_global_arg(parsed_globals)
2570
+
2571
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
2572
+ cred = credential.CVMRoleCredential()
2573
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
2574
+ cred = credential.STSAssumeRoleCredential(
2575
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
2576
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
2577
+ )
2578
+ 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):
2579
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
2580
+ else:
2581
+ cred = credential.Credential(
2582
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
2583
+ )
2584
+ http_profile = HttpProfile(
2585
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
2586
+ reqMethod="POST",
2587
+ endpoint=g_param[OptionsDefine.Endpoint],
2588
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
2589
+ )
2590
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
2591
+ if g_param[OptionsDefine.Language]:
2592
+ profile.language = g_param[OptionsDefine.Language]
2593
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
2594
+ client = mod.SqlserverClient(cred, g_param[OptionsDefine.Region], profile)
2595
+ client._sdkVersion += ("_CLI_" + __version__)
2596
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
2597
+ model = models.CompleteMigrationRequest()
2598
+ model.from_json_string(json.dumps(args))
2599
+ start_time = time.time()
2600
+ while True:
2601
+ rsp = client.CompleteMigration(model)
2602
+ result = rsp.to_json_string()
2603
+ try:
2604
+ json_obj = json.loads(result)
2605
+ except TypeError as e:
2606
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
2607
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
2608
+ break
2609
+ cur_time = time.time()
2610
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
2611
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
2612
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
2613
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
2614
+ else:
2615
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
2616
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
2617
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2618
+
2619
+
2568
2620
  def doDescribeProjectSecurityGroups(args, parsed_globals):
2569
2621
  g_param = parse_global_arg(parsed_globals)
2570
2622
 
@@ -5009,6 +5061,58 @@ def doRemoveBackups(args, parsed_globals):
5009
5061
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
5010
5062
 
5011
5063
 
5064
+ def doDescribeMigrationDatabases(args, parsed_globals):
5065
+ g_param = parse_global_arg(parsed_globals)
5066
+
5067
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
5068
+ cred = credential.CVMRoleCredential()
5069
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
5070
+ cred = credential.STSAssumeRoleCredential(
5071
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
5072
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
5073
+ )
5074
+ 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):
5075
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
5076
+ else:
5077
+ cred = credential.Credential(
5078
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
5079
+ )
5080
+ http_profile = HttpProfile(
5081
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
5082
+ reqMethod="POST",
5083
+ endpoint=g_param[OptionsDefine.Endpoint],
5084
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
5085
+ )
5086
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
5087
+ if g_param[OptionsDefine.Language]:
5088
+ profile.language = g_param[OptionsDefine.Language]
5089
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
5090
+ client = mod.SqlserverClient(cred, g_param[OptionsDefine.Region], profile)
5091
+ client._sdkVersion += ("_CLI_" + __version__)
5092
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
5093
+ model = models.DescribeMigrationDatabasesRequest()
5094
+ model.from_json_string(json.dumps(args))
5095
+ start_time = time.time()
5096
+ while True:
5097
+ rsp = client.DescribeMigrationDatabases(model)
5098
+ result = rsp.to_json_string()
5099
+ try:
5100
+ json_obj = json.loads(result)
5101
+ except TypeError as e:
5102
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
5103
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
5104
+ break
5105
+ cur_time = time.time()
5106
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
5107
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
5108
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
5109
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
5110
+ else:
5111
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
5112
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
5113
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
5114
+
5115
+
5012
5116
  def doRunMigration(args, parsed_globals):
5013
5117
  g_param = parse_global_arg(parsed_globals)
5014
5118
 
@@ -7149,6 +7253,7 @@ ACTION_MAP = {
7149
7253
  "BalanceReadOnlyGroup": doBalanceReadOnlyGroup,
7150
7254
  "ModifyDatabaseCDC": doModifyDatabaseCDC,
7151
7255
  "DescribeDBInstanceInter": doDescribeDBInstanceInter,
7256
+ "CompleteMigration": doCompleteMigration,
7152
7257
  "DescribeProjectSecurityGroups": doDescribeProjectSecurityGroups,
7153
7258
  "CreateAccount": doCreateAccount,
7154
7259
  "DescribeRegions": doDescribeRegions,
@@ -7196,6 +7301,7 @@ ACTION_MAP = {
7196
7301
  "DescribeCrossRegions": doDescribeCrossRegions,
7197
7302
  "ModifyDReadable": doModifyDReadable,
7198
7303
  "RemoveBackups": doRemoveBackups,
7304
+ "DescribeMigrationDatabases": doDescribeMigrationDatabases,
7199
7305
  "RunMigration": doRunMigration,
7200
7306
  "CreateReadOnlyDBInstances": doCreateReadOnlyDBInstances,
7201
7307
  "SwitchCloudInstanceHA": doSwitchCloudInstanceHA,
@@ -35,6 +35,13 @@
35
35
  "output": "CompleteExpansionResponse",
36
36
  "status": "online"
37
37
  },
38
+ "CompleteMigration": {
39
+ "document": "This API is used to complete a migration task.",
40
+ "input": "CompleteMigrationRequest",
41
+ "name": "Completing Migration Tasks",
42
+ "output": "CompleteMigrationResponse",
43
+ "status": "online"
44
+ },
38
45
  "CreateAccount": {
39
46
  "document": "This API is used to create an instance account.",
40
47
  "input": "CreateAccountRequest",
@@ -455,6 +462,13 @@
455
462
  "output": "DescribeMaintenanceSpanResponse",
456
463
  "status": "online"
457
464
  },
465
+ "DescribeMigrationDatabases": {
466
+ "document": "This API is used to query the list of databases to be migrated.",
467
+ "input": "DescribeMigrationDatabasesRequest",
468
+ "name": "Querying the List of Databases to Be Migrated",
469
+ "output": "DescribeMigrationDatabasesResponse",
470
+ "status": "online"
471
+ },
458
472
  "DescribeMigrationDetail": {
459
473
  "document": "This API is used to query migration task details.",
460
474
  "input": "DescribeMigrationDetailRequest",
@@ -1970,6 +1984,43 @@
1970
1984
  ],
1971
1985
  "type": "object"
1972
1986
  },
1987
+ "CompleteMigrationRequest": {
1988
+ "document": "CompleteMigration request structure.",
1989
+ "members": [
1990
+ {
1991
+ "disabled": false,
1992
+ "document": "Migration task ID.",
1993
+ "example": "2729",
1994
+ "member": "int64",
1995
+ "name": "MigrateId",
1996
+ "required": true,
1997
+ "type": "int"
1998
+ }
1999
+ ],
2000
+ "type": "object"
2001
+ },
2002
+ "CompleteMigrationResponse": {
2003
+ "document": "CompleteMigration response structure.",
2004
+ "members": [
2005
+ {
2006
+ "disabled": false,
2007
+ "document": "Process ID returned after the migration process is initiated.",
2008
+ "example": "30530",
2009
+ "member": "int64",
2010
+ "name": "FlowId",
2011
+ "required": true,
2012
+ "type": "int",
2013
+ "value_allowed_null": false
2014
+ },
2015
+ {
2016
+ "document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
2017
+ "member": "string",
2018
+ "name": "RequestId",
2019
+ "type": "string"
2020
+ }
2021
+ ],
2022
+ "type": "object"
2023
+ },
1973
2024
  "CosUploadBackupFile": {
1974
2025
  "document": "Querying the size of uploaded backup files.",
1975
2026
  "members": [
@@ -9110,6 +9161,71 @@
9110
9161
  ],
9111
9162
  "type": "object"
9112
9163
  },
9164
+ "DescribeMigrationDatabasesRequest": {
9165
+ "document": "DescribeMigrationDatabases request structure.",
9166
+ "members": [
9167
+ {
9168
+ "disabled": false,
9169
+ "document": "Migration source instance ID, in the format of mssql-si2823jyl.",
9170
+ "example": "mssql-si2823jyl",
9171
+ "member": "string",
9172
+ "name": "InstanceId",
9173
+ "required": true,
9174
+ "type": "string"
9175
+ },
9176
+ {
9177
+ "disabled": false,
9178
+ "document": "Username of the migration source instance.",
9179
+ "example": "sqlserver_admin",
9180
+ "member": "string",
9181
+ "name": "UserName",
9182
+ "required": true,
9183
+ "type": "string"
9184
+ },
9185
+ {
9186
+ "disabled": false,
9187
+ "document": "Password of the migration source instance.",
9188
+ "example": "Qy2255778899",
9189
+ "member": "string",
9190
+ "name": "Password",
9191
+ "required": true,
9192
+ "type": "string"
9193
+ }
9194
+ ],
9195
+ "type": "object"
9196
+ },
9197
+ "DescribeMigrationDatabasesResponse": {
9198
+ "document": "DescribeMigrationDatabases response structure.",
9199
+ "members": [
9200
+ {
9201
+ "disabled": false,
9202
+ "document": "Number of databases.",
9203
+ "example": "3",
9204
+ "member": "int64",
9205
+ "name": "Amount",
9206
+ "output_required": true,
9207
+ "type": "int",
9208
+ "value_allowed_null": false
9209
+ },
9210
+ {
9211
+ "disabled": false,
9212
+ "document": "Database name array.",
9213
+ "example": "[\"Biz-test1\",\"Biz-test2\",\"Biz-test3\"]",
9214
+ "member": "string",
9215
+ "name": "MigrateDBSet",
9216
+ "output_required": true,
9217
+ "type": "list",
9218
+ "value_allowed_null": true
9219
+ },
9220
+ {
9221
+ "document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
9222
+ "member": "string",
9223
+ "name": "RequestId",
9224
+ "type": "string"
9225
+ }
9226
+ ],
9227
+ "type": "object"
9228
+ },
9113
9229
  "DescribeMigrationDetailRequest": {
9114
9230
  "document": "DescribeMigrationDetail request structure.",
9115
9231
  "members": [
@@ -40,6 +40,14 @@
40
40
  "title": "Completing the Instance Upgrade Immediately"
41
41
  }
42
42
  ],
43
+ "CompleteMigration": [
44
+ {
45
+ "document": " ",
46
+ "input": "https://sqlserver.tencentcloudapi.com/?Action=CompleteMigration\n&MigrateId=2729\n&<Common request parameters>",
47
+ "output": "{\n \"Response\": {\n \"RequestId\": \"4be5990d-a4b5-49dc-b2b4-e713b6aa7ba35\",\n \"FlowId\": 30530\n }\n}",
48
+ "title": "Completing Migration Tasks"
49
+ }
50
+ ],
43
51
  "CreateAccount": [
44
52
  {
45
53
  "document": " ",
@@ -544,6 +552,14 @@
544
552
  "title": "Query the maintenance time window of the instance"
545
553
  }
546
554
  ],
555
+ "DescribeMigrationDatabases": [
556
+ {
557
+ "document": " ",
558
+ "input": "https://sqlserver.tencentcloudapi.com/?Action=DescribeMigrationDatabases\n&InstanceId=mssql-si2823jyl\n&UserName=sqlserver_admin\n&Password=Qy2255778899\n&<Common request parameters>",
559
+ "output": "{\n \"Response\": {\n \"RequestId\": \"4be5990d-a4b5-49dc-b2b4-e713b6aa7ba3\",\n \"Amount\": 3,\n \"MigrateDBSet\": [\n \"Biz-test1\",\n \"Biz-test2\",\n \"Biz-test3\"\n ]\n }\n}",
560
+ "title": "Querying the List of Databases to Be Migrated"
561
+ }
562
+ ],
547
563
  "DescribeMigrationDetail": [
548
564
  {
549
565
  "document": " ",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli-intl-en
3
- Version: 3.0.1250.1
3
+ Version: 3.0.1252.1
4
4
  Summary: Universal Command Line Environment for Tencent Cloud
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-cli-intl-en.git
6
6
  Author: Tencent Cloud
@@ -22,7 +22,7 @@ Classifier: Programming Language :: Python :: 3.4
22
22
  Classifier: Programming Language :: Python :: 3.5
23
23
  Classifier: Programming Language :: Python :: 3.6
24
24
  License-File: LICENSE
25
- Requires-Dist: tencentcloud-sdk-python-intl-en (>=3.0.1250)
25
+ Requires-Dist: tencentcloud-sdk-python-intl-en (>=3.0.1252)
26
26
  Requires-Dist: jmespath (==0.10.0)
27
27
  Requires-Dist: six (==1.16.0)
28
28
 
@@ -1,4 +1,4 @@
1
- tccli/__init__.py,sha256=7gk3r8h56veE7L2Hvcv6RhhdNSSNCS27UCZfXDMMs1s,28
1
+ tccli/__init__.py,sha256=weR324N0YryQwcHzGSyy2xVLkYc8_nDGFxFa-SfhzsA,28
2
2
  tccli/argparser.py,sha256=WtfpBhj2R6JHSzagy6w6Q4y3YVmyIC_yK80w3tqBPgU,5589
3
3
  tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
4
4
  tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
@@ -112,7 +112,7 @@ tccli/services/cbs/v20170312/api.json,sha256=M8iQJDgeA6BhOtLI1bg8eVN49Nv0fgfH_bW
112
112
  tccli/services/cbs/v20170312/examples.json,sha256=aeOyHt5ByqoKicmZoaSd17nuAWQpoUU4lTjWOHDky9g,39931
113
113
  tccli/services/ccc/__init__.py,sha256=wR36QP35wizc6U55yXrZrY_2HiEVnzYPRWgGN_kkLxo,85
114
114
  tccli/services/ccc/ccc_client.py,sha256=9eiyp8wDiceU29v-7GjFLVIVVuvsLMHScVPQc5FQaEU,198620
115
- tccli/services/ccc/v20200210/api.json,sha256=th2P_rkFOGA6ZSuniqPR3XkNgiq9SODg-9nu6222w3Q,289163
115
+ tccli/services/ccc/v20200210/api.json,sha256=opNLWikoFjj2izeDD5ys3tLN9EOtNTGumNOrMU0vQgk,288948
116
116
  tccli/services/ccc/v20200210/examples.json,sha256=moGGsEMbO-1BJcNo6bWB8tmm937OFvFeV55rvPCnouw,58717
117
117
  tccli/services/cdb/__init__.py,sha256=9Jk9tAMP2ZM_xOG77GvqXL1q3UfwYTEos6_P6xzpTiM,85
118
118
  tccli/services/cdb/cdb_client.py,sha256=NsV56BxoiQbQQOZQbFMO61UCe0xLCiQ28E4W29-SN9o,418437
@@ -433,9 +433,9 @@ tccli/services/sms/v20190711/examples.json,sha256=XvWAmujEBB_b1fVYsNf7T0ThVC2vAc
433
433
  tccli/services/sms/v20210111/api.json,sha256=KHxSJXKTIkRkFnBpz9Q2fKtBSxzqH_NYzgwT9mhOq88,86893
434
434
  tccli/services/sms/v20210111/examples.json,sha256=oOw1APytKE8I9FugFheIC4JWrRx23aa8yErw7O3T_oc,16692
435
435
  tccli/services/sqlserver/__init__.py,sha256=dIyO7qGCNsrGcb3_feEQvJhGHqIr0dQTiku9YdLO5H8,97
436
- tccli/services/sqlserver/sqlserver_client.py,sha256=yPCpxE_OMsxiXUNjVxeapR4I2A-zShYTjvVyKHVWCX0,428856
437
- tccli/services/sqlserver/v20180328/api.json,sha256=WCBWDFMJrD0uK55R3IWeqt3WfMag763T3AhIvRht72s,587633
438
- tccli/services/sqlserver/v20180328/examples.json,sha256=kBmtY8FOiRhAhLzQ-G-pT0ulPX_1aa1R7tHcbdhBWDM,152586
436
+ tccli/services/sqlserver/sqlserver_client.py,sha256=44_1TiPqJSzhfWn3RzI9Q6Q1j1wyaCXduBcqXfPRBsg,435077
437
+ tccli/services/sqlserver/v20180328/api.json,sha256=v4PJvF5p_OqyDzsn4NB7Lnf4F8kjG9cYtOv--pC6aKw,591574
438
+ tccli/services/sqlserver/v20180328/examples.json,sha256=hgoz2y0hAH3YN7AUdAkVr-RgplOirTNbZeQMDqY1Vic,153605
439
439
  tccli/services/ssl/__init__.py,sha256=BZHCAj_E_M5K1SujuuI6TBJEy2nYKGk7Y-qJMYnLK2g,85
440
440
  tccli/services/ssl/ssl_client.py,sha256=Q1P9egHQpld19aQYCWDO91tCoXui5ZzXBWjRpw_c7OI,124712
441
441
  tccli/services/ssl/v20191205/api.json,sha256=LWC-A0U2sQHHguJCuGd8kVAkBUvehSYX_QHv4-FCg_8,322729
@@ -570,9 +570,9 @@ tccli/services/yunjing/__init__.py,sha256=8HTKN8_ow1j67tspqAbBMQgeteXAagLvtb9WAf
570
570
  tccli/services/yunjing/yunjing_client.py,sha256=Vh5vFOLjDJ53q_RX9WADwLT610kGcUxwCmtny95k3js,226485
571
571
  tccli/services/yunjing/v20180228/api.json,sha256=zYojacZyPgPCi71CLBjuHsQR9mIxcZjCX5JwA9TYr1s,173428
572
572
  tccli/services/yunjing/v20180228/examples.json,sha256=j3GL3TtNTkZpNLlksz0nJNCVDxYGUqfRqOt94Y-P8OE,58723
573
- tccli_intl_en-3.0.1250.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
574
- tccli_intl_en-3.0.1250.1.dist-info/METADATA,sha256=CtewBRRCaKzxUJrWdPiq4hX_rT4ERidavAC8QnOyfrc,3092
575
- tccli_intl_en-3.0.1250.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
576
- tccli_intl_en-3.0.1250.1.dist-info/entry_points.txt,sha256=68P7ZjqXFm4zPWf5RsAVabzbECUWYFB2VyUnnv8XgMI,86
577
- tccli_intl_en-3.0.1250.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
578
- tccli_intl_en-3.0.1250.1.dist-info/RECORD,,
573
+ tccli_intl_en-3.0.1252.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
574
+ tccli_intl_en-3.0.1252.1.dist-info/METADATA,sha256=J79oiIC2yj4lp9Jowiea8YD9xTCyyoTGV7Glqlg-W_k,3092
575
+ tccli_intl_en-3.0.1252.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
576
+ tccli_intl_en-3.0.1252.1.dist-info/entry_points.txt,sha256=68P7ZjqXFm4zPWf5RsAVabzbECUWYFB2VyUnnv8XgMI,86
577
+ tccli_intl_en-3.0.1252.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
578
+ tccli_intl_en-3.0.1252.1.dist-info/RECORD,,