tencentcloud-sdk-python-emr 3.1.29__tar.gz → 3.1.34__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 (17) hide show
  1. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/setup.py +1 -1
  3. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud/emr/v20190103/models.py +30 -0
  5. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_emr-3.1.34/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_emr-3.1.29/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/README.rst +0 -0
  9. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud/emr/__init__.py +0 -0
  11. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud/emr/v20190103/__init__.py +0 -0
  12. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud/emr/v20190103/emr_client.py +0 -0
  13. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud/emr/v20190103/emr_client_async.py +0 -0
  14. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud/emr/v20190103/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_emr-3.1.29 → tencentcloud_sdk_python_emr-3.1.34}/tencentcloud_sdk_python_emr.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-emr
3
- Version: 3.1.29
3
+ Version: 3.1.34
4
4
  Summary: Tencent Cloud Emr SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.29
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.34
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-emr',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.29,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.34,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Emr SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.29'
17
+ __version__ = '3.1.34'
@@ -5071,6 +5071,8 @@ class CreateClusterRequest(AbstractModel):
5071
5071
  :type DefaultMetaVersion: str
5072
5072
  :param _NeedCdbAudit: 是否开通数据库审计
5073
5073
  :type NeedCdbAudit: int
5074
+ :param _SgIP: 安全指定来源ip
5075
+ :type SgIP: str
5074
5076
  """
5075
5077
  self._ProductVersion = None
5076
5078
  self._EnableSupportHAFlag = None
@@ -5097,6 +5099,7 @@ class CreateClusterRequest(AbstractModel):
5097
5099
  self._LoadBalancerId = None
5098
5100
  self._DefaultMetaVersion = None
5099
5101
  self._NeedCdbAudit = None
5102
+ self._SgIP = None
5100
5103
 
5101
5104
  @property
5102
5105
  def ProductVersion(self):
@@ -5392,6 +5395,17 @@ class CreateClusterRequest(AbstractModel):
5392
5395
  def NeedCdbAudit(self, NeedCdbAudit):
5393
5396
  self._NeedCdbAudit = NeedCdbAudit
5394
5397
 
5398
+ @property
5399
+ def SgIP(self):
5400
+ r"""安全指定来源ip
5401
+ :rtype: str
5402
+ """
5403
+ return self._SgIP
5404
+
5405
+ @SgIP.setter
5406
+ def SgIP(self, SgIP):
5407
+ self._SgIP = SgIP
5408
+
5395
5409
 
5396
5410
  def _deserialize(self, params):
5397
5411
  self._ProductVersion = params.get("ProductVersion")
@@ -5452,6 +5466,7 @@ class CreateClusterRequest(AbstractModel):
5452
5466
  self._LoadBalancerId = params.get("LoadBalancerId")
5453
5467
  self._DefaultMetaVersion = params.get("DefaultMetaVersion")
5454
5468
  self._NeedCdbAudit = params.get("NeedCdbAudit")
5469
+ self._SgIP = params.get("SgIP")
5455
5470
  memeber_set = set(params.keys())
5456
5471
  for name, value in vars(self).items():
5457
5472
  property_name = name[1:]
@@ -5729,6 +5744,8 @@ Hadoop-Hbase
5729
5744
  :type DefaultMetaVersion: str
5730
5745
  :param _NeedCdbAudit: 是否开通审计:0:不开通,1:开通
5731
5746
  :type NeedCdbAudit: int
5747
+ :param _SgIP: 安全组指定来源ip
5748
+ :type SgIP: str
5732
5749
  """
5733
5750
  self._ProductId = None
5734
5751
  self._Software = None
@@ -5767,6 +5784,7 @@ Hadoop-Hbase
5767
5784
  self._LoadBalancerId = None
5768
5785
  self._DefaultMetaVersion = None
5769
5786
  self._NeedCdbAudit = None
5787
+ self._SgIP = None
5770
5788
 
5771
5789
  @property
5772
5790
  def ProductId(self):
@@ -6214,6 +6232,17 @@ Hadoop-Hbase
6214
6232
  def NeedCdbAudit(self, NeedCdbAudit):
6215
6233
  self._NeedCdbAudit = NeedCdbAudit
6216
6234
 
6235
+ @property
6236
+ def SgIP(self):
6237
+ r"""安全组指定来源ip
6238
+ :rtype: str
6239
+ """
6240
+ return self._SgIP
6241
+
6242
+ @SgIP.setter
6243
+ def SgIP(self, SgIP):
6244
+ self._SgIP = SgIP
6245
+
6217
6246
 
6218
6247
  def _deserialize(self, params):
6219
6248
  self._ProductId = params.get("ProductId")
@@ -6290,6 +6319,7 @@ Hadoop-Hbase
6290
6319
  self._LoadBalancerId = params.get("LoadBalancerId")
6291
6320
  self._DefaultMetaVersion = params.get("DefaultMetaVersion")
6292
6321
  self._NeedCdbAudit = params.get("NeedCdbAudit")
6322
+ self._SgIP = params.get("SgIP")
6293
6323
  memeber_set = set(params.keys())
6294
6324
  for name, value in vars(self).items():
6295
6325
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-emr
3
- Version: 3.1.29
3
+ Version: 3.1.34
4
4
  Summary: Tencent Cloud Emr SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.29
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.34
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.34
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.29