tencentcloud-sdk-python-intl-en 3.0.1090__py2.py3-none-any.whl → 3.0.1092__py2.py3-none-any.whl
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-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +2 -2
- tencentcloud/autoscaling/v20180419/models.py +350 -209
- tencentcloud/dts/v20211206/dts_client.py +575 -0
- tencentcloud/dts/v20211206/errorcodes.py +9 -0
- tencentcloud/dts/v20211206/models.py +8552 -3594
- tencentcloud/intlpartnersmgt/v20220928/models.py +2 -0
- tencentcloud/redis/v20180412/errorcodes.py +3 -0
- tencentcloud/redis/v20180412/models.py +3150 -701
- tencentcloud/redis/v20180412/redis_client.py +273 -43
- tencentcloud/teo/v20220901/models.py +8 -4
- {tencentcloud_sdk_python_intl_en-3.0.1090.dist-info → tencentcloud_sdk_python_intl_en-3.0.1092.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1090.dist-info → tencentcloud_sdk_python_intl_en-3.0.1092.dist-info}/RECORD +15 -15
- {tencentcloud_sdk_python_intl_en-3.0.1090.dist-info → tencentcloud_sdk_python_intl_en-3.0.1092.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1090.dist-info → tencentcloud_sdk_python_intl_en-3.0.1092.dist-info}/top_level.txt +0 -0
|
@@ -31899,7 +31899,7 @@ class RuleCondition(AbstractModel):
|
|
|
31899
31899
|
<li>`exist`: Exists</li>
|
|
31900
31900
|
<li>`notexist`: Does not exist</li>
|
|
31901
31901
|
:type Operator: str
|
|
31902
|
-
:param _Target: Match type. Valid values: <li> filename: File name; </li> <li> extension: File extension; </li> <li> host: Host name; </li> <li> full_url: The complete URL path under the current site, which must include the HTTP protocol, host, and path; </li> <li> url: Request for the URL path under the current site; </li><li> client_country: Client country/region;</li> <li> query_string: The query string of the URL requested under the current site; </li> <li> request_header: HTTP request header; </li><li> client_ip: Client IP address. </li>
|
|
31902
|
+
:param _Target: Match type. Valid values: <li> filename: File name; </li> <li> extension: File extension; </li> <li> host: Host name; </li> <li> full_url: The complete URL path under the current site, which must include the HTTP protocol, host, and path; </li> <li> url: Request for the URL path under the current site; </li><li> client_country: Client country/region;</li> <li> query_string: The query string of the URL requested under the current site; </li> <li> request_header: HTTP request header; </li><li> client_ip: Client IP address; </li><li> request_protocol: Request Protocol; </li><li> request_method: HTTP Request Methods. </li>
|
|
31903
31903
|
:type Target: str
|
|
31904
31904
|
:param _Values: The parameter values for match types. It is allowed to pass an empty array only when the match type is query_string or request_header and the operator value is Exist or Does Not Exist. The corresponding match types include:
|
|
31905
31905
|
<li> File extension: Extensions like jpg, txt, etc.;</li>
|
|
@@ -31911,7 +31911,9 @@ class RuleCondition(AbstractModel):
|
|
|
31911
31911
|
<li> Client country/region: Country/region codes compliant with the ISO3166 standard;</li>
|
|
31912
31912
|
<li> Query string: The parameter values in the query string of the URL requested under the current site, for example, cn and 1 in lang=cn&version=1; </li>
|
|
31913
31913
|
<li> HTTP request header: The value of the HTTP request header field, for example, zh-CN,zh;q=0.9 in Accept-Language:zh-CN,zh;q=0.9; </li>
|
|
31914
|
-
<li> Client IP: The client IP address carried by the current request, supporting IPv4, IPv6, and an IP range
|
|
31914
|
+
<li> Client IP: The client IP address carried by the current request, supporting IPv4, IPv6, and an IP range; </li>
|
|
31915
|
+
<li> Request Protocol: The protocol of the current request, with possible values: HTTP, HTTPS; </li>
|
|
31916
|
+
<li> HTTP Request Methods: The method of the current request, with possible values: GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT, OPTIONS, PATCH, COPY, LOCK, MKCOL, MOVE, PROPFIND, PROPPATCH, UNLOCK. </li>
|
|
31915
31917
|
:type Values: list of str
|
|
31916
31918
|
:param _IgnoreCase: Whether the parameter value is case insensitive. Default value: false.
|
|
31917
31919
|
:type IgnoreCase: bool
|
|
@@ -31947,7 +31949,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
31947
31949
|
|
|
31948
31950
|
@property
|
|
31949
31951
|
def Target(self):
|
|
31950
|
-
"""Match type. Valid values: <li> filename: File name; </li> <li> extension: File extension; </li> <li> host: Host name; </li> <li> full_url: The complete URL path under the current site, which must include the HTTP protocol, host, and path; </li> <li> url: Request for the URL path under the current site; </li><li> client_country: Client country/region;</li> <li> query_string: The query string of the URL requested under the current site; </li> <li> request_header: HTTP request header; </li><li> client_ip: Client IP address. </li>
|
|
31952
|
+
"""Match type. Valid values: <li> filename: File name; </li> <li> extension: File extension; </li> <li> host: Host name; </li> <li> full_url: The complete URL path under the current site, which must include the HTTP protocol, host, and path; </li> <li> url: Request for the URL path under the current site; </li><li> client_country: Client country/region;</li> <li> query_string: The query string of the URL requested under the current site; </li> <li> request_header: HTTP request header; </li><li> client_ip: Client IP address; </li><li> request_protocol: Request Protocol; </li><li> request_method: HTTP Request Methods. </li>
|
|
31951
31953
|
:rtype: str
|
|
31952
31954
|
"""
|
|
31953
31955
|
return self._Target
|
|
@@ -31968,7 +31970,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
31968
31970
|
<li> Client country/region: Country/region codes compliant with the ISO3166 standard;</li>
|
|
31969
31971
|
<li> Query string: The parameter values in the query string of the URL requested under the current site, for example, cn and 1 in lang=cn&version=1; </li>
|
|
31970
31972
|
<li> HTTP request header: The value of the HTTP request header field, for example, zh-CN,zh;q=0.9 in Accept-Language:zh-CN,zh;q=0.9; </li>
|
|
31971
|
-
<li> Client IP: The client IP address carried by the current request, supporting IPv4, IPv6, and an IP range
|
|
31973
|
+
<li> Client IP: The client IP address carried by the current request, supporting IPv4, IPv6, and an IP range; </li>
|
|
31974
|
+
<li> Request Protocol: The protocol of the current request, with possible values: HTTP, HTTPS; </li>
|
|
31975
|
+
<li> HTTP Request Methods: The method of the current request, with possible values: GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT, OPTIONS, PATCH, COPY, LOCK, MKCOL, MOVE, PROPFIND, PROPPATCH, UNLOCK. </li>
|
|
31972
31976
|
:rtype: list of str
|
|
31973
31977
|
"""
|
|
31974
31978
|
return self._Values
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=JQ2aDF4iHwnZXOEWiUVfOTkbRXtDg9_39pPtuS0CrIQ,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -26,9 +26,9 @@ tencentcloud/apigateway/v20180808/errorcodes.py,sha256=0T0u1gze7_0UL5PGy0yOYWJOu
|
|
|
26
26
|
tencentcloud/apigateway/v20180808/models.py,sha256=pUqn0cKzBu5gactwPqHpm20F8kggBFMTVyL6IPWM3sE,792181
|
|
27
27
|
tencentcloud/autoscaling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
tencentcloud/autoscaling/v20180419/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256
|
|
29
|
+
tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256=Ba6ZLeBwEZuI0GHNDENQM6beLjxgZScO-cDOZ-yyIzo,73443
|
|
30
30
|
tencentcloud/autoscaling/v20180419/errorcodes.py,sha256=EnO0NtPCX0cHZg4gwcuFy0h0lpGYXj7IxKOPyumtZss,23895
|
|
31
|
-
tencentcloud/autoscaling/v20180419/models.py,sha256=
|
|
31
|
+
tencentcloud/autoscaling/v20180419/models.py,sha256=2Hc3FD75gV0n0MkwNs-mC9MzHY-4IUCMoq0dR4P_ZTU,618429
|
|
32
32
|
tencentcloud/batch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
tencentcloud/batch/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
tencentcloud/batch/v20170312/batch_client.py,sha256=dZRtOWDZKKeCiO05RhGAe3RxcuMK3lyPZ5Il-eElpbI,29648
|
|
@@ -237,9 +237,9 @@ tencentcloud/dts/v20180330/dts_client.py,sha256=m7vxAwGbbpfe0WoB4w8x-v6gHoyJmj4B
|
|
|
237
237
|
tencentcloud/dts/v20180330/errorcodes.py,sha256=UgbHN4kN-MBIPAEhXvmybwCevxs99rwD3TUvxNpdWBc,3722
|
|
238
238
|
tencentcloud/dts/v20180330/models.py,sha256=RrOFzQQNqd-9K4jII9wJPzMQk3MPIsdU0G-dKs2ZfMw,156651
|
|
239
239
|
tencentcloud/dts/v20211206/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
|
-
tencentcloud/dts/v20211206/dts_client.py,sha256=
|
|
241
|
-
tencentcloud/dts/v20211206/errorcodes.py,sha256=
|
|
242
|
-
tencentcloud/dts/v20211206/models.py,sha256=
|
|
240
|
+
tencentcloud/dts/v20211206/dts_client.py,sha256=nurNPzyoEc7CWsC8CS0UrfEZ2cvax8MFySYXxNiLjYg,73504
|
|
241
|
+
tencentcloud/dts/v20211206/errorcodes.py,sha256=y1Rb1IChTWXlNcCk9V36fUVdiTu6aX0KJweKe-ePx14,7970
|
|
242
|
+
tencentcloud/dts/v20211206/models.py,sha256=D0U_EkOtV0eSe7126DeND1pVrgl-yHlAt_VRa9jkUEI,678016
|
|
243
243
|
tencentcloud/eb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
244
244
|
tencentcloud/eb/v20210416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
245
245
|
tencentcloud/eb/v20210416/eb_client.py,sha256=Y6GT_tQxvWVC1BGNyqzgqM8XKNTKC1ksBSfUAJqlc8E,23735
|
|
@@ -319,7 +319,7 @@ tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
319
319
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
320
320
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=kVIUiSL2ABQt2Ymcp8lqK2lWEWCgXf4IczqMD7ZiEhc,5503
|
|
321
321
|
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=N7nP-p8b4hUXmxWv0gV6Sk_zQSj2gMN_poxdp-gdZcI,28362
|
|
322
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
322
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=WeXEjWYqS30JJUQ5xaCGpcgeg0e9dMQmt20vvhjVbEM,182327
|
|
323
323
|
tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
324
|
tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
325
|
tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
|
|
@@ -421,9 +421,9 @@ tencentcloud/privatedns/v20201028/models.py,sha256=QbKF5JinrHAdxhz9fhR5bR5qADWph
|
|
|
421
421
|
tencentcloud/privatedns/v20201028/privatedns_client.py,sha256=flr0KSmdnvUJHuW0c0iXF5qBNnN74_6rQXyDrVuQnPI,22819
|
|
422
422
|
tencentcloud/redis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
423
423
|
tencentcloud/redis/v20180412/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
|
-
tencentcloud/redis/v20180412/errorcodes.py,sha256=
|
|
425
|
-
tencentcloud/redis/v20180412/models.py,sha256=
|
|
426
|
-
tencentcloud/redis/v20180412/redis_client.py,sha256=
|
|
424
|
+
tencentcloud/redis/v20180412/errorcodes.py,sha256=e9RuOTgVItPW6MyARrP1tZ45naesdctPvpwxgktEmkc,14229
|
|
425
|
+
tencentcloud/redis/v20180412/models.py,sha256=rPWaeaoy88NTKk4zE0iwsccosWuqEdHmLNt6idhkO1w,763823
|
|
426
|
+
tencentcloud/redis/v20180412/redis_client.py,sha256=IyW_4cY-92tjKTLxIBTwcq1quPS7jjYFIJVc6mjyj34,103670
|
|
427
427
|
tencentcloud/rum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
428
|
tencentcloud/rum/v20210622/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
429
|
tencentcloud/rum/v20210622/errorcodes.py,sha256=dYaN1mgL0m_5tM1Jv0vGYbsq-X1RsjtNJXirG7Br_jQ,2722
|
|
@@ -529,7 +529,7 @@ tencentcloud/teo/v20220106/models.py,sha256=O7LYEZTTKjloNI2BuDHcaBdEpxjHezVYck_x
|
|
|
529
529
|
tencentcloud/teo/v20220106/teo_client.py,sha256=xFgjEY9outkMEOonYeYfLL18TRUxVSRdE7Q3m6ACyWM,82902
|
|
530
530
|
tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
531
531
|
tencentcloud/teo/v20220901/errorcodes.py,sha256=KTokix4ood4vI3snX5PopZ0FEp7xp03KvELTPxnidwA,60429
|
|
532
|
-
tencentcloud/teo/v20220901/models.py,sha256=
|
|
532
|
+
tencentcloud/teo/v20220901/models.py,sha256=HnxqVfqOVwKMngt9x9z_-B_cOKHqYaex9hKVQMsjvgI,1275298
|
|
533
533
|
tencentcloud/teo/v20220901/teo_client.py,sha256=AttuUExsIwdVx4VlRDW1oR4HGxeNZuMgxfeJpzxrYhM,127740
|
|
534
534
|
tencentcloud/tiw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
535
535
|
tencentcloud/tiw/v20190919/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -604,7 +604,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
604
604
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
605
605
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
606
606
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
607
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
608
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
609
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
610
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
607
|
+
tencentcloud_sdk_python_intl_en-3.0.1092.dist-info/METADATA,sha256=AK-uOy_xhPUGJqB0pfD1DY3XIhhlmICelhm6RjXLhfw,1628
|
|
608
|
+
tencentcloud_sdk_python_intl_en-3.0.1092.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
609
|
+
tencentcloud_sdk_python_intl_en-3.0.1092.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
610
|
+
tencentcloud_sdk_python_intl_en-3.0.1092.dist-info/RECORD,,
|
|
File without changes
|