tencentcloud-sdk-python 3.0.1229__py2.py3-none-any.whl → 3.0.1230__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cfw/v20190904/models.py +106 -2
- tencentcloud/ess/v20201111/ess_client.py +5 -7
- tencentcloud/ess/v20201111/models.py +28 -37
- tencentcloud/iss/v20230517/iss_client.py +23 -0
- tencentcloud/iss/v20230517/models.py +130 -0
- tencentcloud/mps/v20190612/models.py +214 -0
- tencentcloud/ocr/v20181119/models.py +12 -0
- tencentcloud/sms/v20210111/models.py +1 -1
- tencentcloud/tke/v20180525/models.py +12 -0
- tencentcloud/tke/v20220501/models.py +852 -8
- tencentcloud/tke/v20220501/tke_client.py +138 -0
- tencentcloud/vod/v20240718/__init__.py +0 -0
- tencentcloud/vod/v20240718/errorcodes.py +15 -0
- tencentcloud/vod/v20240718/models.py +189 -0
- tencentcloud/vod/v20240718/vod_client.py +49 -0
- tencentcloud/vpc/v20170312/models.py +17 -0
- {tencentcloud_sdk_python-3.0.1229.dist-info → tencentcloud_sdk_python-3.0.1230.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1229.dist-info → tencentcloud_sdk_python-3.0.1230.dist-info}/RECORD +22 -18
- {tencentcloud_sdk_python-3.0.1229.dist-info → tencentcloud_sdk_python-3.0.1230.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1229.dist-info → tencentcloud_sdk_python-3.0.1230.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1229.dist-info → tencentcloud_sdk_python-3.0.1230.dist-info}/top_level.txt +0 -0
@@ -26,6 +26,29 @@ class TkeClient(AbstractClient):
|
|
26
26
|
_service = 'tke'
|
27
27
|
|
28
28
|
|
29
|
+
def CreateHealthCheckPolicy(self, request):
|
30
|
+
"""创建健康检测策略
|
31
|
+
|
32
|
+
:param request: Request instance for CreateHealthCheckPolicy.
|
33
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.CreateHealthCheckPolicyRequest`
|
34
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.CreateHealthCheckPolicyResponse`
|
35
|
+
|
36
|
+
"""
|
37
|
+
try:
|
38
|
+
params = request._serialize()
|
39
|
+
headers = request.headers
|
40
|
+
body = self.call("CreateHealthCheckPolicy", params, headers=headers)
|
41
|
+
response = json.loads(body)
|
42
|
+
model = models.CreateHealthCheckPolicyResponse()
|
43
|
+
model._deserialize(response["Response"])
|
44
|
+
return model
|
45
|
+
except Exception as e:
|
46
|
+
if isinstance(e, TencentCloudSDKException):
|
47
|
+
raise
|
48
|
+
else:
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
50
|
+
|
51
|
+
|
29
52
|
def CreateNodePool(self, request):
|
30
53
|
"""创建 TKE 节点池
|
31
54
|
|
@@ -49,6 +72,29 @@ class TkeClient(AbstractClient):
|
|
49
72
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
50
73
|
|
51
74
|
|
75
|
+
def DeleteHealthCheckPolicy(self, request):
|
76
|
+
"""删除健康检测策略
|
77
|
+
|
78
|
+
:param request: Request instance for DeleteHealthCheckPolicy.
|
79
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DeleteHealthCheckPolicyRequest`
|
80
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DeleteHealthCheckPolicyResponse`
|
81
|
+
|
82
|
+
"""
|
83
|
+
try:
|
84
|
+
params = request._serialize()
|
85
|
+
headers = request.headers
|
86
|
+
body = self.call("DeleteHealthCheckPolicy", params, headers=headers)
|
87
|
+
response = json.loads(body)
|
88
|
+
model = models.DeleteHealthCheckPolicyResponse()
|
89
|
+
model._deserialize(response["Response"])
|
90
|
+
return model
|
91
|
+
except Exception as e:
|
92
|
+
if isinstance(e, TencentCloudSDKException):
|
93
|
+
raise
|
94
|
+
else:
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
96
|
+
|
97
|
+
|
52
98
|
def DeleteNodePool(self, request):
|
53
99
|
"""删除 TKE 节点池
|
54
100
|
|
@@ -95,6 +141,75 @@ class TkeClient(AbstractClient):
|
|
95
141
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
96
142
|
|
97
143
|
|
144
|
+
def DescribeHealthCheckPolicies(self, request):
|
145
|
+
"""查询健康检测策略
|
146
|
+
|
147
|
+
:param request: Request instance for DescribeHealthCheckPolicies.
|
148
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckPoliciesRequest`
|
149
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckPoliciesResponse`
|
150
|
+
|
151
|
+
"""
|
152
|
+
try:
|
153
|
+
params = request._serialize()
|
154
|
+
headers = request.headers
|
155
|
+
body = self.call("DescribeHealthCheckPolicies", params, headers=headers)
|
156
|
+
response = json.loads(body)
|
157
|
+
model = models.DescribeHealthCheckPoliciesResponse()
|
158
|
+
model._deserialize(response["Response"])
|
159
|
+
return model
|
160
|
+
except Exception as e:
|
161
|
+
if isinstance(e, TencentCloudSDKException):
|
162
|
+
raise
|
163
|
+
else:
|
164
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
165
|
+
|
166
|
+
|
167
|
+
def DescribeHealthCheckPolicyBindings(self, request):
|
168
|
+
"""查询健康检测策略绑定关系
|
169
|
+
|
170
|
+
:param request: Request instance for DescribeHealthCheckPolicyBindings.
|
171
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckPolicyBindingsRequest`
|
172
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckPolicyBindingsResponse`
|
173
|
+
|
174
|
+
"""
|
175
|
+
try:
|
176
|
+
params = request._serialize()
|
177
|
+
headers = request.headers
|
178
|
+
body = self.call("DescribeHealthCheckPolicyBindings", params, headers=headers)
|
179
|
+
response = json.loads(body)
|
180
|
+
model = models.DescribeHealthCheckPolicyBindingsResponse()
|
181
|
+
model._deserialize(response["Response"])
|
182
|
+
return model
|
183
|
+
except Exception as e:
|
184
|
+
if isinstance(e, TencentCloudSDKException):
|
185
|
+
raise
|
186
|
+
else:
|
187
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
188
|
+
|
189
|
+
|
190
|
+
def DescribeHealthCheckTemplate(self, request):
|
191
|
+
"""查询健康检测策略模板
|
192
|
+
|
193
|
+
:param request: Request instance for DescribeHealthCheckTemplate.
|
194
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckTemplateRequest`
|
195
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckTemplateResponse`
|
196
|
+
|
197
|
+
"""
|
198
|
+
try:
|
199
|
+
params = request._serialize()
|
200
|
+
headers = request.headers
|
201
|
+
body = self.call("DescribeHealthCheckTemplate", params, headers=headers)
|
202
|
+
response = json.loads(body)
|
203
|
+
model = models.DescribeHealthCheckTemplateResponse()
|
204
|
+
model._deserialize(response["Response"])
|
205
|
+
return model
|
206
|
+
except Exception as e:
|
207
|
+
if isinstance(e, TencentCloudSDKException):
|
208
|
+
raise
|
209
|
+
else:
|
210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
211
|
+
|
212
|
+
|
98
213
|
def DescribeNodePools(self, request):
|
99
214
|
"""查询 TKE 节点池列表
|
100
215
|
|
@@ -118,6 +233,29 @@ class TkeClient(AbstractClient):
|
|
118
233
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
119
234
|
|
120
235
|
|
236
|
+
def ModifyHealthCheckPolicy(self, request):
|
237
|
+
"""修改健康检测策略
|
238
|
+
|
239
|
+
:param request: Request instance for ModifyHealthCheckPolicy.
|
240
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.ModifyHealthCheckPolicyRequest`
|
241
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.ModifyHealthCheckPolicyResponse`
|
242
|
+
|
243
|
+
"""
|
244
|
+
try:
|
245
|
+
params = request._serialize()
|
246
|
+
headers = request.headers
|
247
|
+
body = self.call("ModifyHealthCheckPolicy", params, headers=headers)
|
248
|
+
response = json.loads(body)
|
249
|
+
model = models.ModifyHealthCheckPolicyResponse()
|
250
|
+
model._deserialize(response["Response"])
|
251
|
+
return model
|
252
|
+
except Exception as e:
|
253
|
+
if isinstance(e, TencentCloudSDKException):
|
254
|
+
raise
|
255
|
+
else:
|
256
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
257
|
+
|
258
|
+
|
121
259
|
def ModifyNodePool(self, request):
|
122
260
|
"""更新 TKE 节点池
|
123
261
|
|
File without changes
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# -*- coding: utf8 -*-
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
@@ -0,0 +1,189 @@
|
|
1
|
+
# -*- coding: utf8 -*-
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
import warnings
|
17
|
+
|
18
|
+
from tencentcloud.common.abstract_model import AbstractModel
|
19
|
+
|
20
|
+
|
21
|
+
class CreateStorageCredentialsRequest(AbstractModel):
|
22
|
+
"""CreateStorageCredentials请求参数结构体
|
23
|
+
|
24
|
+
"""
|
25
|
+
|
26
|
+
def __init__(self):
|
27
|
+
r"""
|
28
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。</b>
|
29
|
+
:type SubAppId: int
|
30
|
+
:param _Policy: 按照下方语法组装好策略后,先序列化为字符串,再做 urlencode,结果作为 Policy 字段入参。服务端会对该字段做 urldecode,并按解析后的策略授予临时访问凭证权限,请按规范传入参数。
|
31
|
+
注意:
|
32
|
+
1.策略语法参照[访问管理策略](/document/product/598/10603)。
|
33
|
+
2.策略中不能包含 principal 元素。
|
34
|
+
3.策略的 action 元素仅支持:<li>name/vod:PutObject;</li><li>name/vod:ListParts;</li><li>name/vod:PostObject;</li><li>name/vod:InitiateMultipartUpload;</li><li>name/vod:UploadPart;</li><li>name/vod:CompleteMultipartUpload;</li><li>name/vod:AbortMultipartUpload;</li><li>name/vod:ListMultipartUploads;</li>4.策略的 resource 元素填写格式为:qcs::vod::uid/[账号AppID]:prefix//[子应用ID]/[存储桶ID]/[存储路径],其中账号AppID、子应用ID、存储桶ID和存储路径要按需填写,其他内容不允许改动,例:qcs::vod::uid/1:prefix//1/1/path。
|
35
|
+
|
36
|
+
:type Policy: str
|
37
|
+
:param _DurationSeconds: 指定临时证书的有效期,单位:秒。
|
38
|
+
默认 1800 秒,最大 129600 秒。
|
39
|
+
:type DurationSeconds: int
|
40
|
+
"""
|
41
|
+
self._SubAppId = None
|
42
|
+
self._Policy = None
|
43
|
+
self._DurationSeconds = None
|
44
|
+
|
45
|
+
@property
|
46
|
+
def SubAppId(self):
|
47
|
+
return self._SubAppId
|
48
|
+
|
49
|
+
@SubAppId.setter
|
50
|
+
def SubAppId(self, SubAppId):
|
51
|
+
self._SubAppId = SubAppId
|
52
|
+
|
53
|
+
@property
|
54
|
+
def Policy(self):
|
55
|
+
return self._Policy
|
56
|
+
|
57
|
+
@Policy.setter
|
58
|
+
def Policy(self, Policy):
|
59
|
+
self._Policy = Policy
|
60
|
+
|
61
|
+
@property
|
62
|
+
def DurationSeconds(self):
|
63
|
+
return self._DurationSeconds
|
64
|
+
|
65
|
+
@DurationSeconds.setter
|
66
|
+
def DurationSeconds(self, DurationSeconds):
|
67
|
+
self._DurationSeconds = DurationSeconds
|
68
|
+
|
69
|
+
|
70
|
+
def _deserialize(self, params):
|
71
|
+
self._SubAppId = params.get("SubAppId")
|
72
|
+
self._Policy = params.get("Policy")
|
73
|
+
self._DurationSeconds = params.get("DurationSeconds")
|
74
|
+
memeber_set = set(params.keys())
|
75
|
+
for name, value in vars(self).items():
|
76
|
+
property_name = name[1:]
|
77
|
+
if property_name in memeber_set:
|
78
|
+
memeber_set.remove(property_name)
|
79
|
+
if len(memeber_set) > 0:
|
80
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
class CreateStorageCredentialsResponse(AbstractModel):
|
85
|
+
"""CreateStorageCredentials返回参数结构体
|
86
|
+
|
87
|
+
"""
|
88
|
+
|
89
|
+
def __init__(self):
|
90
|
+
r"""
|
91
|
+
:param _Credentials: 临时访问凭证。
|
92
|
+
:type Credentials: :class:`tencentcloud.vod.v20240718.models.Credentials`
|
93
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
94
|
+
:type RequestId: str
|
95
|
+
"""
|
96
|
+
self._Credentials = None
|
97
|
+
self._RequestId = None
|
98
|
+
|
99
|
+
@property
|
100
|
+
def Credentials(self):
|
101
|
+
return self._Credentials
|
102
|
+
|
103
|
+
@Credentials.setter
|
104
|
+
def Credentials(self, Credentials):
|
105
|
+
self._Credentials = Credentials
|
106
|
+
|
107
|
+
@property
|
108
|
+
def RequestId(self):
|
109
|
+
return self._RequestId
|
110
|
+
|
111
|
+
@RequestId.setter
|
112
|
+
def RequestId(self, RequestId):
|
113
|
+
self._RequestId = RequestId
|
114
|
+
|
115
|
+
|
116
|
+
def _deserialize(self, params):
|
117
|
+
if params.get("Credentials") is not None:
|
118
|
+
self._Credentials = Credentials()
|
119
|
+
self._Credentials._deserialize(params.get("Credentials"))
|
120
|
+
self._RequestId = params.get("RequestId")
|
121
|
+
|
122
|
+
|
123
|
+
class Credentials(AbstractModel):
|
124
|
+
"""临时证书。
|
125
|
+
|
126
|
+
"""
|
127
|
+
|
128
|
+
def __init__(self):
|
129
|
+
r"""
|
130
|
+
:param _AccessKeyId: 秘钥 ID。
|
131
|
+
:type AccessKeyId: str
|
132
|
+
:param _SecretAccessKey: 秘钥 Key。
|
133
|
+
:type SecretAccessKey: str
|
134
|
+
:param _SessionToken: token。token长度和绑定的策略有关,最长不超过4096字节。
|
135
|
+
:type SessionToken: str
|
136
|
+
:param _Expiration: 凭据的过期时间。
|
137
|
+
:type Expiration: str
|
138
|
+
"""
|
139
|
+
self._AccessKeyId = None
|
140
|
+
self._SecretAccessKey = None
|
141
|
+
self._SessionToken = None
|
142
|
+
self._Expiration = None
|
143
|
+
|
144
|
+
@property
|
145
|
+
def AccessKeyId(self):
|
146
|
+
return self._AccessKeyId
|
147
|
+
|
148
|
+
@AccessKeyId.setter
|
149
|
+
def AccessKeyId(self, AccessKeyId):
|
150
|
+
self._AccessKeyId = AccessKeyId
|
151
|
+
|
152
|
+
@property
|
153
|
+
def SecretAccessKey(self):
|
154
|
+
return self._SecretAccessKey
|
155
|
+
|
156
|
+
@SecretAccessKey.setter
|
157
|
+
def SecretAccessKey(self, SecretAccessKey):
|
158
|
+
self._SecretAccessKey = SecretAccessKey
|
159
|
+
|
160
|
+
@property
|
161
|
+
def SessionToken(self):
|
162
|
+
return self._SessionToken
|
163
|
+
|
164
|
+
@SessionToken.setter
|
165
|
+
def SessionToken(self, SessionToken):
|
166
|
+
self._SessionToken = SessionToken
|
167
|
+
|
168
|
+
@property
|
169
|
+
def Expiration(self):
|
170
|
+
return self._Expiration
|
171
|
+
|
172
|
+
@Expiration.setter
|
173
|
+
def Expiration(self, Expiration):
|
174
|
+
self._Expiration = Expiration
|
175
|
+
|
176
|
+
|
177
|
+
def _deserialize(self, params):
|
178
|
+
self._AccessKeyId = params.get("AccessKeyId")
|
179
|
+
self._SecretAccessKey = params.get("SecretAccessKey")
|
180
|
+
self._SessionToken = params.get("SessionToken")
|
181
|
+
self._Expiration = params.get("Expiration")
|
182
|
+
memeber_set = set(params.keys())
|
183
|
+
for name, value in vars(self).items():
|
184
|
+
property_name = name[1:]
|
185
|
+
if property_name in memeber_set:
|
186
|
+
memeber_set.remove(property_name)
|
187
|
+
if len(memeber_set) > 0:
|
188
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
189
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# -*- coding: utf8 -*-
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
import json
|
17
|
+
|
18
|
+
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
|
19
|
+
from tencentcloud.common.abstract_client import AbstractClient
|
20
|
+
from tencentcloud.vod.v20240718 import models
|
21
|
+
|
22
|
+
|
23
|
+
class VodClient(AbstractClient):
|
24
|
+
_apiVersion = '2024-07-18'
|
25
|
+
_endpoint = 'vod.tencentcloudapi.com'
|
26
|
+
_service = 'vod'
|
27
|
+
|
28
|
+
|
29
|
+
def CreateStorageCredentials(self, request):
|
30
|
+
"""用于按指定策略,生成专业版应用的临时访问凭证,比如生成用于客户端上传的临时凭证。
|
31
|
+
|
32
|
+
:param request: Request instance for CreateStorageCredentials.
|
33
|
+
:type request: :class:`tencentcloud.vod.v20240718.models.CreateStorageCredentialsRequest`
|
34
|
+
:rtype: :class:`tencentcloud.vod.v20240718.models.CreateStorageCredentialsResponse`
|
35
|
+
|
36
|
+
"""
|
37
|
+
try:
|
38
|
+
params = request._serialize()
|
39
|
+
headers = request.headers
|
40
|
+
body = self.call("CreateStorageCredentials", params, headers=headers)
|
41
|
+
response = json.loads(body)
|
42
|
+
model = models.CreateStorageCredentialsResponse()
|
43
|
+
model._deserialize(response["Response"])
|
44
|
+
return model
|
45
|
+
except Exception as e:
|
46
|
+
if isinstance(e, TencentCloudSDKException):
|
47
|
+
raise
|
48
|
+
else:
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
@@ -10433,11 +10433,14 @@ class CreateSecurityGroupWithPoliciesRequest(AbstractModel):
|
|
10433
10433
|
:type ProjectId: str
|
10434
10434
|
:param _SecurityGroupPolicySet: 安全组规则集合。
|
10435
10435
|
:type SecurityGroupPolicySet: :class:`tencentcloud.vpc.v20170312.models.SecurityGroupPolicySet`
|
10436
|
+
:param _Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
10437
|
+
:type Tags: list of Tag
|
10436
10438
|
"""
|
10437
10439
|
self._GroupName = None
|
10438
10440
|
self._GroupDescription = None
|
10439
10441
|
self._ProjectId = None
|
10440
10442
|
self._SecurityGroupPolicySet = None
|
10443
|
+
self._Tags = None
|
10441
10444
|
|
10442
10445
|
@property
|
10443
10446
|
def GroupName(self):
|
@@ -10471,6 +10474,14 @@ class CreateSecurityGroupWithPoliciesRequest(AbstractModel):
|
|
10471
10474
|
def SecurityGroupPolicySet(self, SecurityGroupPolicySet):
|
10472
10475
|
self._SecurityGroupPolicySet = SecurityGroupPolicySet
|
10473
10476
|
|
10477
|
+
@property
|
10478
|
+
def Tags(self):
|
10479
|
+
return self._Tags
|
10480
|
+
|
10481
|
+
@Tags.setter
|
10482
|
+
def Tags(self, Tags):
|
10483
|
+
self._Tags = Tags
|
10484
|
+
|
10474
10485
|
|
10475
10486
|
def _deserialize(self, params):
|
10476
10487
|
self._GroupName = params.get("GroupName")
|
@@ -10479,6 +10490,12 @@ class CreateSecurityGroupWithPoliciesRequest(AbstractModel):
|
|
10479
10490
|
if params.get("SecurityGroupPolicySet") is not None:
|
10480
10491
|
self._SecurityGroupPolicySet = SecurityGroupPolicySet()
|
10481
10492
|
self._SecurityGroupPolicySet._deserialize(params.get("SecurityGroupPolicySet"))
|
10493
|
+
if params.get("Tags") is not None:
|
10494
|
+
self._Tags = []
|
10495
|
+
for item in params.get("Tags"):
|
10496
|
+
obj = Tag()
|
10497
|
+
obj._deserialize(item)
|
10498
|
+
self._Tags.append(obj)
|
10482
10499
|
memeber_set = set(params.keys())
|
10483
10500
|
for name, value in vars(self).items():
|
10484
10501
|
property_name = name[1:]
|
{tencentcloud_sdk_python-3.0.1229.dist-info → tencentcloud_sdk_python-3.0.1230.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=mKhWypyITjRPfhQ2KOQd1_XdKqNCVGAE0gEy6iLc5aw,631
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
@@ -317,7 +317,7 @@ tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
317
317
|
tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
318
318
|
tencentcloud/cfw/v20190904/cfw_client.py,sha256=0imU6W9-wcHkQhh67s1L9-OkgPAT_Gbq0PM4Ncwos1s,105015
|
319
319
|
tencentcloud/cfw/v20190904/errorcodes.py,sha256=2y2EJLTrMm-Ru0J3RAq8x59OHTtWQrRQMTQOf3_D1v0,1836
|
320
|
-
tencentcloud/cfw/v20190904/models.py,sha256=
|
320
|
+
tencentcloud/cfw/v20190904/models.py,sha256=QC6-tnP7WudV60lQgXGAoaEBAxLq6QcGB_vsOep5zKo,620077
|
321
321
|
tencentcloud/chdfs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
322
322
|
tencentcloud/chdfs/v20190718/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
323
323
|
tencentcloud/chdfs/v20190718/chdfs_client.py,sha256=Rs7ao2yC5zWwgkwE0eEzhzpW-1ZWQD695AhlXe_LfZE,28126
|
@@ -596,8 +596,8 @@ tencentcloud/es/v20180416/models.py,sha256=SxnCkoadwSHNo26UHF_l9Qxr5zyua1crxYFfH
|
|
596
596
|
tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
597
597
|
tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
598
598
|
tencentcloud/ess/v20201111/errorcodes.py,sha256=qdMwiZulnXzSZHcEs0dfRHjjwznvyEiOOzS6uv3W6OU,25913
|
599
|
-
tencentcloud/ess/v20201111/ess_client.py,sha256=
|
600
|
-
tencentcloud/ess/v20201111/models.py,sha256=
|
599
|
+
tencentcloud/ess/v20201111/ess_client.py,sha256=VAkeJ-otzKjmJLzrJ5PGfNob9IShGKlndWAJKop3cOw,154095
|
600
|
+
tencentcloud/ess/v20201111/models.py,sha256=oEriTGdRn7IL0FX7C7YwFIP1LhRiN0pZFvvxVjhiig8,880620
|
601
601
|
tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
602
602
|
tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
603
603
|
tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
|
@@ -788,8 +788,8 @@ tencentcloud/irp/v20220805/models.py,sha256=0hTALICkaRi3_av4zifDHYSd-oiXmJg-OWFH
|
|
788
788
|
tencentcloud/iss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
789
789
|
tencentcloud/iss/v20230517/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
790
790
|
tencentcloud/iss/v20230517/errorcodes.py,sha256=ff-S80xKIx2UReIkixDGiLL0pkUnjW6EmMSvEJKamTQ,20815
|
791
|
-
tencentcloud/iss/v20230517/iss_client.py,sha256=
|
792
|
-
tencentcloud/iss/v20230517/models.py,sha256=
|
791
|
+
tencentcloud/iss/v20230517/iss_client.py,sha256=_Iah7n3iMSfhgndlAleEgDhnmhGUBWxLJLdIhbmEuLk,78607
|
792
|
+
tencentcloud/iss/v20230517/models.py,sha256=YqdUYwDZxgBtFfNjijWFFLIc9FDowChLz2AP7HkrkBY,472262
|
793
793
|
tencentcloud/ivld/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
794
794
|
tencentcloud/ivld/v20210903/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
795
795
|
tencentcloud/ivld/v20210903/errorcodes.py,sha256=ucZd00febZPxosljfYnZCHZm_LYtCiE3zCdnn8MOgPE,9364
|
@@ -891,7 +891,7 @@ tencentcloud/monitor/v20180724/monitor_client.py,sha256=a7CPYYNV0C04Nkquzs1NlivI
|
|
891
891
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
892
892
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
893
893
|
tencentcloud/mps/v20190612/errorcodes.py,sha256=ic_v81zaCDl2m-mAAZBLTHVqRmoouFQUrcIwKK9OJfk,20901
|
894
|
-
tencentcloud/mps/v20190612/models.py,sha256=
|
894
|
+
tencentcloud/mps/v20190612/models.py,sha256=6yD3q1KpOEeOFvtUuECpTsHEssIqNsBad0memwnbO9I,1440558
|
895
895
|
tencentcloud/mps/v20190612/mps_client.py,sha256=eDUZ8QNL5M8J1yXQZe4PTyT6HBUpuWk8gauIOpFrVG0,104376
|
896
896
|
tencentcloud/mrs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
897
897
|
tencentcloud/mrs/v20200910/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -931,7 +931,7 @@ tencentcloud/oceanus/v20190422/oceanus_client.py,sha256=WrNxEBxvdzq4OBK9Zd8H3uLJ
|
|
931
931
|
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
932
932
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
933
933
|
tencentcloud/ocr/v20181119/errorcodes.py,sha256=PYBwe_N39NIZPezJhGCkWiGaolxquGLRMIXTQ0Sc6CU,6866
|
934
|
-
tencentcloud/ocr/v20181119/models.py,sha256=
|
934
|
+
tencentcloud/ocr/v20181119/models.py,sha256=OfSxGBi7dchjhfufEj-nmgis2yKtobLySdCfLxfT6-Q,969327
|
935
935
|
tencentcloud/ocr/v20181119/ocr_client.py,sha256=ohvi8ZvSn7whw5M5bfNdJesJ8qQ_YNtUqJnEM3b1Qh0,119996
|
936
936
|
tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
937
937
|
tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1034,7 +1034,7 @@ tencentcloud/sms/v20190711/models.py,sha256=wAz_btn2C-bSCEQ9EdbM1Bw5GcI0lwacwhup
|
|
1034
1034
|
tencentcloud/sms/v20190711/sms_client.py,sha256=fyELgzDGcMjxfr82ieA2TU9uZ0L8TrYZPgJESGudcC0,22470
|
1035
1035
|
tencentcloud/sms/v20210111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1036
1036
|
tencentcloud/sms/v20210111/errorcodes.py,sha256=ipSESW4jXxtZP0e1y8UXbAddX4fTvjq0up8vGAf9-D0,20786
|
1037
|
-
tencentcloud/sms/v20210111/models.py,sha256=
|
1037
|
+
tencentcloud/sms/v20210111/models.py,sha256=ycxHms5QgORrajs9CF7m6kuvVCVn4WsgwlkTM3URUi0,108032
|
1038
1038
|
tencentcloud/sms/v20210111/sms_client.py,sha256=RXd3Kpfw4FwsxIjM9Rp-UrjipX7Wcyw21fECMkRcLF4,25326
|
1039
1039
|
tencentcloud/soe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1040
1040
|
tencentcloud/soe/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1268,12 +1268,12 @@ tencentcloud/tiw/v20190919/tiw_client.py,sha256=vARxuPvbelzSgsDMZuIQSoppzEutxJaP
|
|
1268
1268
|
tencentcloud/tke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1269
1269
|
tencentcloud/tke/v20180525/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1270
1270
|
tencentcloud/tke/v20180525/errorcodes.py,sha256=y4QVOnd-aBQSNloiKe-nmcq4LwqqGZUGMynB2OGkQdU,21101
|
1271
|
-
tencentcloud/tke/v20180525/models.py,sha256=
|
1271
|
+
tencentcloud/tke/v20180525/models.py,sha256=TIyh1IDmZUI5dXeRa9q-o820xq8H2M2aKMZq6hx2XUE,1207796
|
1272
1272
|
tencentcloud/tke/v20180525/tke_client.py,sha256=jmtcqyRL1d3KriaDZK9RJEH6K-iz9l8dDfrXEAkp7Lg,209357
|
1273
1273
|
tencentcloud/tke/v20220501/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1274
1274
|
tencentcloud/tke/v20220501/errorcodes.py,sha256=1d5UObbunCeop2dF1ynMu5MNaVtKXkfVKZwkKxaRGII,2032
|
1275
|
-
tencentcloud/tke/v20220501/models.py,sha256=
|
1276
|
-
tencentcloud/tke/v20220501/tke_client.py,sha256=
|
1275
|
+
tencentcloud/tke/v20220501/models.py,sha256=1XUqCS1o1EmAty5FcO2khvLysANJ5_D0gcaFbqfzGdg,157358
|
1276
|
+
tencentcloud/tke/v20220501/tke_client.py,sha256=1qXc3Ofo4GLClCj0iFymBofTxhYvdsrAJQs5xhJcp3w,10951
|
1277
1277
|
tencentcloud/tkgdq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1278
1278
|
tencentcloud/tkgdq/v20190411/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1279
1279
|
tencentcloud/tkgdq/v20190411/errorcodes.py,sha256=CunR90NoQ3rWMQ0mOlGnZJfDJdHuY_CAJD1IxNacPg8,1685
|
@@ -1395,10 +1395,14 @@ tencentcloud/vod/v20180717/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
1395
1395
|
tencentcloud/vod/v20180717/errorcodes.py,sha256=4UhlZowd_XI0bZQ-3sHovdYpRXi96edJhSiV04cMwjI,26801
|
1396
1396
|
tencentcloud/vod/v20180717/models.py,sha256=2p0lxpyE2zHgAr44JnrIAQ5PTW8n7TkxUz3EqFWtBsU,2017286
|
1397
1397
|
tencentcloud/vod/v20180717/vod_client.py,sha256=m5zonqV8a-mmzDKkpJjcQyxkGJGXDkIGvhMci1yet3E,206036
|
1398
|
+
tencentcloud/vod/v20240718/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1399
|
+
tencentcloud/vod/v20240718/errorcodes.py,sha256=JjzBKhEAD8EAScLPJdVMhb_AEom5CiRFPj26_h1rg4A,652
|
1400
|
+
tencentcloud/vod/v20240718/models.py,sha256=2uimraHOcX6XLFw18Tgsi3Zy6dnTjN4RFo8kczU6rSk,6526
|
1401
|
+
tencentcloud/vod/v20240718/vod_client.py,sha256=QIBSMvnyU0MKiemDg5Y_QCyhjgfugXvEvpQ1_afcRYs,2010
|
1398
1402
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1399
1403
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1400
1404
|
tencentcloud/vpc/v20170312/errorcodes.py,sha256=5Hf1F7Fb42z5NDO4PLYYWWJdxjXnNYPCWvvrWOWdCqI,51466
|
1401
|
-
tencentcloud/vpc/v20170312/models.py,sha256=
|
1405
|
+
tencentcloud/vpc/v20170312/models.py,sha256=XVZ7_m5O4OJnidcV7-2n-6x0QkND-nLSI3_myBTOhLc,1613549
|
1402
1406
|
tencentcloud/vpc/v20170312/vpc_client.py,sha256=PlXSBucS1gRCFgeUwCRwOeviHwv_fRjleP9rGQDY728,381362
|
1403
1407
|
tencentcloud/vrs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1404
1408
|
tencentcloud/vrs/v20200824/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1459,8 +1463,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1459
1463
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1460
1464
|
tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
|
1461
1465
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1462
|
-
tencentcloud_sdk_python-3.0.
|
1463
|
-
tencentcloud_sdk_python-3.0.
|
1464
|
-
tencentcloud_sdk_python-3.0.
|
1465
|
-
tencentcloud_sdk_python-3.0.
|
1466
|
-
tencentcloud_sdk_python-3.0.
|
1466
|
+
tencentcloud_sdk_python-3.0.1230.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1467
|
+
tencentcloud_sdk_python-3.0.1230.dist-info/METADATA,sha256=GhgIiFk03gjphnG0t51LEAV5bzU27BkFzqBAjtHfmj8,1511
|
1468
|
+
tencentcloud_sdk_python-3.0.1230.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1469
|
+
tencentcloud_sdk_python-3.0.1230.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1470
|
+
tencentcloud_sdk_python-3.0.1230.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1229.dist-info → tencentcloud_sdk_python-3.0.1230.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1229.dist-info → tencentcloud_sdk_python-3.0.1230.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|