tencentcloud-sdk-python-ssm 3.0.1246__tar.gz → 3.0.1259__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.

Potentially problematic release.


This version of tencentcloud-sdk-python-ssm might be problematic. Click here for more details.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud/ssm/v20190923/models.py +84 -0
  5. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud_sdk_python_ssm.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-ssm-3.0.1259/tencentcloud_sdk_python_ssm.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-ssm-3.0.1246/tencentcloud_sdk_python_ssm.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/README.rst +0 -0
  9. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud/ssm/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud/ssm/v20190923/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud/ssm/v20190923/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud/ssm/v20190923/ssm_client.py +0 -0
  14. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud_sdk_python_ssm.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud_sdk_python_ssm.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ssm-3.0.1246 → tencentcloud-sdk-python-ssm-3.0.1259}/tencentcloud_sdk_python_ssm.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ssm
3
- Version: 3.0.1246
3
+ Version: 3.0.1259
4
4
  Summary: Tencent Cloud Ssm 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-ssm',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1246"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1259"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Ssm 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.1246'
17
+ __version__ = '3.0.1259'
@@ -1953,12 +1953,33 @@ class GetServiceStatusResponse(AbstractModel):
1953
1953
  :param _AccessKeyEscrowEnabled: true表示用户已经可以使用密钥安全托管功能,
1954
1954
  false表示用户暂时不能使用密钥安全托管功能。
1955
1955
  :type AccessKeyEscrowEnabled: bool
1956
+ :param _ExpireTime: 过期时间
1957
+ :type ExpireTime: str
1958
+ :param _QPSLimit: 计算性能限制
1959
+ :type QPSLimit: int
1960
+ :param _SecretLimit: 凭据个数限制
1961
+ :type SecretLimit: int
1962
+ :param _PayModel: 付费模式
1963
+ :type PayModel: str
1964
+ :param _RenewFlag: 自动续费标识,0:手动续费 1:自动续费 2:到期不续
1965
+ :type RenewFlag: int
1966
+ :param _ResourceId: 资源id
1967
+ :type ResourceId: str
1968
+ :param _TotalCount: 已托管凭据个数
1969
+ :type TotalCount: int
1956
1970
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1957
1971
  :type RequestId: str
1958
1972
  """
1959
1973
  self._ServiceEnabled = None
1960
1974
  self._InvalidType = None
1961
1975
  self._AccessKeyEscrowEnabled = None
1976
+ self._ExpireTime = None
1977
+ self._QPSLimit = None
1978
+ self._SecretLimit = None
1979
+ self._PayModel = None
1980
+ self._RenewFlag = None
1981
+ self._ResourceId = None
1982
+ self._TotalCount = None
1962
1983
  self._RequestId = None
1963
1984
 
1964
1985
  @property
@@ -1985,6 +2006,62 @@ false表示用户暂时不能使用密钥安全托管功能。
1985
2006
  def AccessKeyEscrowEnabled(self, AccessKeyEscrowEnabled):
1986
2007
  self._AccessKeyEscrowEnabled = AccessKeyEscrowEnabled
1987
2008
 
2009
+ @property
2010
+ def ExpireTime(self):
2011
+ return self._ExpireTime
2012
+
2013
+ @ExpireTime.setter
2014
+ def ExpireTime(self, ExpireTime):
2015
+ self._ExpireTime = ExpireTime
2016
+
2017
+ @property
2018
+ def QPSLimit(self):
2019
+ return self._QPSLimit
2020
+
2021
+ @QPSLimit.setter
2022
+ def QPSLimit(self, QPSLimit):
2023
+ self._QPSLimit = QPSLimit
2024
+
2025
+ @property
2026
+ def SecretLimit(self):
2027
+ return self._SecretLimit
2028
+
2029
+ @SecretLimit.setter
2030
+ def SecretLimit(self, SecretLimit):
2031
+ self._SecretLimit = SecretLimit
2032
+
2033
+ @property
2034
+ def PayModel(self):
2035
+ return self._PayModel
2036
+
2037
+ @PayModel.setter
2038
+ def PayModel(self, PayModel):
2039
+ self._PayModel = PayModel
2040
+
2041
+ @property
2042
+ def RenewFlag(self):
2043
+ return self._RenewFlag
2044
+
2045
+ @RenewFlag.setter
2046
+ def RenewFlag(self, RenewFlag):
2047
+ self._RenewFlag = RenewFlag
2048
+
2049
+ @property
2050
+ def ResourceId(self):
2051
+ return self._ResourceId
2052
+
2053
+ @ResourceId.setter
2054
+ def ResourceId(self, ResourceId):
2055
+ self._ResourceId = ResourceId
2056
+
2057
+ @property
2058
+ def TotalCount(self):
2059
+ return self._TotalCount
2060
+
2061
+ @TotalCount.setter
2062
+ def TotalCount(self, TotalCount):
2063
+ self._TotalCount = TotalCount
2064
+
1988
2065
  @property
1989
2066
  def RequestId(self):
1990
2067
  return self._RequestId
@@ -1998,6 +2075,13 @@ false表示用户暂时不能使用密钥安全托管功能。
1998
2075
  self._ServiceEnabled = params.get("ServiceEnabled")
1999
2076
  self._InvalidType = params.get("InvalidType")
2000
2077
  self._AccessKeyEscrowEnabled = params.get("AccessKeyEscrowEnabled")
2078
+ self._ExpireTime = params.get("ExpireTime")
2079
+ self._QPSLimit = params.get("QPSLimit")
2080
+ self._SecretLimit = params.get("SecretLimit")
2081
+ self._PayModel = params.get("PayModel")
2082
+ self._RenewFlag = params.get("RenewFlag")
2083
+ self._ResourceId = params.get("ResourceId")
2084
+ self._TotalCount = params.get("TotalCount")
2001
2085
  self._RequestId = params.get("RequestId")
2002
2086
 
2003
2087
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ssm
3
- Version: 3.0.1246
3
+ Version: 3.0.1259
4
4
  Summary: Tencent Cloud Ssm 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.1259
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1246