tccli-intl-en 3.0.1274.1__py2.py3-none-any.whl → 3.0.1275.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.1274.1'
1
+ __version__ = '3.0.1275.1'
@@ -745,6 +745,58 @@ def doCreateStreamPackageHarvestJob(args, parsed_globals):
745
745
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
746
746
 
747
747
 
748
+ def doBindSSAICDNDomainWithChannel(args, parsed_globals):
749
+ g_param = parse_global_arg(parsed_globals)
750
+
751
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
752
+ cred = credential.CVMRoleCredential()
753
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
754
+ cred = credential.STSAssumeRoleCredential(
755
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
756
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
757
+ )
758
+ 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):
759
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
760
+ else:
761
+ cred = credential.Credential(
762
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
763
+ )
764
+ http_profile = HttpProfile(
765
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
766
+ reqMethod="POST",
767
+ endpoint=g_param[OptionsDefine.Endpoint],
768
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
769
+ )
770
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
771
+ if g_param[OptionsDefine.Language]:
772
+ profile.language = g_param[OptionsDefine.Language]
773
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
774
+ client = mod.MdpClient(cred, g_param[OptionsDefine.Region], profile)
775
+ client._sdkVersion += ("_CLI_" + __version__)
776
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
777
+ model = models.BindSSAICDNDomainWithChannelRequest()
778
+ model.from_json_string(json.dumps(args))
779
+ start_time = time.time()
780
+ while True:
781
+ rsp = client.BindSSAICDNDomainWithChannel(model)
782
+ result = rsp.to_json_string()
783
+ try:
784
+ json_obj = json.loads(result)
785
+ except TypeError as e:
786
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
787
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
788
+ break
789
+ cur_time = time.time()
790
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
791
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
792
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
793
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
794
+ else:
795
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
796
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
797
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
798
+
799
+
748
800
  def doDescribeLinearAssemblyCDNDomainWithChannel(args, parsed_globals):
749
801
  g_param = parse_global_arg(parsed_globals)
750
802
 
@@ -2045,6 +2097,58 @@ def doCreateStreamPackageLinearAssemblyProgram(args, parsed_globals):
2045
2097
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2046
2098
 
2047
2099
 
2100
+ def doDescribeStreamPackageLinearAssemblyChannels(args, parsed_globals):
2101
+ g_param = parse_global_arg(parsed_globals)
2102
+
2103
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
2104
+ cred = credential.CVMRoleCredential()
2105
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
2106
+ cred = credential.STSAssumeRoleCredential(
2107
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
2108
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
2109
+ )
2110
+ 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):
2111
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
2112
+ else:
2113
+ cred = credential.Credential(
2114
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
2115
+ )
2116
+ http_profile = HttpProfile(
2117
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
2118
+ reqMethod="POST",
2119
+ endpoint=g_param[OptionsDefine.Endpoint],
2120
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
2121
+ )
2122
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
2123
+ if g_param[OptionsDefine.Language]:
2124
+ profile.language = g_param[OptionsDefine.Language]
2125
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
2126
+ client = mod.MdpClient(cred, g_param[OptionsDefine.Region], profile)
2127
+ client._sdkVersion += ("_CLI_" + __version__)
2128
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
2129
+ model = models.DescribeStreamPackageLinearAssemblyChannelsRequest()
2130
+ model.from_json_string(json.dumps(args))
2131
+ start_time = time.time()
2132
+ while True:
2133
+ rsp = client.DescribeStreamPackageLinearAssemblyChannels(model)
2134
+ result = rsp.to_json_string()
2135
+ try:
2136
+ json_obj = json.loads(result)
2137
+ except TypeError as e:
2138
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
2139
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
2140
+ break
2141
+ cur_time = time.time()
2142
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
2143
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
2144
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
2145
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
2146
+ else:
2147
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
2148
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
2149
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2150
+
2151
+
2048
2152
  def doDeleteStreamPackageLinearAssemblyPrograms(args, parsed_globals):
2049
2153
  g_param = parse_global_arg(parsed_globals)
2050
2154
 
@@ -2617,7 +2721,7 @@ def doDescribeStreamPackageChannel(args, parsed_globals):
2617
2721
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2618
2722
 
2619
2723
 
2620
- def doDescribeStreamPackageLinearAssemblyChannels(args, parsed_globals):
2724
+ def doUnbindSSAICDNDomainWithChannel(args, parsed_globals):
2621
2725
  g_param = parse_global_arg(parsed_globals)
2622
2726
 
2623
2727
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -2646,11 +2750,11 @@ def doDescribeStreamPackageLinearAssemblyChannels(args, parsed_globals):
2646
2750
  client = mod.MdpClient(cred, g_param[OptionsDefine.Region], profile)
2647
2751
  client._sdkVersion += ("_CLI_" + __version__)
2648
2752
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
2649
- model = models.DescribeStreamPackageLinearAssemblyChannelsRequest()
2753
+ model = models.UnbindSSAICDNDomainWithChannelRequest()
2650
2754
  model.from_json_string(json.dumps(args))
2651
2755
  start_time = time.time()
2652
2756
  while True:
2653
- rsp = client.DescribeStreamPackageLinearAssemblyChannels(model)
2757
+ rsp = client.UnbindSSAICDNDomainWithChannel(model)
2654
2758
  result = rsp.to_json_string()
2655
2759
  try:
2656
2760
  json_obj = json.loads(result)
@@ -3162,6 +3266,7 @@ ACTION_MAP = {
3162
3266
  "ModifyStreamPackageLinearAssemblyProgram": doModifyStreamPackageLinearAssemblyProgram,
3163
3267
  "ModifyStreamPackageSource": doModifyStreamPackageSource,
3164
3268
  "CreateStreamPackageHarvestJob": doCreateStreamPackageHarvestJob,
3269
+ "BindSSAICDNDomainWithChannel": doBindSSAICDNDomainWithChannel,
3165
3270
  "DescribeLinearAssemblyCDNDomainWithChannel": doDescribeLinearAssemblyCDNDomainWithChannel,
3166
3271
  "ModifyStreamPackageChannelEndpoint": doModifyStreamPackageChannelEndpoint,
3167
3272
  "DescribeStreamPackageSSAIUsage": doDescribeStreamPackageSSAIUsage,
@@ -3187,6 +3292,7 @@ ACTION_MAP = {
3187
3292
  "DeleteStreamPackageSource": doDeleteStreamPackageSource,
3188
3293
  "ModifyStreamPackageLinearAssemblyChannel": doModifyStreamPackageLinearAssemblyChannel,
3189
3294
  "CreateStreamPackageLinearAssemblyProgram": doCreateStreamPackageLinearAssemblyProgram,
3295
+ "DescribeStreamPackageLinearAssemblyChannels": doDescribeStreamPackageLinearAssemblyChannels,
3190
3296
  "DeleteStreamPackageLinearAssemblyPrograms": doDeleteStreamPackageLinearAssemblyPrograms,
3191
3297
  "DescribeStreamPackageLinearAssemblyProgramSchedules": doDescribeStreamPackageLinearAssemblyProgramSchedules,
3192
3298
  "DeleteStreamPackageSourceLocation": doDeleteStreamPackageSourceLocation,
@@ -3198,7 +3304,7 @@ ACTION_MAP = {
3198
3304
  "DescribeStreamPackageSourceLocation": doDescribeStreamPackageSourceLocation,
3199
3305
  "DeleteStreamPackageLinearAssemblyChannels": doDeleteStreamPackageLinearAssemblyChannels,
3200
3306
  "DescribeStreamPackageChannel": doDescribeStreamPackageChannel,
3201
- "DescribeStreamPackageLinearAssemblyChannels": doDescribeStreamPackageLinearAssemblyChannels,
3307
+ "UnbindSSAICDNDomainWithChannel": doUnbindSSAICDNDomainWithChannel,
3202
3308
  "DeleteStreamPackageVodRemuxTasks": doDeleteStreamPackageVodRemuxTasks,
3203
3309
  "CreateStreamPackageChannel": doCreateStreamPackageChannel,
3204
3310
  "DescribeStreamPackageSourceLocationAlerts": doDescribeStreamPackageSourceLocationAlerts,
@@ -14,6 +14,13 @@
14
14
  "output": "BindNewLVBDomainWithChannelResponse",
15
15
  "status": "online"
16
16
  },
17
+ "BindSSAICDNDomainWithChannel": {
18
+ "document": "BindSSAICDNDomainWithChannel",
19
+ "input": "BindSSAICDNDomainWithChannelRequest",
20
+ "name": "BindSSAICDNDomainWithChannel",
21
+ "output": "BindSSAICDNDomainWithChannelResponse",
22
+ "status": "online"
23
+ },
17
24
  "CreateStreamPackageChannel": {
18
25
  "document": "This API is used to create a StreamPackage channel.",
19
26
  "input": "CreateStreamPackageChannelRequest",
@@ -419,6 +426,13 @@
419
426
  "name": "UnbindLinearAssemblyCDNDomainWithChannel",
420
427
  "output": "UnbindLinearAssemblyCDNDomainWithChannelResponse",
421
428
  "status": "online"
429
+ },
430
+ "UnbindSSAICDNDomainWithChannel": {
431
+ "document": "UnbindSSAICDNDomainWithChannel",
432
+ "input": "UnbindSSAICDNDomainWithChannelRequest",
433
+ "name": "UnbindSSAICDNDomainWithChannel",
434
+ "output": "UnbindSSAICDNDomainWithChannelResponse",
435
+ "status": "online"
422
436
  }
423
437
  },
424
438
  "metadata": {
@@ -629,6 +643,42 @@
629
643
  ],
630
644
  "type": "object"
631
645
  },
646
+ "BindSSAICDNDomainWithChannelRequest": {
647
+ "document": "BindSSAICDNDomainWithChannel request structure.",
648
+ "members": [
649
+ {
650
+ "disabled": false,
651
+ "document": "Channel Id",
652
+ "example": "ChannelId",
653
+ "member": "string",
654
+ "name": "ChannelId",
655
+ "required": true,
656
+ "type": "string"
657
+ },
658
+ {
659
+ "disabled": false,
660
+ "document": "The domain name for CDN playback.",
661
+ "example": "CdnDomain",
662
+ "member": "string",
663
+ "name": "CdnDomain",
664
+ "required": true,
665
+ "type": "string"
666
+ }
667
+ ],
668
+ "type": "object"
669
+ },
670
+ "BindSSAICDNDomainWithChannelResponse": {
671
+ "document": "BindSSAICDNDomainWithChannel response structure.",
672
+ "members": [
673
+ {
674
+ "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.",
675
+ "member": "string",
676
+ "name": "RequestId",
677
+ "type": "string"
678
+ }
679
+ ],
680
+ "type": "object"
681
+ },
632
682
  "CacheInfo": {
633
683
  "document": "Cache configuration",
634
684
  "members": [
@@ -6613,6 +6663,42 @@
6613
6663
  ],
6614
6664
  "type": "object"
6615
6665
  },
6666
+ "UnbindSSAICDNDomainWithChannelRequest": {
6667
+ "document": "UnbindSSAICDNDomainWithChannel request structure.",
6668
+ "members": [
6669
+ {
6670
+ "disabled": false,
6671
+ "document": "Channel Id",
6672
+ "example": "ChannelId",
6673
+ "member": "string",
6674
+ "name": "ChannelId",
6675
+ "required": true,
6676
+ "type": "string"
6677
+ },
6678
+ {
6679
+ "disabled": false,
6680
+ "document": "The domain name for CDN playback.",
6681
+ "example": "CdnDomain",
6682
+ "member": "string",
6683
+ "name": "CdnDomain",
6684
+ "required": true,
6685
+ "type": "string"
6686
+ }
6687
+ ],
6688
+ "type": "object"
6689
+ },
6690
+ "UnbindSSAICDNDomainWithChannelResponse": {
6691
+ "document": "UnbindSSAICDNDomainWithChannel response structure.",
6692
+ "members": [
6693
+ {
6694
+ "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.",
6695
+ "member": "string",
6696
+ "name": "RequestId",
6697
+ "type": "string"
6698
+ }
6699
+ ],
6700
+ "type": "object"
6701
+ },
6616
6702
  "UsageDetail": {
6617
6703
  "document": "Ad insertion configuration and SSAI usage detail by advertisement type dimension.",
6618
6704
  "members": [
@@ -16,6 +16,14 @@
16
16
  "title": "Sample request"
17
17
  }
18
18
  ],
19
+ "BindSSAICDNDomainWithChannel": [
20
+ {
21
+ "document": "SSAI Channel binding CDN playback domain name.",
22
+ "input": "POST / HTTP/1.1\nHost: mdp.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: BindSSAICDNDomainWithChannel\n<Public request parameters>\n\n{\n \"ChannelId\": \"68F6FB29000040E1DC40\",\n \"CdnDomain\": \"xxx\"\n}",
23
+ "output": "{\n \"Response\": {\n \"RequestId\": \"85bc94cc-9e55-4400-bf1b-f45dd12089\"\n }\n}",
24
+ "title": "Request Example"
25
+ }
26
+ ],
19
27
  "CreateStreamPackageChannel": [
20
28
  {
21
29
  "document": " ",
@@ -479,6 +487,14 @@
479
487
  "output": "{\n \"Response\": {\n \"RequestId\": \"XXXREQ\"\n }\n}",
480
488
  "title": "Sample request"
481
489
  }
490
+ ],
491
+ "UnbindSSAICDNDomainWithChannel": [
492
+ {
493
+ "document": "Cancel the association between the channel and CDN playback domain.",
494
+ "input": "POST / HTTP/1.1\nHost: mdp.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UnbindSSAICDNDomainWithChannel\n<Public request parameters>\n\n{\n \"ChannelId\": \"68F6FB29000040E1DC40\",\n \"CdnDomain\": \"xxx\"\n}",
495
+ "output": "{\n \"Response\": {\n \"RequestId\": \"85bc94cc-9e55-4400-bf1b-f45dd1208990\"\n }\n}",
496
+ "title": "Request Example"
497
+ }
482
498
  ]
483
499
  },
484
500
  "version": "1.0"
@@ -69,6 +69,58 @@ def doTerminateDBInstances(args, parsed_globals):
69
69
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
70
70
 
71
71
 
72
+ def doDescribeDBInstanceNodeProperty(args, parsed_globals):
73
+ g_param = parse_global_arg(parsed_globals)
74
+
75
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
76
+ cred = credential.CVMRoleCredential()
77
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
78
+ cred = credential.STSAssumeRoleCredential(
79
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
80
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
81
+ )
82
+ 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):
83
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
84
+ else:
85
+ cred = credential.Credential(
86
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
87
+ )
88
+ http_profile = HttpProfile(
89
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
90
+ reqMethod="POST",
91
+ endpoint=g_param[OptionsDefine.Endpoint],
92
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
93
+ )
94
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
95
+ if g_param[OptionsDefine.Language]:
96
+ profile.language = g_param[OptionsDefine.Language]
97
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
98
+ client = mod.MongodbClient(cred, g_param[OptionsDefine.Region], profile)
99
+ client._sdkVersion += ("_CLI_" + __version__)
100
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
101
+ model = models.DescribeDBInstanceNodePropertyRequest()
102
+ model.from_json_string(json.dumps(args))
103
+ start_time = time.time()
104
+ while True:
105
+ rsp = client.DescribeDBInstanceNodeProperty(model)
106
+ result = rsp.to_json_string()
107
+ try:
108
+ json_obj = json.loads(result)
109
+ except TypeError as e:
110
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
111
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
112
+ break
113
+ cur_time = time.time()
114
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
115
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
116
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
117
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
118
+ else:
119
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
120
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
121
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
122
+
123
+
72
124
  def doDescribeDBInstanceDeal(args, parsed_globals):
73
125
  g_param = parse_global_arg(parsed_globals)
74
126
 
@@ -1693,6 +1745,7 @@ MODELS_MAP = {
1693
1745
 
1694
1746
  ACTION_MAP = {
1695
1747
  "TerminateDBInstances": doTerminateDBInstances,
1748
+ "DescribeDBInstanceNodeProperty": doDescribeDBInstanceNodeProperty,
1696
1749
  "DescribeDBInstanceDeal": doDescribeDBInstanceDeal,
1697
1750
  "DescribeDBInstanceNamespace": doDescribeDBInstanceNamespace,
1698
1751
  "DescribeClientConnections": doDescribeClientConnections,
@@ -77,6 +77,13 @@
77
77
  "output": "DescribeDBInstanceNamespaceResponse",
78
78
  "status": "online"
79
79
  },
80
+ "DescribeDBInstanceNodeProperty": {
81
+ "document": "This API is used to query node attributes, such as the AZ, node name, address, role, status, delay between primary and secondary nodes, priority, voting right, and tags.",
82
+ "input": "DescribeDBInstanceNodePropertyRequest",
83
+ "name": "Queries node attributes",
84
+ "output": "DescribeDBInstanceNodePropertyResponse",
85
+ "status": "online"
86
+ },
80
87
  "DescribeDBInstances": {
81
88
  "document": "This API is used to query the list of TencentDB for MongoDB instances. It supports filtering primary instances, disaster recovery instances, and read-only instances by project ID, instance ID, instance status, and other conditions.",
82
89
  "input": "DescribeDBInstancesRequest",
@@ -1835,6 +1842,107 @@
1835
1842
  ],
1836
1843
  "type": "object"
1837
1844
  },
1845
+ "DescribeDBInstanceNodePropertyRequest": {
1846
+ "document": "DescribeDBInstanceNodeProperty request structure.",
1847
+ "members": [
1848
+ {
1849
+ "disabled": false,
1850
+ "document": "Instance ID. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), and copy the instance ID from the instance list.",
1851
+ "example": "cmgo-p8vnipr5",
1852
+ "member": "string",
1853
+ "name": "InstanceId",
1854
+ "required": true,
1855
+ "type": "string"
1856
+ },
1857
+ {
1858
+ "disabled": false,
1859
+ "document": "Node ID. Log in to the [TencentDB for MongoDB console](https://console.cloud.tencent.com/mongodb), go to Node Management, and copy the node ID.",
1860
+ "example": "[\"cmgo-6heje4jp_0-node-slave0\",\"cmgo-6heje4jp_1-node-slave0\"]",
1861
+ "member": "string",
1862
+ "name": "NodeIds",
1863
+ "required": false,
1864
+ "type": "list"
1865
+ },
1866
+ {
1867
+ "disabled": false,
1868
+ "document": "Node role. Valid values:\n- PRIMARY: primary node.\n- SECONDARY: secondary node.\n- READONLY: read-only node.\n- ARBITER: arbitration node.",
1869
+ "example": "[\"PRIMARY\"]",
1870
+ "member": "string",
1871
+ "name": "Roles",
1872
+ "required": false,
1873
+ "type": "list"
1874
+ },
1875
+ {
1876
+ "disabled": false,
1877
+ "document": "Whether the node is a hidden node. Default value: false.",
1878
+ "example": "false",
1879
+ "member": "bool",
1880
+ "name": "OnlyHidden",
1881
+ "required": false,
1882
+ "type": "bool"
1883
+ },
1884
+ {
1885
+ "disabled": false,
1886
+ "document": "Priority of the node for electing it as the new primary node. Value range: [0, 100]. A larger value indicates a higher priority.",
1887
+ "example": "10",
1888
+ "member": "int64",
1889
+ "name": "Priority",
1890
+ "required": false,
1891
+ "type": "int"
1892
+ },
1893
+ {
1894
+ "disabled": false,
1895
+ "document": "Node voting right.- 1: The node has the right to vote.\n- 0: The node does not have the right to vote.",
1896
+ "example": "1",
1897
+ "member": "int64",
1898
+ "name": "Votes",
1899
+ "required": false,
1900
+ "type": "int"
1901
+ },
1902
+ {
1903
+ "disabled": false,
1904
+ "document": "Node tag.",
1905
+ "example": "无",
1906
+ "member": "NodeTag",
1907
+ "name": "Tags",
1908
+ "required": false,
1909
+ "type": "list"
1910
+ }
1911
+ ],
1912
+ "type": "object"
1913
+ },
1914
+ "DescribeDBInstanceNodePropertyResponse": {
1915
+ "document": "DescribeDBInstanceNodeProperty response structure.",
1916
+ "members": [
1917
+ {
1918
+ "disabled": false,
1919
+ "document": "Mongos node attributes.",
1920
+ "example": "无",
1921
+ "member": "NodeProperty",
1922
+ "name": "Mongos",
1923
+ "output_required": false,
1924
+ "type": "list",
1925
+ "value_allowed_null": false
1926
+ },
1927
+ {
1928
+ "disabled": false,
1929
+ "document": "Replica set node information.",
1930
+ "example": "无",
1931
+ "member": "ReplicateSetInfo",
1932
+ "name": "ReplicateSets",
1933
+ "output_required": true,
1934
+ "type": "list",
1935
+ "value_allowed_null": false
1936
+ },
1937
+ {
1938
+ "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.",
1939
+ "member": "string",
1940
+ "name": "RequestId",
1941
+ "type": "string"
1942
+ }
1943
+ ],
1944
+ "type": "object"
1945
+ },
1838
1946
  "DescribeDBInstancesRequest": {
1839
1947
  "document": "DescribeDBInstances request structure.",
1840
1948
  "members": [
@@ -3967,6 +4075,160 @@
3967
4075
  ],
3968
4076
  "usage": "in"
3969
4077
  },
4078
+ "NodeProperty": {
4079
+ "document": "Node attributes.",
4080
+ "members": [
4081
+ {
4082
+ "disabled": false,
4083
+ "document": "Node AZ.",
4084
+ "example": "ap-guangzhou-1",
4085
+ "member": "string",
4086
+ "name": "Zone",
4087
+ "output_required": false,
4088
+ "type": "string",
4089
+ "value_allowed_null": false
4090
+ },
4091
+ {
4092
+ "disabled": false,
4093
+ "document": "Node name.",
4094
+ "example": "cmgo-ocdv****_0-node-primary",
4095
+ "member": "string",
4096
+ "name": "NodeName",
4097
+ "output_required": false,
4098
+ "type": "string",
4099
+ "value_allowed_null": false
4100
+ },
4101
+ {
4102
+ "disabled": false,
4103
+ "document": "Node access address.",
4104
+ "example": "10.4.0.7:30000",
4105
+ "member": "string",
4106
+ "name": "Address",
4107
+ "output_required": false,
4108
+ "type": "string",
4109
+ "value_allowed_null": false
4110
+ },
4111
+ {
4112
+ "disabled": false,
4113
+ "document": "Public network access address (IP address or domain name) of the node. The example value is an IP address.",
4114
+ "example": "113.0.**.**:27017",
4115
+ "member": "string",
4116
+ "name": "WanServiceAddress",
4117
+ "output_required": false,
4118
+ "type": "string",
4119
+ "value_allowed_null": false
4120
+ },
4121
+ {
4122
+ "disabled": false,
4123
+ "document": "Node role.\n- PRIMARY: primary node.\n- SECONDARY: secondary node.\n- READONLY: read-only node.\n- ARBITER: arbitration node.",
4124
+ "example": "PRIMARY",
4125
+ "member": "string",
4126
+ "name": "Role",
4127
+ "output_required": false,
4128
+ "type": "string",
4129
+ "value_allowed_null": false
4130
+ },
4131
+ {
4132
+ "disabled": false,
4133
+ "document": "Whether the node is a hidden node.\n- true: a hidden node.\n- false: not a hidden node.",
4134
+ "example": "false",
4135
+ "member": "bool",
4136
+ "name": "Hidden",
4137
+ "output_required": false,
4138
+ "type": "bool",
4139
+ "value_allowed_null": false
4140
+ },
4141
+ {
4142
+ "disabled": false,
4143
+ "document": "Node status.\n- NORMAL: running normally.\n- STARTUP: starting.\n- STARTUP2: starting and processing the intermediate data.\n- RECOVERING: recovering and not available.\n- DOWN: offline.\n- UNKNOWN: unknown status.\n- ROLLBACK: rolling back.\n- REMOVED: removed.",
4144
+ "example": "NORMAL",
4145
+ "member": "string",
4146
+ "name": "Status",
4147
+ "output_required": false,
4148
+ "type": "string",
4149
+ "value_allowed_null": false
4150
+ },
4151
+ {
4152
+ "disabled": false,
4153
+ "document": "Delay time of primary-secondary synchronization, in seconds.",
4154
+ "example": "1",
4155
+ "member": "int64",
4156
+ "name": "SlaveDelay",
4157
+ "output_required": false,
4158
+ "type": "int",
4159
+ "value_allowed_null": false
4160
+ },
4161
+ {
4162
+ "disabled": false,
4163
+ "document": "Node priority. Value range: [0, 100]. A larger value indicates a higher priority.",
4164
+ "example": "10",
4165
+ "member": "int64",
4166
+ "name": "Priority",
4167
+ "output_required": false,
4168
+ "type": "int",
4169
+ "value_allowed_null": false
4170
+ },
4171
+ {
4172
+ "disabled": false,
4173
+ "document": "Node voting right.\n- 1: The node has the right to vote.\n- 0: The node does not have the right to vote.",
4174
+ "example": "1",
4175
+ "member": "int64",
4176
+ "name": "Votes",
4177
+ "output_required": false,
4178
+ "type": "int",
4179
+ "value_allowed_null": false
4180
+ },
4181
+ {
4182
+ "disabled": false,
4183
+ "document": "Node tag.\nNote: This field may return null, indicating that no valid values can be obtained.",
4184
+ "example": "[{\"TagKey\":\"role-cmgo\",\"TagValue\":\"primary-secondary-group\"}]",
4185
+ "member": "NodeTag",
4186
+ "name": "Tags",
4187
+ "output_required": false,
4188
+ "type": "list",
4189
+ "value_allowed_null": true
4190
+ },
4191
+ {
4192
+ "disabled": false,
4193
+ "document": "Replica set ID.",
4194
+ "example": "cmgo-ocdv****_0",
4195
+ "member": "string",
4196
+ "name": "ReplicateSetId",
4197
+ "output_required": false,
4198
+ "type": "string",
4199
+ "value_allowed_null": false
4200
+ }
4201
+ ],
4202
+ "usage": "out"
4203
+ },
4204
+ "NodeTag": {
4205
+ "document": "Node tag.",
4206
+ "members": [
4207
+ {
4208
+ "disabled": false,
4209
+ "document": "Node tag key.",
4210
+ "example": "testKey",
4211
+ "member": "string",
4212
+ "name": "TagKey",
4213
+ "output_required": false,
4214
+ "required": false,
4215
+ "type": "string",
4216
+ "value_allowed_null": false
4217
+ },
4218
+ {
4219
+ "disabled": false,
4220
+ "document": "Node tag value.",
4221
+ "example": "testValue",
4222
+ "member": "string",
4223
+ "name": "TagValue",
4224
+ "output_required": false,
4225
+ "required": false,
4226
+ "type": "string",
4227
+ "value_allowed_null": false
4228
+ }
4229
+ ],
4230
+ "usage": "both"
4231
+ },
3970
4232
  "OfflineIsolatedDBInstanceRequest": {
3971
4233
  "document": "OfflineIsolatedDBInstance request structure.",
3972
4234
  "members": [
@@ -4124,6 +4386,22 @@
4124
4386
  ],
4125
4387
  "usage": "in"
4126
4388
  },
4389
+ "ReplicateSetInfo": {
4390
+ "document": "Replica set information.",
4391
+ "members": [
4392
+ {
4393
+ "disabled": false,
4394
+ "document": "Node attributes.",
4395
+ "example": "无",
4396
+ "member": "NodeProperty",
4397
+ "name": "Nodes",
4398
+ "output_required": false,
4399
+ "type": "list",
4400
+ "value_allowed_null": false
4401
+ }
4402
+ ],
4403
+ "usage": "out"
4404
+ },
4127
4405
  "ResetDBInstancePasswordRequest": {
4128
4406
  "document": "ResetDBInstancePassword request structure.",
4129
4407
  "members": [
@@ -94,6 +94,14 @@
94
94
  "title": "Querying All Collections of the Specified Database"
95
95
  }
96
96
  ],
97
+ "DescribeDBInstanceNodeProperty": [
98
+ {
99
+ "document": "This example shows you how to query the detailed attributes of an instance node.",
100
+ "input": "POST / HTTP/1.1\nHost: mongodb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDBInstanceNodeProperty\n<Common request parameters>\n\n{\n \"InstanceId\": \"cmgo-by909vwp\"\n}",
101
+ "output": "{\n \"Response\": {\n \"Mongos\": [\n {\n \"Address\": \"10.8.16.37:30000\",\n \"Hidden\": false,\n \"NodeName\": \"mongos-0\",\n \"Priority\": 0,\n \"ReplicateSetId\": \"\",\n \"Role\": \"MONGOS\",\n \"SlaveDelay\": 0,\n \"Status\": \"NORMAL\",\n \"Tags\": [\n {\n \"TagKey\": \"role-cmgo\",\n \"TagValue\": \"primary-secondary-group\"\n }\n ],\n \"Votes\": 0,\n \"Zone\": \"ap-guangzhou-3\",\n \"WanServiceAddress\": \"\"\n }\n ],\n \"ReplicateSets\": [\n {\n \"Nodes\": [\n {\n \"Address\": \"\",\n \"Hidden\": false,\n \"NodeName\": \"cmgo-by909vwp_0-node-slave0\",\n \"Priority\": 1,\n \"ReplicateSetId\": \"cmgo-by909vwp_0\",\n \"Role\": \"SECONDARY\",\n \"SlaveDelay\": 0,\n \"Status\": \"NORMAL\",\n \"WanServiceAddress\": \"\",\n \"Tags\": [\n {\n \"TagKey\": \"role-cmgo\",\n \"TagValue\": \"primary-secondary-group\"\n }\n ],\n \"Votes\": 1,\n \"Zone\": \"ap-guangzhou-3\"\n }\n ]\n },\n {\n \"Nodes\": [\n {\n \"Address\": \"\",\n \"Hidden\": false,\n \"NodeName\": \"cmgo-by909vwp_1-node-slave0\",\n \"Priority\": 1,\n \"ReplicateSetId\": \"cmgo-by909vwp_1\",\n \"Role\": \"SECONDARY\",\n \"SlaveDelay\": 0,\n \"Status\": \"NORMAL\",\n \"WanServiceAddress\": \"\",\n \"Tags\": [\n {\n \"TagKey\": \"role-cmgo\",\n \"TagValue\": \"primary-secondary-group\"\n }\n ],\n \"Votes\": 1,\n \"Zone\": \"ap-guangzhou-3\"\n },\n {\n \"Address\": \"\",\n \"Hidden\": false,\n \"NodeName\": \"cmgo-by909vwp_1-node-primary\",\n \"Priority\": 1,\n \"ReplicateSetId\": \"cmgo-by909vwp_1\",\n \"Role\": \"PRIMARY\",\n \"SlaveDelay\": 0,\n \"Status\": \"NORMAL\",\n \"WanServiceAddress\": \"\",\n \"Tags\": [\n {\n \"TagKey\": \"role-cmgo\",\n \"TagValue\": \"primary-secondary-group\"\n }\n ],\n \"Votes\": 1,\n \"Zone\": \"ap-guangzhou-3\"\n },\n {\n \"Address\": \"\",\n \"Hidden\": true,\n \"NodeName\": \"cmgo-by909vwp_1-node-slave1\",\n \"Priority\": 0,\n \"ReplicateSetId\": \"cmgo-by909vwp_1\",\n \"Role\": \"SECONDARY\",\n \"SlaveDelay\": 0,\n \"Status\": \"NORMAL\",\n \"WanServiceAddress\": \"\",\n \"Tags\": [\n {\n \"TagKey\": \"role-cmgo\",\n \"TagValue\": \"primary-secondary-group\"\n }\n ],\n \"Votes\": 1,\n \"Zone\": \"ap-guangzhou-3\"\n }\n ]\n }\n ],\n \"RequestId\": \"14ab088a-9d69-44b4-b39d-e4b8fbbb8f25\"\n }\n}",
102
+ "title": "Querying the Information on an Instance Node"
103
+ }
104
+ ],
97
105
  "DescribeDBInstances": [
98
106
  {
99
107
  "document": "Query Instance List",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli-intl-en
3
- Version: 3.0.1274.1
3
+ Version: 3.0.1275.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.1274)
25
+ Requires-Dist: tencentcloud-sdk-python-intl-en (>=3.0.1275)
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=Z1GBvCIxcThPpJUdaIeoQeqORhnP62VUIN5UTS4ohd0,28
1
+ tccli/__init__.py,sha256=uqkDN3t9C3Mn4FrMvy-67hNcbmPNExu_IjKxwOA2Byo,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
@@ -365,17 +365,17 @@ tccli/services/mdl/mdl_client.py,sha256=hdAN7CE9gdsMhmPOULI2lXjNqbBaqYfQV9ePIKUf
365
365
  tccli/services/mdl/v20200326/api.json,sha256=KZbcyxEIFcA78GyDdQ3iSzv55IaTA75oXZIJOo2qCj0,253610
366
366
  tccli/services/mdl/v20200326/examples.json,sha256=tDQsDXfN_UUzr2JPhz570EGKYpLkxI3ksrr7G5gEWdk,39075
367
367
  tccli/services/mdp/__init__.py,sha256=RALYmSbMGl9MqSjDHzxRemmg_ctfsVSsmU_3fv_LQxw,85
368
- tccli/services/mdp/mdp_client.py,sha256=rezCY1QNXfQptqoHpKR8q3PNyRoUSOeI-mGo-n_1wCE,196256
369
- tccli/services/mdp/v20200527/api.json,sha256=ltKre7E0ItyHaZkvlowMJgyPoP-tJ49qiNCjftio06U,228931
370
- tccli/services/mdp/v20200527/examples.json,sha256=PDvHpE7ubWEH25sQ4wjcGUwBlWCiwyamHWOD7jndKac,73935
368
+ tccli/services/mdp/mdp_client.py,sha256=EXgc1-vor31glB15wGXx7g4NNha8KD7_Tw0z-ewPIAI,202540
369
+ tccli/services/mdp/v20200527/api.json,sha256=PiVBh6UDvj7yqz7h7mzfenwPVzRwy8bNXdyKKETmb-g,231911
370
+ tccli/services/mdp/v20200527/examples.json,sha256=ljpRmaqQ2BPekLYCd6jI1poUS35K4_q-O1xyBPvUgZk,75034
371
371
  tccli/services/message/__init__.py,sha256=vnNA6jQOTL7gkCko1DDyKAeq0Gyey4Oiyi0ZbQM6L3M,93
372
372
  tccli/services/message/message_client.py,sha256=GJRZ7V8wV3qQOmWMqRQQprEdcGkLSETQSkF_4u5IDV8,9285
373
373
  tccli/services/message/v20181225/api.json,sha256=0b7N_NnQbMS9W3zgCwCAakJG9aGMuKV7ChF7J1Xf52Q,2095
374
374
  tccli/services/message/v20181225/examples.json,sha256=fnOlNGWK56ef0FASe2MwKz7Mk-FCwgfwaiGcp7YnNFY,485
375
375
  tccli/services/mongodb/__init__.py,sha256=Xj1cMJt16_OaoYzXR0TgIRPw-DADd-yJkmk3CeEpvk0,93
376
- tccli/services/mongodb/mongodb_client.py,sha256=7OudFH6rqX7l7N1Ba2xZnTkFnLFtCmBg47aJfI41STA,105761
377
- tccli/services/mongodb/v20190725/api.json,sha256=4-F3zq4OYnAB0QHIHL1JfeE-1DcFbTk1p-gLtyGTr54,198383
378
- tccli/services/mongodb/v20190725/examples.json,sha256=le5RNANseaTED0-aHw7Z3PL3fXLHHjPzJV-sW2t2Ecs,39861
376
+ tccli/services/mongodb/mongodb_client.py,sha256=es7FCU2SL6tdqkJNkjLpBuiyt0F-CTfuX40a54ELLaA,108912
377
+ tccli/services/mongodb/v20190725/api.json,sha256=UBpZAvgZc1A5m0RIJ55G41oSaDwR01dLq146NNDjrok,207981
378
+ tccli/services/mongodb/v20190725/examples.json,sha256=eAn-2x5_fHqDwblKtaZvkjuyBiXmYeZC9PP31mwTxKs,44828
379
379
  tccli/services/monitor/__init__.py,sha256=Fqyy64XBMByiqJHyjxbaJeQDJAGMyktujsYRmXhosc8,93
380
380
  tccli/services/monitor/monitor_client.py,sha256=fFdnKO5jhDDXz_eXVKqR6kZBPjnnd-g1TdooMMEOmb4,471203
381
381
  tccli/services/monitor/v20180724/api.json,sha256=UdIvQPCjSf5x6ePGhyK06TXCWMezI1NldtoSWcrJ8y0,660877
@@ -592,9 +592,9 @@ tccli/services/yunjing/__init__.py,sha256=8HTKN8_ow1j67tspqAbBMQgeteXAagLvtb9WAf
592
592
  tccli/services/yunjing/yunjing_client.py,sha256=Vh5vFOLjDJ53q_RX9WADwLT610kGcUxwCmtny95k3js,226485
593
593
  tccli/services/yunjing/v20180228/api.json,sha256=zYojacZyPgPCi71CLBjuHsQR9mIxcZjCX5JwA9TYr1s,173428
594
594
  tccli/services/yunjing/v20180228/examples.json,sha256=j3GL3TtNTkZpNLlksz0nJNCVDxYGUqfRqOt94Y-P8OE,58723
595
- tccli_intl_en-3.0.1274.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
596
- tccli_intl_en-3.0.1274.1.dist-info/METADATA,sha256=mmBmaUZDYDZrNQmcKb84qS-EhGpW8oaSDtOkRA3cfSQ,3092
597
- tccli_intl_en-3.0.1274.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
598
- tccli_intl_en-3.0.1274.1.dist-info/entry_points.txt,sha256=68P7ZjqXFm4zPWf5RsAVabzbECUWYFB2VyUnnv8XgMI,86
599
- tccli_intl_en-3.0.1274.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
600
- tccli_intl_en-3.0.1274.1.dist-info/RECORD,,
595
+ tccli_intl_en-3.0.1275.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
596
+ tccli_intl_en-3.0.1275.1.dist-info/METADATA,sha256=V2XCC1HIpTq9WDXS9XIXpP81Df55hgdYcufcJUHGeVE,3092
597
+ tccli_intl_en-3.0.1275.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
598
+ tccli_intl_en-3.0.1275.1.dist-info/entry_points.txt,sha256=68P7ZjqXFm4zPWf5RsAVabzbECUWYFB2VyUnnv8XgMI,86
599
+ tccli_intl_en-3.0.1275.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
600
+ tccli_intl_en-3.0.1275.1.dist-info/RECORD,,