tencentcloud-sdk-python-ssl 3.0.1263__tar.gz → 3.0.1271__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-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/PKG-INFO +3 -3
  2. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/setup.cfg +0 -1
  3. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/setup.py +1 -1
  4. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud/__init__.py +1 -1
  5. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud/ssl/v20191205/models.py +150 -2
  6. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +3 -3
  7. tencentcloud-sdk-python-ssl-3.0.1271/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-ssl-3.0.1263/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/README.rst +0 -0
  10. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud/ssl/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud/ssl/v20191205/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
  14. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ssl-3.0.1263 → tencentcloud-sdk-python-ssl-3.0.1271}/tencentcloud_sdk_python_ssl.egg-info/top_level.txt +0 -0
@@ -1,10 +1,10 @@
1
- Metadata-Version: 1.1
1
+ Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1263
3
+ Version: 3.0.1271
4
4
  Summary: Tencent Cloud Ssl SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
7
- Author-email: tencentcloudapi@tencent.com
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
8
  License: Apache License 2.0
9
9
  Description: ============================
10
10
  Tencent Cloud SDK for Python
@@ -4,5 +4,4 @@ universal = 1
4
4
  [egg_info]
5
5
  tag_build =
6
6
  tag_date = 0
7
- tag_svn_revision = 0
8
7
 
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-ssl',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1263"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1271"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Ssl 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.1263'
17
+ __version__ = '3.0.1271'
@@ -1084,6 +1084,102 @@ class CdnInstanceList(AbstractModel):
1084
1084
 
1085
1085
 
1086
1086
 
1087
+ class CertBasicInfo(AbstractModel):
1088
+ """证书基本信息
1089
+
1090
+ """
1091
+
1092
+ def __init__(self):
1093
+ r"""
1094
+ :param _Issuer: 颁发者
1095
+ :type Issuer: str
1096
+ :param _Subject: 颁发给
1097
+ :type Subject: str
1098
+ :param _Fingerprint: 证书指纹
1099
+ :type Fingerprint: str
1100
+ :param _ValidFrom: 证书有效期开始时间
1101
+ :type ValidFrom: str
1102
+ :param _ValidTo: 证书有效期结束时间
1103
+ :type ValidTo: str
1104
+ """
1105
+ self._Issuer = None
1106
+ self._Subject = None
1107
+ self._Fingerprint = None
1108
+ self._ValidFrom = None
1109
+ self._ValidTo = None
1110
+
1111
+ @property
1112
+ def Issuer(self):
1113
+ """颁发者
1114
+ :rtype: str
1115
+ """
1116
+ return self._Issuer
1117
+
1118
+ @Issuer.setter
1119
+ def Issuer(self, Issuer):
1120
+ self._Issuer = Issuer
1121
+
1122
+ @property
1123
+ def Subject(self):
1124
+ """颁发给
1125
+ :rtype: str
1126
+ """
1127
+ return self._Subject
1128
+
1129
+ @Subject.setter
1130
+ def Subject(self, Subject):
1131
+ self._Subject = Subject
1132
+
1133
+ @property
1134
+ def Fingerprint(self):
1135
+ """证书指纹
1136
+ :rtype: str
1137
+ """
1138
+ return self._Fingerprint
1139
+
1140
+ @Fingerprint.setter
1141
+ def Fingerprint(self, Fingerprint):
1142
+ self._Fingerprint = Fingerprint
1143
+
1144
+ @property
1145
+ def ValidFrom(self):
1146
+ """证书有效期开始时间
1147
+ :rtype: str
1148
+ """
1149
+ return self._ValidFrom
1150
+
1151
+ @ValidFrom.setter
1152
+ def ValidFrom(self, ValidFrom):
1153
+ self._ValidFrom = ValidFrom
1154
+
1155
+ @property
1156
+ def ValidTo(self):
1157
+ """证书有效期结束时间
1158
+ :rtype: str
1159
+ """
1160
+ return self._ValidTo
1161
+
1162
+ @ValidTo.setter
1163
+ def ValidTo(self, ValidTo):
1164
+ self._ValidTo = ValidTo
1165
+
1166
+
1167
+ def _deserialize(self, params):
1168
+ self._Issuer = params.get("Issuer")
1169
+ self._Subject = params.get("Subject")
1170
+ self._Fingerprint = params.get("Fingerprint")
1171
+ self._ValidFrom = params.get("ValidFrom")
1172
+ self._ValidTo = params.get("ValidTo")
1173
+ memeber_set = set(params.keys())
1174
+ for name, value in vars(self).items():
1175
+ property_name = name[1:]
1176
+ if property_name in memeber_set:
1177
+ memeber_set.remove(property_name)
1178
+ if len(memeber_set) > 0:
1179
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1180
+
1181
+
1182
+
1087
1183
  class CertTaskId(AbstractModel):
1088
1184
  """证书异步任务ID
1089
1185
 
@@ -6259,6 +6355,9 @@ class DescribeCertificateDetailResponse(AbstractModel):
6259
6355
  :param _DvRevokeAuthDetail: DV证书吊销验证值
6260
6356
  注意:此字段可能返回 null,表示取不到有效值。
6261
6357
  :type DvRevokeAuthDetail: list of DvAuths
6358
+ :param _CertChainInfo: 证书链信息
6359
+ 注意:此字段可能返回 null,表示取不到有效值。
6360
+ :type CertChainInfo: list of CertBasicInfo
6262
6361
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6263
6362
  :type RequestId: str
6264
6363
  """
@@ -6303,6 +6402,7 @@ class DescribeCertificateDetailResponse(AbstractModel):
6303
6402
  self._EncryptCertFingerprint = None
6304
6403
  self._EncryptAlgorithm = None
6305
6404
  self._DvRevokeAuthDetail = None
6405
+ self._CertChainInfo = None
6306
6406
  self._RequestId = None
6307
6407
 
6308
6408
  @property
@@ -6797,6 +6897,18 @@ class DescribeCertificateDetailResponse(AbstractModel):
6797
6897
  def DvRevokeAuthDetail(self, DvRevokeAuthDetail):
6798
6898
  self._DvRevokeAuthDetail = DvRevokeAuthDetail
6799
6899
 
6900
+ @property
6901
+ def CertChainInfo(self):
6902
+ """证书链信息
6903
+ 注意:此字段可能返回 null,表示取不到有效值。
6904
+ :rtype: list of CertBasicInfo
6905
+ """
6906
+ return self._CertChainInfo
6907
+
6908
+ @CertChainInfo.setter
6909
+ def CertChainInfo(self, CertChainInfo):
6910
+ self._CertChainInfo = CertChainInfo
6911
+
6800
6912
  @property
6801
6913
  def RequestId(self):
6802
6914
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -6869,6 +6981,12 @@ class DescribeCertificateDetailResponse(AbstractModel):
6869
6981
  obj = DvAuths()
6870
6982
  obj._deserialize(item)
6871
6983
  self._DvRevokeAuthDetail.append(obj)
6984
+ if params.get("CertChainInfo") is not None:
6985
+ self._CertChainInfo = []
6986
+ for item in params.get("CertChainInfo"):
6987
+ obj = CertBasicInfo()
6988
+ obj._deserialize(item)
6989
+ self._CertChainInfo.append(obj)
6872
6990
  self._RequestId = params.get("RequestId")
6873
6991
 
6874
6992
 
@@ -8381,7 +8499,7 @@ class DescribeDownloadCertificateUrlRequest(AbstractModel):
8381
8499
  r"""
8382
8500
  :param _CertificateId: 证书ID
8383
8501
  :type CertificateId: str
8384
- :param _ServiceType: 下载的服务类型: nginx tomcat apache iis jks other root
8502
+ :param _ServiceType: 必填选项,下载的服务类型: nginx tomcat apache iis jks other root
8385
8503
  :type ServiceType: str
8386
8504
  """
8387
8505
  self._CertificateId = None
@@ -8400,7 +8518,7 @@ class DescribeDownloadCertificateUrlRequest(AbstractModel):
8400
8518
 
8401
8519
  @property
8402
8520
  def ServiceType(self):
8403
- """下载的服务类型: nginx tomcat apache iis jks other root
8521
+ """必填选项,下载的服务类型: nginx tomcat apache iis jks other root
8404
8522
  :rtype: str
8405
8523
  """
8406
8524
  return self._ServiceType
@@ -12848,9 +12966,15 @@ class HostingConfig(AbstractModel):
12848
12966
  :param _MessageTypes: 托管发送消息类型:0,托管开始前消息提醒(没有续费证书也会收到该提示消息); 1, 托管开始消息提醒(存在续费证书才会收到消息提醒); 2, 托管资源替换失败消息提醒; 3 托管资源替换成功消息提醒
12849
12967
  注意:此字段可能返回 null,表示取不到有效值。
12850
12968
  :type MessageTypes: list of int
12969
+ :param _ReplaceStartTime: 资源替换开始时间
12970
+ :type ReplaceStartTime: str
12971
+ :param _ReplaceEndTime: 资源替换结束时间
12972
+ :type ReplaceEndTime: str
12851
12973
  """
12852
12974
  self._ReplaceTime = None
12853
12975
  self._MessageTypes = None
12976
+ self._ReplaceStartTime = None
12977
+ self._ReplaceEndTime = None
12854
12978
 
12855
12979
  @property
12856
12980
  def ReplaceTime(self):
@@ -12876,10 +13000,34 @@ class HostingConfig(AbstractModel):
12876
13000
  def MessageTypes(self, MessageTypes):
12877
13001
  self._MessageTypes = MessageTypes
12878
13002
 
13003
+ @property
13004
+ def ReplaceStartTime(self):
13005
+ """资源替换开始时间
13006
+ :rtype: str
13007
+ """
13008
+ return self._ReplaceStartTime
13009
+
13010
+ @ReplaceStartTime.setter
13011
+ def ReplaceStartTime(self, ReplaceStartTime):
13012
+ self._ReplaceStartTime = ReplaceStartTime
13013
+
13014
+ @property
13015
+ def ReplaceEndTime(self):
13016
+ """资源替换结束时间
13017
+ :rtype: str
13018
+ """
13019
+ return self._ReplaceEndTime
13020
+
13021
+ @ReplaceEndTime.setter
13022
+ def ReplaceEndTime(self, ReplaceEndTime):
13023
+ self._ReplaceEndTime = ReplaceEndTime
13024
+
12879
13025
 
12880
13026
  def _deserialize(self, params):
12881
13027
  self._ReplaceTime = params.get("ReplaceTime")
12882
13028
  self._MessageTypes = params.get("MessageTypes")
13029
+ self._ReplaceStartTime = params.get("ReplaceStartTime")
13030
+ self._ReplaceEndTime = params.get("ReplaceEndTime")
12883
13031
  memeber_set = set(params.keys())
12884
13032
  for name, value in vars(self).items():
12885
13033
  property_name = name[1:]
@@ -1,10 +1,10 @@
1
- Metadata-Version: 1.1
1
+ Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1263
3
+ Version: 3.0.1271
4
4
  Summary: Tencent Cloud Ssl SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
7
- Author-email: tencentcloudapi@tencent.com
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
8
  License: Apache License 2.0
9
9
  Description: ============================
10
10
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1271
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1263