tencentcloud-sdk-python-cloudapp 3.0.1460__tar.gz → 3.0.1475__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.
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/setup.py +1 -1
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud/cloudapp/v20220530/models.py +75 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud_sdk_python_cloudapp.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cloudapp-3.0.1475/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cloudapp-3.0.1460/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/README.rst +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud/cloudapp/__init__.py +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud/cloudapp/v20220530/__init__.py +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud/cloudapp/v20220530/cloudapp_client.py +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud/cloudapp/v20220530/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud_sdk_python_cloudapp.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud_sdk_python_cloudapp.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/tencentcloud_sdk_python_cloudapp.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/setup.py
RENAMED
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1475,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cloudapp SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -468,6 +468,10 @@ class SaleParam(AbstractModel):
|
|
|
468
468
|
:param _ParamKeyName: 售卖参数的展示名称
|
|
469
469
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
470
470
|
:type ParamKeyName: str
|
|
471
|
+
:param _ParamId: 参数 Id
|
|
472
|
+
:type ParamId: str
|
|
473
|
+
:param _ParamValueId: 参数值 Id
|
|
474
|
+
:type ParamValueId: str
|
|
471
475
|
:param _ParamValue: 售卖参数值,当ParamType=Quant时,该值有可能为Null
|
|
472
476
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
473
477
|
:type ParamValue: str
|
|
@@ -477,12 +481,23 @@ class SaleParam(AbstractModel):
|
|
|
477
481
|
:param _ParamType: 售卖参数的类型,目前支持枚举类Enum/数量类Quant
|
|
478
482
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
479
483
|
:type ParamType: str
|
|
484
|
+
:param _ModuleId: 模块ID
|
|
485
|
+
:type ModuleId: str
|
|
486
|
+
:param _ModuleKey: 模块key
|
|
487
|
+
:type ModuleKey: str
|
|
488
|
+
:param _ModuleName: 模块名称
|
|
489
|
+
:type ModuleName: str
|
|
480
490
|
"""
|
|
481
491
|
self._ParamKey = None
|
|
482
492
|
self._ParamKeyName = None
|
|
493
|
+
self._ParamId = None
|
|
494
|
+
self._ParamValueId = None
|
|
483
495
|
self._ParamValue = None
|
|
484
496
|
self._ParamValueName = None
|
|
485
497
|
self._ParamType = None
|
|
498
|
+
self._ModuleId = None
|
|
499
|
+
self._ModuleKey = None
|
|
500
|
+
self._ModuleName = None
|
|
486
501
|
|
|
487
502
|
@property
|
|
488
503
|
def ParamKey(self):
|
|
@@ -507,6 +522,28 @@ class SaleParam(AbstractModel):
|
|
|
507
522
|
def ParamKeyName(self, ParamKeyName):
|
|
508
523
|
self._ParamKeyName = ParamKeyName
|
|
509
524
|
|
|
525
|
+
@property
|
|
526
|
+
def ParamId(self):
|
|
527
|
+
r"""参数 Id
|
|
528
|
+
:rtype: str
|
|
529
|
+
"""
|
|
530
|
+
return self._ParamId
|
|
531
|
+
|
|
532
|
+
@ParamId.setter
|
|
533
|
+
def ParamId(self, ParamId):
|
|
534
|
+
self._ParamId = ParamId
|
|
535
|
+
|
|
536
|
+
@property
|
|
537
|
+
def ParamValueId(self):
|
|
538
|
+
r"""参数值 Id
|
|
539
|
+
:rtype: str
|
|
540
|
+
"""
|
|
541
|
+
return self._ParamValueId
|
|
542
|
+
|
|
543
|
+
@ParamValueId.setter
|
|
544
|
+
def ParamValueId(self, ParamValueId):
|
|
545
|
+
self._ParamValueId = ParamValueId
|
|
546
|
+
|
|
510
547
|
@property
|
|
511
548
|
def ParamValue(self):
|
|
512
549
|
r"""售卖参数值,当ParamType=Quant时,该值有可能为Null
|
|
@@ -543,13 +580,51 @@ class SaleParam(AbstractModel):
|
|
|
543
580
|
def ParamType(self, ParamType):
|
|
544
581
|
self._ParamType = ParamType
|
|
545
582
|
|
|
583
|
+
@property
|
|
584
|
+
def ModuleId(self):
|
|
585
|
+
r"""模块ID
|
|
586
|
+
:rtype: str
|
|
587
|
+
"""
|
|
588
|
+
return self._ModuleId
|
|
589
|
+
|
|
590
|
+
@ModuleId.setter
|
|
591
|
+
def ModuleId(self, ModuleId):
|
|
592
|
+
self._ModuleId = ModuleId
|
|
593
|
+
|
|
594
|
+
@property
|
|
595
|
+
def ModuleKey(self):
|
|
596
|
+
r"""模块key
|
|
597
|
+
:rtype: str
|
|
598
|
+
"""
|
|
599
|
+
return self._ModuleKey
|
|
600
|
+
|
|
601
|
+
@ModuleKey.setter
|
|
602
|
+
def ModuleKey(self, ModuleKey):
|
|
603
|
+
self._ModuleKey = ModuleKey
|
|
604
|
+
|
|
605
|
+
@property
|
|
606
|
+
def ModuleName(self):
|
|
607
|
+
r"""模块名称
|
|
608
|
+
:rtype: str
|
|
609
|
+
"""
|
|
610
|
+
return self._ModuleName
|
|
611
|
+
|
|
612
|
+
@ModuleName.setter
|
|
613
|
+
def ModuleName(self, ModuleName):
|
|
614
|
+
self._ModuleName = ModuleName
|
|
615
|
+
|
|
546
616
|
|
|
547
617
|
def _deserialize(self, params):
|
|
548
618
|
self._ParamKey = params.get("ParamKey")
|
|
549
619
|
self._ParamKeyName = params.get("ParamKeyName")
|
|
620
|
+
self._ParamId = params.get("ParamId")
|
|
621
|
+
self._ParamValueId = params.get("ParamValueId")
|
|
550
622
|
self._ParamValue = params.get("ParamValue")
|
|
551
623
|
self._ParamValueName = params.get("ParamValueName")
|
|
552
624
|
self._ParamType = params.get("ParamType")
|
|
625
|
+
self._ModuleId = params.get("ModuleId")
|
|
626
|
+
self._ModuleKey = params.get("ModuleKey")
|
|
627
|
+
self._ModuleName = params.get("ModuleName")
|
|
553
628
|
memeber_set = set(params.keys())
|
|
554
629
|
for name, value in vars(self).items():
|
|
555
630
|
property_name = name[1:]
|
tencentcloud-sdk-python-cloudapp-3.0.1475/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1475
|
tencentcloud-sdk-python-cloudapp-3.0.1460/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1460
|
{tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-cloudapp-3.0.1460 → tencentcloud-sdk-python-cloudapp-3.0.1475}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|