tencentcloud-sdk-python-ssl 3.0.1252__tar.gz → 3.0.1261__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.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud/ssl/v20191205/models.py +44 -3
  5. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-ssl-3.0.1261/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-ssl-3.0.1252/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/README.rst +0 -0
  9. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud/ssl/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud/ssl/v20191205/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
  14. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ssl-3.0.1252 → tencentcloud-sdk-python-ssl-3.0.1261}/tencentcloud_sdk_python_ssl.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1252
3
+ Version: 3.0.1261
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
@@ -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.1252"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1261"],
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.1252'
17
+ __version__ = '3.0.1261'
@@ -2962,6 +2962,8 @@ class CreateCertificateByPackageRequest(AbstractModel):
2962
2962
  :type CompanyId: int
2963
2963
  :param _VerifyType: 验证方式
2964
2964
  :type VerifyType: str
2965
+ :param _PriceKey: 询价参数
2966
+ :type PriceKey: str
2965
2967
  """
2966
2968
  self._ProductPid = None
2967
2969
  self._PackageIds = None
@@ -2980,6 +2982,7 @@ class CreateCertificateByPackageRequest(AbstractModel):
2980
2982
  self._ManagerId = None
2981
2983
  self._CompanyId = None
2982
2984
  self._VerifyType = None
2985
+ self._PriceKey = None
2983
2986
 
2984
2987
  @property
2985
2988
  def ProductPid(self):
@@ -3117,6 +3120,14 @@ class CreateCertificateByPackageRequest(AbstractModel):
3117
3120
  def VerifyType(self, VerifyType):
3118
3121
  self._VerifyType = VerifyType
3119
3122
 
3123
+ @property
3124
+ def PriceKey(self):
3125
+ return self._PriceKey
3126
+
3127
+ @PriceKey.setter
3128
+ def PriceKey(self, PriceKey):
3129
+ self._PriceKey = PriceKey
3130
+
3120
3131
 
3121
3132
  def _deserialize(self, params):
3122
3133
  self._ProductPid = params.get("ProductPid")
@@ -3141,6 +3152,7 @@ class CreateCertificateByPackageRequest(AbstractModel):
3141
3152
  self._ManagerId = params.get("ManagerId")
3142
3153
  self._CompanyId = params.get("CompanyId")
3143
3154
  self._VerifyType = params.get("VerifyType")
3155
+ self._PriceKey = params.get("PriceKey")
3144
3156
  memeber_set = set(params.keys())
3145
3157
  for name, value in vars(self).items():
3146
3158
  property_name = name[1:]
@@ -3207,16 +3219,22 @@ class CreateCertificateRequest(AbstractModel):
3207
3219
 
3208
3220
  def __init__(self):
3209
3221
  r"""
3210
- :param _ProductId: 证书商品ID,3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书,25 = Wotrus 域名型证书,26 = Wotrus 域名型多域名证书,27 = Wotrus 域名型通配符证书,28 = Wotrus 企业型证书,29 = Wotrus 企业型多域名证书,30 = Wotrus 企业型通配符证书,31 = Wotrus 增强型证书,32 = Wotrus 增强型多域名证书,33 = DNSPod 国密域名型证书,34 = DNSPod 国密域名型多域名证书,35 = DNSPod 国密域名型通配符证书,37 = DNSPod 国密企业型证书,38 = DNSPod 国密企业型多域名证书,39 = DNSPod 国密企业型通配符证书,40 = DNSPod 国密增强型证书,41 = DNSPod 国密增强型多域名证书,42 = TrustAsia 域名型通配符多域名证书。
3222
+ :param _ProductId: 证书商品ID,3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书,25 = Wotrus 域名型证书,26 = Wotrus 域名型多域名证书,27 = Wotrus 域名型通配符证书,28 = Wotrus 企业型证书,29 = Wotrus 企业型多域名证书,30 = Wotrus 企业型通配符证书,31 = Wotrus 增强型证书,32 = Wotrus 增强型多域名证书,33 = Wotrus 国密域名型证书,34 = Wotrus 国密域名型多域名证书,35 = Wotrus 国密域名型通配符证书,37 = Wotrus 国密企业型证书,38 = Wotrus 国密企业型多域名证书,39 = Wotrus 国密企业型通配符证书,40 = Wotrus 国密增强型证书,41 = Wotrus 国密增强型多域名证书,42 = TrustAsia 域名型通配符多域名证书,43 = DNSPod-企业型(OV)SSL证书,44 = DNSPod-企业型(OV)通配符SSL证书,45 = DNSPod-企业型(OV)多域名SSL证书, 46 = DNSPod-增强型(EV)SSL证书,47 = DNSPod-增强型(EV)多域名SSL证书,48 = DNSPod-域名型(DV)SSL证书,49 = DNSPod-域名型(DV)通配符SSL证书,50 = DNSPod-域名型(DV)多域名SSL证书,51 = DNSPod(国密)-企业型(OV)SSL证书,52 = DNSPod(国密)-企业型(OV)通配符SSL证书,53 = DNSPod(国密)-企业型(OV)多域名SSL证书,54 = DNSPod(国密)-域名型(DV)SSL证书,55 = DNSPod(国密)-域名型(DV)通配符SSL证书, 56 = DNSPod(国密)-域名型(DV)多域名SSL证书,57 = SecureSite 企业型专业版多域名(OV Pro),58 = SecureSite 企业型多域名(OV),59 = SecureSite 增强型专业版多域名(EV Pro),60 = SecureSite 增强型多域名(EV),61 = Geotrust 增强型多域名(EV)
3211
3223
  :type ProductId: int
3212
3224
  :param _DomainNum: 证书包含的域名数量
3213
3225
  :type DomainNum: int
3214
- :param _TimeSpan: 证书年限,当前只支持 1 年证书的购买
3226
+ :param _TimeSpan: 证书年限
3215
3227
  :type TimeSpan: int
3228
+ :param _AutoVoucher: 是否自动使用代金券:1是,0否;默认为1
3229
+ :type AutoVoucher: int
3230
+ :param _Tags: 标签, 生成证书打标签
3231
+ :type Tags: list of Tags
3216
3232
  """
3217
3233
  self._ProductId = None
3218
3234
  self._DomainNum = None
3219
3235
  self._TimeSpan = None
3236
+ self._AutoVoucher = None
3237
+ self._Tags = None
3220
3238
 
3221
3239
  @property
3222
3240
  def ProductId(self):
@@ -3242,11 +3260,34 @@ class CreateCertificateRequest(AbstractModel):
3242
3260
  def TimeSpan(self, TimeSpan):
3243
3261
  self._TimeSpan = TimeSpan
3244
3262
 
3263
+ @property
3264
+ def AutoVoucher(self):
3265
+ return self._AutoVoucher
3266
+
3267
+ @AutoVoucher.setter
3268
+ def AutoVoucher(self, AutoVoucher):
3269
+ self._AutoVoucher = AutoVoucher
3270
+
3271
+ @property
3272
+ def Tags(self):
3273
+ return self._Tags
3274
+
3275
+ @Tags.setter
3276
+ def Tags(self, Tags):
3277
+ self._Tags = Tags
3278
+
3245
3279
 
3246
3280
  def _deserialize(self, params):
3247
3281
  self._ProductId = params.get("ProductId")
3248
3282
  self._DomainNum = params.get("DomainNum")
3249
3283
  self._TimeSpan = params.get("TimeSpan")
3284
+ self._AutoVoucher = params.get("AutoVoucher")
3285
+ if params.get("Tags") is not None:
3286
+ self._Tags = []
3287
+ for item in params.get("Tags"):
3288
+ obj = Tags()
3289
+ obj._deserialize(item)
3290
+ self._Tags.append(obj)
3250
3291
  memeber_set = set(params.keys())
3251
3292
  for name, value in vars(self).items():
3252
3293
  property_name = name[1:]
@@ -14555,7 +14596,7 @@ class UpdateCertificateInstanceRequest(AbstractModel):
14555
14596
  :type OldCertificateId: str
14556
14597
  :param _ResourceTypes: 需要部署的资源类型,参数值可选(小写):clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb、tse、cos
14557
14598
  :type ResourceTypes: list of str
14558
- :param _CertificateId: 一键更新新证书ID,不传该则证书公钥和私钥必传
14599
+ :param _CertificateId: 一键更新新证书ID,不传则证书公钥和私钥必传
14559
14600
  :type CertificateId: str
14560
14601
  :param _Regions: 需要部署的地域列表(废弃)
14561
14602
  :type Regions: list of str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1252
3
+ Version: 3.0.1261
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1261
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1252