tencentcloud-sdk-python-intl-en 3.0.1179__py2.py3-none-any.whl → 3.0.1180__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 CHANGED
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- __version__ = '3.0.1179'
16
+ __version__ = '3.0.1180'
@@ -8204,6 +8204,355 @@ class RecognizeBrazilIDCardOCRResponse(AbstractModel):
8204
8204
  self._RequestId = params.get("RequestId")
8205
8205
 
8206
8206
 
8207
+ class RecognizeBrazilRNEOCRRequest(AbstractModel):
8208
+ """RecognizeBrazilRNEOCR request structure.
8209
+
8210
+ """
8211
+
8212
+ def __init__(self):
8213
+ r"""
8214
+ :param _ImageBase64: Base64 value of the image. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image should not exceed 7M after Base64 encoding. Image downloading time should not exceed 3 seconds.
8215
+ :type ImageBase64: str
8216
+ :param _ImageUrl: URL address of the image. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image should not exceed 7M after Base64 encoding. Image download time should not exceed 3 seconds. URLs of images stored in Tencent Cloud can guarantee higher download speed and stability. It is recommended that images be stored in Tencent Cloud. The speed and stability of URLs not stored in Tencent Cloud may be affected to a certain extent.
8217
+ :type ImageUrl: str
8218
+ :param _BackImageBase64: Base64 value of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image should not exceed 7M after Base64 encoding. Image download time should not exceed 3 seconds. An ImageUrl and ImageBase64 must be provided. If both are provided, only ImageUrl will be used.
8219
+ :type BackImageBase64: str
8220
+ :param _BackImageUrl: The URL address of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image does not exceed 7M after Base64 encoding. The image download time does not exceed 3 seconds. The URL of the image stored in Tencent Cloud can ensure higher download speed and stability. It is recommended to store the image in Tencent Cloud. The speed and stability of the URL stored outside Tencent Cloud may be affected to a certain extent.
8221
+ :type BackImageUrl: str
8222
+ :param _ReturnHeadImage: Whether to return portrait photos.
8223
+ :type ReturnHeadImage: bool
8224
+ """
8225
+ self._ImageBase64 = None
8226
+ self._ImageUrl = None
8227
+ self._BackImageBase64 = None
8228
+ self._BackImageUrl = None
8229
+ self._ReturnHeadImage = None
8230
+
8231
+ @property
8232
+ def ImageBase64(self):
8233
+ """Base64 value of the image. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image should not exceed 7M after Base64 encoding. Image downloading time should not exceed 3 seconds.
8234
+ :rtype: str
8235
+ """
8236
+ return self._ImageBase64
8237
+
8238
+ @ImageBase64.setter
8239
+ def ImageBase64(self, ImageBase64):
8240
+ self._ImageBase64 = ImageBase64
8241
+
8242
+ @property
8243
+ def ImageUrl(self):
8244
+ """URL address of the image. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image should not exceed 7M after Base64 encoding. Image download time should not exceed 3 seconds. URLs of images stored in Tencent Cloud can guarantee higher download speed and stability. It is recommended that images be stored in Tencent Cloud. The speed and stability of URLs not stored in Tencent Cloud may be affected to a certain extent.
8245
+ :rtype: str
8246
+ """
8247
+ return self._ImageUrl
8248
+
8249
+ @ImageUrl.setter
8250
+ def ImageUrl(self, ImageUrl):
8251
+ self._ImageUrl = ImageUrl
8252
+
8253
+ @property
8254
+ def BackImageBase64(self):
8255
+ """Base64 value of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image should not exceed 7M after Base64 encoding. Image download time should not exceed 3 seconds. An ImageUrl and ImageBase64 must be provided. If both are provided, only ImageUrl will be used.
8256
+ :rtype: str
8257
+ """
8258
+ return self._BackImageBase64
8259
+
8260
+ @BackImageBase64.setter
8261
+ def BackImageBase64(self, BackImageBase64):
8262
+ self._BackImageBase64 = BackImageBase64
8263
+
8264
+ @property
8265
+ def BackImageUrl(self):
8266
+ """The URL address of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image does not exceed 7M after Base64 encoding. The image download time does not exceed 3 seconds. The URL of the image stored in Tencent Cloud can ensure higher download speed and stability. It is recommended to store the image in Tencent Cloud. The speed and stability of the URL stored outside Tencent Cloud may be affected to a certain extent.
8267
+ :rtype: str
8268
+ """
8269
+ return self._BackImageUrl
8270
+
8271
+ @BackImageUrl.setter
8272
+ def BackImageUrl(self, BackImageUrl):
8273
+ self._BackImageUrl = BackImageUrl
8274
+
8275
+ @property
8276
+ def ReturnHeadImage(self):
8277
+ """Whether to return portrait photos.
8278
+ :rtype: bool
8279
+ """
8280
+ return self._ReturnHeadImage
8281
+
8282
+ @ReturnHeadImage.setter
8283
+ def ReturnHeadImage(self, ReturnHeadImage):
8284
+ self._ReturnHeadImage = ReturnHeadImage
8285
+
8286
+
8287
+ def _deserialize(self, params):
8288
+ self._ImageBase64 = params.get("ImageBase64")
8289
+ self._ImageUrl = params.get("ImageUrl")
8290
+ self._BackImageBase64 = params.get("BackImageBase64")
8291
+ self._BackImageUrl = params.get("BackImageUrl")
8292
+ self._ReturnHeadImage = params.get("ReturnHeadImage")
8293
+ memeber_set = set(params.keys())
8294
+ for name, value in vars(self).items():
8295
+ property_name = name[1:]
8296
+ if property_name in memeber_set:
8297
+ memeber_set.remove(property_name)
8298
+ if len(memeber_set) > 0:
8299
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
8300
+
8301
+
8302
+
8303
+ class RecognizeBrazilRNEOCRResponse(AbstractModel):
8304
+ """RecognizeBrazilRNEOCR response structure.
8305
+
8306
+ """
8307
+
8308
+ def __init__(self):
8309
+ r"""
8310
+ :param _RNE: RNE
8311
+ :type RNE: str
8312
+ :param _CLASSIFICATION: Classification
8313
+ :type CLASSIFICATION: str
8314
+ :param _VALIDADE: Valid date
8315
+ :type VALIDADE: str
8316
+ :param _NOME: Name
8317
+ :type NOME: str
8318
+ :param _Membership: Family information
8319
+ :type Membership: str
8320
+ :param _NACIONALIDADE: Nationality
8321
+ :type NACIONALIDADE: str
8322
+ :param _NATURALIDADE: Place of Birth
8323
+ :type NATURALIDADE: str
8324
+ :param _IssuingAgency: Issuing agency
8325
+ :type IssuingAgency: str
8326
+ :param _DateOfBirth: Birthday
8327
+ :type DateOfBirth: str
8328
+ :param _Sex: Gender
8329
+ :type Sex: str
8330
+ :param _EntryDate: Date of entry
8331
+ :type EntryDate: str
8332
+ :param _VIA: VIA
8333
+ :type VIA: str
8334
+ :param _DispatchDate: Dispatch date
8335
+ :type DispatchDate: str
8336
+ :param _MRZ: MRZ
8337
+ :type MRZ: str
8338
+ :param _PortraitImage: PortraitImage base64
8339
+ :type PortraitImage: str
8340
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
8341
+ :type RequestId: str
8342
+ """
8343
+ self._RNE = None
8344
+ self._CLASSIFICATION = None
8345
+ self._VALIDADE = None
8346
+ self._NOME = None
8347
+ self._Membership = None
8348
+ self._NACIONALIDADE = None
8349
+ self._NATURALIDADE = None
8350
+ self._IssuingAgency = None
8351
+ self._DateOfBirth = None
8352
+ self._Sex = None
8353
+ self._EntryDate = None
8354
+ self._VIA = None
8355
+ self._DispatchDate = None
8356
+ self._MRZ = None
8357
+ self._PortraitImage = None
8358
+ self._RequestId = None
8359
+
8360
+ @property
8361
+ def RNE(self):
8362
+ """RNE
8363
+ :rtype: str
8364
+ """
8365
+ return self._RNE
8366
+
8367
+ @RNE.setter
8368
+ def RNE(self, RNE):
8369
+ self._RNE = RNE
8370
+
8371
+ @property
8372
+ def CLASSIFICATION(self):
8373
+ """Classification
8374
+ :rtype: str
8375
+ """
8376
+ return self._CLASSIFICATION
8377
+
8378
+ @CLASSIFICATION.setter
8379
+ def CLASSIFICATION(self, CLASSIFICATION):
8380
+ self._CLASSIFICATION = CLASSIFICATION
8381
+
8382
+ @property
8383
+ def VALIDADE(self):
8384
+ """Valid date
8385
+ :rtype: str
8386
+ """
8387
+ return self._VALIDADE
8388
+
8389
+ @VALIDADE.setter
8390
+ def VALIDADE(self, VALIDADE):
8391
+ self._VALIDADE = VALIDADE
8392
+
8393
+ @property
8394
+ def NOME(self):
8395
+ """Name
8396
+ :rtype: str
8397
+ """
8398
+ return self._NOME
8399
+
8400
+ @NOME.setter
8401
+ def NOME(self, NOME):
8402
+ self._NOME = NOME
8403
+
8404
+ @property
8405
+ def Membership(self):
8406
+ """Family information
8407
+ :rtype: str
8408
+ """
8409
+ return self._Membership
8410
+
8411
+ @Membership.setter
8412
+ def Membership(self, Membership):
8413
+ self._Membership = Membership
8414
+
8415
+ @property
8416
+ def NACIONALIDADE(self):
8417
+ """Nationality
8418
+ :rtype: str
8419
+ """
8420
+ return self._NACIONALIDADE
8421
+
8422
+ @NACIONALIDADE.setter
8423
+ def NACIONALIDADE(self, NACIONALIDADE):
8424
+ self._NACIONALIDADE = NACIONALIDADE
8425
+
8426
+ @property
8427
+ def NATURALIDADE(self):
8428
+ """Place of Birth
8429
+ :rtype: str
8430
+ """
8431
+ return self._NATURALIDADE
8432
+
8433
+ @NATURALIDADE.setter
8434
+ def NATURALIDADE(self, NATURALIDADE):
8435
+ self._NATURALIDADE = NATURALIDADE
8436
+
8437
+ @property
8438
+ def IssuingAgency(self):
8439
+ """Issuing agency
8440
+ :rtype: str
8441
+ """
8442
+ return self._IssuingAgency
8443
+
8444
+ @IssuingAgency.setter
8445
+ def IssuingAgency(self, IssuingAgency):
8446
+ self._IssuingAgency = IssuingAgency
8447
+
8448
+ @property
8449
+ def DateOfBirth(self):
8450
+ """Birthday
8451
+ :rtype: str
8452
+ """
8453
+ return self._DateOfBirth
8454
+
8455
+ @DateOfBirth.setter
8456
+ def DateOfBirth(self, DateOfBirth):
8457
+ self._DateOfBirth = DateOfBirth
8458
+
8459
+ @property
8460
+ def Sex(self):
8461
+ """Gender
8462
+ :rtype: str
8463
+ """
8464
+ return self._Sex
8465
+
8466
+ @Sex.setter
8467
+ def Sex(self, Sex):
8468
+ self._Sex = Sex
8469
+
8470
+ @property
8471
+ def EntryDate(self):
8472
+ """Date of entry
8473
+ :rtype: str
8474
+ """
8475
+ return self._EntryDate
8476
+
8477
+ @EntryDate.setter
8478
+ def EntryDate(self, EntryDate):
8479
+ self._EntryDate = EntryDate
8480
+
8481
+ @property
8482
+ def VIA(self):
8483
+ """VIA
8484
+ :rtype: str
8485
+ """
8486
+ return self._VIA
8487
+
8488
+ @VIA.setter
8489
+ def VIA(self, VIA):
8490
+ self._VIA = VIA
8491
+
8492
+ @property
8493
+ def DispatchDate(self):
8494
+ """Dispatch date
8495
+ :rtype: str
8496
+ """
8497
+ return self._DispatchDate
8498
+
8499
+ @DispatchDate.setter
8500
+ def DispatchDate(self, DispatchDate):
8501
+ self._DispatchDate = DispatchDate
8502
+
8503
+ @property
8504
+ def MRZ(self):
8505
+ """MRZ
8506
+ :rtype: str
8507
+ """
8508
+ return self._MRZ
8509
+
8510
+ @MRZ.setter
8511
+ def MRZ(self, MRZ):
8512
+ self._MRZ = MRZ
8513
+
8514
+ @property
8515
+ def PortraitImage(self):
8516
+ """PortraitImage base64
8517
+ :rtype: str
8518
+ """
8519
+ return self._PortraitImage
8520
+
8521
+ @PortraitImage.setter
8522
+ def PortraitImage(self, PortraitImage):
8523
+ self._PortraitImage = PortraitImage
8524
+
8525
+ @property
8526
+ def RequestId(self):
8527
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
8528
+ :rtype: str
8529
+ """
8530
+ return self._RequestId
8531
+
8532
+ @RequestId.setter
8533
+ def RequestId(self, RequestId):
8534
+ self._RequestId = RequestId
8535
+
8536
+
8537
+ def _deserialize(self, params):
8538
+ self._RNE = params.get("RNE")
8539
+ self._CLASSIFICATION = params.get("CLASSIFICATION")
8540
+ self._VALIDADE = params.get("VALIDADE")
8541
+ self._NOME = params.get("NOME")
8542
+ self._Membership = params.get("Membership")
8543
+ self._NACIONALIDADE = params.get("NACIONALIDADE")
8544
+ self._NATURALIDADE = params.get("NATURALIDADE")
8545
+ self._IssuingAgency = params.get("IssuingAgency")
8546
+ self._DateOfBirth = params.get("DateOfBirth")
8547
+ self._Sex = params.get("Sex")
8548
+ self._EntryDate = params.get("EntryDate")
8549
+ self._VIA = params.get("VIA")
8550
+ self._DispatchDate = params.get("DispatchDate")
8551
+ self._MRZ = params.get("MRZ")
8552
+ self._PortraitImage = params.get("PortraitImage")
8553
+ self._RequestId = params.get("RequestId")
8554
+
8555
+
8207
8556
  class RecognizeGeneralInvoiceRequest(AbstractModel):
8208
8557
  """RecognizeGeneralInvoice request structure.
8209
8558
 
@@ -399,6 +399,29 @@ class OcrClient(AbstractClient):
399
399
  raise TencentCloudSDKException(type(e).__name__, str(e))
400
400
 
401
401
 
402
+ def RecognizeBrazilRNEOCR(self, request):
403
+ """Brazil RNE document recognition Default interface request frequency limit: 5 times/second
404
+
405
+ :param request: Request instance for RecognizeBrazilRNEOCR.
406
+ :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizeBrazilRNEOCRRequest`
407
+ :rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizeBrazilRNEOCRResponse`
408
+
409
+ """
410
+ try:
411
+ params = request._serialize()
412
+ headers = request.headers
413
+ body = self.call("RecognizeBrazilRNEOCR", params, headers=headers)
414
+ response = json.loads(body)
415
+ model = models.RecognizeBrazilRNEOCRResponse()
416
+ model._deserialize(response["Response"])
417
+ return model
418
+ except Exception as e:
419
+ if isinstance(e, TencentCloudSDKException):
420
+ raise
421
+ else:
422
+ raise TencentCloudSDKException(type(e).__name__, str(e))
423
+
424
+
402
425
  def RecognizeGeneralInvoice(self, request):
403
426
  """This API is used to recognize various types of invoices or tickets in an image or PDF file. You can also specify a type. 14 types of standard expense reimbursement invoices are supported, including value-added tax (VAT) invoice (special, general, roll, blockchain, and toll), fully digitalized electronic invoice (special and general), non-tax revenue invoice (general receipt and general payment voucher), quota invoice, general machine-printed invoice, car sales invoice (motor vehicle sales invoice and used car invoice), train ticket, taxi receipt, itinerary/receipt of e-ticket for air transportation, bus ticket, ship ticket, toll receipt, and medical invoice (inpatient and outpatient). This API can also be used for intelligent recognition of other types of invoices. To try now, click [here](https://intl.cloud.tencent.com/product/ocr?from_cn_redirect=1).
404
427
 
@@ -19796,16 +19796,16 @@ class DescribeTimingL7AnalysisDataRequest(AbstractModel):
19796
19796
  :type StartTime: str
19797
19797
  :param _EndTime: The end time.
19798
19798
  :type EndTime: str
19799
- :param _MetricNames: Metric list. valid values:.
19800
- <Li>L7Flow_outFlux: l7 edgeone response traffic, unit: byte;</li>.
19801
- <Li>L7Flow_inFlux: l7 client request traffic, unit: byte;</li>.
19802
- <Li>L7Flow_flux: l7 total access traffic (including the edgeone response traffic and client request traffic), unit: byte;</li>.
19803
- <Li>L7Flow_outBandwidth: l7 edgeone response bandwidth, unit: bps;</li>.
19804
- <Li>L7Flow_inBandwidth: l7 client request bandwidth, unit: bps;</li>.
19805
- <Li>L7Flow_bandwidth: l7 total access bandwidth (including the edgeone response bandwidth and client request bandwidth), unit: bps;</li>.
19806
- <Li>L7Flow_request: l7 access request count, unit: times;</li>.
19807
- <Li> l7flow_avgresponsetime: l7 average response time, unit: ms (milliseconds);</li>.
19808
- <Li> l7flow_avgfirstbyteresponsetime: l7 average first byte response time for access, unit: ms.</li>.
19799
+ :param _MetricNames: Metric list. Valid values:.
19800
+ <Li>l7Flow_outFlux: L7 EdgeOne response traffic. Unit: byte;</li>
19801
+ <Li>l7Flow_inFlux: L7 client request traffic. Unit: byte;</li>
19802
+ <Li>l7Flow_flux: L7 total traffic (including EdgeOne response traffic and client request traffic). Unit: byte;</li>
19803
+ <Li>l7Flow_outBandwidth: L7 EdgeOne response bandwidth. Unit: bps;</li>
19804
+ <Li>l7Flow_inBandwidth: L7 client request bandwidth. Unit: bps;</li>
19805
+ <Li>l7Flow_bandwidth: L7 total bandwidth (including EdgeOne response bandwidth and client request bandwidth). Unit: bps;</li>
19806
+ <Li>l7Flow_request: L7 request count. Unit: times;</li>
19807
+ <Li>l7Flow_avgResponseTime: Average L7 edge response time. Unit: ms (milliseconds);</li>
19808
+ <Li>l7Flow_avgFirstByteResponseTime: Average L7 edge first byte response time. Unit: ms.</li>
19809
19809
  :type MetricNames: list of str
19810
19810
  :param _ZoneIds: Zone ID set. This parameter is required.
19811
19811
  :type ZoneIds: list of str
@@ -19815,29 +19815,28 @@ class DescribeTimingL7AnalysisDataRequest(AbstractModel):
19815
19815
  <li>hour: 1 hour;</li>
19816
19816
  <li>day: 1 day.</li>If this parameter is not filled in, the granularity will be automatically calculated based on the interval between the start time and end time. Specifically, data will be queried with a granularity of min, 5min, hour, and day respectively when the period is no more than 2 hours, no more than 2 days, no more than 7 days, and over 7 days.
19817
19817
  :type Interval: str
19818
- :param _Filters: Filter criteria. The detailed key values are as follows:
19819
- <li>country: Filter by country/region. The country/region follows the <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166-1 alpha-2</a> standard. Example value: CN.</li>
19820
- <li>province: Filter by province. This parameter is supported only when the service area is the Chinese mainland. For province codes, refer to the <a href="https://intl.cloud.tencent.com/document/product/228/6316?from_cn_redirect=1#.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">Mapping Table of Provinces Within the Chinese Mainland</a>. Example value: 22.</li>
19821
- <li>isp: Filter by ISP. This parameter is supported only when the service area is the Chinese mainland. Valid values are as follows:<br> 2: China Telecom;<br> 26: China Unicom;<br> 1046: China Mobile;<br> 3947: China Tietong;<br> 38: CERNET;<br> 43: Great Wall Broadband;<br> 0: other ISPs.</li>
19822
- <li>domain: Filter by subdomain name. Example value: www.example.com.</li>
19823
- <li>url: Filter by URL path. Example value: /content or /content/test.jpg. If the url parameter is input, up to 30 days of data can be queried.</li>
19824
- <li>referer: Filter by Referer request header. Example value: http://www.example.com/. If the referer parameter is input, up to 30 days of data can be queried.</li>
19825
- <li>resourceType: Filter by resource type, which is generally the file suffix. Example value: .jpg. If the resourceType parameter is input, up to 30 days of data can be queried;</li>
19826
- <li>protocol: Filter by HTTP protocol version. Valid values are as follows:<br> HTTP/1.0;<br> HTTP/1.1;<br> HTTP/2.0;<br> HTTP/3;<br> WebSocket.</li><li>socket: Filter by HTTP protocol type. Valid values are as follows:<br> HTTP: HTTP protocol;<br> HTTPS: HTTPS protocol;<br> QUIC: QUIC protocol.</li>
19827
- <li>statusCode: Filter by edge status code. If the statusCode parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> 1XX: 1xx status code;<br> 2XX: 2xx status code;<br> 3XX: 3xx status code;<br> 4XX: 4xx status code;<br> 5XX: 5xx status code;<br> An integer within the range [0,600).</li>
19828
- <li>browserType: Filter by browser type. If the browserType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> Firefox: Firefox browser;<br> Chrome: Chrome browser;<br> Safari: Safari browser;<br> Other: other browser types;<br> Empty: The browser type is empty;<br> Bot: search engine crawler;<br> MicrosoftEdge: Microsoft Edge browser;<br> IE: IE browser;<br> Opera: Opera browser;<br> QQBrowser: QQ browser;<br> LBBrowser: LB browser;<br> MaxthonBrowser: Maxthon browser;<br> SouGouBrowser: Sogou browser;<br> BIDUBrowser: Baidu browser;<br> TaoBrowser: Tao browser;<br> UBrowser: UC browser.</li>
19829
- <li>deviceType: Filter by device type. If the deviceType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> TV: TV device;<br> Tablet: tablet device;<br> Mobile: mobile device;<br> Desktop: desktop device;<br> Other: other device types;<br> Empty: The device type is empty.</li>
19830
- <li>operatingSystemType: Filter by operating system type. If the operatingSystemType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> Linux: Linux operating system;<br> MacOS: MacOS operating system;<br> Android: Android operating system;<br> IOS: iOS operating system;<br> Windows: Windows operating system;<br> NetBSD: NetBSD;<br> ChromiumOS: ChromiumOS;<br> Bot: search engine crawler;<br> Other: other types of operating systems;<br> Empty: The operating system is empty.</li>
19831
- <li>tlsVersion: Filter by TLS version. If the tlsVersion parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> TLS1.0;<br> TLS1.1;<br> TLS1.2;<br> TLS1.3.</li>
19832
- <li>ipVersion: Filter by IP version. Valid values are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
19833
- <li>cacheType: Filter by cache status. Valid values are as follows:<br> hit: The request hits the EdgeOne node cache and the resources are provided by the node cache. A partial cache hit for resources is also recorded as hit.<br> miss: The request does not hit the EdgeOne node cache and the resources are provided by the origin server.<br> dynamic: The requested resources cannot be cached or are not configured with node cache and are provided by the origin server.<br> other: unrecognizable cache status. Requests responded to by edge functions are recorded as other.</li>
19834
- <li>clientIp: Filter by client IP.</li>
19818
+ :param _Filters: Filter criteria. The detailed key values of filter criteria are as follows:
19819
+ <li>country: filter by country/region. The country/region follows the <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166-1 alpha-2</a> standard. Example value: CN.</li>
19820
+ <li>province: filter by province. This parameter is supported only when the service area is the chinese mainland. refer to the <a href="https://intl.cloud.tencent.com/document/product/228/6316?from_cn_redirect=1#.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">mapping table of provinces within the chinese mainland</a> for province codes. Example value: 22.</li>
19821
+ <li>isp: filter by isp. This parameter only supports the service area of chinese mainland. The corresponding value options are as follows:<br> 2: china telecom;<br> 26: china unicom;<br> 1046: cmcc;<br> 3947: china tietong;<br> 38: china education network;<br> 43: great wall broadband;<br> 0: other isp.</li>
19822
+ <Li>domain: filter by subdomain. Example value: www.example.com.</li>
19823
+ <li>url: filter by url Path. Example value: /content or /content/test.jpg. If you fill in url parameters, you can query the data of the last 30 days at most.</li>
19824
+ <Li>referer: filter by referer request header. Example value: http://www.example.com/. If the referer parameter is provided, up to 30 days of data can be queried.</li>
19825
+ <li>resourceType: filter by resource type. The resource type is generally a file suffix. Example value: .jpg. If the resourceType parameter is provided, data from the last 30 days can be queried at most;</li>
19826
+ <li>protocol: filter by HTTP protocol version. The corresponding value options are as follows:<br> HTTP/1.0;<br> HTTP/1.1;<br> HTTP/2.0;<br> HTTP/3;<br> WebSocket.</li>
19827
+ <li>socket: filter by HTTP protocol type. The corresponding value options are as follows:<br>HTTP: hypertext transfer protocol;<br>HTTPS: HTTPS protocol;<br>QUIC: QUIC protocol.</li>
19828
+ <li>statusCode: filter by edge status code. If the statusCode parameter is filled in, data from the last 30 days can be queried at most. The corresponding value options are as follows:<br> 1XX: 1XX type status codes;<br> 2XX: 2XX type status codes;<br> 3XX: 3XX type status codes;<br> 4XX: 4XX type status codes;<br> 5XX: 5XX type status codes;<br> integers within the range [0,600).</li>
19829
+ <li>browserType: filter by browser type. If the browserType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> Firefox: Firefox browser;<br> Chrome: Chrome browser;<br> Safari: Safari browser;<br> Other: Other browser types;<br> Empty: browser type is Empty;<br> Bot: search engine crawler;<br> MicrosoftEdge: microsoft edge browser;<br> IE: IE browser;<br> Opera: Opera browser;<br> QQBrowser: QQ browser;<br> LBBrowser: LB browser;<br> MaxthonBrowser: Maxthon browser;<br> SouGouBrowser: sogou browser;<br> BIDUBrowser: BIDUBrowser;<br> TaoBrowser: TaoBrowser;<br> UBrowser: UC browser.</li>
19830
+ <li>deviceType: filter by device type. If the deviceType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> TV: TV device;<br> Tablet: Tablet device;<br> Mobile: Mobile device;<br> Desktop: Desktop device;<br> Other: Other device type;<br> Empty: device type Empty.</li>
19831
+ <li>operatingSystemType: filter by operating system type. If the operatingSystemType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> Linux: Linux operating system;<br> MacOS: MacOS operating system;<br> Android: Android operating system;<br> IOS: IOS operating system;<br> Windows: Windows operating system;<br> NetBSD: NetBSD;<br> ChromiumOS: ChromiumOS;<br> Bot: Bot: search engine crawler;<br> Other: Other types of operating systems;<br> Empty: operating system is Empty.</li>
19832
+ <li>tlsVersion: filter by TLS version. If the tlsVersion parameter is input, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> TLS1.0;<br> TLS1.1;<br> TLS1.2;<br> TLS1.3.</li>
19833
+ <li>ipVersion: filter by IP version. The options for the corresponding value are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
19834
+ <li>cacheType: filter by cache status. The options for The corresponding value are as follows:<br>hit: request hits EdgeOne node cache, and resources are provided by node cache. partial cache hit for resources is also recorded as hit.<br>miss: request does not hit EdgeOne node cache, and resources are provided by the origin server.<br>dynamic: requested resources cannot be cached/unconfigured to be cached by node cache, and resources are provided by the origin server.<br>other: unrecognizable cache status. requests responded to by edge functions are recorded as other.</li>
19835
+ <li>clientIp: filter by client IP. If the clientIp parameter is filled in, data from the last 30 days can be queried at most.</li>
19836
+ <li>userAgent: filter by User-Agent request header. If the userAgent parameter is filled in, data from the last 30 days can be queried at most.</li>
19837
+
19835
19838
  :type Filters: list of QueryCondition
19836
- :param _Area: Data region. Valid values:
19837
- <li>overseas: global (excluding the Chinese mainland) data;</li>
19838
- <li>mainland: Chinese mainland data;</li>
19839
- <li>global: global data.</li>
19840
- If this parameter is not filled in, the default value is global.
19839
+ :param _Area: Data ownership region. This parameter is deprecated. Please filter data by client region in Filters.country.
19841
19840
  :type Area: str
19842
19841
  """
19843
19842
  self._StartTime = None
@@ -19872,16 +19871,16 @@ If this parameter is not filled in, the default value is global.
19872
19871
 
19873
19872
  @property
19874
19873
  def MetricNames(self):
19875
- """Metric list. valid values:.
19876
- <Li>L7Flow_outFlux: l7 edgeone response traffic, unit: byte;</li>.
19877
- <Li>L7Flow_inFlux: l7 client request traffic, unit: byte;</li>.
19878
- <Li>L7Flow_flux: l7 total access traffic (including the edgeone response traffic and client request traffic), unit: byte;</li>.
19879
- <Li>L7Flow_outBandwidth: l7 edgeone response bandwidth, unit: bps;</li>.
19880
- <Li>L7Flow_inBandwidth: l7 client request bandwidth, unit: bps;</li>.
19881
- <Li>L7Flow_bandwidth: l7 total access bandwidth (including the edgeone response bandwidth and client request bandwidth), unit: bps;</li>.
19882
- <Li>L7Flow_request: l7 access request count, unit: times;</li>.
19883
- <Li> l7flow_avgresponsetime: l7 average response time, unit: ms (milliseconds);</li>.
19884
- <Li> l7flow_avgfirstbyteresponsetime: l7 average first byte response time for access, unit: ms.</li>.
19874
+ """Metric list. Valid values:.
19875
+ <Li>l7Flow_outFlux: L7 EdgeOne response traffic. Unit: byte;</li>
19876
+ <Li>l7Flow_inFlux: L7 client request traffic. Unit: byte;</li>
19877
+ <Li>l7Flow_flux: L7 total traffic (including EdgeOne response traffic and client request traffic). Unit: byte;</li>
19878
+ <Li>l7Flow_outBandwidth: L7 EdgeOne response bandwidth. Unit: bps;</li>
19879
+ <Li>l7Flow_inBandwidth: L7 client request bandwidth. Unit: bps;</li>
19880
+ <Li>l7Flow_bandwidth: L7 total bandwidth (including EdgeOne response bandwidth and client request bandwidth). Unit: bps;</li>
19881
+ <Li>l7Flow_request: L7 request count. Unit: times;</li>
19882
+ <Li>l7Flow_avgResponseTime: Average L7 edge response time. Unit: ms (milliseconds);</li>
19883
+ <Li>l7Flow_avgFirstByteResponseTime: Average L7 edge first byte response time. Unit: ms.</li>
19885
19884
  :rtype: list of str
19886
19885
  """
19887
19886
  return self._MetricNames
@@ -19918,23 +19917,26 @@ If this parameter is not filled in, the default value is global.
19918
19917
 
19919
19918
  @property
19920
19919
  def Filters(self):
19921
- """Filter criteria. The detailed key values are as follows:
19922
- <li>country: Filter by country/region. The country/region follows the <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166-1 alpha-2</a> standard. Example value: CN.</li>
19923
- <li>province: Filter by province. This parameter is supported only when the service area is the Chinese mainland. For province codes, refer to the <a href="https://intl.cloud.tencent.com/document/product/228/6316?from_cn_redirect=1#.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">Mapping Table of Provinces Within the Chinese Mainland</a>. Example value: 22.</li>
19924
- <li>isp: Filter by ISP. This parameter is supported only when the service area is the Chinese mainland. Valid values are as follows:<br> 2: China Telecom;<br> 26: China Unicom;<br> 1046: China Mobile;<br> 3947: China Tietong;<br> 38: CERNET;<br> 43: Great Wall Broadband;<br> 0: other ISPs.</li>
19925
- <li>domain: Filter by subdomain name. Example value: www.example.com.</li>
19926
- <li>url: Filter by URL path. Example value: /content or /content/test.jpg. If the url parameter is input, up to 30 days of data can be queried.</li>
19927
- <li>referer: Filter by Referer request header. Example value: http://www.example.com/. If the referer parameter is input, up to 30 days of data can be queried.</li>
19928
- <li>resourceType: Filter by resource type, which is generally the file suffix. Example value: .jpg. If the resourceType parameter is input, up to 30 days of data can be queried;</li>
19929
- <li>protocol: Filter by HTTP protocol version. Valid values are as follows:<br> HTTP/1.0;<br> HTTP/1.1;<br> HTTP/2.0;<br> HTTP/3;<br> WebSocket.</li><li>socket: Filter by HTTP protocol type. Valid values are as follows:<br> HTTP: HTTP protocol;<br> HTTPS: HTTPS protocol;<br> QUIC: QUIC protocol.</li>
19930
- <li>statusCode: Filter by edge status code. If the statusCode parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> 1XX: 1xx status code;<br> 2XX: 2xx status code;<br> 3XX: 3xx status code;<br> 4XX: 4xx status code;<br> 5XX: 5xx status code;<br> An integer within the range [0,600).</li>
19931
- <li>browserType: Filter by browser type. If the browserType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> Firefox: Firefox browser;<br> Chrome: Chrome browser;<br> Safari: Safari browser;<br> Other: other browser types;<br> Empty: The browser type is empty;<br> Bot: search engine crawler;<br> MicrosoftEdge: Microsoft Edge browser;<br> IE: IE browser;<br> Opera: Opera browser;<br> QQBrowser: QQ browser;<br> LBBrowser: LB browser;<br> MaxthonBrowser: Maxthon browser;<br> SouGouBrowser: Sogou browser;<br> BIDUBrowser: Baidu browser;<br> TaoBrowser: Tao browser;<br> UBrowser: UC browser.</li>
19932
- <li>deviceType: Filter by device type. If the deviceType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> TV: TV device;<br> Tablet: tablet device;<br> Mobile: mobile device;<br> Desktop: desktop device;<br> Other: other device types;<br> Empty: The device type is empty.</li>
19933
- <li>operatingSystemType: Filter by operating system type. If the operatingSystemType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> Linux: Linux operating system;<br> MacOS: MacOS operating system;<br> Android: Android operating system;<br> IOS: iOS operating system;<br> Windows: Windows operating system;<br> NetBSD: NetBSD;<br> ChromiumOS: ChromiumOS;<br> Bot: search engine crawler;<br> Other: other types of operating systems;<br> Empty: The operating system is empty.</li>
19934
- <li>tlsVersion: Filter by TLS version. If the tlsVersion parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> TLS1.0;<br> TLS1.1;<br> TLS1.2;<br> TLS1.3.</li>
19935
- <li>ipVersion: Filter by IP version. Valid values are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
19936
- <li>cacheType: Filter by cache status. Valid values are as follows:<br> hit: The request hits the EdgeOne node cache and the resources are provided by the node cache. A partial cache hit for resources is also recorded as hit.<br> miss: The request does not hit the EdgeOne node cache and the resources are provided by the origin server.<br> dynamic: The requested resources cannot be cached or are not configured with node cache and are provided by the origin server.<br> other: unrecognizable cache status. Requests responded to by edge functions are recorded as other.</li>
19937
- <li>clientIp: Filter by client IP.</li>
19920
+ """Filter criteria. The detailed key values of filter criteria are as follows:
19921
+ <li>country: filter by country/region. The country/region follows the <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166-1 alpha-2</a> standard. Example value: CN.</li>
19922
+ <li>province: filter by province. This parameter is supported only when the service area is the chinese mainland. refer to the <a href="https://intl.cloud.tencent.com/document/product/228/6316?from_cn_redirect=1#.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">mapping table of provinces within the chinese mainland</a> for province codes. Example value: 22.</li>
19923
+ <li>isp: filter by isp. This parameter only supports the service area of chinese mainland. The corresponding value options are as follows:<br> 2: china telecom;<br> 26: china unicom;<br> 1046: cmcc;<br> 3947: china tietong;<br> 38: china education network;<br> 43: great wall broadband;<br> 0: other isp.</li>
19924
+ <Li>domain: filter by subdomain. Example value: www.example.com.</li>
19925
+ <li>url: filter by url Path. Example value: /content or /content/test.jpg. If you fill in url parameters, you can query the data of the last 30 days at most.</li>
19926
+ <Li>referer: filter by referer request header. Example value: http://www.example.com/. If the referer parameter is provided, up to 30 days of data can be queried.</li>
19927
+ <li>resourceType: filter by resource type. The resource type is generally a file suffix. Example value: .jpg. If the resourceType parameter is provided, data from the last 30 days can be queried at most;</li>
19928
+ <li>protocol: filter by HTTP protocol version. The corresponding value options are as follows:<br> HTTP/1.0;<br> HTTP/1.1;<br> HTTP/2.0;<br> HTTP/3;<br> WebSocket.</li>
19929
+ <li>socket: filter by HTTP protocol type. The corresponding value options are as follows:<br>HTTP: hypertext transfer protocol;<br>HTTPS: HTTPS protocol;<br>QUIC: QUIC protocol.</li>
19930
+ <li>statusCode: filter by edge status code. If the statusCode parameter is filled in, data from the last 30 days can be queried at most. The corresponding value options are as follows:<br> 1XX: 1XX type status codes;<br> 2XX: 2XX type status codes;<br> 3XX: 3XX type status codes;<br> 4XX: 4XX type status codes;<br> 5XX: 5XX type status codes;<br> integers within the range [0,600).</li>
19931
+ <li>browserType: filter by browser type. If the browserType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> Firefox: Firefox browser;<br> Chrome: Chrome browser;<br> Safari: Safari browser;<br> Other: Other browser types;<br> Empty: browser type is Empty;<br> Bot: search engine crawler;<br> MicrosoftEdge: microsoft edge browser;<br> IE: IE browser;<br> Opera: Opera browser;<br> QQBrowser: QQ browser;<br> LBBrowser: LB browser;<br> MaxthonBrowser: Maxthon browser;<br> SouGouBrowser: sogou browser;<br> BIDUBrowser: BIDUBrowser;<br> TaoBrowser: TaoBrowser;<br> UBrowser: UC browser.</li>
19932
+ <li>deviceType: filter by device type. If the deviceType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> TV: TV device;<br> Tablet: Tablet device;<br> Mobile: Mobile device;<br> Desktop: Desktop device;<br> Other: Other device type;<br> Empty: device type Empty.</li>
19933
+ <li>operatingSystemType: filter by operating system type. If the operatingSystemType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> Linux: Linux operating system;<br> MacOS: MacOS operating system;<br> Android: Android operating system;<br> IOS: IOS operating system;<br> Windows: Windows operating system;<br> NetBSD: NetBSD;<br> ChromiumOS: ChromiumOS;<br> Bot: Bot: search engine crawler;<br> Other: Other types of operating systems;<br> Empty: operating system is Empty.</li>
19934
+ <li>tlsVersion: filter by TLS version. If the tlsVersion parameter is input, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> TLS1.0;<br> TLS1.1;<br> TLS1.2;<br> TLS1.3.</li>
19935
+ <li>ipVersion: filter by IP version. The options for the corresponding value are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
19936
+ <li>cacheType: filter by cache status. The options for The corresponding value are as follows:<br>hit: request hits EdgeOne node cache, and resources are provided by node cache. partial cache hit for resources is also recorded as hit.<br>miss: request does not hit EdgeOne node cache, and resources are provided by the origin server.<br>dynamic: requested resources cannot be cached/unconfigured to be cached by node cache, and resources are provided by the origin server.<br>other: unrecognizable cache status. requests responded to by edge functions are recorded as other.</li>
19937
+ <li>clientIp: filter by client IP. If the clientIp parameter is filled in, data from the last 30 days can be queried at most.</li>
19938
+ <li>userAgent: filter by User-Agent request header. If the userAgent parameter is filled in, data from the last 30 days can be queried at most.</li>
19939
+
19938
19940
  :rtype: list of QueryCondition
19939
19941
  """
19940
19942
  return self._Filters
@@ -19945,11 +19947,7 @@ If this parameter is not filled in, the default value is global.
19945
19947
 
19946
19948
  @property
19947
19949
  def Area(self):
19948
- """Data region. Valid values:
19949
- <li>overseas: global (excluding the Chinese mainland) data;</li>
19950
- <li>mainland: Chinese mainland data;</li>
19951
- <li>global: global data.</li>
19952
- If this parameter is not filled in, the default value is global.
19950
+ """Data ownership region. This parameter is deprecated. Please filter data by client region in Filters.country.
19953
19951
  :rtype: str
19954
19952
  """
19955
19953
  return self._Area
@@ -20289,52 +20287,55 @@ class DescribeTopL7AnalysisDataRequest(AbstractModel):
20289
20287
  :param _EndTime: The end time.
20290
20288
  :type EndTime: str
20291
20289
  :param _MetricName: Queried metric. Valid values:
20292
- <li> l7Flow_outFlux_country: L7 EdgeOne response traffic metric counted by the country/region dimension;</li>
20293
- <li> l7Flow_outFlux_province: L7 EdgeOne response traffic metric counted by the dimension of provinces in Chinese mainland;</li>
20294
- <li> l7Flow_outFlux_statusCode: L7 EdgeOne response traffic metric counted by the status code dimension;</li>
20295
- <li> l7Flow_outFlux_domain: L7 EdgeOne response traffic metric counted by the domain name dimension;</li>
20296
- <li> l7Flow_outFlux_url: L7 EdgeOne response traffic metric counted by the URL path dimension;</li>
20297
- <li> l7Flow_outFlux_resourceType: L7 EdgeOne response traffic metric counted by the resource type dimension;</li>
20298
- <li> l7Flow_outFlux_sip: L7 EdgeOne response traffic metric counted by the client IP dimension;</li>
20299
- <li> l7Flow_outFlux_referers: L7 EdgeOne response traffic metric counted by the referer dimension;</li>
20300
- <li> l7Flow_outFlux_ua_device: L7 EdgeOne response traffic metric counted by the device type dimension;</li>
20301
- <li> l7Flow_outFlux_ua_browser: L7 EdgeOne response traffic metric counted by the browser type dimension;</li>
20302
- <li> l7Flow_outFlux_ua_os: L7 EdgeOne response traffic metric counted by the operating system type dimension;</li>
20303
- <li> l7Flow_request_country: L7 access request count metric counted by the country/region dimension;</li>
20304
- <li> l7Flow_request_province: L7 access request count metric counted by the dimension of provinces in the Chinese mainland;</li>
20305
- <li> l7Flow_request_statusCode: L7 access request count metric counted by the status code dimension;</li>
20306
- <li> l7Flow_request_domain: L7 access request count metric counted by the domain name dimension;</li>
20307
- <li> l7Flow_request_url: L7 access request count metrics counted by the URL path dimension;</li>
20308
- <li> l7Flow_request_resourceType: L7 access request count metric counted by the resource type dimension;</li>
20309
- <li> l7Flow_request_sip: L7 access request count metric counted by the client IP dimension;</li>
20310
- <li> l7Flow_request_referer: L7 access request count metric counted by the referer dimension;</li>
20311
- <li> l7Flow_request_ua_device: L7 access request count metric counted by the device type dimension;</li>
20312
- <li> l7Flow_request_ua_browser: L7 access request count metric counted by the browser type dimension;</li>
20313
- <li> l7Flow_request_ua_os: L7 access request count metric counted by the operating system type dimension.</li>
20314
-
20290
+ <li> l7Flow_outFlux_country: L7 EdgeOne response traffic aggregated by the country/region dimension;</li>
20291
+ <li> l7Flow_outFlux_province: L7 EdgeOne response traffic aggregated by the dimension of provinces in chinese mainland;</li>
20292
+ <li> l7Flow_outFlux_statusCode: L7 EdgeOne response traffic aggregated by the status code dimension;</li>
20293
+ <li> l7Flow_outFlux_domain: L7 EdgeOne response traffic aggregated by the domain name dimension;</li>
20294
+ <li>l7Flow_outFlux_url: L7 EdgeOne response traffic aggregated by url path dimension.</li>
20295
+ <li> l7Flow_outFlux_resourceType: L7 EdgeOne response traffic aggregated by the resource type dimension;</li>
20296
+ <li> l7Flow_outFlux_sip: L7 EdgeOne response traffic aggregated by the client IP dimension;</li>
20297
+ <li>l7Flow_outFlux_referers: L7 EdgeOne response traffic aggregated by referer dimension.</li>
20298
+ <li> l7Flow_outFlux_ua_device: L7 EdgeOne response traffic aggregated by the device type dimension;</li>
20299
+ <li> l7Flow_outFlux_ua_browser: L7 EdgeOne response traffic aggregated by the browser type dimension;</li>
20300
+ <li> l7Flow_outFlux_ua_os: L7 EdgeOne response traffic aggregated by the operating system type dimension;</li>
20301
+ <li> l7Flow_outFlux_ua: L7 EdgeOne response traffic aggregated by the User-Agent dimension;</li>
20302
+ <li> l7Flow_request_country: L7 request count aggregated by the country/region dimension;</li>
20303
+ <li> l7Flow_request_province: L7 request count aggregated by the dimension of provinces in the chinese mainland;</li>
20304
+ <li> l7Flow_request_statusCode: L7 request count aggregated by the status code dimension;</li>
20305
+ <li> l7Flow_request_domain: L7 request count aggregated by the domain name dimension;</li>
20306
+ <li>l7Flow_request_url: L7 request count aggregated by url Path dimension.</li>
20307
+ <li> l7Flow_request_resourceType: L7 request count aggregated by resource type dimension;</li>
20308
+ <li> l7Flow_request_sip: L7 request count aggregated by the client IP dimension;</li>
20309
+ <li>l7Flow_request_referer: L7 request count aggregated by referer dimension.</li>
20310
+ <li> l7Flow_request_ua_device: L7 request count aggregated by the device type dimension;</li>
20311
+ <li> l7Flow_request_ua_browser: L7 request count aggregated by the browser type dimension;</li>
20312
+ <li> l7Flow_request_ua_os: L7 request count aggregated by the operating system type dimension.</li>
20313
+ <li> l7Flow_request_ua: L7 request count aggregated by the User-Agent dimension.</li>
20315
20314
  :type MetricName: str
20316
20315
  :param _ZoneIds: ZoneId set. This parameter is required.
20317
20316
  :type ZoneIds: list of str
20318
20317
  :param _Limit: Indicates the top N data to be queried. The maximum value is 1000. If this parameter is not input, the default value is 10, indicating querying the top 10 data.
20319
20318
  :type Limit: int
20320
- :param _Filters: Filter criteria. The detailed Key values are as follows:
20321
- <li>country: Filter by country/region. The country/region follows the <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166-1 alpha-2</a> standard. Example value: CN.</li>
20322
- <li>province: Filter by province. This parameter is supported only when the service area is the Chinese mainland. For province codes, refer to the <a href="https://intl.cloud.tencent.com/document/product/228/6316?from_cn_redirect=1#.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">Mapping Table of Provinces Within the Chinese Mainland</a>. Example value: 22.</li>
20323
- <li>isp: Filter by ISP. This parameter is supported only when the service area is the Chinese mainland. Valid values are as follows:<br> 2: China Telecom;<br> 26: China Unicom;<br> 1046: China Mobile;<br> 3947: China Tietong;<br> 38: CERNET;<br> 43: Great Wall Broadband;<br> 0: other ISPs.</li>
20324
- <li>domain: Filter by subdomain name. Example value: www.example.com.</li>
20325
- <li>url: Filter by URL path. Example value: /content or /content/test.jpg. If the url parameter is input, up to 30 days of data can be queried.</li>
20326
- <li>referer: Filter by Referer request header. Example value: http://www.example.com/. If the referer parameter is input, up to 30 days of data can be queried.</li>
20327
- <li>resourceType: Filter by resource type, which is generally the file suffix. Example value: .jpg. If the resourceType parameter is input, up to 30 days of data can be queried;</li>
20328
- <li>protocol: Filter by HTTP protocol version. Valid values are as follows:<br> HTTP/1.0;<br> HTTP/1.1;<br> HTTP/2.0;<br> HTTP/3;<br> WebSocket.</li>
20329
- <li>socket: Filter by HTTP protocol type. Valid values are as follows:<br> HTTP: HTTP protocol;<br> HTTPS: HTTPS protocol;<br> QUIC: QUIC protocol.</li>
20330
- <li>statusCode: Filter by edge status code. If the statusCode parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> 1XX: 1xx status code;<br> 2XX: 2xx status code;<br> 3XX: 3xx status code;<br> 4XX: 4xx status code;<br> 5XX: 5xx status code;<br> An integer within the range [0,600).</li>
20331
- <li>browserType: Filter by browser type. If the browserType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> Firefox: Firefox browser;<br> Chrome: Chrome browser;<br> Safari: Safari browser;<br> Other: other browser types;<br> Empty: The browser type is empty;<br> Bot: search engine crawler;<br> MicrosoftEdge: Microsoft Edge browser;<br> IE: IE browser;<br> Opera: Opera browser;<br> QQBrowser: QQ browser;<br> LBBrowser: LB browser;<br> MaxthonBrowser: Maxthon browser;<br> SouGouBrowser: Sogou browser;<br> BIDUBrowser: Baidu browser;<br> TaoBrowser: Tao browser;<br> UBrowser: UC browser.</li>
20332
- <li>deviceType: Filter by device type. If the deviceType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> TV: TV device;<br> Tablet: tablet device;<br> Mobile: mobile device;<br> Desktop: desktop device;<br> Other: other device types;<br> Empty: The device type is empty.</li>
20333
- <li>operatingSystemType: Filter by operating system type. If the operatingSystemType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> Linux: Linux operating system;<br> MacOS: MacOS operating system;<br> Android: Android operating system;<br> IOS: iOS operating system;<br> Windows: Windows operating system;<br> NetBSD: NetBSD;<br> ChromiumOS: ChromiumOS;<br> Bot: search engine crawler;<br> Other: other types of operating systems;<br> Empty: The operating system is empty.</li>
20334
- <li>tlsVersion: Filter by TLS version. If the tlsVersion parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> TLS1.0;<br> TLS1.1;<br> TLS1.2;<br> TLS1.3.</li>
20335
- <li>ipVersion: Filter by IP version. Valid values are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
20336
- <li>cacheType: Filter by cache status. Valid values are as follows:<br> hit: The request hits the EdgeOne node cache and the resources are provided by the node cache. A partial cache hit for resources is also recorded as hit.<br> miss: The request does not hit the EdgeOne node cache and the resources are provided by the origin server.<br> dynamic: The requested resources cannot be cached or are not configured with node cache and are provided by the origin server.<br> other: unrecognizable cache status. Requests responded to by edge functions are recorded as other.</li>
20337
- <li>clientIp: Filter by client IP.</li>
20319
+ :param _Filters: Filter criteria. The detailed key values of filter criteria are as follows:
20320
+ <li>country: filter by country/region. The country/region follows the <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166-1 alpha-2</a> standard. Example value: CN.</li>
20321
+ <li>province: filter by province. This parameter is supported only when the service area is the chinese mainland. refer to the <a href="https://intl.cloud.tencent.com/document/product/228/6316?from_cn_redirect=1#.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">mapping table of provinces within the chinese mainland</a> for province codes. Example value: 22.</li>
20322
+ <li>isp: filter by isp. This parameter only supports the service area of chinese mainland. The corresponding value options are as follows:<br> 2: china telecom;<br> 26: china unicom;<br> 1046: cmcc;<br> 3947: china tietong;<br> 38: china education network;<br> 43: great wall broadband;<br> 0: other isp.</li>
20323
+ <Li>domain: filter by subdomain. Example value: www.example.com.</li>
20324
+ <li>url: filter by url Path. Example value: /content or /content/test.jpg. If you fill in url parameters, you can query the data of the last 30 days at most.</li>
20325
+ <Li>referer: filter by referer request header. Example value: http://www.example.com/. If the referer parameter is provided, up to 30 days of data can be queried.</li>
20326
+ <li>resourceType: filter by resource type. The resource type is generally a file suffix. Example value: .jpg. If the resourceType parameter is provided, data from the last 30 days can be queried at most;</li>
20327
+ <li>protocol: filter by HTTP protocol version. The corresponding value options are as follows:<br> HTTP/1.0;<br> HTTP/1.1;<br> HTTP/2.0;<br> HTTP/3;<br> WebSocket.</li>
20328
+ <li>socket: filter by HTTP protocol type. The corresponding value options are as follows:<br>HTTP: hypertext transfer protocol;<br>HTTPS: HTTPS protocol;<br>QUIC: QUIC protocol.</li>
20329
+ <li>statusCode: filter by edge status code. If the statusCode parameter is filled in, data from the last 30 days can be queried at most. The corresponding value options are as follows:<br> 1XX: 1XX type status codes;<br> 2XX: 2XX type status codes;<br> 3XX: 3XX type status codes;<br> 4XX: 4XX type status codes;<br> 5XX: 5XX type status codes;<br> integers within the range [0,600).</li>
20330
+ <li>browserType: filter by browser type. If the browserType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> Firefox: Firefox browser;<br> Chrome: Chrome browser;<br> Safari: Safari browser;<br> Other: Other browser types;<br> Empty: browser type is Empty;<br> Bot: search engine crawler;<br> MicrosoftEdge: microsoft edge browser;<br> IE: IE browser;<br> Opera: Opera browser;<br> QQBrowser: QQ browser;<br> LBBrowser: LB browser;<br> MaxthonBrowser: Maxthon browser;<br> SouGouBrowser: sogou browser;<br> BIDUBrowser: BIDUBrowser;<br> TaoBrowser: TaoBrowser;<br> UBrowser: UC browser.</li>
20331
+ <li>deviceType: filter by device type. If the deviceType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> TV: TV device;<br> Tablet: Tablet device;<br> Mobile: Mobile device;<br> Desktop: Desktop device;<br> Other: Other device type;<br> Empty: device type Empty.</li>
20332
+ <li>operatingSystemType: filter by operating system type. If the operatingSystemType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> Linux: Linux operating system;<br> MacOS: MacOS operating system;<br> Android: Android operating system;<br> IOS: IOS operating system;<br> Windows: Windows operating system;<br> NetBSD: NetBSD;<br> ChromiumOS: ChromiumOS;<br> Bot: Bot: search engine crawler;<br> Other: Other types of operating systems;<br> Empty: operating system is Empty.</li>
20333
+ <li>tlsVersion: filter by TLS version. If the tlsVersion parameter is input, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> TLS1.0;<br> TLS1.1;<br> TLS1.2;<br> TLS1.3.</li>
20334
+ <li>ipVersion: filter by IP version. The options for the corresponding value are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
20335
+ <li>cacheType: filter by cache status. The options for The corresponding value are as follows:<br>hit: request hits EdgeOne node cache, and resources are provided by node cache. partial cache hit for resources is also recorded as hit.<br>miss: request does not hit EdgeOne node cache, and resources are provided by the origin server.<br>dynamic: requested resources cannot be cached/unconfigured to be cached by node cache, and resources are provided by the origin server.<br>other: unrecognizable cache status. requests responded to by edge functions are recorded as other.</li>
20336
+ <li>clientIp: filter by client IP. If the clientIp parameter is filled in, data from the last 30 days can be queried at most.</li>
20337
+ <li>userAgent: filter by User-Agent request header. If the userAgent parameter is filled in, data from the last 30 days can be queried at most.</li>
20338
+
20338
20339
  :type Filters: list of QueryCondition
20339
20340
  :param _Interval: Query period granularity. Valid values:
20340
20341
  <li>min: 1 minute;</li>
@@ -20342,10 +20343,7 @@ class DescribeTopL7AnalysisDataRequest(AbstractModel):
20342
20343
  <li>hour: 1 hour;</li>
20343
20344
  <li>day: 1 day.</li>If this parameter is not filled in, the granularity will be automatically calculated based on the interval between the start time and end time. Specifically, data will be queried with a granularity of min, 5min, hour, and day respectively when the period is no more than 2 hours, no more than 2 days, no more than 7 days, and over 7 days.
20344
20345
  :type Interval: str
20345
- :param _Area: Data region. Values:
20346
- <li>overseas: Regions outside the Chinese mainland</li>
20347
- <li>mainland: Chinese mainland</li>
20348
- <li>global: Global</li>If this field is not specified, the default value `global` is used.
20346
+ :param _Area: Data ownership region. this parameter is deprecated. Please filter data by client region in Filters.country.
20349
20347
  :type Area: str
20350
20348
  """
20351
20349
  self._StartTime = None
@@ -20382,29 +20380,30 @@ class DescribeTopL7AnalysisDataRequest(AbstractModel):
20382
20380
  @property
20383
20381
  def MetricName(self):
20384
20382
  """Queried metric. Valid values:
20385
- <li> l7Flow_outFlux_country: L7 EdgeOne response traffic metric counted by the country/region dimension;</li>
20386
- <li> l7Flow_outFlux_province: L7 EdgeOne response traffic metric counted by the dimension of provinces in Chinese mainland;</li>
20387
- <li> l7Flow_outFlux_statusCode: L7 EdgeOne response traffic metric counted by the status code dimension;</li>
20388
- <li> l7Flow_outFlux_domain: L7 EdgeOne response traffic metric counted by the domain name dimension;</li>
20389
- <li> l7Flow_outFlux_url: L7 EdgeOne response traffic metric counted by the URL path dimension;</li>
20390
- <li> l7Flow_outFlux_resourceType: L7 EdgeOne response traffic metric counted by the resource type dimension;</li>
20391
- <li> l7Flow_outFlux_sip: L7 EdgeOne response traffic metric counted by the client IP dimension;</li>
20392
- <li> l7Flow_outFlux_referers: L7 EdgeOne response traffic metric counted by the referer dimension;</li>
20393
- <li> l7Flow_outFlux_ua_device: L7 EdgeOne response traffic metric counted by the device type dimension;</li>
20394
- <li> l7Flow_outFlux_ua_browser: L7 EdgeOne response traffic metric counted by the browser type dimension;</li>
20395
- <li> l7Flow_outFlux_ua_os: L7 EdgeOne response traffic metric counted by the operating system type dimension;</li>
20396
- <li> l7Flow_request_country: L7 access request count metric counted by the country/region dimension;</li>
20397
- <li> l7Flow_request_province: L7 access request count metric counted by the dimension of provinces in the Chinese mainland;</li>
20398
- <li> l7Flow_request_statusCode: L7 access request count metric counted by the status code dimension;</li>
20399
- <li> l7Flow_request_domain: L7 access request count metric counted by the domain name dimension;</li>
20400
- <li> l7Flow_request_url: L7 access request count metrics counted by the URL path dimension;</li>
20401
- <li> l7Flow_request_resourceType: L7 access request count metric counted by the resource type dimension;</li>
20402
- <li> l7Flow_request_sip: L7 access request count metric counted by the client IP dimension;</li>
20403
- <li> l7Flow_request_referer: L7 access request count metric counted by the referer dimension;</li>
20404
- <li> l7Flow_request_ua_device: L7 access request count metric counted by the device type dimension;</li>
20405
- <li> l7Flow_request_ua_browser: L7 access request count metric counted by the browser type dimension;</li>
20406
- <li> l7Flow_request_ua_os: L7 access request count metric counted by the operating system type dimension.</li>
20407
-
20383
+ <li> l7Flow_outFlux_country: L7 EdgeOne response traffic aggregated by the country/region dimension;</li>
20384
+ <li> l7Flow_outFlux_province: L7 EdgeOne response traffic aggregated by the dimension of provinces in chinese mainland;</li>
20385
+ <li> l7Flow_outFlux_statusCode: L7 EdgeOne response traffic aggregated by the status code dimension;</li>
20386
+ <li> l7Flow_outFlux_domain: L7 EdgeOne response traffic aggregated by the domain name dimension;</li>
20387
+ <li>l7Flow_outFlux_url: L7 EdgeOne response traffic aggregated by url path dimension.</li>
20388
+ <li> l7Flow_outFlux_resourceType: L7 EdgeOne response traffic aggregated by the resource type dimension;</li>
20389
+ <li> l7Flow_outFlux_sip: L7 EdgeOne response traffic aggregated by the client IP dimension;</li>
20390
+ <li>l7Flow_outFlux_referers: L7 EdgeOne response traffic aggregated by referer dimension.</li>
20391
+ <li> l7Flow_outFlux_ua_device: L7 EdgeOne response traffic aggregated by the device type dimension;</li>
20392
+ <li> l7Flow_outFlux_ua_browser: L7 EdgeOne response traffic aggregated by the browser type dimension;</li>
20393
+ <li> l7Flow_outFlux_ua_os: L7 EdgeOne response traffic aggregated by the operating system type dimension;</li>
20394
+ <li> l7Flow_outFlux_ua: L7 EdgeOne response traffic aggregated by the User-Agent dimension;</li>
20395
+ <li> l7Flow_request_country: L7 request count aggregated by the country/region dimension;</li>
20396
+ <li> l7Flow_request_province: L7 request count aggregated by the dimension of provinces in the chinese mainland;</li>
20397
+ <li> l7Flow_request_statusCode: L7 request count aggregated by the status code dimension;</li>
20398
+ <li> l7Flow_request_domain: L7 request count aggregated by the domain name dimension;</li>
20399
+ <li>l7Flow_request_url: L7 request count aggregated by url Path dimension.</li>
20400
+ <li> l7Flow_request_resourceType: L7 request count aggregated by resource type dimension;</li>
20401
+ <li> l7Flow_request_sip: L7 request count aggregated by the client IP dimension;</li>
20402
+ <li>l7Flow_request_referer: L7 request count aggregated by referer dimension.</li>
20403
+ <li> l7Flow_request_ua_device: L7 request count aggregated by the device type dimension;</li>
20404
+ <li> l7Flow_request_ua_browser: L7 request count aggregated by the browser type dimension;</li>
20405
+ <li> l7Flow_request_ua_os: L7 request count aggregated by the operating system type dimension.</li>
20406
+ <li> l7Flow_request_ua: L7 request count aggregated by the User-Agent dimension.</li>
20408
20407
  :rtype: str
20409
20408
  """
20410
20409
  return self._MetricName
@@ -20437,24 +20436,26 @@ class DescribeTopL7AnalysisDataRequest(AbstractModel):
20437
20436
 
20438
20437
  @property
20439
20438
  def Filters(self):
20440
- """Filter criteria. The detailed Key values are as follows:
20441
- <li>country: Filter by country/region. The country/region follows the <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166-1 alpha-2</a> standard. Example value: CN.</li>
20442
- <li>province: Filter by province. This parameter is supported only when the service area is the Chinese mainland. For province codes, refer to the <a href="https://intl.cloud.tencent.com/document/product/228/6316?from_cn_redirect=1#.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">Mapping Table of Provinces Within the Chinese Mainland</a>. Example value: 22.</li>
20443
- <li>isp: Filter by ISP. This parameter is supported only when the service area is the Chinese mainland. Valid values are as follows:<br> 2: China Telecom;<br> 26: China Unicom;<br> 1046: China Mobile;<br> 3947: China Tietong;<br> 38: CERNET;<br> 43: Great Wall Broadband;<br> 0: other ISPs.</li>
20444
- <li>domain: Filter by subdomain name. Example value: www.example.com.</li>
20445
- <li>url: Filter by URL path. Example value: /content or /content/test.jpg. If the url parameter is input, up to 30 days of data can be queried.</li>
20446
- <li>referer: Filter by Referer request header. Example value: http://www.example.com/. If the referer parameter is input, up to 30 days of data can be queried.</li>
20447
- <li>resourceType: Filter by resource type, which is generally the file suffix. Example value: .jpg. If the resourceType parameter is input, up to 30 days of data can be queried;</li>
20448
- <li>protocol: Filter by HTTP protocol version. Valid values are as follows:<br> HTTP/1.0;<br> HTTP/1.1;<br> HTTP/2.0;<br> HTTP/3;<br> WebSocket.</li>
20449
- <li>socket: Filter by HTTP protocol type. Valid values are as follows:<br> HTTP: HTTP protocol;<br> HTTPS: HTTPS protocol;<br> QUIC: QUIC protocol.</li>
20450
- <li>statusCode: Filter by edge status code. If the statusCode parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> 1XX: 1xx status code;<br> 2XX: 2xx status code;<br> 3XX: 3xx status code;<br> 4XX: 4xx status code;<br> 5XX: 5xx status code;<br> An integer within the range [0,600).</li>
20451
- <li>browserType: Filter by browser type. If the browserType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> Firefox: Firefox browser;<br> Chrome: Chrome browser;<br> Safari: Safari browser;<br> Other: other browser types;<br> Empty: The browser type is empty;<br> Bot: search engine crawler;<br> MicrosoftEdge: Microsoft Edge browser;<br> IE: IE browser;<br> Opera: Opera browser;<br> QQBrowser: QQ browser;<br> LBBrowser: LB browser;<br> MaxthonBrowser: Maxthon browser;<br> SouGouBrowser: Sogou browser;<br> BIDUBrowser: Baidu browser;<br> TaoBrowser: Tao browser;<br> UBrowser: UC browser.</li>
20452
- <li>deviceType: Filter by device type. If the deviceType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> TV: TV device;<br> Tablet: tablet device;<br> Mobile: mobile device;<br> Desktop: desktop device;<br> Other: other device types;<br> Empty: The device type is empty.</li>
20453
- <li>operatingSystemType: Filter by operating system type. If the operatingSystemType parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> Linux: Linux operating system;<br> MacOS: MacOS operating system;<br> Android: Android operating system;<br> IOS: iOS operating system;<br> Windows: Windows operating system;<br> NetBSD: NetBSD;<br> ChromiumOS: ChromiumOS;<br> Bot: search engine crawler;<br> Other: other types of operating systems;<br> Empty: The operating system is empty.</li>
20454
- <li>tlsVersion: Filter by TLS version. If the tlsVersion parameter is input, up to 30 days of data can be queried. Valid values are as follows:<br> TLS1.0;<br> TLS1.1;<br> TLS1.2;<br> TLS1.3.</li>
20455
- <li>ipVersion: Filter by IP version. Valid values are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
20456
- <li>cacheType: Filter by cache status. Valid values are as follows:<br> hit: The request hits the EdgeOne node cache and the resources are provided by the node cache. A partial cache hit for resources is also recorded as hit.<br> miss: The request does not hit the EdgeOne node cache and the resources are provided by the origin server.<br> dynamic: The requested resources cannot be cached or are not configured with node cache and are provided by the origin server.<br> other: unrecognizable cache status. Requests responded to by edge functions are recorded as other.</li>
20457
- <li>clientIp: Filter by client IP.</li>
20439
+ """Filter criteria. The detailed key values of filter criteria are as follows:
20440
+ <li>country: filter by country/region. The country/region follows the <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166-1 alpha-2</a> standard. Example value: CN.</li>
20441
+ <li>province: filter by province. This parameter is supported only when the service area is the chinese mainland. refer to the <a href="https://intl.cloud.tencent.com/document/product/228/6316?from_cn_redirect=1#.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">mapping table of provinces within the chinese mainland</a> for province codes. Example value: 22.</li>
20442
+ <li>isp: filter by isp. This parameter only supports the service area of chinese mainland. The corresponding value options are as follows:<br> 2: china telecom;<br> 26: china unicom;<br> 1046: cmcc;<br> 3947: china tietong;<br> 38: china education network;<br> 43: great wall broadband;<br> 0: other isp.</li>
20443
+ <Li>domain: filter by subdomain. Example value: www.example.com.</li>
20444
+ <li>url: filter by url Path. Example value: /content or /content/test.jpg. If you fill in url parameters, you can query the data of the last 30 days at most.</li>
20445
+ <Li>referer: filter by referer request header. Example value: http://www.example.com/. If the referer parameter is provided, up to 30 days of data can be queried.</li>
20446
+ <li>resourceType: filter by resource type. The resource type is generally a file suffix. Example value: .jpg. If the resourceType parameter is provided, data from the last 30 days can be queried at most;</li>
20447
+ <li>protocol: filter by HTTP protocol version. The corresponding value options are as follows:<br> HTTP/1.0;<br> HTTP/1.1;<br> HTTP/2.0;<br> HTTP/3;<br> WebSocket.</li>
20448
+ <li>socket: filter by HTTP protocol type. The corresponding value options are as follows:<br>HTTP: hypertext transfer protocol;<br>HTTPS: HTTPS protocol;<br>QUIC: QUIC protocol.</li>
20449
+ <li>statusCode: filter by edge status code. If the statusCode parameter is filled in, data from the last 30 days can be queried at most. The corresponding value options are as follows:<br> 1XX: 1XX type status codes;<br> 2XX: 2XX type status codes;<br> 3XX: 3XX type status codes;<br> 4XX: 4XX type status codes;<br> 5XX: 5XX type status codes;<br> integers within the range [0,600).</li>
20450
+ <li>browserType: filter by browser type. If the browserType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> Firefox: Firefox browser;<br> Chrome: Chrome browser;<br> Safari: Safari browser;<br> Other: Other browser types;<br> Empty: browser type is Empty;<br> Bot: search engine crawler;<br> MicrosoftEdge: microsoft edge browser;<br> IE: IE browser;<br> Opera: Opera browser;<br> QQBrowser: QQ browser;<br> LBBrowser: LB browser;<br> MaxthonBrowser: Maxthon browser;<br> SouGouBrowser: sogou browser;<br> BIDUBrowser: BIDUBrowser;<br> TaoBrowser: TaoBrowser;<br> UBrowser: UC browser.</li>
20451
+ <li>deviceType: filter by device type. If the deviceType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> TV: TV device;<br> Tablet: Tablet device;<br> Mobile: Mobile device;<br> Desktop: Desktop device;<br> Other: Other device type;<br> Empty: device type Empty.</li>
20452
+ <li>operatingSystemType: filter by operating system type. If the operatingSystemType parameter is filled in, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> Linux: Linux operating system;<br> MacOS: MacOS operating system;<br> Android: Android operating system;<br> IOS: IOS operating system;<br> Windows: Windows operating system;<br> NetBSD: NetBSD;<br> ChromiumOS: ChromiumOS;<br> Bot: Bot: search engine crawler;<br> Other: Other types of operating systems;<br> Empty: operating system is Empty.</li>
20453
+ <li>tlsVersion: filter by TLS version. If the tlsVersion parameter is input, data from the last 30 days can be queried at most. The options for The corresponding value are as follows:<br> TLS1.0;<br> TLS1.1;<br> TLS1.2;<br> TLS1.3.</li>
20454
+ <li>ipVersion: filter by IP version. The options for the corresponding value are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
20455
+ <li>cacheType: filter by cache status. The options for The corresponding value are as follows:<br>hit: request hits EdgeOne node cache, and resources are provided by node cache. partial cache hit for resources is also recorded as hit.<br>miss: request does not hit EdgeOne node cache, and resources are provided by the origin server.<br>dynamic: requested resources cannot be cached/unconfigured to be cached by node cache, and resources are provided by the origin server.<br>other: unrecognizable cache status. requests responded to by edge functions are recorded as other.</li>
20456
+ <li>clientIp: filter by client IP. If the clientIp parameter is filled in, data from the last 30 days can be queried at most.</li>
20457
+ <li>userAgent: filter by User-Agent request header. If the userAgent parameter is filled in, data from the last 30 days can be queried at most.</li>
20458
+
20458
20459
  :rtype: list of QueryCondition
20459
20460
  """
20460
20461
  return self._Filters
@@ -20480,10 +20481,7 @@ class DescribeTopL7AnalysisDataRequest(AbstractModel):
20480
20481
 
20481
20482
  @property
20482
20483
  def Area(self):
20483
- """Data region. Values:
20484
- <li>overseas: Regions outside the Chinese mainland</li>
20485
- <li>mainland: Chinese mainland</li>
20486
- <li>global: Global</li>If this field is not specified, the default value `global` is used.
20484
+ """Data ownership region. this parameter is deprecated. Please filter data by client region in Filters.country.
20487
20485
  :rtype: str
20488
20486
  """
20489
20487
  return self._Area
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-intl-en
3
- Version: 3.0.1179
3
+ Version: 3.0.1180
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python-intl-en
6
6
  Author: Tencent Cloud
@@ -1,4 +1,4 @@
1
- tencentcloud/__init__.py,sha256=sGKh2cDIxgOmfG6h6ipmiOe6wOWfEOzwhhEB5rPcLlg,630
1
+ tencentcloud/__init__.py,sha256=xAPfgj5ByhcxBZgd09YptQZU97iKItzKHbUHQ9MHN0Q,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=FuBG5ZJpmnVpDyVC84G_cjEWSa-mm6oyBvOIDe5SP-g,2924
@@ -413,8 +413,8 @@ tencentcloud/msp/v20180319/msp_client.py,sha256=ciNfy4xBXjMLxouGxPRu_EnyugEMzKWj
413
413
  tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
414
414
  tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
415
  tencentcloud/ocr/v20181119/errorcodes.py,sha256=hwNIDFXG88AaadfzCfTamVSiVVIYoPf9OftekhNw2vI,4200
416
- tencentcloud/ocr/v20181119/models.py,sha256=mRwVOtgoBbrpvZSuGDtMfv1KJqRgish4bghazP2kBjU,565639
417
- tencentcloud/ocr/v20181119/ocr_client.py,sha256=AXeXhCC10uxqqNhfPsBze43mxmYOr1RLXzG9T5bPVIw,48420
416
+ tencentcloud/ocr/v20181119/models.py,sha256=EgLgnHtmvsntOs76bd5zc5AbME8asMDJdDpbhqddloA,577841
417
+ tencentcloud/ocr/v20181119/ocr_client.py,sha256=j6OfvqOClJWG7kMdwGqLsPN1BavvIf3y2GmPBd0kp_s,49384
418
418
  tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
419
419
  tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
420
  tencentcloud/omics/v20221128/errorcodes.py,sha256=VEkh5arAi4YIbf5y4krDS23zC6KcL6WnOxhpPLsiCGc,4862
@@ -564,7 +564,7 @@ tencentcloud/teo/v20220106/models.py,sha256=O7LYEZTTKjloNI2BuDHcaBdEpxjHezVYck_x
564
564
  tencentcloud/teo/v20220106/teo_client.py,sha256=WqbKWMCSVc-Ey-oHXwtzs9bVefmD0B_Up0e1B5vC8OM,82907
565
565
  tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
566
566
  tencentcloud/teo/v20220901/errorcodes.py,sha256=1TLhna8MLSCt74G25lFKLjLNMgBQivezJy9DlXokTXE,60712
567
- tencentcloud/teo/v20220901/models.py,sha256=vLTgglW7X31Lg099isJ3hMxA-hgUYTVw0Q2gila0ZJY,1615456
567
+ tencentcloud/teo/v20220901/models.py,sha256=qTSf8TIIXbj1riwY0msoDVHQLVfsYd6YBKE3zMqaJFU,1617382
568
568
  tencentcloud/teo/v20220901/teo_client.py,sha256=zARs4NDLF3YBhZEcFtKD4PAKyGmw6Mp9Ue3UAmyuxwI,150139
569
569
  tencentcloud/tiw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
570
570
  tencentcloud/tiw/v20190919/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -644,7 +644,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
644
644
  tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
645
645
  tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
646
646
  tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
647
- tencentcloud_sdk_python_intl_en-3.0.1179.dist-info/METADATA,sha256=P8pakdN5pJ9vWYaRzcK0mHNhk2M71pQEYj5ctYS44H4,1628
648
- tencentcloud_sdk_python_intl_en-3.0.1179.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
649
- tencentcloud_sdk_python_intl_en-3.0.1179.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
650
- tencentcloud_sdk_python_intl_en-3.0.1179.dist-info/RECORD,,
647
+ tencentcloud_sdk_python_intl_en-3.0.1180.dist-info/METADATA,sha256=4R5ACdUqJnFf87lrnwWZ9NTDx0kIlaqjM9CtRrR-ISo,1628
648
+ tencentcloud_sdk_python_intl_en-3.0.1180.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
649
+ tencentcloud_sdk_python_intl_en-3.0.1180.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
650
+ tencentcloud_sdk_python_intl_en-3.0.1180.dist-info/RECORD,,