tencentcloud-sdk-python-scf 3.0.1337__tar.gz → 3.0.1339__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-scf might be problematic. Click here for more details.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/setup.py +1 -1
  3. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud/scf/v20180416/models.py +75 -0
  5. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud_sdk_python_scf.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-scf-3.0.1339/tencentcloud_sdk_python_scf.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-scf-3.0.1337/tencentcloud_sdk_python_scf.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/README.rst +0 -0
  9. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud/scf/__init__.py +0 -0
  11. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud/scf/v20180416/__init__.py +0 -0
  12. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud/scf/v20180416/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud/scf/v20180416/scf_client.py +0 -0
  14. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud_sdk_python_scf.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud_sdk_python_scf.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-scf-3.0.1337 → tencentcloud-sdk-python-scf-3.0.1339}/tencentcloud_sdk_python_scf.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-scf
3
- Version: 3.0.1337
3
+ Version: 3.0.1339
4
4
  Summary: Tencent Cloud Scf 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-scf',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1337"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1339"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Scf 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.1337'
17
+ __version__ = '3.0.1339'
@@ -1245,12 +1245,15 @@ class CreateCustomDomainRequest(AbstractModel):
1245
1245
  :type CertConfig: :class:`tencentcloud.scf.v20180416.models.CertConf`
1246
1246
  :param _WafConfig: web 应用防火墙配置
1247
1247
  :type WafConfig: :class:`tencentcloud.scf.v20180416.models.WafConf`
1248
+ :param _Tags: 标签
1249
+ :type Tags: list of Tag
1248
1250
  """
1249
1251
  self._Domain = None
1250
1252
  self._Protocol = None
1251
1253
  self._EndpointsConfig = None
1252
1254
  self._CertConfig = None
1253
1255
  self._WafConfig = None
1256
+ self._Tags = None
1254
1257
 
1255
1258
  @property
1256
1259
  def Domain(self):
@@ -1307,6 +1310,17 @@ class CreateCustomDomainRequest(AbstractModel):
1307
1310
  def WafConfig(self, WafConfig):
1308
1311
  self._WafConfig = WafConfig
1309
1312
 
1313
+ @property
1314
+ def Tags(self):
1315
+ """标签
1316
+ :rtype: list of Tag
1317
+ """
1318
+ return self._Tags
1319
+
1320
+ @Tags.setter
1321
+ def Tags(self, Tags):
1322
+ self._Tags = Tags
1323
+
1310
1324
 
1311
1325
  def _deserialize(self, params):
1312
1326
  self._Domain = params.get("Domain")
@@ -1323,6 +1337,12 @@ class CreateCustomDomainRequest(AbstractModel):
1323
1337
  if params.get("WafConfig") is not None:
1324
1338
  self._WafConfig = WafConf()
1325
1339
  self._WafConfig._deserialize(params.get("WafConfig"))
1340
+ if params.get("Tags") is not None:
1341
+ self._Tags = []
1342
+ for item in params.get("Tags"):
1343
+ obj = Tag()
1344
+ obj._deserialize(item)
1345
+ self._Tags.append(obj)
1326
1346
  memeber_set = set(params.keys())
1327
1347
  for name, value in vars(self).items():
1328
1348
  property_name = name[1:]
@@ -3139,12 +3159,15 @@ class DomainInfo(AbstractModel):
3139
3159
  :type CertConfig: :class:`tencentcloud.scf.v20180416.models.CertConf`
3140
3160
  :param _WafConfig: web 应用防火墙配置
3141
3161
  :type WafConfig: :class:`tencentcloud.scf.v20180416.models.WafConf`
3162
+ :param _Tags: 标签
3163
+ :type Tags: list of Tag
3142
3164
  """
3143
3165
  self._Domain = None
3144
3166
  self._Protocol = None
3145
3167
  self._EndpointsConfig = None
3146
3168
  self._CertConfig = None
3147
3169
  self._WafConfig = None
3170
+ self._Tags = None
3148
3171
 
3149
3172
  @property
3150
3173
  def Domain(self):
@@ -3201,6 +3224,17 @@ class DomainInfo(AbstractModel):
3201
3224
  def WafConfig(self, WafConfig):
3202
3225
  self._WafConfig = WafConfig
3203
3226
 
3227
+ @property
3228
+ def Tags(self):
3229
+ """标签
3230
+ :rtype: list of Tag
3231
+ """
3232
+ return self._Tags
3233
+
3234
+ @Tags.setter
3235
+ def Tags(self, Tags):
3236
+ self._Tags = Tags
3237
+
3204
3238
 
3205
3239
  def _deserialize(self, params):
3206
3240
  self._Domain = params.get("Domain")
@@ -3217,6 +3251,12 @@ class DomainInfo(AbstractModel):
3217
3251
  if params.get("WafConfig") is not None:
3218
3252
  self._WafConfig = WafConf()
3219
3253
  self._WafConfig._deserialize(params.get("WafConfig"))
3254
+ if params.get("Tags") is not None:
3255
+ self._Tags = []
3256
+ for item in params.get("Tags"):
3257
+ obj = Tag()
3258
+ obj._deserialize(item)
3259
+ self._Tags.append(obj)
3220
3260
  memeber_set = set(params.keys())
3221
3261
  for name, value in vars(self).items():
3222
3262
  property_name = name[1:]
@@ -4561,6 +4601,8 @@ class GetCustomDomainResponse(AbstractModel):
4561
4601
  :type CertConfig: :class:`tencentcloud.scf.v20180416.models.CertConf`
4562
4602
  :param _WafConfig: web 应用防火墙配置
4563
4603
  :type WafConfig: :class:`tencentcloud.scf.v20180416.models.WafConf`
4604
+ :param _Tags: 标签
4605
+ :type Tags: list of Tag
4564
4606
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4565
4607
  :type RequestId: str
4566
4608
  """
@@ -4569,6 +4611,7 @@ class GetCustomDomainResponse(AbstractModel):
4569
4611
  self._EndpointsConfig = None
4570
4612
  self._CertConfig = None
4571
4613
  self._WafConfig = None
4614
+ self._Tags = None
4572
4615
  self._RequestId = None
4573
4616
 
4574
4617
  @property
@@ -4626,6 +4669,17 @@ class GetCustomDomainResponse(AbstractModel):
4626
4669
  def WafConfig(self, WafConfig):
4627
4670
  self._WafConfig = WafConfig
4628
4671
 
4672
+ @property
4673
+ def Tags(self):
4674
+ """标签
4675
+ :rtype: list of Tag
4676
+ """
4677
+ return self._Tags
4678
+
4679
+ @Tags.setter
4680
+ def Tags(self, Tags):
4681
+ self._Tags = Tags
4682
+
4629
4683
  @property
4630
4684
  def RequestId(self):
4631
4685
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -4653,6 +4707,12 @@ class GetCustomDomainResponse(AbstractModel):
4653
4707
  if params.get("WafConfig") is not None:
4654
4708
  self._WafConfig = WafConf()
4655
4709
  self._WafConfig._deserialize(params.get("WafConfig"))
4710
+ if params.get("Tags") is not None:
4711
+ self._Tags = []
4712
+ for item in params.get("Tags"):
4713
+ obj = Tag()
4714
+ obj._deserialize(item)
4715
+ self._Tags.append(obj)
4656
4716
  self._RequestId = params.get("RequestId")
4657
4717
 
4658
4718
 
@@ -12256,6 +12316,8 @@ class TriggerInfo(AbstractModel):
12256
12316
  :param _Description: 客户自定义触发器描述
12257
12317
  注意:此字段可能返回 null,表示取不到有效值。
12258
12318
  :type Description: str
12319
+ :param _BoundResources: 与此触发器关联的资源。目前仅函数URL关联的自定义域名会返回
12320
+ :type BoundResources: str
12259
12321
  """
12260
12322
  self._Enable = None
12261
12323
  self._Qualifier = None
@@ -12270,6 +12332,7 @@ class TriggerInfo(AbstractModel):
12270
12332
  self._BindStatus = None
12271
12333
  self._TriggerAttribute = None
12272
12334
  self._Description = None
12335
+ self._BoundResources = None
12273
12336
 
12274
12337
  @property
12275
12338
  def Enable(self):
@@ -12428,6 +12491,17 @@ class TriggerInfo(AbstractModel):
12428
12491
  def Description(self, Description):
12429
12492
  self._Description = Description
12430
12493
 
12494
+ @property
12495
+ def BoundResources(self):
12496
+ """与此触发器关联的资源。目前仅函数URL关联的自定义域名会返回
12497
+ :rtype: str
12498
+ """
12499
+ return self._BoundResources
12500
+
12501
+ @BoundResources.setter
12502
+ def BoundResources(self, BoundResources):
12503
+ self._BoundResources = BoundResources
12504
+
12431
12505
 
12432
12506
  def _deserialize(self, params):
12433
12507
  self._Enable = params.get("Enable")
@@ -12443,6 +12517,7 @@ class TriggerInfo(AbstractModel):
12443
12517
  self._BindStatus = params.get("BindStatus")
12444
12518
  self._TriggerAttribute = params.get("TriggerAttribute")
12445
12519
  self._Description = params.get("Description")
12520
+ self._BoundResources = params.get("BoundResources")
12446
12521
  memeber_set = set(params.keys())
12447
12522
  for name, value in vars(self).items():
12448
12523
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-scf
3
- Version: 3.0.1337
3
+ Version: 3.0.1339
4
4
  Summary: Tencent Cloud Scf 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.1339
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1337