tencentcloud-sdk-python-cdn 3.0.860__py2.py3-none-any.whl → 3.0.867__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-cdn might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cdn/v20180606/models.py +72 -2
- {tencentcloud_sdk_python_cdn-3.0.860.dist-info → tencentcloud_sdk_python_cdn-3.0.867.dist-info}/METADATA +1 -1
- tencentcloud_sdk_python_cdn-3.0.867.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_cdn-3.0.860.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_cdn-3.0.860.dist-info → tencentcloud_sdk_python_cdn-3.0.867.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_cdn-3.0.860.dist-info → tencentcloud_sdk_python_cdn-3.0.867.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -250,7 +250,9 @@ global:全球加速
|
|
|
250
250
|
:type HwPrivateAccess: :class:`tencentcloud.cdn.v20180606.models.HwPrivateAccess`
|
|
251
251
|
:param QnPrivateAccess: 七牛云对象存储回源鉴权
|
|
252
252
|
:type QnPrivateAccess: :class:`tencentcloud.cdn.v20180606.models.QnPrivateAccess`
|
|
253
|
-
:param
|
|
253
|
+
:param OthersPrivateAccess: 其他厂商对象存储回源鉴权
|
|
254
|
+
:type OthersPrivateAccess: :class:`tencentcloud.cdn.v20180606.models.OthersPrivateAccess`
|
|
255
|
+
:param HttpsBilling: HTTPS服务,默认开启(收费服务,详见计费说明和产品文档)
|
|
254
256
|
:type HttpsBilling: :class:`tencentcloud.cdn.v20180606.models.HttpsBilling`
|
|
255
257
|
"""
|
|
256
258
|
self.Domain = None
|
|
@@ -291,6 +293,7 @@ global:全球加速
|
|
|
291
293
|
self.OssPrivateAccess = None
|
|
292
294
|
self.HwPrivateAccess = None
|
|
293
295
|
self.QnPrivateAccess = None
|
|
296
|
+
self.OthersPrivateAccess = None
|
|
294
297
|
self.HttpsBilling = None
|
|
295
298
|
|
|
296
299
|
|
|
@@ -404,6 +407,9 @@ global:全球加速
|
|
|
404
407
|
if params.get("QnPrivateAccess") is not None:
|
|
405
408
|
self.QnPrivateAccess = QnPrivateAccess()
|
|
406
409
|
self.QnPrivateAccess._deserialize(params.get("QnPrivateAccess"))
|
|
410
|
+
if params.get("OthersPrivateAccess") is not None:
|
|
411
|
+
self.OthersPrivateAccess = OthersPrivateAccess()
|
|
412
|
+
self.OthersPrivateAccess._deserialize(params.get("OthersPrivateAccess"))
|
|
407
413
|
if params.get("HttpsBilling") is not None:
|
|
408
414
|
self.HttpsBilling = HttpsBilling()
|
|
409
415
|
self.HttpsBilling._deserialize(params.get("HttpsBilling"))
|
|
@@ -4695,7 +4701,14 @@ class DescribeDistrictIspDataRequest(AbstractModel):
|
|
|
4695
4701
|
:type EndTime: str
|
|
4696
4702
|
:param Metric: 指定查询指标,支持:
|
|
4697
4703
|
bandwidth:带宽,单位为 bps
|
|
4704
|
+
flux:流量,单位为 byte
|
|
4698
4705
|
request:请求数,单位为 次
|
|
4706
|
+
statusCode:状态码,返回 0、2xx、3xx、4xx、5xx 汇总数据,单位为 次
|
|
4707
|
+
2xx:返回 2xx 状态码汇总及各 2 开头状态码数据,单位为 次
|
|
4708
|
+
3xx:返回 3xx 状态码汇总及各 3 开头状态码数据,单位为 次
|
|
4709
|
+
4xx:返回 4xx 状态码汇总及各 4 开头状态码数据,单位为 次
|
|
4710
|
+
5xx:返回 5xx 状态码汇总及各 5 开头状态码数据,单位为 次
|
|
4711
|
+
支持指定具体状态码查询,若未产生过,则返回为空
|
|
4699
4712
|
:type Metric: str
|
|
4700
4713
|
:param Districts: 指定省份查询,不填充表示查询所有省份
|
|
4701
4714
|
省份、国家/地区编码可以查看 [省份编码映射](https://cloud.tencent.com/document/product/228/6316#.E5.8C.BA.E5.9F.9F-.2F-.E8.BF.90.E8.90.A5.E5.95.86.E6.98.A0.E5.B0.84.E8.A1.A8)
|
|
@@ -7083,6 +7096,9 @@ off:不支持
|
|
|
7083
7096
|
:param HttpsBilling: HTTPS服务,缺省时默认开启
|
|
7084
7097
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7085
7098
|
:type HttpsBilling: :class:`tencentcloud.cdn.v20180606.models.HttpsBilling`
|
|
7099
|
+
:param OthersPrivateAccess: 其他厂商对象存储回源鉴权
|
|
7100
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7101
|
+
:type OthersPrivateAccess: :class:`tencentcloud.cdn.v20180606.models.OthersPrivateAccess`
|
|
7086
7102
|
"""
|
|
7087
7103
|
self.ResourceId = None
|
|
7088
7104
|
self.AppId = None
|
|
@@ -7149,6 +7165,7 @@ off:不支持
|
|
|
7149
7165
|
self.HwPrivateAccess = None
|
|
7150
7166
|
self.QnPrivateAccess = None
|
|
7151
7167
|
self.HttpsBilling = None
|
|
7168
|
+
self.OthersPrivateAccess = None
|
|
7152
7169
|
|
|
7153
7170
|
|
|
7154
7171
|
def _deserialize(self, params):
|
|
@@ -7323,6 +7340,9 @@ off:不支持
|
|
|
7323
7340
|
if params.get("HttpsBilling") is not None:
|
|
7324
7341
|
self.HttpsBilling = HttpsBilling()
|
|
7325
7342
|
self.HttpsBilling._deserialize(params.get("HttpsBilling"))
|
|
7343
|
+
if params.get("OthersPrivateAccess") is not None:
|
|
7344
|
+
self.OthersPrivateAccess = OthersPrivateAccess()
|
|
7345
|
+
self.OthersPrivateAccess._deserialize(params.get("OthersPrivateAccess"))
|
|
7326
7346
|
memeber_set = set(params.keys())
|
|
7327
7347
|
for name, value in vars(self).items():
|
|
7328
7348
|
if name in memeber_set:
|
|
@@ -11173,6 +11193,50 @@ class OssPrivateAccess(AbstractModel):
|
|
|
11173
11193
|
|
|
11174
11194
|
|
|
11175
11195
|
|
|
11196
|
+
class OthersPrivateAccess(AbstractModel):
|
|
11197
|
+
"""其他厂商对象存储回源鉴权
|
|
11198
|
+
|
|
11199
|
+
"""
|
|
11200
|
+
|
|
11201
|
+
def __init__(self):
|
|
11202
|
+
r"""
|
|
11203
|
+
:param Switch: 开关, on/off。
|
|
11204
|
+
:type Switch: str
|
|
11205
|
+
:param AccessKey: 访问ID。
|
|
11206
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11207
|
+
:type AccessKey: str
|
|
11208
|
+
:param SecretKey: 密钥。
|
|
11209
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11210
|
+
:type SecretKey: str
|
|
11211
|
+
:param Region: 地域。
|
|
11212
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11213
|
+
:type Region: str
|
|
11214
|
+
:param Bucket: 存储桶名称。
|
|
11215
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11216
|
+
:type Bucket: str
|
|
11217
|
+
"""
|
|
11218
|
+
self.Switch = None
|
|
11219
|
+
self.AccessKey = None
|
|
11220
|
+
self.SecretKey = None
|
|
11221
|
+
self.Region = None
|
|
11222
|
+
self.Bucket = None
|
|
11223
|
+
|
|
11224
|
+
|
|
11225
|
+
def _deserialize(self, params):
|
|
11226
|
+
self.Switch = params.get("Switch")
|
|
11227
|
+
self.AccessKey = params.get("AccessKey")
|
|
11228
|
+
self.SecretKey = params.get("SecretKey")
|
|
11229
|
+
self.Region = params.get("Region")
|
|
11230
|
+
self.Bucket = params.get("Bucket")
|
|
11231
|
+
memeber_set = set(params.keys())
|
|
11232
|
+
for name, value in vars(self).items():
|
|
11233
|
+
if name in memeber_set:
|
|
11234
|
+
memeber_set.remove(name)
|
|
11235
|
+
if len(memeber_set) > 0:
|
|
11236
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
11237
|
+
|
|
11238
|
+
|
|
11239
|
+
|
|
11176
11240
|
class OverseaConfig(AbstractModel):
|
|
11177
11241
|
"""域名海外地区特殊配置。UpdateDomainConfig接口只支持修改部分分地区配置,为了兼容旧版本配置,本类型会列出旧版本所有可能存在差异的配置列表,支持修改的配置列表如下:
|
|
11178
11242
|
+ Authentication
|
|
@@ -14940,7 +15004,9 @@ global:全球加速
|
|
|
14940
15004
|
:type HwPrivateAccess: :class:`tencentcloud.cdn.v20180606.models.HwPrivateAccess`
|
|
14941
15005
|
:param QnPrivateAccess: 七牛云对象存储回源鉴权
|
|
14942
15006
|
:type QnPrivateAccess: :class:`tencentcloud.cdn.v20180606.models.QnPrivateAccess`
|
|
14943
|
-
:param
|
|
15007
|
+
:param OthersPrivateAccess: 其他厂商对象存储回源鉴权
|
|
15008
|
+
:type OthersPrivateAccess: :class:`tencentcloud.cdn.v20180606.models.OthersPrivateAccess`
|
|
15009
|
+
:param HttpsBilling: HTTPS服务(收费服务,详见计费说明和产品文档)
|
|
14944
15010
|
:type HttpsBilling: :class:`tencentcloud.cdn.v20180606.models.HttpsBilling`
|
|
14945
15011
|
"""
|
|
14946
15012
|
self.Domain = None
|
|
@@ -14990,6 +15056,7 @@ global:全球加速
|
|
|
14990
15056
|
self.ShareCname = None
|
|
14991
15057
|
self.HwPrivateAccess = None
|
|
14992
15058
|
self.QnPrivateAccess = None
|
|
15059
|
+
self.OthersPrivateAccess = None
|
|
14993
15060
|
self.HttpsBilling = None
|
|
14994
15061
|
|
|
14995
15062
|
|
|
@@ -15125,6 +15192,9 @@ global:全球加速
|
|
|
15125
15192
|
if params.get("QnPrivateAccess") is not None:
|
|
15126
15193
|
self.QnPrivateAccess = QnPrivateAccess()
|
|
15127
15194
|
self.QnPrivateAccess._deserialize(params.get("QnPrivateAccess"))
|
|
15195
|
+
if params.get("OthersPrivateAccess") is not None:
|
|
15196
|
+
self.OthersPrivateAccess = OthersPrivateAccess()
|
|
15197
|
+
self.OthersPrivateAccess._deserialize(params.get("OthersPrivateAccess"))
|
|
15128
15198
|
if params.get("HttpsBilling") is not None:
|
|
15129
15199
|
self.HttpsBilling = HttpsBilling()
|
|
15130
15200
|
self.HttpsBilling._deserialize(params.get("HttpsBilling"))
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=WkJqMr96fWDmKr8NZsvSwja_6qeMfMHex2g1PD1PMnM,630
|
|
2
|
+
tencentcloud/cdn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/cdn/v20180606/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/cdn/v20180606/cdn_client.py,sha256=NZs9ke5oLo6M0D04aVyfrUI27sS88jKOBkmNH2NskRU,80657
|
|
5
|
+
tencentcloud/cdn/v20180606/errorcodes.py,sha256=04vgMkvwCDkSLE3HW1_7UUM-7FxcQO7514s7Qt3U1es,21844
|
|
6
|
+
tencentcloud/cdn/v20180606/models.py,sha256=sf-fwzuTlQ_HYH497PQ40BcNrI_8cKLrgBhRDx6FBMA,568032
|
|
7
|
+
tencentcloud_sdk_python_cdn-3.0.867.dist-info/METADATA,sha256=8Ggtoz9WhC-z5la3oGOpxVEURCI6ZbfSXJv792jjdls,1432
|
|
8
|
+
tencentcloud_sdk_python_cdn-3.0.867.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_cdn-3.0.867.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_cdn-3.0.867.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=BIqqC4tNEYnn-TIUaCArmHE0GPsoZ_J16znxITI_e38,630
|
|
2
|
-
tencentcloud/cdn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/cdn/v20180606/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/cdn/v20180606/cdn_client.py,sha256=NZs9ke5oLo6M0D04aVyfrUI27sS88jKOBkmNH2NskRU,80657
|
|
5
|
-
tencentcloud/cdn/v20180606/errorcodes.py,sha256=04vgMkvwCDkSLE3HW1_7UUM-7FxcQO7514s7Qt3U1es,21844
|
|
6
|
-
tencentcloud/cdn/v20180606/models.py,sha256=IyJa8nG-pMjRFEeL6Ofh92LDG0mwnHydkSl118wNA-c,564666
|
|
7
|
-
tencentcloud_sdk_python_cdn-3.0.860.dist-info/METADATA,sha256=zLosxmE0CK0ytLMWvsjLiRTTKtRib3z7Xiy-UQQ06YI,1432
|
|
8
|
-
tencentcloud_sdk_python_cdn-3.0.860.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_cdn-3.0.860.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_cdn-3.0.860.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|