tencentcloud-sdk-python-tsf 3.0.1389__tar.gz → 3.0.1391__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-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/setup.py +1 -1
  3. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud/tsf/v20180326/models.py +20 -0
  5. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud_sdk_python_tsf.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-tsf-3.0.1391/tencentcloud_sdk_python_tsf.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-tsf-3.0.1389/tencentcloud_sdk_python_tsf.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/README.rst +0 -0
  9. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud/tsf/__init__.py +0 -0
  11. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud/tsf/v20180326/__init__.py +0 -0
  12. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud/tsf/v20180326/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud/tsf/v20180326/tsf_client.py +0 -0
  14. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud_sdk_python_tsf.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud_sdk_python_tsf.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-tsf-3.0.1389 → tencentcloud-sdk-python-tsf-3.0.1391}/tencentcloud_sdk_python_tsf.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-tsf
3
- Version: 3.0.1389
3
+ Version: 3.0.1391
4
4
  Summary: Tencent Cloud Tsf 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-tsf',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1389"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1391"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Tsf 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.1389'
17
+ __version__ = '3.0.1391'
@@ -3157,10 +3157,13 @@ class AvailableZoneScatterScheduleRule(AbstractModel):
3157
3157
  :type MaxUnbalanceQuantity: int
3158
3158
  :param _IsForceSchedule: -
3159
3159
  :type IsForceSchedule: bool
3160
+ :param _Paths: -
3161
+ :type Paths: list of CommonOption
3160
3162
  """
3161
3163
  self._ScatterDimension = None
3162
3164
  self._MaxUnbalanceQuantity = None
3163
3165
  self._IsForceSchedule = None
3166
+ self._Paths = None
3164
3167
 
3165
3168
  @property
3166
3169
  def ScatterDimension(self):
@@ -3195,11 +3198,28 @@ class AvailableZoneScatterScheduleRule(AbstractModel):
3195
3198
  def IsForceSchedule(self, IsForceSchedule):
3196
3199
  self._IsForceSchedule = IsForceSchedule
3197
3200
 
3201
+ @property
3202
+ def Paths(self):
3203
+ """-
3204
+ :rtype: list of CommonOption
3205
+ """
3206
+ return self._Paths
3207
+
3208
+ @Paths.setter
3209
+ def Paths(self, Paths):
3210
+ self._Paths = Paths
3211
+
3198
3212
 
3199
3213
  def _deserialize(self, params):
3200
3214
  self._ScatterDimension = params.get("ScatterDimension")
3201
3215
  self._MaxUnbalanceQuantity = params.get("MaxUnbalanceQuantity")
3202
3216
  self._IsForceSchedule = params.get("IsForceSchedule")
3217
+ if params.get("Paths") is not None:
3218
+ self._Paths = []
3219
+ for item in params.get("Paths"):
3220
+ obj = CommonOption()
3221
+ obj._deserialize(item)
3222
+ self._Paths.append(obj)
3203
3223
  memeber_set = set(params.keys())
3204
3224
  for name, value in vars(self).items():
3205
3225
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-tsf
3
- Version: 3.0.1389
3
+ Version: 3.0.1391
4
4
  Summary: Tencent Cloud Tsf 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.1391
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1389