tencentcloud-sdk-python-cloudapp 3.0.1262__tar.gz → 3.0.1263__tar.gz

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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud/cloudapp/v20220530/models.py +70 -0
  5. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud_sdk_python_cloudapp.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cloudapp-3.0.1263/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cloudapp-3.0.1262/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud/cloudapp/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud/cloudapp/v20220530/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud/cloudapp/v20220530/cloudapp_client.py +0 -0
  13. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud/cloudapp/v20220530/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud_sdk_python_cloudapp.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud_sdk_python_cloudapp.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cloudapp-3.0.1262 → tencentcloud-sdk-python-cloudapp-3.0.1263}/tencentcloud_sdk_python_cloudapp.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cloudapp
3
- Version: 3.0.1262
3
+ Version: 3.0.1263
4
4
  Summary: Tencent Cloud Cloudapp SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cloudapp',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1262"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1263"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cloudapp SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1262'
17
+ __version__ = '3.0.1263'
@@ -79,6 +79,9 @@ class License(AbstractModel):
79
79
 
80
80
  @property
81
81
  def LicenseId(self):
82
+ """License ID
83
+ :rtype: str
84
+ """
82
85
  return self._LicenseId
83
86
 
84
87
  @LicenseId.setter
@@ -87,6 +90,9 @@ class License(AbstractModel):
87
90
 
88
91
  @property
89
92
  def LicenseMode(self):
93
+ """软件授权模式。<table><thead><tr><th>枚举值</th><th>说明</th></tr></thead><tbody><tr><td>Permanent</td><td>永久授权。该授权不受有效期限制。</td></tr><tr><td>Subscription</td><td>订阅授权。授权如果过了有效期,则会进入过期状态。</td></tr></tbody></table>
94
+ :rtype: str
95
+ """
90
96
  return self._LicenseMode
91
97
 
92
98
  @LicenseMode.setter
@@ -95,6 +101,9 @@ class License(AbstractModel):
95
101
 
96
102
  @property
97
103
  def LicenseStatus(self):
104
+ """软件的授权状态。<table><thead><tr><th>枚举值</th><th>说明</th></tr></thead><tbody><tr><td>Issued</td><td>已颁发,等待激活。一般来说,如果软件已经在运行,不会出现该状态。</td></tr><tr><td>Active</td><td>授权在有效期内,这是软件运行期间最常见的状态。</td></tr><tr><td>Expired</td><td>授权已过期。订阅类的软件授权有有效期,如果服务器时间已晚于有效期,则会进入过期状态。</td></tr><tr><td>Deactivated</td><td>授权已失效。用户如果退货软件,则授权会自动失效。</td></tr></tbody></table>
105
+ :rtype: str
106
+ """
98
107
  return self._LicenseStatus
99
108
 
100
109
  @LicenseStatus.setter
@@ -103,6 +112,9 @@ class License(AbstractModel):
103
112
 
104
113
  @property
105
114
  def ProviderId(self):
115
+ """软件供应方 ID。
116
+ :rtype: int
117
+ """
106
118
  return self._ProviderId
107
119
 
108
120
  @ProviderId.setter
@@ -111,6 +123,9 @@ class License(AbstractModel):
111
123
 
112
124
  @property
113
125
  def SoftwarePackageId(self):
126
+ """软件包 ID。
127
+ :rtype: str
128
+ """
114
129
  return self._SoftwarePackageId
115
130
 
116
131
  @SoftwarePackageId.setter
@@ -119,6 +134,9 @@ class License(AbstractModel):
119
134
 
120
135
  @property
121
136
  def SoftwarePackageVersion(self):
137
+ """软件包版本。
138
+ :rtype: str
139
+ """
122
140
  return self._SoftwarePackageVersion
123
141
 
124
142
  @SoftwarePackageVersion.setter
@@ -127,6 +145,9 @@ class License(AbstractModel):
127
145
 
128
146
  @property
129
147
  def AuthorizedUserUin(self):
148
+ """被授权的用户 UIN。
149
+ :rtype: str
150
+ """
130
151
  return self._AuthorizedUserUin
131
152
 
132
153
  @AuthorizedUserUin.setter
@@ -135,6 +156,9 @@ class License(AbstractModel):
135
156
 
136
157
  @property
137
158
  def AuthorizedCloudappId(self):
159
+ """被授权的应用实例 ID。
160
+ :rtype: str
161
+ """
138
162
  return self._AuthorizedCloudappId
139
163
 
140
164
  @AuthorizedCloudappId.setter
@@ -143,6 +167,9 @@ class License(AbstractModel):
143
167
 
144
168
  @property
145
169
  def AuthorizedCloudappRoleId(self):
170
+ """被授权的角色 ID。
171
+ :rtype: str
172
+ """
146
173
  return self._AuthorizedCloudappRoleId
147
174
 
148
175
  @AuthorizedCloudappRoleId.setter
@@ -151,6 +178,9 @@ class License(AbstractModel):
151
178
 
152
179
  @property
153
180
  def AuthorizedSpecification(self):
181
+ """被授权的软件规格,具体字段请参考结构SaleParam
182
+ :rtype: list of SaleParam
183
+ """
154
184
  return self._AuthorizedSpecification
155
185
 
156
186
  @AuthorizedSpecification.setter
@@ -159,6 +189,9 @@ class License(AbstractModel):
159
189
 
160
190
  @property
161
191
  def BillingMode(self):
192
+ """被授权的软件的计费模式。<table><thead><tr><th>枚举值</th><th>说明</th></tr></thead><tbody><tr><td>1</td><td>线上计费,软件的授权从腾讯云线上购买,支持续费、退款等操作。</td></tr><tr><td>2</td><td>线下计费,软件的授权线下签订合同购买,定向客户交付,无法从线上续费和退款。</td></tr><tr><td>4</td><td>免费</td></tr></tbody></table>
193
+ :rtype: int
194
+ """
162
195
  return self._BillingMode
163
196
 
164
197
  @BillingMode.setter
@@ -167,6 +200,9 @@ class License(AbstractModel):
167
200
 
168
201
  @property
169
202
  def LifeSpan(self):
203
+ """授权时长(单位由LifeSpanUnit确定,枚举值有Y年/M月/D日三种)
204
+ :rtype: int
205
+ """
170
206
  return self._LifeSpan
171
207
 
172
208
  @LifeSpan.setter
@@ -175,6 +211,9 @@ class License(AbstractModel):
175
211
 
176
212
  @property
177
213
  def IssueDate(self):
214
+ """授权颁发时间。
215
+ :rtype: str
216
+ """
178
217
  return self._IssueDate
179
218
 
180
219
  @IssueDate.setter
@@ -183,6 +222,10 @@ class License(AbstractModel):
183
222
 
184
223
  @property
185
224
  def ActivationDate(self):
225
+ """授权激活时间,如从未激活则返回 null。
226
+ 注意:此字段可能返回 null,表示取不到有效值。
227
+ :rtype: str
228
+ """
186
229
  return self._ActivationDate
187
230
 
188
231
  @ActivationDate.setter
@@ -191,6 +234,10 @@ class License(AbstractModel):
191
234
 
192
235
  @property
193
236
  def ExpirationDate(self):
237
+ """授权过期时间,如未过期或者是永久授权,则返回 null。
238
+ 注意:此字段可能返回 null,表示取不到有效值。
239
+ :rtype: str
240
+ """
194
241
  return self._ExpirationDate
195
242
 
196
243
  @ExpirationDate.setter
@@ -199,6 +246,9 @@ class License(AbstractModel):
199
246
 
200
247
  @property
201
248
  def LifeSpanUnit(self):
249
+ """授权时长单位,枚举值有Y年/M月/D日三种
250
+ :rtype: str
251
+ """
202
252
  return self._LifeSpanUnit
203
253
 
204
254
  @LifeSpanUnit.setter
@@ -263,6 +313,9 @@ class SaleParam(AbstractModel):
263
313
 
264
314
  @property
265
315
  def ParamKey(self):
316
+ """售卖参数标识
317
+ :rtype: str
318
+ """
266
319
  return self._ParamKey
267
320
 
268
321
  @ParamKey.setter
@@ -271,6 +324,9 @@ class SaleParam(AbstractModel):
271
324
 
272
325
  @property
273
326
  def ParamValue(self):
327
+ """售卖参数值
328
+ :rtype: str
329
+ """
274
330
  return self._ParamValue
275
331
 
276
332
  @ParamValue.setter
@@ -279,6 +335,10 @@ class SaleParam(AbstractModel):
279
335
 
280
336
  @property
281
337
  def ParamKeyName(self):
338
+ """售卖参数的展示名称
339
+ 注意:此字段可能返回 null,表示取不到有效值。
340
+ :rtype: str
341
+ """
282
342
  return self._ParamKeyName
283
343
 
284
344
  @ParamKeyName.setter
@@ -287,6 +347,10 @@ class SaleParam(AbstractModel):
287
347
 
288
348
  @property
289
349
  def ParamValueName(self):
350
+ """售卖参数值的展示名称
351
+ 注意:此字段可能返回 null,表示取不到有效值。
352
+ :rtype: str
353
+ """
290
354
  return self._ParamValueName
291
355
 
292
356
  @ParamValueName.setter
@@ -332,6 +396,9 @@ class VerifyLicenseResponse(AbstractModel):
332
396
 
333
397
  @property
334
398
  def License(self):
399
+ """软件的详细授权信息。
400
+ :rtype: :class:`tencentcloud.cloudapp.v20220530.models.License`
401
+ """
335
402
  return self._License
336
403
 
337
404
  @License.setter
@@ -340,6 +407,9 @@ class VerifyLicenseResponse(AbstractModel):
340
407
 
341
408
  @property
342
409
  def RequestId(self):
410
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
411
+ :rtype: str
412
+ """
343
413
  return self._RequestId
344
414
 
345
415
  @RequestId.setter
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cloudapp
3
- Version: 3.0.1262
3
+ Version: 3.0.1263
4
4
  Summary: Tencent Cloud Cloudapp SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1263
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1262