tccli-intl-en 3.0.1268.1__py2.py3-none-any.whl → 3.0.1270.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/__init__.py +3 -0
- tccli/services/cvm/v20170312/api.json +43 -33
- tccli/services/cvm/v20170312/examples.json +12 -12
- tccli/services/dlc/dlc_client.py +114 -8
- tccli/services/dlc/v20210125/api.json +252 -7
- tccli/services/dlc/v20210125/examples.json +16 -0
- tccli/services/faceid/v20180301/examples.json +1 -1
- tccli/services/mdl/v20200326/api.json +41 -11
- tccli/services/mdl/v20200326/examples.json +16 -16
- tccli/services/mdp/v20200527/api.json +60 -14
- tccli/services/mdp/v20200527/examples.json +79 -79
- tccli/services/message/__init__.py +4 -0
- tccli/services/message/message_client.py +207 -0
- tccli/services/message/v20181225/api.json +72 -0
- tccli/services/message/v20181225/examples.json +13 -0
- tccli/services/teo/v20220901/api.json +3 -3
- {tccli_intl_en-3.0.1268.1.dist-info → tccli_intl_en-3.0.1270.1.dist-info}/METADATA +2 -2
- {tccli_intl_en-3.0.1268.1.dist-info → tccli_intl_en-3.0.1270.1.dist-info}/RECORD +23 -19
- {tccli_intl_en-3.0.1268.1.dist-info → tccli_intl_en-3.0.1270.1.dist-info}/LICENSE +0 -0
- {tccli_intl_en-3.0.1268.1.dist-info → tccli_intl_en-3.0.1270.1.dist-info}/WHEEL +0 -0
- {tccli_intl_en-3.0.1268.1.dist-info → tccli_intl_en-3.0.1270.1.dist-info}/entry_points.txt +0 -0
- {tccli_intl_en-3.0.1268.1.dist-info → tccli_intl_en-3.0.1270.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
import os
|
|
3
|
+
import sys
|
|
4
|
+
import six
|
|
5
|
+
import json
|
|
6
|
+
import tccli.options_define as OptionsDefine
|
|
7
|
+
import tccli.format_output as FormatOutput
|
|
8
|
+
from tccli import __version__
|
|
9
|
+
from tccli.utils import Utils
|
|
10
|
+
from tccli.exceptions import ConfigurationError, ClientError, ParamError
|
|
11
|
+
from tencentcloud.common import credential
|
|
12
|
+
from tencentcloud.common.profile.http_profile import HttpProfile
|
|
13
|
+
from tencentcloud.common.profile.client_profile import ClientProfile
|
|
14
|
+
from tencentcloud.message.v20181225 import message_client as message_client_v20181225
|
|
15
|
+
from tencentcloud.message.v20181225 import models as models_v20181225
|
|
16
|
+
|
|
17
|
+
from jmespath import search
|
|
18
|
+
import time
|
|
19
|
+
|
|
20
|
+
def doModifySendChannelOnMsgTypes(args, parsed_globals):
|
|
21
|
+
g_param = parse_global_arg(parsed_globals)
|
|
22
|
+
|
|
23
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
|
24
|
+
cred = credential.CVMRoleCredential()
|
|
25
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
|
26
|
+
cred = credential.STSAssumeRoleCredential(
|
|
27
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
|
28
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
|
29
|
+
)
|
|
30
|
+
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):
|
|
31
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
|
32
|
+
else:
|
|
33
|
+
cred = credential.Credential(
|
|
34
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
|
35
|
+
)
|
|
36
|
+
http_profile = HttpProfile(
|
|
37
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
|
38
|
+
reqMethod="POST",
|
|
39
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
|
40
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
|
41
|
+
)
|
|
42
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
|
43
|
+
if g_param[OptionsDefine.Language]:
|
|
44
|
+
profile.language = g_param[OptionsDefine.Language]
|
|
45
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
|
46
|
+
client = mod.MessageClient(cred, g_param[OptionsDefine.Region], profile)
|
|
47
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
|
48
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
|
49
|
+
model = models.ModifySendChannelOnMsgTypesRequest()
|
|
50
|
+
model.from_json_string(json.dumps(args))
|
|
51
|
+
start_time = time.time()
|
|
52
|
+
while True:
|
|
53
|
+
rsp = client.ModifySendChannelOnMsgTypes(model)
|
|
54
|
+
result = rsp.to_json_string()
|
|
55
|
+
try:
|
|
56
|
+
json_obj = json.loads(result)
|
|
57
|
+
except TypeError as e:
|
|
58
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
|
59
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
|
60
|
+
break
|
|
61
|
+
cur_time = time.time()
|
|
62
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
|
63
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
|
64
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
|
65
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
|
66
|
+
else:
|
|
67
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
|
68
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
|
69
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
CLIENT_MAP = {
|
|
73
|
+
"v20181225": message_client_v20181225,
|
|
74
|
+
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
MODELS_MAP = {
|
|
78
|
+
"v20181225": models_v20181225,
|
|
79
|
+
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
ACTION_MAP = {
|
|
83
|
+
"ModifySendChannelOnMsgTypes": doModifySendChannelOnMsgTypes,
|
|
84
|
+
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
AVAILABLE_VERSION_LIST = [
|
|
88
|
+
"v20181225",
|
|
89
|
+
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
def action_caller():
|
|
94
|
+
return ACTION_MAP
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
def parse_global_arg(parsed_globals):
|
|
98
|
+
g_param = parsed_globals
|
|
99
|
+
cvm_role_flag = True
|
|
100
|
+
for param in parsed_globals.keys():
|
|
101
|
+
if param in [OptionsDefine.SecretKey, OptionsDefine.SecretId, OptionsDefine.RoleArn,
|
|
102
|
+
OptionsDefine.RoleSessionName]:
|
|
103
|
+
if parsed_globals[param] is not None:
|
|
104
|
+
cvm_role_flag = False
|
|
105
|
+
break
|
|
106
|
+
is_exist_profile = True
|
|
107
|
+
if not parsed_globals["profile"]:
|
|
108
|
+
is_exist_profile = False
|
|
109
|
+
g_param["profile"] = os.environ.get("TCCLI_PROFILE", "default")
|
|
110
|
+
|
|
111
|
+
configure_path = os.path.join(os.path.expanduser("~"), ".tccli")
|
|
112
|
+
is_conf_exist, conf_path = Utils.file_existed(configure_path, g_param["profile"] + ".configure")
|
|
113
|
+
is_cred_exist, cred_path = Utils.file_existed(configure_path, g_param["profile"] + ".credential")
|
|
114
|
+
|
|
115
|
+
conf = {}
|
|
116
|
+
cred = {}
|
|
117
|
+
|
|
118
|
+
if is_conf_exist:
|
|
119
|
+
conf = Utils.load_json_msg(conf_path)
|
|
120
|
+
if is_cred_exist:
|
|
121
|
+
cred = Utils.load_json_msg(cred_path)
|
|
122
|
+
|
|
123
|
+
if not (isinstance(conf, dict) and isinstance(cred, dict)):
|
|
124
|
+
raise ConfigurationError(
|
|
125
|
+
"file: %s or %s is not json format"
|
|
126
|
+
% (g_param["profile"] + ".configure", g_param["profile"] + ".credential"))
|
|
127
|
+
|
|
128
|
+
if OptionsDefine.Token not in cred:
|
|
129
|
+
cred[OptionsDefine.Token] = None
|
|
130
|
+
|
|
131
|
+
if not is_exist_profile:
|
|
132
|
+
if os.environ.get(OptionsDefine.ENV_SECRET_ID) and os.environ.get(OptionsDefine.ENV_SECRET_KEY):
|
|
133
|
+
cred[OptionsDefine.SecretId] = os.environ.get(OptionsDefine.ENV_SECRET_ID)
|
|
134
|
+
cred[OptionsDefine.SecretKey] = os.environ.get(OptionsDefine.ENV_SECRET_KEY)
|
|
135
|
+
cred[OptionsDefine.Token] = os.environ.get(OptionsDefine.ENV_TOKEN)
|
|
136
|
+
cvm_role_flag = False
|
|
137
|
+
|
|
138
|
+
if os.environ.get(OptionsDefine.ENV_REGION):
|
|
139
|
+
conf[OptionsDefine.SysParam][OptionsDefine.Region] = os.environ.get(OptionsDefine.ENV_REGION)
|
|
140
|
+
|
|
141
|
+
if os.environ.get(OptionsDefine.ENV_ROLE_ARN) and os.environ.get(OptionsDefine.ENV_ROLE_SESSION_NAME):
|
|
142
|
+
cred[OptionsDefine.RoleArn] = os.environ.get(OptionsDefine.ENV_ROLE_ARN)
|
|
143
|
+
cred[OptionsDefine.RoleSessionName] = os.environ.get(OptionsDefine.ENV_ROLE_SESSION_NAME)
|
|
144
|
+
cvm_role_flag = False
|
|
145
|
+
|
|
146
|
+
if cvm_role_flag:
|
|
147
|
+
if "type" in cred and cred["type"] == "cvm-role":
|
|
148
|
+
g_param[OptionsDefine.UseCVMRole.replace('-', '_')] = True
|
|
149
|
+
|
|
150
|
+
for param in g_param.keys():
|
|
151
|
+
if g_param[param] is None:
|
|
152
|
+
if param in [OptionsDefine.SecretKey, OptionsDefine.SecretId, OptionsDefine.Token]:
|
|
153
|
+
if param in cred:
|
|
154
|
+
g_param[param] = cred[param]
|
|
155
|
+
elif not (g_param[OptionsDefine.UseCVMRole.replace('-', '_')]
|
|
156
|
+
or os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN)):
|
|
157
|
+
raise ConfigurationError("%s is invalid" % param)
|
|
158
|
+
elif param in [OptionsDefine.Region, OptionsDefine.Output, OptionsDefine.Language]:
|
|
159
|
+
if param in conf[OptionsDefine.SysParam]:
|
|
160
|
+
g_param[param] = conf[OptionsDefine.SysParam][param]
|
|
161
|
+
elif param != OptionsDefine.Language:
|
|
162
|
+
raise ConfigurationError("%s is invalid" % param)
|
|
163
|
+
elif param.replace('_', '-') in [OptionsDefine.RoleArn, OptionsDefine.RoleSessionName]:
|
|
164
|
+
if param.replace('_', '-') in cred:
|
|
165
|
+
g_param[param] = cred[param.replace('_', '-')]
|
|
166
|
+
|
|
167
|
+
try:
|
|
168
|
+
if g_param[OptionsDefine.ServiceVersion]:
|
|
169
|
+
g_param[OptionsDefine.Version] = "v" + g_param[OptionsDefine.ServiceVersion].replace('-', '')
|
|
170
|
+
else:
|
|
171
|
+
version = conf["message"][OptionsDefine.Version]
|
|
172
|
+
g_param[OptionsDefine.Version] = "v" + version.replace('-', '')
|
|
173
|
+
|
|
174
|
+
if g_param[OptionsDefine.Endpoint] is None:
|
|
175
|
+
g_param[OptionsDefine.Endpoint] = conf["message"][OptionsDefine.Endpoint]
|
|
176
|
+
g_param["sts_cred_endpoint"] = conf.get("sts", {}).get("endpoint")
|
|
177
|
+
except Exception as err:
|
|
178
|
+
raise ConfigurationError("config file:%s error, %s" % (conf_path, str(err)))
|
|
179
|
+
|
|
180
|
+
if g_param[OptionsDefine.Version] not in AVAILABLE_VERSION_LIST:
|
|
181
|
+
raise Exception("available versions: %s" % " ".join(AVAILABLE_VERSION_LIST))
|
|
182
|
+
|
|
183
|
+
if g_param[OptionsDefine.Waiter]:
|
|
184
|
+
param = eval(g_param[OptionsDefine.Waiter])
|
|
185
|
+
if 'expr' not in param:
|
|
186
|
+
raise Exception('`expr` in `--waiter` must be defined')
|
|
187
|
+
if 'to' not in param:
|
|
188
|
+
raise Exception('`to` in `--waiter` must be defined')
|
|
189
|
+
if 'timeout' not in param:
|
|
190
|
+
if 'waiter' in conf and 'timeout' in conf['waiter']:
|
|
191
|
+
param['timeout'] = conf['waiter']['timeout']
|
|
192
|
+
else:
|
|
193
|
+
param['timeout'] = 180
|
|
194
|
+
if 'interval' not in param:
|
|
195
|
+
if 'waiter' in conf and 'interval' in conf['waiter']:
|
|
196
|
+
param['interval'] = conf['waiter']['interval']
|
|
197
|
+
else:
|
|
198
|
+
param['interval'] = 5
|
|
199
|
+
param['interval'] = min(param['interval'], param['timeout'])
|
|
200
|
+
g_param['OptionsDefine.WaiterInfo'] = param
|
|
201
|
+
|
|
202
|
+
if six.PY2:
|
|
203
|
+
for key, value in g_param.items():
|
|
204
|
+
if isinstance(value, six.text_type):
|
|
205
|
+
g_param[key] = value.encode('utf-8')
|
|
206
|
+
return g_param
|
|
207
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"ModifySendChannelOnMsgTypes": {
|
|
4
|
+
"document": "This API is used to batch modify delivery methods.",
|
|
5
|
+
"input": "ModifySendChannelOnMsgTypesRequest",
|
|
6
|
+
"name": "Batch modify message reception channel",
|
|
7
|
+
"output": "ModifySendChannelOnMsgTypesResponse",
|
|
8
|
+
"status": "online"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"metadata": {
|
|
12
|
+
"apiVersion": "2018-12-25",
|
|
13
|
+
"serviceNameCN": "消息中心",
|
|
14
|
+
"serviceShortName": "message"
|
|
15
|
+
},
|
|
16
|
+
"objects": {
|
|
17
|
+
"ModifySendChannelOnMsgTypesRequest": {
|
|
18
|
+
"document": "ModifySendChannelOnMsgTypes request structure.",
|
|
19
|
+
"members": [
|
|
20
|
+
{
|
|
21
|
+
"disabled": false,
|
|
22
|
+
"document": "Message sending channel.",
|
|
23
|
+
"example": "",
|
|
24
|
+
"member": "SendType",
|
|
25
|
+
"name": "SendTypes",
|
|
26
|
+
"required": true,
|
|
27
|
+
"type": "list"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"type": "object"
|
|
31
|
+
},
|
|
32
|
+
"ModifySendChannelOnMsgTypesResponse": {
|
|
33
|
+
"document": "ModifySendChannelOnMsgTypes response structure.",
|
|
34
|
+
"members": [
|
|
35
|
+
{
|
|
36
|
+
"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.",
|
|
37
|
+
"member": "string",
|
|
38
|
+
"name": "RequestId",
|
|
39
|
+
"type": "string"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"type": "object"
|
|
43
|
+
},
|
|
44
|
+
"SendType": {
|
|
45
|
+
"document": "Message type sending channel.",
|
|
46
|
+
"members": [
|
|
47
|
+
{
|
|
48
|
+
"disabled": false,
|
|
49
|
+
"document": "Message type.",
|
|
50
|
+
"example": "",
|
|
51
|
+
"member": "uint64",
|
|
52
|
+
"name": "MsgType",
|
|
53
|
+
"required": true,
|
|
54
|
+
"type": "int",
|
|
55
|
+
"value_allowed_null": false
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"disabled": false,
|
|
59
|
+
"document": "Delivery channel.",
|
|
60
|
+
"example": "",
|
|
61
|
+
"member": "uint64",
|
|
62
|
+
"name": "SendChannel",
|
|
63
|
+
"required": true,
|
|
64
|
+
"type": "int",
|
|
65
|
+
"value_allowed_null": false
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"usage": "in"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"version": "1.0"
|
|
72
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"ModifySendChannelOnMsgTypes": [
|
|
4
|
+
{
|
|
5
|
+
"document": " ",
|
|
6
|
+
"input": "https://message.tencentcloudapi.com/?Action=ModifySendChannelOnMsgTypes\r\n&SendTypes.0.MsgType=207\r\n&SendTypes.0.SendChannel=7\r\n&<Common request parameters>",
|
|
7
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"85d1906b-274b-44ac-a22e-4fdc00822347\"\n }\n}",
|
|
8
|
+
"title": "Batch Modify Message Reception Channel"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"version": "1.0"
|
|
13
|
+
}
|
|
@@ -477,7 +477,7 @@
|
|
|
477
477
|
"status": "online"
|
|
478
478
|
},
|
|
479
479
|
"DescribeAliasDomains": {
|
|
480
|
-
"document": "This API is used to query the alias domain name information list.\nThe feature is only supported in the enterprise plan and is currently in closed beta testing. If you need to use it, [Contact Us](https://
|
|
480
|
+
"document": "This API is used to query the alias domain name information list.\nThe feature is only supported in the enterprise plan and is currently in closed beta testing. If you need to use it, [Contact Us](https://www.tencentcloud.com/contact-us).",
|
|
481
481
|
"input": "DescribeAliasDomainsRequest",
|
|
482
482
|
"name": "Queries the information of alias domain names.",
|
|
483
483
|
"output": "DescribeAliasDomainsResponse",
|
|
@@ -925,7 +925,7 @@
|
|
|
925
925
|
"status": "online"
|
|
926
926
|
},
|
|
927
927
|
"DestroyPlan": {
|
|
928
|
-
"document": "To stop billing for your EdgeOne plan, you can use this interface to terminate the billing plan.\n> Terminating a billing plan requires the following conditions:\n 1. The plan has expired (except for the Enterprise Edition Plan);\n 2. All sites under the plan have been either shut down or deleted.\n\n> The site status can be queried through the [Query Site List](https://
|
|
928
|
+
"document": "To stop billing for your EdgeOne plan, you can use this interface to terminate the billing plan.\n> Terminating a billing plan requires the following conditions:\n 1. The plan has expired (except for the Enterprise Edition Plan);\n 2. All sites under the plan have been either shut down or deleted.\n\n> The site status can be queried through the [Query Site List](https://www.tencentcloud.com/zh/document/product/1145/50481) interface.\nA site can be deactivated by switching the site to a closed status through the [Switch Site Status](https://intl.cloud.tencent.com/document/product/1552/80707?from_cn_redirect=1) interface.\nA site can be deleted by using the [Delete Site](https://intl.cloud.tencent.com/document/product/1552/80717?from_cn_redirect=1) interface.",
|
|
929
929
|
"input": "DestroyPlanRequest",
|
|
930
930
|
"name": "Terminates plan",
|
|
931
931
|
"output": "DestroyPlanResponse",
|
|
@@ -1163,7 +1163,7 @@
|
|
|
1163
1163
|
"status": "online"
|
|
1164
1164
|
},
|
|
1165
1165
|
"ModifyLoadBalancer": {
|
|
1166
|
-
"document": "This API is used to modify LoadBalancer configuration. The load balancing feature is in beta test. If you need to use it, [contact us](https://
|
|
1166
|
+
"document": "This API is used to modify LoadBalancer configuration. The load balancing feature is in beta test. If you need to use it, [contact us](https://www.tencentcloud.com/contact-us).",
|
|
1167
1167
|
"input": "ModifyLoadBalancerRequest",
|
|
1168
1168
|
"name": "Modifies a LoadBalancer",
|
|
1169
1169
|
"output": "ModifyLoadBalancerResponse",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tccli-intl-en
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1270.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.
|
|
25
|
+
Requires-Dist: tencentcloud-sdk-python-intl-en (>=3.0.1270)
|
|
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=
|
|
1
|
+
tccli/__init__.py,sha256=8Qoxg2CMboj0FVZtx5P9RkML9T3ADuU_NToOWje4Jqw,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
|
|
@@ -49,7 +49,7 @@ tccli/plugins/sso/terminal.py,sha256=niX5xr6avR32NDIWGrXjuhJ-Y9OiBWW45RmxWxwXT6I
|
|
|
49
49
|
tccli/plugins/sso/texts.py,sha256=N5bt3WXMk9oKWHFsuIG7jVVejdUi5Mzi8wsrhWX3t1s,2234
|
|
50
50
|
tccli/plugins/test/__init__.py,sha256=ed14rjeb4-Sf_uttli4x3gRl27FT2-NHPtQxRcdwE3o,2712
|
|
51
51
|
tccli/plugins/test/add.py,sha256=L8EcHizXbEb8NiH1C-Giu9RPHRxe9rxGBDziaaFa1LE,1016
|
|
52
|
-
tccli/services/__init__.py,sha256=
|
|
52
|
+
tccli/services/__init__.py,sha256=c7uV1QsGs-7m7P1WPL-c1gWWUxD37e9IciGGaXrJKfU,6394
|
|
53
53
|
tccli/services/advisor/__init__.py,sha256=94YMESuc98jtnMMx_zO-vxCDjIdVjLy_KTCcG7nvOVo,93
|
|
54
54
|
tccli/services/advisor/advisor_client.py,sha256=P1Zc-T2sJfOiBwH7ynDirSEgm7pcPQK8fPkH8GFibMk,12366
|
|
55
55
|
tccli/services/advisor/v20200721/api.json,sha256=WrgEe_7e5-wVC7N4iftxYIMkrwdDL8EmIQli8sMryGo,15295
|
|
@@ -198,8 +198,8 @@ tccli/services/ctsdb/v20230202/api.json,sha256=OdVCQn1d5ROlJirmxcGLM2TkLzDH2cunz
|
|
|
198
198
|
tccli/services/ctsdb/v20230202/examples.json,sha256=GB60VeEhL_lUbM6kjgL-9fqXGd7dc1C7TUCK6KRrrV4,3720
|
|
199
199
|
tccli/services/cvm/__init__.py,sha256=TlF7VMjJTb_ELng-8ghL1Zvrmu7MJyuNBU5KLiWrFnw,85
|
|
200
200
|
tccli/services/cvm/cvm_client.py,sha256=ZW8BuuBueuowNazUCMxG2fWGythDmGsn7tA-bpoGktM,267439
|
|
201
|
-
tccli/services/cvm/v20170312/api.json,sha256=
|
|
202
|
-
tccli/services/cvm/v20170312/examples.json,sha256=
|
|
201
|
+
tccli/services/cvm/v20170312/api.json,sha256=NOSiwvDupr1ssGus1f2ELyuVV7BNkXH9Zwy9qvktZxs,486492
|
|
202
|
+
tccli/services/cvm/v20170312/examples.json,sha256=ykDjkiuRrMR887nsNYvKg93Uk5cfqhXPs_jpSp-DQHc,116588
|
|
203
203
|
tccli/services/cwp/__init__.py,sha256=VzfiK7QzpNmTiO4zrmILRFSkKMJka8elLwzYLTjUPFw,85
|
|
204
204
|
tccli/services/cwp/cwp_client.py,sha256=UNo7UrxPCchk06Gjnnb-o8Ieh87mppr3HCdnUAHfFiQ,1452506
|
|
205
205
|
tccli/services/cwp/v20180228/api.json,sha256=dl5bSD0_GMwxmOIItlWCGJLcHilwgdV9x096K8Do1Oc,2098126
|
|
@@ -231,9 +231,9 @@ tccli/services/dcdb/dcdb_client.py,sha256=e_yRwF1h9V4QLq6GsAQswSr5zuVNoPWK3wFScJ
|
|
|
231
231
|
tccli/services/dcdb/v20180411/api.json,sha256=selQohyR_GwMEPGeqE2lVZwAM2AQ30OYZBITl_Nk_O8,281685
|
|
232
232
|
tccli/services/dcdb/v20180411/examples.json,sha256=dCi7LgfeCNnkctIS5i318JzC_Miey6_nk8OJYahzq8Y,59180
|
|
233
233
|
tccli/services/dlc/__init__.py,sha256=Pt7cRkf9EvW5Zp2SZeVE-_cF_YHO7ORkFXK7qsTnkiA,85
|
|
234
|
-
tccli/services/dlc/dlc_client.py,sha256=
|
|
235
|
-
tccli/services/dlc/v20210125/api.json,sha256=
|
|
236
|
-
tccli/services/dlc/v20210125/examples.json,sha256=
|
|
234
|
+
tccli/services/dlc/dlc_client.py,sha256=xPdPKXrDoy_WVmv6AvHeBkkyS1pyyOkNVeVYdSfC7-E,334408
|
|
235
|
+
tccli/services/dlc/v20210125/api.json,sha256=HdjLFtvdEndnwJy6v-OoTAoIhz6uEPqdAoE86DHjMXw,490180
|
|
236
|
+
tccli/services/dlc/v20210125/examples.json,sha256=QhtEwI6vDZ80pfRxvJH2xuCgQ3--fOl-22wizy7afa4,124635
|
|
237
237
|
tccli/services/dms/__init__.py,sha256=kN-W4gKbBYr7EYBQdeWGtOgloxgIavhEH0jMyPd5ooY,85
|
|
238
238
|
tccli/services/dms/dms_client.py,sha256=mti8mlqbMM8ZE7XcHHYTz_tQFTujRLuf56dw4TOJ9nw,12250
|
|
239
239
|
tccli/services/dms/v20200819/api.json,sha256=MJC2K2Fhnml5wKyYMhXOuzaLwgdPF2nlToyn60PX-ZA,4582
|
|
@@ -283,7 +283,7 @@ tccli/services/facefusion/v20220927/examples.json,sha256=6qZnFLt6wwaOwAvAUwfwsZc
|
|
|
283
283
|
tccli/services/faceid/__init__.py,sha256=zbcAvv37wx7NH6hsSFPSCqgR2ih1UiQOdqNfmitdeVY,91
|
|
284
284
|
tccli/services/faceid/faceid_client.py,sha256=oQTnb7MIASy-cSQywg5TS9kq9yFOrxsi8Z1Wgjra_Hw,65222
|
|
285
285
|
tccli/services/faceid/v20180301/api.json,sha256=RKgn2DyuheK3KwAF4DkgUsLh8kF7nmvJO6xVkPMGpE4,233553
|
|
286
|
-
tccli/services/faceid/v20180301/examples.json,sha256=
|
|
286
|
+
tccli/services/faceid/v20180301/examples.json,sha256=TSqasRJydfr-m_ofjAS6Wn_RwwFwG38C0WdHR4t4tGk,35131
|
|
287
287
|
tccli/services/gaap/__init__.py,sha256=S_z9yBKvBasiqOewA4ok4_IsMa25mEeOkC-3TCbGn4k,87
|
|
288
288
|
tccli/services/gaap/gaap_client.py,sha256=wYOVGOwQYcEaGB9oBaOWQ-0mu9Y-XbVsLsSroheaGPE,278997
|
|
289
289
|
tccli/services/gaap/v20180529/api.json,sha256=RFdpAw62l6l1hS1pluV21MQA729dLtliXQS9C6fSr5c,351955
|
|
@@ -362,12 +362,16 @@ tccli/services/mdc/v20200828/api.json,sha256=ytnZrvelUN6WrpmTjWlQOJbsiJtDeTZhk1s
|
|
|
362
362
|
tccli/services/mdc/v20200828/examples.json,sha256=4KO2ZaXQG3hMmet3Sf5NhfLHvkREDNiRKyyyqkm7OlY,37377
|
|
363
363
|
tccli/services/mdl/__init__.py,sha256=IhqjE774C9EQ-gYNYWtnfO9A4aZi9qxfd5zTey7CFSs,85
|
|
364
364
|
tccli/services/mdl/mdl_client.py,sha256=hdAN7CE9gdsMhmPOULI2lXjNqbBaqYfQV9ePIKUfBhs,109432
|
|
365
|
-
tccli/services/mdl/v20200326/api.json,sha256=
|
|
366
|
-
tccli/services/mdl/v20200326/examples.json,sha256=
|
|
365
|
+
tccli/services/mdl/v20200326/api.json,sha256=kgMhJXtR9Xxc-i0fqRHbdrecUOntgd_qaakI59O2cGI,250311
|
|
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
368
|
tccli/services/mdp/mdp_client.py,sha256=rezCY1QNXfQptqoHpKR8q3PNyRoUSOeI-mGo-n_1wCE,196256
|
|
369
|
-
tccli/services/mdp/v20200527/api.json,sha256=
|
|
370
|
-
tccli/services/mdp/v20200527/examples.json,sha256=
|
|
369
|
+
tccli/services/mdp/v20200527/api.json,sha256=ltKre7E0ItyHaZkvlowMJgyPoP-tJ49qiNCjftio06U,228931
|
|
370
|
+
tccli/services/mdp/v20200527/examples.json,sha256=PDvHpE7ubWEH25sQ4wjcGUwBlWCiwyamHWOD7jndKac,73935
|
|
371
|
+
tccli/services/message/__init__.py,sha256=vnNA6jQOTL7gkCko1DDyKAeq0Gyey4Oiyi0ZbQM6L3M,93
|
|
372
|
+
tccli/services/message/message_client.py,sha256=GJRZ7V8wV3qQOmWMqRQQprEdcGkLSETQSkF_4u5IDV8,9285
|
|
373
|
+
tccli/services/message/v20181225/api.json,sha256=0b7N_NnQbMS9W3zgCwCAakJG9aGMuKV7ChF7J1Xf52Q,2095
|
|
374
|
+
tccli/services/message/v20181225/examples.json,sha256=fnOlNGWK56ef0FASe2MwKz7Mk-FCwgfwaiGcp7YnNFY,485
|
|
371
375
|
tccli/services/mongodb/__init__.py,sha256=Xj1cMJt16_OaoYzXR0TgIRPw-DADd-yJkmk3CeEpvk0,93
|
|
372
376
|
tccli/services/mongodb/mongodb_client.py,sha256=sXueaJaS0ZNfuM0mcFtPSnlfE_hWE4lG8Hdj2Qbi1n8,96383
|
|
373
377
|
tccli/services/mongodb/v20190725/api.json,sha256=LTmk2suB04mptGf_aoLDZ7xPdQ1EvwiMvZYvZvhF0dE,188236
|
|
@@ -514,7 +518,7 @@ tccli/services/teo/__init__.py,sha256=nvzcUSkSQuTftWEJ399BUZpUk_0jEq-l97539DwbAw
|
|
|
514
518
|
tccli/services/teo/teo_client.py,sha256=aKu9kxw__IqmH8MFfa7JZ2vJ8eyksBiwHL97KqVqPyE,745543
|
|
515
519
|
tccli/services/teo/v20220106/api.json,sha256=pEZJsuPOV4oAO5uxFRxpkBzxdGbhiuDGeDhItZLpBk0,440930
|
|
516
520
|
tccli/services/teo/v20220106/examples.json,sha256=bzXKxeiSSmtv7lL1wbcb7YaTbgbOFBJbD_uCv1fzQuk,87233
|
|
517
|
-
tccli/services/teo/v20220901/api.json,sha256=
|
|
521
|
+
tccli/services/teo/v20220901/api.json,sha256=EF7yNy9Nv3K_2ZZq4S_kOUhEjvDGvANUeuurHgHni5Q,1161097
|
|
518
522
|
tccli/services/teo/v20220901/examples.json,sha256=DwEWUpOMKpLjMj5jhbe1OxwyPrrB3vesi887UcfDRag,525409
|
|
519
523
|
tccli/services/tione/__init__.py,sha256=hVHB2cJpskiRtSHmEaJj2ZcjQp28c17sepm54VgFH7I,89
|
|
520
524
|
tccli/services/tione/tione_client.py,sha256=dqxNYR2NRnjyRhfEaHIvCf3KT71PqDvU9JvN5e_Q5Dc,9264
|
|
@@ -586,9 +590,9 @@ tccli/services/yunjing/__init__.py,sha256=8HTKN8_ow1j67tspqAbBMQgeteXAagLvtb9WAf
|
|
|
586
590
|
tccli/services/yunjing/yunjing_client.py,sha256=Vh5vFOLjDJ53q_RX9WADwLT610kGcUxwCmtny95k3js,226485
|
|
587
591
|
tccli/services/yunjing/v20180228/api.json,sha256=zYojacZyPgPCi71CLBjuHsQR9mIxcZjCX5JwA9TYr1s,173428
|
|
588
592
|
tccli/services/yunjing/v20180228/examples.json,sha256=j3GL3TtNTkZpNLlksz0nJNCVDxYGUqfRqOt94Y-P8OE,58723
|
|
589
|
-
tccli_intl_en-3.0.
|
|
590
|
-
tccli_intl_en-3.0.
|
|
591
|
-
tccli_intl_en-3.0.
|
|
592
|
-
tccli_intl_en-3.0.
|
|
593
|
-
tccli_intl_en-3.0.
|
|
594
|
-
tccli_intl_en-3.0.
|
|
593
|
+
tccli_intl_en-3.0.1270.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
594
|
+
tccli_intl_en-3.0.1270.1.dist-info/METADATA,sha256=e7zxrQp1ZbwVCg-k3sGrMb_AgPu0_jwXRY89cn_-UhE,3092
|
|
595
|
+
tccli_intl_en-3.0.1270.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
596
|
+
tccli_intl_en-3.0.1270.1.dist-info/entry_points.txt,sha256=68P7ZjqXFm4zPWf5RsAVabzbECUWYFB2VyUnnv8XgMI,86
|
|
597
|
+
tccli_intl_en-3.0.1270.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
|
|
598
|
+
tccli_intl_en-3.0.1270.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|