tencentcloud-sdk-python-redis 3.0.1367__tar.gz → 3.0.1369__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-redis might be problematic. Click here for more details.
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/setup.py +1 -1
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud/redis/v20180412/models.py +159 -6
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud_sdk_python_redis.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-redis-3.0.1369/tencentcloud_sdk_python_redis.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-redis-3.0.1367/tencentcloud_sdk_python_redis.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/README.rst +0 -0
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/setup.cfg +0 -0
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud/redis/__init__.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud/redis/v20180412/__init__.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud/redis/v20180412/errorcodes.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud/redis/v20180412/redis_client.py +0 -0
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud_sdk_python_redis.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud_sdk_python_redis.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/tencentcloud_sdk_python_redis.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-redis',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1369"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Redis SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -12117,17 +12117,29 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
|
|
|
12117
12117
|
|
|
12118
12118
|
def __init__(self):
|
|
12119
12119
|
r"""
|
|
12120
|
-
:param _Price:
|
|
12120
|
+
:param _Price: 价格
|
|
12121
12121
|
:type Price: float
|
|
12122
|
+
:param _HighPrecisionPrice: 高精度价格
|
|
12123
|
+
:type HighPrecisionPrice: float
|
|
12124
|
+
:param _Currency: 币种
|
|
12125
|
+
:type Currency: str
|
|
12126
|
+
:param _AmountUnit: 价格金额单位
|
|
12127
|
+
|
|
12128
|
+
- pent: 分
|
|
12129
|
+
- microPent: 微分
|
|
12130
|
+
:type AmountUnit: str
|
|
12122
12131
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12123
12132
|
:type RequestId: str
|
|
12124
12133
|
"""
|
|
12125
12134
|
self._Price = None
|
|
12135
|
+
self._HighPrecisionPrice = None
|
|
12136
|
+
self._Currency = None
|
|
12137
|
+
self._AmountUnit = None
|
|
12126
12138
|
self._RequestId = None
|
|
12127
12139
|
|
|
12128
12140
|
@property
|
|
12129
12141
|
def Price(self):
|
|
12130
|
-
"""
|
|
12142
|
+
"""价格
|
|
12131
12143
|
:rtype: float
|
|
12132
12144
|
"""
|
|
12133
12145
|
return self._Price
|
|
@@ -12136,6 +12148,42 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
|
|
|
12136
12148
|
def Price(self, Price):
|
|
12137
12149
|
self._Price = Price
|
|
12138
12150
|
|
|
12151
|
+
@property
|
|
12152
|
+
def HighPrecisionPrice(self):
|
|
12153
|
+
"""高精度价格
|
|
12154
|
+
:rtype: float
|
|
12155
|
+
"""
|
|
12156
|
+
return self._HighPrecisionPrice
|
|
12157
|
+
|
|
12158
|
+
@HighPrecisionPrice.setter
|
|
12159
|
+
def HighPrecisionPrice(self, HighPrecisionPrice):
|
|
12160
|
+
self._HighPrecisionPrice = HighPrecisionPrice
|
|
12161
|
+
|
|
12162
|
+
@property
|
|
12163
|
+
def Currency(self):
|
|
12164
|
+
"""币种
|
|
12165
|
+
:rtype: str
|
|
12166
|
+
"""
|
|
12167
|
+
return self._Currency
|
|
12168
|
+
|
|
12169
|
+
@Currency.setter
|
|
12170
|
+
def Currency(self, Currency):
|
|
12171
|
+
self._Currency = Currency
|
|
12172
|
+
|
|
12173
|
+
@property
|
|
12174
|
+
def AmountUnit(self):
|
|
12175
|
+
"""价格金额单位
|
|
12176
|
+
|
|
12177
|
+
- pent: 分
|
|
12178
|
+
- microPent: 微分
|
|
12179
|
+
:rtype: str
|
|
12180
|
+
"""
|
|
12181
|
+
return self._AmountUnit
|
|
12182
|
+
|
|
12183
|
+
@AmountUnit.setter
|
|
12184
|
+
def AmountUnit(self, AmountUnit):
|
|
12185
|
+
self._AmountUnit = AmountUnit
|
|
12186
|
+
|
|
12139
12187
|
@property
|
|
12140
12188
|
def RequestId(self):
|
|
12141
12189
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -12150,6 +12198,9 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
|
|
|
12150
12198
|
|
|
12151
12199
|
def _deserialize(self, params):
|
|
12152
12200
|
self._Price = params.get("Price")
|
|
12201
|
+
self._HighPrecisionPrice = params.get("HighPrecisionPrice")
|
|
12202
|
+
self._Currency = params.get("Currency")
|
|
12203
|
+
self._AmountUnit = params.get("AmountUnit")
|
|
12153
12204
|
self._RequestId = params.get("RequestId")
|
|
12154
12205
|
|
|
12155
12206
|
|
|
@@ -12211,17 +12262,29 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
|
|
|
12211
12262
|
|
|
12212
12263
|
def __init__(self):
|
|
12213
12264
|
r"""
|
|
12214
|
-
:param _Price:
|
|
12265
|
+
:param _Price: 价格
|
|
12215
12266
|
:type Price: float
|
|
12267
|
+
:param _HighPrecisionPrice: 高精度价格
|
|
12268
|
+
:type HighPrecisionPrice: float
|
|
12269
|
+
:param _Currency: 币种
|
|
12270
|
+
:type Currency: str
|
|
12271
|
+
:param _AmountUnit: 价格金额单位
|
|
12272
|
+
|
|
12273
|
+
- pent: 分
|
|
12274
|
+
- microPent: 微分
|
|
12275
|
+
:type AmountUnit: str
|
|
12216
12276
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12217
12277
|
:type RequestId: str
|
|
12218
12278
|
"""
|
|
12219
12279
|
self._Price = None
|
|
12280
|
+
self._HighPrecisionPrice = None
|
|
12281
|
+
self._Currency = None
|
|
12282
|
+
self._AmountUnit = None
|
|
12220
12283
|
self._RequestId = None
|
|
12221
12284
|
|
|
12222
12285
|
@property
|
|
12223
12286
|
def Price(self):
|
|
12224
|
-
"""
|
|
12287
|
+
"""价格
|
|
12225
12288
|
:rtype: float
|
|
12226
12289
|
"""
|
|
12227
12290
|
return self._Price
|
|
@@ -12230,6 +12293,42 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
|
|
|
12230
12293
|
def Price(self, Price):
|
|
12231
12294
|
self._Price = Price
|
|
12232
12295
|
|
|
12296
|
+
@property
|
|
12297
|
+
def HighPrecisionPrice(self):
|
|
12298
|
+
"""高精度价格
|
|
12299
|
+
:rtype: float
|
|
12300
|
+
"""
|
|
12301
|
+
return self._HighPrecisionPrice
|
|
12302
|
+
|
|
12303
|
+
@HighPrecisionPrice.setter
|
|
12304
|
+
def HighPrecisionPrice(self, HighPrecisionPrice):
|
|
12305
|
+
self._HighPrecisionPrice = HighPrecisionPrice
|
|
12306
|
+
|
|
12307
|
+
@property
|
|
12308
|
+
def Currency(self):
|
|
12309
|
+
"""币种
|
|
12310
|
+
:rtype: str
|
|
12311
|
+
"""
|
|
12312
|
+
return self._Currency
|
|
12313
|
+
|
|
12314
|
+
@Currency.setter
|
|
12315
|
+
def Currency(self, Currency):
|
|
12316
|
+
self._Currency = Currency
|
|
12317
|
+
|
|
12318
|
+
@property
|
|
12319
|
+
def AmountUnit(self):
|
|
12320
|
+
"""价格金额单位
|
|
12321
|
+
|
|
12322
|
+
- pent: 分
|
|
12323
|
+
- microPent: 微分
|
|
12324
|
+
:rtype: str
|
|
12325
|
+
"""
|
|
12326
|
+
return self._AmountUnit
|
|
12327
|
+
|
|
12328
|
+
@AmountUnit.setter
|
|
12329
|
+
def AmountUnit(self, AmountUnit):
|
|
12330
|
+
self._AmountUnit = AmountUnit
|
|
12331
|
+
|
|
12233
12332
|
@property
|
|
12234
12333
|
def RequestId(self):
|
|
12235
12334
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -12244,6 +12343,9 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
|
|
|
12244
12343
|
|
|
12245
12344
|
def _deserialize(self, params):
|
|
12246
12345
|
self._Price = params.get("Price")
|
|
12346
|
+
self._HighPrecisionPrice = params.get("HighPrecisionPrice")
|
|
12347
|
+
self._Currency = params.get("Currency")
|
|
12348
|
+
self._AmountUnit = params.get("AmountUnit")
|
|
12247
12349
|
self._RequestId = params.get("RequestId")
|
|
12248
12350
|
|
|
12249
12351
|
|
|
@@ -12335,17 +12437,29 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
|
|
|
12335
12437
|
|
|
12336
12438
|
def __init__(self):
|
|
12337
12439
|
r"""
|
|
12338
|
-
:param _Price:
|
|
12440
|
+
:param _Price: 价格
|
|
12339
12441
|
:type Price: float
|
|
12442
|
+
:param _HighPrecisionPrice: 高精度价格
|
|
12443
|
+
:type HighPrecisionPrice: float
|
|
12444
|
+
:param _Currency: 币种
|
|
12445
|
+
:type Currency: str
|
|
12446
|
+
:param _AmountUnit: 价格金额单位
|
|
12447
|
+
|
|
12448
|
+
- pent: 分
|
|
12449
|
+
- microPent: 微分
|
|
12450
|
+
:type AmountUnit: str
|
|
12340
12451
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12341
12452
|
:type RequestId: str
|
|
12342
12453
|
"""
|
|
12343
12454
|
self._Price = None
|
|
12455
|
+
self._HighPrecisionPrice = None
|
|
12456
|
+
self._Currency = None
|
|
12457
|
+
self._AmountUnit = None
|
|
12344
12458
|
self._RequestId = None
|
|
12345
12459
|
|
|
12346
12460
|
@property
|
|
12347
12461
|
def Price(self):
|
|
12348
|
-
"""
|
|
12462
|
+
"""价格
|
|
12349
12463
|
:rtype: float
|
|
12350
12464
|
"""
|
|
12351
12465
|
return self._Price
|
|
@@ -12354,6 +12468,42 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
|
|
|
12354
12468
|
def Price(self, Price):
|
|
12355
12469
|
self._Price = Price
|
|
12356
12470
|
|
|
12471
|
+
@property
|
|
12472
|
+
def HighPrecisionPrice(self):
|
|
12473
|
+
"""高精度价格
|
|
12474
|
+
:rtype: float
|
|
12475
|
+
"""
|
|
12476
|
+
return self._HighPrecisionPrice
|
|
12477
|
+
|
|
12478
|
+
@HighPrecisionPrice.setter
|
|
12479
|
+
def HighPrecisionPrice(self, HighPrecisionPrice):
|
|
12480
|
+
self._HighPrecisionPrice = HighPrecisionPrice
|
|
12481
|
+
|
|
12482
|
+
@property
|
|
12483
|
+
def Currency(self):
|
|
12484
|
+
"""币种
|
|
12485
|
+
:rtype: str
|
|
12486
|
+
"""
|
|
12487
|
+
return self._Currency
|
|
12488
|
+
|
|
12489
|
+
@Currency.setter
|
|
12490
|
+
def Currency(self, Currency):
|
|
12491
|
+
self._Currency = Currency
|
|
12492
|
+
|
|
12493
|
+
@property
|
|
12494
|
+
def AmountUnit(self):
|
|
12495
|
+
"""价格金额单位
|
|
12496
|
+
|
|
12497
|
+
- pent: 分
|
|
12498
|
+
- microPent: 微分
|
|
12499
|
+
:rtype: str
|
|
12500
|
+
"""
|
|
12501
|
+
return self._AmountUnit
|
|
12502
|
+
|
|
12503
|
+
@AmountUnit.setter
|
|
12504
|
+
def AmountUnit(self, AmountUnit):
|
|
12505
|
+
self._AmountUnit = AmountUnit
|
|
12506
|
+
|
|
12357
12507
|
@property
|
|
12358
12508
|
def RequestId(self):
|
|
12359
12509
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -12368,6 +12518,9 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
|
|
|
12368
12518
|
|
|
12369
12519
|
def _deserialize(self, params):
|
|
12370
12520
|
self._Price = params.get("Price")
|
|
12521
|
+
self._HighPrecisionPrice = params.get("HighPrecisionPrice")
|
|
12522
|
+
self._Currency = params.get("Currency")
|
|
12523
|
+
self._AmountUnit = params.get("AmountUnit")
|
|
12371
12524
|
self._RequestId = params.get("RequestId")
|
|
12372
12525
|
|
|
12373
12526
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1369
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1367
|
{tencentcloud-sdk-python-redis-3.0.1367 → tencentcloud-sdk-python-redis-3.0.1369}/README.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|