tccli 3.0.1385.1__py2.py3-none-any.whl → 3.0.1386.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.1385.1'
1
+ __version__ = '3.0.1386.1'
@@ -6439,12 +6439,12 @@
6439
6439
  },
6440
6440
  {
6441
6441
  "disabled": false,
6442
- "document": "别名",
6442
+ "document": "别名\n限制:不能包含字符 |。",
6443
6443
  "example": "topicname",
6444
6444
  "member": "string",
6445
6445
  "name": "Alias",
6446
6446
  "output_required": true,
6447
- "required": true,
6447
+ "required": false,
6448
6448
  "type": "string",
6449
6449
  "value_allowed_null": false
6450
6450
  }
@@ -5529,6 +5529,58 @@ def doCreateWorkGroup(args, parsed_globals):
5529
5529
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
5530
5530
 
5531
5531
 
5532
+ def doCreateTcIcebergTable(args, parsed_globals):
5533
+ g_param = parse_global_arg(parsed_globals)
5534
+
5535
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
5536
+ cred = credential.CVMRoleCredential()
5537
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
5538
+ cred = credential.STSAssumeRoleCredential(
5539
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
5540
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
5541
+ )
5542
+ 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):
5543
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
5544
+ else:
5545
+ cred = credential.Credential(
5546
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
5547
+ )
5548
+ http_profile = HttpProfile(
5549
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
5550
+ reqMethod="POST",
5551
+ endpoint=g_param[OptionsDefine.Endpoint],
5552
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
5553
+ )
5554
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
5555
+ if g_param[OptionsDefine.Language]:
5556
+ profile.language = g_param[OptionsDefine.Language]
5557
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
5558
+ client = mod.DlcClient(cred, g_param[OptionsDefine.Region], profile)
5559
+ client._sdkVersion += ("_CLI_" + __version__)
5560
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
5561
+ model = models.CreateTcIcebergTableRequest()
5562
+ model.from_json_string(json.dumps(args))
5563
+ start_time = time.time()
5564
+ while True:
5565
+ rsp = client.CreateTcIcebergTable(model)
5566
+ result = rsp.to_json_string()
5567
+ try:
5568
+ json_obj = json.loads(result)
5569
+ except TypeError as e:
5570
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
5571
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
5572
+ break
5573
+ cur_time = time.time()
5574
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
5575
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
5576
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
5577
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
5578
+ else:
5579
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
5580
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
5581
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
5582
+
5583
+
5532
5584
  def doCreateCHDFSBindingProduct(args, parsed_globals):
5533
5585
  g_param = parse_global_arg(parsed_globals)
5534
5586
 
@@ -9494,6 +9546,7 @@ ACTION_MAP = {
9494
9546
  "QueryTaskCostDetail": doQueryTaskCostDetail,
9495
9547
  "DropDMSPartitions": doDropDMSPartitions,
9496
9548
  "CreateWorkGroup": doCreateWorkGroup,
9549
+ "CreateTcIcebergTable": doCreateTcIcebergTable,
9497
9550
  "CreateCHDFSBindingProduct": doCreateCHDFSBindingProduct,
9498
9551
  "QueryInternalTableWarehouse": doQueryInternalTableWarehouse,
9499
9552
  "DescribeDatasourceConnection": doDescribeDatasourceConnection,
@@ -315,6 +315,13 @@
315
315
  "output": "CreateTasksInOrderResponse",
316
316
  "status": "deprecated"
317
317
  },
318
+ "CreateTcIcebergTable": {
319
+ "document": "创建TIceberg表",
320
+ "input": "CreateTcIcebergTableRequest",
321
+ "name": "创建TC-Iceberg表",
322
+ "output": "CreateTcIcebergTableResponse",
323
+ "status": "online"
324
+ },
318
325
  "CreateUser": {
319
326
  "document": "创建用户",
320
327
  "input": "CreateUserRequest",
@@ -5828,6 +5835,99 @@
5828
5835
  ],
5829
5836
  "type": "object"
5830
5837
  },
5838
+ "CreateTcIcebergTableRequest": {
5839
+ "document": "CreateTcIcebergTable请求参数结构体",
5840
+ "members": [
5841
+ {
5842
+ "disabled": false,
5843
+ "document": "表基本信息",
5844
+ "example": "无",
5845
+ "member": "TableBaseInfo",
5846
+ "name": "TableBaseInfo",
5847
+ "required": true,
5848
+ "type": "object"
5849
+ },
5850
+ {
5851
+ "disabled": false,
5852
+ "document": "表字段信息",
5853
+ "example": "无",
5854
+ "member": "TColumn",
5855
+ "name": "Columns",
5856
+ "required": true,
5857
+ "type": "list"
5858
+ },
5859
+ {
5860
+ "disabled": false,
5861
+ "document": "为true时只获取sql而不执行",
5862
+ "example": "false",
5863
+ "member": "bool",
5864
+ "name": "DryRun",
5865
+ "required": true,
5866
+ "type": "bool"
5867
+ },
5868
+ {
5869
+ "disabled": false,
5870
+ "document": "表分区信息",
5871
+ "example": "无",
5872
+ "member": "TPartition",
5873
+ "name": "Partitions",
5874
+ "required": false,
5875
+ "type": "list"
5876
+ },
5877
+ {
5878
+ "disabled": false,
5879
+ "document": "表属性信息",
5880
+ "example": "无",
5881
+ "member": "Property",
5882
+ "name": "Properties",
5883
+ "required": false,
5884
+ "type": "list"
5885
+ }
5886
+ ],
5887
+ "type": "object"
5888
+ },
5889
+ "CreateTcIcebergTableResponse": {
5890
+ "document": "CreateTcIcebergTable返回参数结构体",
5891
+ "members": [
5892
+ {
5893
+ "disabled": false,
5894
+ "document": "amoro的SessionId",
5895
+ "example": "66cb0000-50d2-49b1-99c6-12fb1566b7d0-SIMPLE-1305424723:DataLakeCatalog:zYBEmJFg:u7CzujF-test-catalog",
5896
+ "member": "string",
5897
+ "name": "SessionId",
5898
+ "output_required": false,
5899
+ "type": "string",
5900
+ "value_allowed_null": false
5901
+ },
5902
+ {
5903
+ "disabled": false,
5904
+ "document": "执行的sql",
5905
+ "example": "select 1;",
5906
+ "member": "string",
5907
+ "name": "SQL",
5908
+ "output_required": false,
5909
+ "type": "string",
5910
+ "value_allowed_null": false
5911
+ },
5912
+ {
5913
+ "disabled": false,
5914
+ "document": "为true时只返回sql而不实际执行",
5915
+ "example": "false",
5916
+ "member": "bool",
5917
+ "name": "DryRun",
5918
+ "output_required": false,
5919
+ "type": "bool",
5920
+ "value_allowed_null": false
5921
+ },
5922
+ {
5923
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
5924
+ "member": "string",
5925
+ "name": "RequestId",
5926
+ "type": "string"
5927
+ }
5928
+ ],
5929
+ "type": "object"
5930
+ },
5831
5931
  "CreateUserRequest": {
5832
5932
  "document": "CreateUser请求参数结构体",
5833
5933
  "members": [
@@ -360,6 +360,14 @@
360
360
  "title": "按顺序创建任务"
361
361
  }
362
362
  ],
363
+ "CreateTcIcebergTable": [
364
+ {
365
+ "document": "创建tc-iceberg表",
366
+ "input": "POST / HTTP/1.1\nHost: dlc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateInternalTable\n<公共请求参数>\n\n{\n \"TableBaseInfo\": {\n \"DatasourceConnectionName\": \"DataLakeCatalog\",\n \"DatabaseName\": \"yuxinghe_test_0212\",\n \"TableName\": \"demo_tb\",\n \"SmartPolicy\": {\n \"BaseInfo\": {\n \"Uin\": \"100018379117\",\n \"AppId\": \"1305424723\",\n \"PolicyType\": \"Table\",\n \"Catalog\": \"DataLakeCatalog\",\n \"Database\": \"yuxinghe_test_0212\",\n \"Table\": \"demo_tb\"\n },\n \"Policy\": {\n \"Inherit\": \"none\",\n \"Resources\": [\n {\n \"Name\": \"277-spark35-test-yuxinghe\",\n \"ResourceType\": \"SQL\",\n \"AttributionType\": \"group\",\n \"ResourceGroupName\": \"test-277-group\"\n }\n ],\n \"Written\": {\n \"WrittenEnable\": \"enable\"\n },\n \"Lifecycle\": {\n \"LifecycleEnable\": \"enable\",\n \"Expiration\": 30,\n \"ExpiredFieldFormat\": \"yyyy-MM-dd\",\n \"ExpiredField\": \"col1\"\n },\n \"Index\": {\n \"IndexEnable\": \"disable\"\n },\n \"ChangeTable\": {\n \"DataRetentionTime\": 7\n }\n }\n },\n \"PrimaryKeys\": [\n \"col1\"\n ],\n \"TableFormat\": \"TC-ICEBERG\"\n },\n \"Columns\": [\n {\n \"Name\": \"col1\",\n \"Type\": \"string\"\n },\n {\n \"Name\": \"col2\",\n \"Type\": \"int\"\n }\n ],\n \"Partitions\": [\n {\n \"Name\": \"col1\",\n \"Transform\": \"identity\"\n }\n ],\n \"Properties\": [],\n \"DryRun\": false\n}",
367
+ "output": "{\n \"Response\": {\n \"DryRun\": false,\n \"RequestId\": \"deb07535-ccd2-4574-846b-d675249a7f47\",\n \"SQL\": \"CREATE TABLE IF NOT EXISTS yuxinghe_test_0212.demo_tb ( col1 string, col2 int, primary key(col1)) USING MIXED_ICEBERG PARTITIONED BY (col1) TBLPROPERTIES ('change.data.ttl.minutes'='10080', 'clean-dangling-delete-files.enabled'='true', 'clean-orhan-files.interval'='1440', 'clean-orphan-file.enabled'='true', 'data-expire.datetime-string-pattern'='yyyy-MM-dd', 'data-expire.enabled'='true', 'data-expire.field'='col1', 'data-expire.retention-time'='30d', 'dlc_sub_uin'='100018379117', 'lakehouse.storage.type'='lakefs', 'optimizing.engine.name'='277-spark35-test-yuxinghe', 'optimizing.engine.resource.group.name'='test-277-group', 'self-optimizing.enabled'='true', 'self-optimizing.group'='dlc_1305424723_277-spark35-test-yux_opti_grp', 'self-optimizing.minor.trigger.file-count'='5', 'self-optimizing.target-size'='134217728', 'smart-optimizer.inherit'='none', 'snapshot-expire.interval'='600', 'snapshot.base.keep.count'='5', 'snapshot.base.keep.minutes'='2880', 'table-expire.enabled'='true', 'write.distribution-mode'='hash', 'write.metadata.delete-after-commit.enabled'='true', 'write.metadata.previous-versions-max'='100', 'write.metadata.metrics.default'='full');\",\n \"SessionId\": \"09b4d457-c0f7-45c7-bc0e-46398322f0dc-SIMPLE-1305424723:DataLakeCatalog:zYBEmJFg:u7CzujF-DataLakeCatalog\"\n }\n}",
368
+ "title": "创建tc-iceberg表"
369
+ }
370
+ ],
363
371
  "CreateUser": [
364
372
  {
365
373
  "document": "",
@@ -2759,7 +2759,7 @@
2759
2759
  {
2760
2760
  "disabled": false,
2761
2761
  "document": "使用场景ID列表。可通过[DescribeAllScenes](https://cloud.tencent.com/document/product/1207/83513)接口返回值中的SceneId获取。",
2762
- "example": "[\"lhsc-123456\"]",
2762
+ "example": "[\"lhsc-3bzsddow\"]",
2763
2763
  "member": "string",
2764
2764
  "name": "SceneIds",
2765
2765
  "required": false,
@@ -7391,7 +7391,7 @@
7391
7391
  },
7392
7392
  {
7393
7393
  "disabled": false,
7394
- "document": "音频切片时长,默认15s 示例值:15",
7394
+ "document": "音频切片时长,默认15s 示例值:15\n取值范围15-60s",
7395
7395
  "example": "15",
7396
7396
  "member": "uint64",
7397
7397
  "name": "SliceAudio",
@@ -7400,7 +7400,7 @@
7400
7400
  },
7401
7401
  {
7402
7402
  "disabled": false,
7403
- "document": "视频截帧间隔时长,默认5s, 示例值:5",
7403
+ "document": "视频截帧间隔时长,默认5s, 示例值:5 取值范围5-60s",
7404
7404
  "example": "5",
7405
7405
  "member": "uint64",
7406
7406
  "name": "SliceVideo",
@@ -7419,7 +7419,7 @@
7419
7419
  {
7420
7420
  "disabled": false,
7421
7421
  "document": "已废弃,从控制台配置回调url",
7422
- "example": "",
7422
+ "example": "url",
7423
7423
  "member": "string",
7424
7424
  "name": "SliceCallbackUrl",
7425
7425
  "required": false,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli
3
- Version: 3.0.1385.1
3
+ Version: 3.0.1386.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.1385
16
+ Requires-Dist: tencentcloud-sdk-python>=3.0.1386
17
17
  Description-Content-Type: text/markdown
18
18
 
19
19
  # 命令行工具简介
@@ -1,4 +1,4 @@
1
- tccli/__init__.py,sha256=Xg041UJ4nDFzc3htH0y0p0ktCFrnC1yxJaj-DgnNkrc,27
1
+ tccli/__init__.py,sha256=ZjWqnjoJSHt1NqIshtDp4tv5Jeohbir2TVr6eWjEM7Q,27
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
@@ -319,7 +319,7 @@ tccli/services/cloudstudio/v20230508/api.json,sha256=XpMQtPxoc7Yf50dXUjbFsfTIjTi
319
319
  tccli/services/cloudstudio/v20230508/examples.json,sha256=rCX90ZBO7QdGd1uXPQBGlLsz-ncTN74qY6h5JoygFG4,5772
320
320
  tccli/services/cls/__init__.py,sha256=emWEmdULub91gG47BRE9u44cHrFt8L4KRduipQx_MfQ,85
321
321
  tccli/services/cls/cls_client.py,sha256=YET0ZSZaY1WvYTQnfh9N5KRzWfc1FWArpTbqb4uFNdk,358228
322
- tccli/services/cls/v20201016/api.json,sha256=-F5GRb_i2PxRou5dptcenPGVuwuuJsZPKpYgj87D4-k,644435
322
+ tccli/services/cls/v20201016/api.json,sha256=yDyE8aqLFWLySQ3PVrhhyb1GsIgglBoccwbP7RJ0Ls4,644470
323
323
  tccli/services/cls/v20201016/examples.json,sha256=r_rENYz04JGdZOTgVhmvQ3_0mYjEH6sIeul_ad6rtto,229699
324
324
  tccli/services/cme/__init__.py,sha256=JUEIsQ1dWJHSubFZl7yjNuEMYMdDiyVRMv7YUiZcz4s,85
325
325
  tccli/services/cme/cme_client.py,sha256=p9r6vilE1ho9gjfGuxj43OtOY-ZpytsWqJkAotCQc2I,160356
@@ -404,9 +404,9 @@ tccli/services/dcdb/dcdb_client.py,sha256=hcg2SUM1-s7j5RPLzzB6rwHQaUKCKhCQClhul9
404
404
  tccli/services/dcdb/v20180411/api.json,sha256=h3H4KhIEIPZJzDtEATZkFZjQSQbS-L_KsNGWaPIBw-Q,366663
405
405
  tccli/services/dcdb/v20180411/examples.json,sha256=-98ADhaSHhbF7mE_U8Ar34Ce_1gLICueINz6fUhg1J8,77370
406
406
  tccli/services/dlc/__init__.py,sha256=Pt7cRkf9EvW5Zp2SZeVE-_cF_YHO7ORkFXK7qsTnkiA,85
407
- tccli/services/dlc/dlc_client.py,sha256=0m1ljmy7QDUzSTMDAdFnvSjvYY7AP9H-jGmYsq4Gs7E,565286
408
- tccli/services/dlc/v20210125/api.json,sha256=VjSZOc75LO1Md8MJaovN-vCGcOqvYhshpti7a9iUS1s,824973
409
- tccli/services/dlc/v20210125/examples.json,sha256=xPIfRLec2LilGWqKTsydEy6aDsNPPLmt6thaIDTSywA,244009
407
+ tccli/services/dlc/dlc_client.py,sha256=r5G18qPIRBH2JF-3cI_wslgc1pqeCBhN5qeoLUgSaUs,568383
408
+ tccli/services/dlc/v20210125/api.json,sha256=Am-UfezwXXRdjkb5Ge-48Hr82ciz1r6hncV1OJ0qqWo,828032
409
+ tccli/services/dlc/v20210125/examples.json,sha256=ktHWW20Qs7Vns6_K1iLYWiCn6eCtv5rvE3wLJ9PXkA8,247795
410
410
  tccli/services/dnspod/__init__.py,sha256=4t9Zk1hkia8MrDbtWW-XP9aCXYNWqafFaB1NKh5Ebfc,91
411
411
  tccli/services/dnspod/dnspod_client.py,sha256=GzMZaFpphMk8CUtJdkaN7pRZHiNHTtLIpkaO11coLhA,288217
412
412
  tccli/services/dnspod/v20210323/api.json,sha256=G-iDu97DicGFUOySLIWjw7T7-1OItxYfDhgzR-DkNLE,368622
@@ -631,7 +631,7 @@ tccli/services/lcic/v20220817/api.json,sha256=QJ_Z53W2wSOC6UykDzkIdzsbTYN-_xU3Zs
631
631
  tccli/services/lcic/v20220817/examples.json,sha256=jg-H31TLWNdVBU3vigfxoSUG3DR7F4F8xVSLsj-v5QE,60584
632
632
  tccli/services/lighthouse/__init__.py,sha256=mthGX-k-GPfpudeGSVAEXUMitx-xg7Aw2ZcXxrjf_78,99
633
633
  tccli/services/lighthouse/lighthouse_client.py,sha256=Z2uwwJsDFKy4AhCcE-62kMEZa0ru2EZj-AVkW3EHbuk,369793
634
- tccli/services/lighthouse/v20200324/api.json,sha256=dBTHI8SenQPhq6EBAJYJSFvyWEFrFzKqFNiNS4Ke3bo,422156
634
+ tccli/services/lighthouse/v20200324/api.json,sha256=HcSgs9MZwObOzdOnPI9S3VF8dHzg8Dmv0FhIKu9lU4k,422158
635
635
  tccli/services/lighthouse/v20200324/examples.json,sha256=FcelAba2ilNARlBjbua9-wuZZPh8NGXTiuM6HlalAUw,141503
636
636
  tccli/services/live/__init__.py,sha256=RcvY72t1P1PSv7r9d9SCa9Iv7qvP8ok30HwiMcPVAs4,87
637
637
  tccli/services/live/live_client.py,sha256=qnWafxUTZL2OhiXPk-WVM_BEtq_qUQZvKm8puJSpf7w,632031
@@ -971,7 +971,7 @@ tccli/services/trro/v20220325/api.json,sha256=6SOiB5tz4PkSaMOZsEzVPNHl3Pwk0QF0U6
971
971
  tccli/services/trro/v20220325/examples.json,sha256=I-aK5HhxwVte-HvPeQDvcEAlX-oco-bnSZqkLzyvSOg,62845
972
972
  tccli/services/trtc/__init__.py,sha256=7xXIF66WdJHGVIhfHKFx2VYimlxZ_z3QOeJBUJ2P_MQ,87
973
973
  tccli/services/trtc/trtc_client.py,sha256=fsBJyASq1Neo38RLXhTuWeEY9EOYjSZabqUb8S2h6bQ,229359
974
- tccli/services/trtc/v20190722/api.json,sha256=PKiqqf_RwhGnKNgkKjMKvOvrY6ZUmP-DpFy7LV318P8,416264
974
+ tccli/services/trtc/v20190722/api.json,sha256=-7hO5N1X-tTdU5FcvzgcmDfDdGpmNS7q1ihaszDTRaQ,416302
975
975
  tccli/services/trtc/v20190722/examples.json,sha256=ng2hwe7b2j6NveS34hOMlyNqSMfUvfyeRPVNgpg_1SM,126340
976
976
  tccli/services/tse/__init__.py,sha256=3Y4ZA_IFX8df4-ir1I9p0u4ksAywRrtd2CAvJ5yKyz0,85
977
977
  tccli/services/tse/tse_client.py,sha256=12oA6Y7x9dySY_XClSkOJMX27wMZS5OAeFjDoNf3Y3s,383576
@@ -1079,8 +1079,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
1079
1079
  tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
1080
1080
  tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
1081
1081
  tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
1082
- tccli-3.0.1385.1.dist-info/METADATA,sha256=n_UpfFjbRrlH7bhMWdtaBwroEkpBdE27dpPfob5VPVw,16406
1083
- tccli-3.0.1385.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
1084
- tccli-3.0.1385.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
1085
- tccli-3.0.1385.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1086
- tccli-3.0.1385.1.dist-info/RECORD,,
1082
+ tccli-3.0.1386.1.dist-info/METADATA,sha256=sUKIe0bSPBWoDXdj-xGo9zOI6OP5d_P6pqHAYn8QdRM,16406
1083
+ tccli-3.0.1386.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
1084
+ tccli-3.0.1386.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
1085
+ tccli-3.0.1386.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1086
+ tccli-3.0.1386.1.dist-info/RECORD,,