tencentcloud-sdk-python-emr 3.0.1436__tar.gz → 3.0.1445__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-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/setup.py +1 -1
  3. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud/emr/v20190103/errorcodes.py +3 -0
  5. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud/emr/v20190103/models.py +15 -0
  6. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-emr-3.0.1445/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-emr-3.0.1436/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/README.rst +0 -0
  10. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud/emr/__init__.py +0 -0
  12. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud/emr/v20190103/__init__.py +0 -0
  13. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud/emr/v20190103/emr_client.py +0 -0
  14. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-emr-3.0.1436 → tencentcloud-sdk-python-emr-3.0.1445}/tencentcloud_sdk_python_emr.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-emr
3
- Version: 3.0.1436
3
+ Version: 3.0.1445
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
@@ -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.0.1436,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1445,<4.0.0"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Emr 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.1436'
17
+ __version__ = '3.0.1445'
@@ -622,3 +622,6 @@ UNSUPPORTEDOPERATION_NOTINWHITELIST = 'UnsupportedOperation.NotInWhiteList'
622
622
 
623
623
  # 该服务不支持此操作。
624
624
  UNSUPPORTEDOPERATION_SERVICENOTSUPPORT = 'UnsupportedOperation.ServiceNotSupport'
625
+
626
+ # 操作不支持。
627
+ UNSUPPORTEDOPERATION_UNSUPPORTEDDISKTYPE = 'UnsupportedOperation.UnsupportedDiskType'
@@ -10183,6 +10183,8 @@ class DescribeInsightListRequest(AbstractModel):
10183
10183
  :type Page: int
10184
10184
  :param _Type: 查询类型,支持HIVE,SPARK,DLC_SPARK,SPARK_SQL,SCHEDULE,MAPREDUCE,TRINO等类型,默认查询全部
10185
10185
  :type Type: str
10186
+ :param _MustHasContext: 是否包含具体参数建议等信息
10187
+ :type MustHasContext: bool
10186
10188
  """
10187
10189
  self._InstanceId = None
10188
10190
  self._StartTime = None
@@ -10190,6 +10192,7 @@ class DescribeInsightListRequest(AbstractModel):
10190
10192
  self._PageSize = None
10191
10193
  self._Page = None
10192
10194
  self._Type = None
10195
+ self._MustHasContext = None
10193
10196
 
10194
10197
  @property
10195
10198
  def InstanceId(self):
@@ -10257,6 +10260,17 @@ class DescribeInsightListRequest(AbstractModel):
10257
10260
  def Type(self, Type):
10258
10261
  self._Type = Type
10259
10262
 
10263
+ @property
10264
+ def MustHasContext(self):
10265
+ """是否包含具体参数建议等信息
10266
+ :rtype: bool
10267
+ """
10268
+ return self._MustHasContext
10269
+
10270
+ @MustHasContext.setter
10271
+ def MustHasContext(self, MustHasContext):
10272
+ self._MustHasContext = MustHasContext
10273
+
10260
10274
 
10261
10275
  def _deserialize(self, params):
10262
10276
  self._InstanceId = params.get("InstanceId")
@@ -10265,6 +10279,7 @@ class DescribeInsightListRequest(AbstractModel):
10265
10279
  self._PageSize = params.get("PageSize")
10266
10280
  self._Page = params.get("Page")
10267
10281
  self._Type = params.get("Type")
10282
+ self._MustHasContext = params.get("MustHasContext")
10268
10283
  memeber_set = set(params.keys())
10269
10284
  for name, value in vars(self).items():
10270
10285
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-emr
3
- Version: 3.0.1436
3
+ Version: 3.0.1445
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.0.1445
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1436