tencentcloud-sdk-python-dlc 3.0.1372__tar.gz → 3.0.1374__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-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/setup.py +1 -1
  3. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud/dlc/v20210125/models.py +30 -0
  5. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-dlc-3.0.1374/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-dlc-3.0.1372/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/README.rst +0 -0
  9. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud/dlc/__init__.py +0 -0
  11. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  12. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  13. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-dlc-3.0.1372 → tencentcloud-sdk-python-dlc-3.0.1374}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1372
3
+ Version: 3.0.1374
4
4
  Summary: Tencent Cloud Dlc 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-dlc',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1372"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1374"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Dlc 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.1372'
17
+ __version__ = '3.0.1374'
@@ -21066,12 +21066,15 @@ class DescribeUserRolesRequest(AbstractModel):
21066
21066
  :type SortBy: str
21067
21067
  :param _Sorting: 正序或者倒序,例如:desc
21068
21068
  :type Sorting: str
21069
+ :param _IsDefault: 是否设置为常驻:1非常驻(默认)、2常驻(仅能设置一个常驻)
21070
+ :type IsDefault: int
21069
21071
  """
21070
21072
  self._Limit = None
21071
21073
  self._Offset = None
21072
21074
  self._Fuzzy = None
21073
21075
  self._SortBy = None
21074
21076
  self._Sorting = None
21077
+ self._IsDefault = None
21075
21078
 
21076
21079
  @property
21077
21080
  def Limit(self):
@@ -21128,6 +21131,17 @@ class DescribeUserRolesRequest(AbstractModel):
21128
21131
  def Sorting(self, Sorting):
21129
21132
  self._Sorting = Sorting
21130
21133
 
21134
+ @property
21135
+ def IsDefault(self):
21136
+ """是否设置为常驻:1非常驻(默认)、2常驻(仅能设置一个常驻)
21137
+ :rtype: int
21138
+ """
21139
+ return self._IsDefault
21140
+
21141
+ @IsDefault.setter
21142
+ def IsDefault(self, IsDefault):
21143
+ self._IsDefault = IsDefault
21144
+
21131
21145
 
21132
21146
  def _deserialize(self, params):
21133
21147
  self._Limit = params.get("Limit")
@@ -21135,6 +21149,7 @@ class DescribeUserRolesRequest(AbstractModel):
21135
21149
  self._Fuzzy = params.get("Fuzzy")
21136
21150
  self._SortBy = params.get("SortBy")
21137
21151
  self._Sorting = params.get("Sorting")
21152
+ self._IsDefault = params.get("IsDefault")
21138
21153
  memeber_set = set(params.keys())
21139
21154
  for name, value in vars(self).items():
21140
21155
  property_name = name[1:]
@@ -35902,6 +35917,8 @@ class UserRole(AbstractModel):
35902
35917
  :type CosPermissionList: list of CosPermission
35903
35918
  :param _PermissionJson: cam策略json
35904
35919
  :type PermissionJson: str
35920
+ :param _IsDefault: 是否设置为常驻:1非常驻(默认)、2常驻(仅能设置一个常驻)
35921
+ :type IsDefault: int
35905
35922
  """
35906
35923
  self._RoleId = None
35907
35924
  self._AppId = None
@@ -35913,6 +35930,7 @@ class UserRole(AbstractModel):
35913
35930
  self._Creator = None
35914
35931
  self._CosPermissionList = None
35915
35932
  self._PermissionJson = None
35933
+ self._IsDefault = None
35916
35934
 
35917
35935
  @property
35918
35936
  def RoleId(self):
@@ -36024,6 +36042,17 @@ class UserRole(AbstractModel):
36024
36042
  def PermissionJson(self, PermissionJson):
36025
36043
  self._PermissionJson = PermissionJson
36026
36044
 
36045
+ @property
36046
+ def IsDefault(self):
36047
+ """是否设置为常驻:1非常驻(默认)、2常驻(仅能设置一个常驻)
36048
+ :rtype: int
36049
+ """
36050
+ return self._IsDefault
36051
+
36052
+ @IsDefault.setter
36053
+ def IsDefault(self, IsDefault):
36054
+ self._IsDefault = IsDefault
36055
+
36027
36056
 
36028
36057
  def _deserialize(self, params):
36029
36058
  self._RoleId = params.get("RoleId")
@@ -36041,6 +36070,7 @@ class UserRole(AbstractModel):
36041
36070
  obj._deserialize(item)
36042
36071
  self._CosPermissionList.append(obj)
36043
36072
  self._PermissionJson = params.get("PermissionJson")
36073
+ self._IsDefault = params.get("IsDefault")
36044
36074
  memeber_set = set(params.keys())
36045
36075
  for name, value in vars(self).items():
36046
36076
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1372
3
+ Version: 3.0.1374
4
4
  Summary: Tencent Cloud Dlc 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.1374
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1372