tencentcloud-sdk-nodejs-intl-en 3.0.1155 → 3.0.1156
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.
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1156";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -6206,6 +6206,62 @@ class RecognizeBrazilIDCardOCRResponse extends AbstractModel {
|
|
|
6206
6206
|
}
|
|
6207
6207
|
}
|
|
6208
6208
|
|
|
6209
|
+
/**
|
|
6210
|
+
* RecognizeBrazilRNEOCR request structure.
|
|
6211
|
+
* @class
|
|
6212
|
+
*/
|
|
6213
|
+
class RecognizeBrazilRNEOCRRequest extends AbstractModel {
|
|
6214
|
+
constructor(){
|
|
6215
|
+
super();
|
|
6216
|
+
|
|
6217
|
+
/**
|
|
6218
|
+
* 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.
|
|
6219
|
+
* @type {string || null}
|
|
6220
|
+
*/
|
|
6221
|
+
this.ImageBase64 = null;
|
|
6222
|
+
|
|
6223
|
+
/**
|
|
6224
|
+
* 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.
|
|
6225
|
+
* @type {string || null}
|
|
6226
|
+
*/
|
|
6227
|
+
this.ImageUrl = null;
|
|
6228
|
+
|
|
6229
|
+
/**
|
|
6230
|
+
* 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.
|
|
6231
|
+
* @type {string || null}
|
|
6232
|
+
*/
|
|
6233
|
+
this.BackImageBase64 = null;
|
|
6234
|
+
|
|
6235
|
+
/**
|
|
6236
|
+
* 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.
|
|
6237
|
+
* @type {string || null}
|
|
6238
|
+
*/
|
|
6239
|
+
this.BackImageUrl = null;
|
|
6240
|
+
|
|
6241
|
+
/**
|
|
6242
|
+
* Whether to return portrait photos.
|
|
6243
|
+
* @type {boolean || null}
|
|
6244
|
+
*/
|
|
6245
|
+
this.ReturnHeadImage = null;
|
|
6246
|
+
|
|
6247
|
+
}
|
|
6248
|
+
|
|
6249
|
+
/**
|
|
6250
|
+
* @private
|
|
6251
|
+
*/
|
|
6252
|
+
deserialize(params) {
|
|
6253
|
+
if (!params) {
|
|
6254
|
+
return;
|
|
6255
|
+
}
|
|
6256
|
+
this.ImageBase64 = 'ImageBase64' in params ? params.ImageBase64 : null;
|
|
6257
|
+
this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
|
|
6258
|
+
this.BackImageBase64 = 'BackImageBase64' in params ? params.BackImageBase64 : null;
|
|
6259
|
+
this.BackImageUrl = 'BackImageUrl' in params ? params.BackImageUrl : null;
|
|
6260
|
+
this.ReturnHeadImage = 'ReturnHeadImage' in params ? params.ReturnHeadImage : null;
|
|
6261
|
+
|
|
6262
|
+
}
|
|
6263
|
+
}
|
|
6264
|
+
|
|
6209
6265
|
/**
|
|
6210
6266
|
* Return values for an electronic invoice
|
|
6211
6267
|
* @class
|
|
@@ -7535,6 +7591,139 @@ class SealOCRResponse extends AbstractModel {
|
|
|
7535
7591
|
}
|
|
7536
7592
|
}
|
|
7537
7593
|
|
|
7594
|
+
/**
|
|
7595
|
+
* RecognizeBrazilRNEOCR response structure.
|
|
7596
|
+
* @class
|
|
7597
|
+
*/
|
|
7598
|
+
class RecognizeBrazilRNEOCRResponse extends AbstractModel {
|
|
7599
|
+
constructor(){
|
|
7600
|
+
super();
|
|
7601
|
+
|
|
7602
|
+
/**
|
|
7603
|
+
* RNE
|
|
7604
|
+
* @type {string || null}
|
|
7605
|
+
*/
|
|
7606
|
+
this.RNE = null;
|
|
7607
|
+
|
|
7608
|
+
/**
|
|
7609
|
+
* Classification
|
|
7610
|
+
* @type {string || null}
|
|
7611
|
+
*/
|
|
7612
|
+
this.CLASSIFICATION = null;
|
|
7613
|
+
|
|
7614
|
+
/**
|
|
7615
|
+
* Valid date
|
|
7616
|
+
* @type {string || null}
|
|
7617
|
+
*/
|
|
7618
|
+
this.VALIDADE = null;
|
|
7619
|
+
|
|
7620
|
+
/**
|
|
7621
|
+
* Name
|
|
7622
|
+
* @type {string || null}
|
|
7623
|
+
*/
|
|
7624
|
+
this.NOME = null;
|
|
7625
|
+
|
|
7626
|
+
/**
|
|
7627
|
+
* Family information
|
|
7628
|
+
* @type {string || null}
|
|
7629
|
+
*/
|
|
7630
|
+
this.Membership = null;
|
|
7631
|
+
|
|
7632
|
+
/**
|
|
7633
|
+
* Nationality
|
|
7634
|
+
* @type {string || null}
|
|
7635
|
+
*/
|
|
7636
|
+
this.NACIONALIDADE = null;
|
|
7637
|
+
|
|
7638
|
+
/**
|
|
7639
|
+
* Place of Birth
|
|
7640
|
+
* @type {string || null}
|
|
7641
|
+
*/
|
|
7642
|
+
this.NATURALIDADE = null;
|
|
7643
|
+
|
|
7644
|
+
/**
|
|
7645
|
+
* Issuing agency
|
|
7646
|
+
* @type {string || null}
|
|
7647
|
+
*/
|
|
7648
|
+
this.IssuingAgency = null;
|
|
7649
|
+
|
|
7650
|
+
/**
|
|
7651
|
+
* Birthday
|
|
7652
|
+
* @type {string || null}
|
|
7653
|
+
*/
|
|
7654
|
+
this.DateOfBirth = null;
|
|
7655
|
+
|
|
7656
|
+
/**
|
|
7657
|
+
* Gender
|
|
7658
|
+
* @type {string || null}
|
|
7659
|
+
*/
|
|
7660
|
+
this.Sex = null;
|
|
7661
|
+
|
|
7662
|
+
/**
|
|
7663
|
+
* Date of entry
|
|
7664
|
+
* @type {string || null}
|
|
7665
|
+
*/
|
|
7666
|
+
this.EntryDate = null;
|
|
7667
|
+
|
|
7668
|
+
/**
|
|
7669
|
+
* VIA
|
|
7670
|
+
* @type {string || null}
|
|
7671
|
+
*/
|
|
7672
|
+
this.VIA = null;
|
|
7673
|
+
|
|
7674
|
+
/**
|
|
7675
|
+
* Dispatch date
|
|
7676
|
+
* @type {string || null}
|
|
7677
|
+
*/
|
|
7678
|
+
this.DispatchDate = null;
|
|
7679
|
+
|
|
7680
|
+
/**
|
|
7681
|
+
* MRZ
|
|
7682
|
+
* @type {string || null}
|
|
7683
|
+
*/
|
|
7684
|
+
this.MRZ = null;
|
|
7685
|
+
|
|
7686
|
+
/**
|
|
7687
|
+
* PortraitImage base64
|
|
7688
|
+
* @type {string || null}
|
|
7689
|
+
*/
|
|
7690
|
+
this.PortraitImage = null;
|
|
7691
|
+
|
|
7692
|
+
/**
|
|
7693
|
+
* 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.
|
|
7694
|
+
* @type {string || null}
|
|
7695
|
+
*/
|
|
7696
|
+
this.RequestId = null;
|
|
7697
|
+
|
|
7698
|
+
}
|
|
7699
|
+
|
|
7700
|
+
/**
|
|
7701
|
+
* @private
|
|
7702
|
+
*/
|
|
7703
|
+
deserialize(params) {
|
|
7704
|
+
if (!params) {
|
|
7705
|
+
return;
|
|
7706
|
+
}
|
|
7707
|
+
this.RNE = 'RNE' in params ? params.RNE : null;
|
|
7708
|
+
this.CLASSIFICATION = 'CLASSIFICATION' in params ? params.CLASSIFICATION : null;
|
|
7709
|
+
this.VALIDADE = 'VALIDADE' in params ? params.VALIDADE : null;
|
|
7710
|
+
this.NOME = 'NOME' in params ? params.NOME : null;
|
|
7711
|
+
this.Membership = 'Membership' in params ? params.Membership : null;
|
|
7712
|
+
this.NACIONALIDADE = 'NACIONALIDADE' in params ? params.NACIONALIDADE : null;
|
|
7713
|
+
this.NATURALIDADE = 'NATURALIDADE' in params ? params.NATURALIDADE : null;
|
|
7714
|
+
this.IssuingAgency = 'IssuingAgency' in params ? params.IssuingAgency : null;
|
|
7715
|
+
this.DateOfBirth = 'DateOfBirth' in params ? params.DateOfBirth : null;
|
|
7716
|
+
this.Sex = 'Sex' in params ? params.Sex : null;
|
|
7717
|
+
this.EntryDate = 'EntryDate' in params ? params.EntryDate : null;
|
|
7718
|
+
this.VIA = 'VIA' in params ? params.VIA : null;
|
|
7719
|
+
this.DispatchDate = 'DispatchDate' in params ? params.DispatchDate : null;
|
|
7720
|
+
this.MRZ = 'MRZ' in params ? params.MRZ : null;
|
|
7721
|
+
this.PortraitImage = 'PortraitImage' in params ? params.PortraitImage : null;
|
|
7722
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
7723
|
+
|
|
7724
|
+
}
|
|
7725
|
+
}
|
|
7726
|
+
|
|
7538
7727
|
/**
|
|
7539
7728
|
* RecognizeIndonesiaIDCardOCR response structure.
|
|
7540
7729
|
* @class
|
|
@@ -10488,6 +10677,7 @@ module.exports = {
|
|
|
10488
10677
|
LicensePlateOCRRequest: LicensePlateOCRRequest,
|
|
10489
10678
|
GeneralBasicOCRRequest: GeneralBasicOCRRequest,
|
|
10490
10679
|
RecognizeBrazilIDCardOCRResponse: RecognizeBrazilIDCardOCRResponse,
|
|
10680
|
+
RecognizeBrazilRNEOCRRequest: RecognizeBrazilRNEOCRRequest,
|
|
10491
10681
|
VatElectronicInfo: VatElectronicInfo,
|
|
10492
10682
|
IDCardOCRRequest: IDCardOCRRequest,
|
|
10493
10683
|
GeneralAccurateOCRRequest: GeneralAccurateOCRRequest,
|
|
@@ -10499,6 +10689,7 @@ module.exports = {
|
|
|
10499
10689
|
RecognizeTableAccurateOCRRequest: RecognizeTableAccurateOCRRequest,
|
|
10500
10690
|
Coord: Coord,
|
|
10501
10691
|
SealOCRResponse: SealOCRResponse,
|
|
10692
|
+
RecognizeBrazilRNEOCRResponse: RecognizeBrazilRNEOCRResponse,
|
|
10502
10693
|
RecognizeIndonesiaIDCardOCRResponse: RecognizeIndonesiaIDCardOCRResponse,
|
|
10503
10694
|
TableInfo: TableInfo,
|
|
10504
10695
|
VinOCRResponse: VinOCRResponse,
|
|
@@ -83,6 +83,7 @@ const TaxiTicket = models.TaxiTicket;
|
|
|
83
83
|
const LicensePlateOCRRequest = models.LicensePlateOCRRequest;
|
|
84
84
|
const GeneralBasicOCRRequest = models.GeneralBasicOCRRequest;
|
|
85
85
|
const RecognizeBrazilIDCardOCRResponse = models.RecognizeBrazilIDCardOCRResponse;
|
|
86
|
+
const RecognizeBrazilRNEOCRRequest = models.RecognizeBrazilRNEOCRRequest;
|
|
86
87
|
const VatElectronicInfo = models.VatElectronicInfo;
|
|
87
88
|
const IDCardOCRRequest = models.IDCardOCRRequest;
|
|
88
89
|
const GeneralAccurateOCRRequest = models.GeneralAccurateOCRRequest;
|
|
@@ -94,6 +95,7 @@ const AirTransport = models.AirTransport;
|
|
|
94
95
|
const RecognizeTableAccurateOCRRequest = models.RecognizeTableAccurateOCRRequest;
|
|
95
96
|
const Coord = models.Coord;
|
|
96
97
|
const SealOCRResponse = models.SealOCRResponse;
|
|
98
|
+
const RecognizeBrazilRNEOCRResponse = models.RecognizeBrazilRNEOCRResponse;
|
|
97
99
|
const RecognizeIndonesiaIDCardOCRResponse = models.RecognizeIndonesiaIDCardOCRResponse;
|
|
98
100
|
const TableInfo = models.TableInfo;
|
|
99
101
|
const VinOCRResponse = models.VinOCRResponse;
|
|
@@ -302,6 +304,17 @@ This interface supports regional scope: countries with machine-readable passport
|
|
|
302
304
|
this.request("MLIDPassportOCR", req, resp, cb);
|
|
303
305
|
}
|
|
304
306
|
|
|
307
|
+
/**
|
|
308
|
+
* Brazil RNE document recognition Default interface request frequency limit: 5 times/second
|
|
309
|
+
* @param {RecognizeBrazilRNEOCRRequest} req
|
|
310
|
+
* @param {function(string, RecognizeBrazilRNEOCRResponse):void} cb
|
|
311
|
+
* @public
|
|
312
|
+
*/
|
|
313
|
+
RecognizeBrazilRNEOCR(req, cb) {
|
|
314
|
+
let resp = new RecognizeBrazilRNEOCRResponse();
|
|
315
|
+
this.request("RecognizeBrazilRNEOCR", req, resp, cb);
|
|
316
|
+
}
|
|
317
|
+
|
|
305
318
|
/**
|
|
306
319
|
* This API is used to recognize key fields on the photo side of a Hong Kong (China) identity card, including name in Chinese, name in English, telecode for name, date of birth, gender, document symbol, date of the first issue, date of the last receipt, identity card number, and permanent residency attribute.
|
|
307
320
|
|
|
@@ -2691,29 +2691,30 @@ class DescribeTopL7AnalysisDataRequest extends AbstractModel {
|
|
|
2691
2691
|
|
|
2692
2692
|
/**
|
|
2693
2693
|
* Queried metric. Valid values:
|
|
2694
|
-
<li> l7Flow_outFlux_country: L7 EdgeOne response traffic
|
|
2695
|
-
<li> l7Flow_outFlux_province: L7 EdgeOne response traffic
|
|
2696
|
-
<li> l7Flow_outFlux_statusCode: L7 EdgeOne response traffic
|
|
2697
|
-
<li> l7Flow_outFlux_domain: L7 EdgeOne response traffic
|
|
2698
|
-
<li>
|
|
2699
|
-
<li> l7Flow_outFlux_resourceType: L7 EdgeOne response traffic
|
|
2700
|
-
<li> l7Flow_outFlux_sip: L7 EdgeOne response traffic
|
|
2701
|
-
<li>
|
|
2702
|
-
<li> l7Flow_outFlux_ua_device: L7 EdgeOne response traffic
|
|
2703
|
-
<li> l7Flow_outFlux_ua_browser: L7 EdgeOne response traffic
|
|
2704
|
-
<li> l7Flow_outFlux_ua_os: L7 EdgeOne response traffic
|
|
2705
|
-
<li>
|
|
2706
|
-
<li>
|
|
2707
|
-
<li>
|
|
2708
|
-
<li>
|
|
2709
|
-
<li>
|
|
2710
|
-
<li>
|
|
2711
|
-
<li>
|
|
2712
|
-
<li>
|
|
2713
|
-
<li>
|
|
2714
|
-
<li>
|
|
2715
|
-
<li>
|
|
2716
|
-
|
|
2694
|
+
<li> l7Flow_outFlux_country: L7 EdgeOne response traffic aggregated by the country/region dimension;</li>
|
|
2695
|
+
<li> l7Flow_outFlux_province: L7 EdgeOne response traffic aggregated by the dimension of provinces in chinese mainland;</li>
|
|
2696
|
+
<li> l7Flow_outFlux_statusCode: L7 EdgeOne response traffic aggregated by the status code dimension;</li>
|
|
2697
|
+
<li> l7Flow_outFlux_domain: L7 EdgeOne response traffic aggregated by the domain name dimension;</li>
|
|
2698
|
+
<li>l7Flow_outFlux_url: L7 EdgeOne response traffic aggregated by url path dimension.</li>
|
|
2699
|
+
<li> l7Flow_outFlux_resourceType: L7 EdgeOne response traffic aggregated by the resource type dimension;</li>
|
|
2700
|
+
<li> l7Flow_outFlux_sip: L7 EdgeOne response traffic aggregated by the client IP dimension;</li>
|
|
2701
|
+
<li>l7Flow_outFlux_referers: L7 EdgeOne response traffic aggregated by referer dimension.</li>
|
|
2702
|
+
<li> l7Flow_outFlux_ua_device: L7 EdgeOne response traffic aggregated by the device type dimension;</li>
|
|
2703
|
+
<li> l7Flow_outFlux_ua_browser: L7 EdgeOne response traffic aggregated by the browser type dimension;</li>
|
|
2704
|
+
<li> l7Flow_outFlux_ua_os: L7 EdgeOne response traffic aggregated by the operating system type dimension;</li>
|
|
2705
|
+
<li> l7Flow_outFlux_ua: L7 EdgeOne response traffic aggregated by the User-Agent dimension;</li>
|
|
2706
|
+
<li> l7Flow_request_country: L7 request count aggregated by the country/region dimension;</li>
|
|
2707
|
+
<li> l7Flow_request_province: L7 request count aggregated by the dimension of provinces in the chinese mainland;</li>
|
|
2708
|
+
<li> l7Flow_request_statusCode: L7 request count aggregated by the status code dimension;</li>
|
|
2709
|
+
<li> l7Flow_request_domain: L7 request count aggregated by the domain name dimension;</li>
|
|
2710
|
+
<li>l7Flow_request_url: L7 request count aggregated by url Path dimension.</li>
|
|
2711
|
+
<li> l7Flow_request_resourceType: L7 request count aggregated by resource type dimension;</li>
|
|
2712
|
+
<li> l7Flow_request_sip: L7 request count aggregated by the client IP dimension;</li>
|
|
2713
|
+
<li>l7Flow_request_referer: L7 request count aggregated by referer dimension.</li>
|
|
2714
|
+
<li> l7Flow_request_ua_device: L7 request count aggregated by the device type dimension;</li>
|
|
2715
|
+
<li> l7Flow_request_ua_browser: L7 request count aggregated by the browser type dimension;</li>
|
|
2716
|
+
<li> l7Flow_request_ua_os: L7 request count aggregated by the operating system type dimension.</li>
|
|
2717
|
+
<li> l7Flow_request_ua: L7 request count aggregated by the User-Agent dimension.</li>
|
|
2717
2718
|
* @type {string || null}
|
|
2718
2719
|
*/
|
|
2719
2720
|
this.MetricName = null;
|
|
@@ -2731,24 +2732,26 @@ class DescribeTopL7AnalysisDataRequest extends AbstractModel {
|
|
|
2731
2732
|
this.Limit = null;
|
|
2732
2733
|
|
|
2733
2734
|
/**
|
|
2734
|
-
* Filter criteria. The detailed
|
|
2735
|
-
<li>country:
|
|
2736
|
-
<li>province:
|
|
2737
|
-
<li>isp:
|
|
2738
|
-
<
|
|
2739
|
-
<li>url:
|
|
2740
|
-
<
|
|
2741
|
-
<li>resourceType:
|
|
2742
|
-
<li>protocol:
|
|
2743
|
-
<li>socket:
|
|
2744
|
-
<li>statusCode:
|
|
2745
|
-
<li>browserType:
|
|
2746
|
-
<li>deviceType:
|
|
2747
|
-
<li>operatingSystemType:
|
|
2748
|
-
<li>tlsVersion:
|
|
2749
|
-
<li>ipVersion:
|
|
2750
|
-
<li>cacheType:
|
|
2751
|
-
<li>clientIp:
|
|
2735
|
+
* Filter criteria. The detailed key values of filter criteria are as follows:
|
|
2736
|
+
<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>
|
|
2737
|
+
<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>
|
|
2738
|
+
<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>
|
|
2739
|
+
<Li>domain: filter by subdomain. Example value: www.example.com.</li>
|
|
2740
|
+
<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>
|
|
2741
|
+
<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>
|
|
2742
|
+
<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>
|
|
2743
|
+
<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>
|
|
2744
|
+
<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>
|
|
2745
|
+
<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>
|
|
2746
|
+
<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>
|
|
2747
|
+
<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>
|
|
2748
|
+
<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>
|
|
2749
|
+
<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>
|
|
2750
|
+
<li>ipVersion: filter by IP version. The options for the corresponding value are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
|
|
2751
|
+
<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>
|
|
2752
|
+
<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>
|
|
2753
|
+
<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>
|
|
2754
|
+
|
|
2752
2755
|
* @type {Array.<QueryCondition> || null}
|
|
2753
2756
|
*/
|
|
2754
2757
|
this.Filters = null;
|
|
@@ -2764,10 +2767,7 @@ class DescribeTopL7AnalysisDataRequest extends AbstractModel {
|
|
|
2764
2767
|
this.Interval = null;
|
|
2765
2768
|
|
|
2766
2769
|
/**
|
|
2767
|
-
* Data region.
|
|
2768
|
-
<li>overseas: Regions outside the Chinese mainland</li>
|
|
2769
|
-
<li>mainland: Chinese mainland</li>
|
|
2770
|
-
<li>global: Global</li>If this field is not specified, the default value `global` is used.
|
|
2770
|
+
* Data ownership region. this parameter is deprecated. Please filter data by client region in Filters.country.
|
|
2771
2771
|
* @type {string || null}
|
|
2772
2772
|
*/
|
|
2773
2773
|
this.Area = null;
|
|
@@ -18639,16 +18639,16 @@ class DescribeTimingL7AnalysisDataRequest extends AbstractModel {
|
|
|
18639
18639
|
this.EndTime = null;
|
|
18640
18640
|
|
|
18641
18641
|
/**
|
|
18642
|
-
* Metric list.
|
|
18643
|
-
<Li>
|
|
18644
|
-
<Li>
|
|
18645
|
-
<Li>
|
|
18646
|
-
<Li>
|
|
18647
|
-
<Li>
|
|
18648
|
-
<Li>
|
|
18649
|
-
<Li>
|
|
18650
|
-
<Li>
|
|
18651
|
-
<Li>
|
|
18642
|
+
* Metric list. Valid values:.
|
|
18643
|
+
<Li>l7Flow_outFlux: L7 EdgeOne response traffic. Unit: byte;</li>
|
|
18644
|
+
<Li>l7Flow_inFlux: L7 client request traffic. Unit: byte;</li>
|
|
18645
|
+
<Li>l7Flow_flux: L7 total traffic (including EdgeOne response traffic and client request traffic). Unit: byte;</li>
|
|
18646
|
+
<Li>l7Flow_outBandwidth: L7 EdgeOne response bandwidth. Unit: bps;</li>
|
|
18647
|
+
<Li>l7Flow_inBandwidth: L7 client request bandwidth. Unit: bps;</li>
|
|
18648
|
+
<Li>l7Flow_bandwidth: L7 total bandwidth (including EdgeOne response bandwidth and client request bandwidth). Unit: bps;</li>
|
|
18649
|
+
<Li>l7Flow_request: L7 request count. Unit: times;</li>
|
|
18650
|
+
<Li>l7Flow_avgResponseTime: Average L7 edge response time. Unit: ms (milliseconds);</li>
|
|
18651
|
+
<Li>l7Flow_avgFirstByteResponseTime: Average L7 edge first byte response time. Unit: ms.</li>
|
|
18652
18652
|
* @type {Array.<string> || null}
|
|
18653
18653
|
*/
|
|
18654
18654
|
this.MetricNames = null;
|
|
@@ -18670,33 +18670,32 @@ class DescribeTimingL7AnalysisDataRequest extends AbstractModel {
|
|
|
18670
18670
|
this.Interval = null;
|
|
18671
18671
|
|
|
18672
18672
|
/**
|
|
18673
|
-
* Filter criteria. The detailed key values are as follows:
|
|
18674
|
-
<li>country:
|
|
18675
|
-
<li>province:
|
|
18676
|
-
<li>isp:
|
|
18677
|
-
<
|
|
18678
|
-
<li>url:
|
|
18679
|
-
<
|
|
18680
|
-
<li>resourceType:
|
|
18681
|
-
<li>protocol:
|
|
18682
|
-
<li>
|
|
18683
|
-
<li>
|
|
18684
|
-
<li>
|
|
18685
|
-
<li>
|
|
18686
|
-
<li>
|
|
18687
|
-
<li>
|
|
18688
|
-
<li>
|
|
18689
|
-
<li>
|
|
18673
|
+
* Filter criteria. The detailed key values of filter criteria are as follows:
|
|
18674
|
+
<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>
|
|
18675
|
+
<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>
|
|
18676
|
+
<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>
|
|
18677
|
+
<Li>domain: filter by subdomain. Example value: www.example.com.</li>
|
|
18678
|
+
<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>
|
|
18679
|
+
<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>
|
|
18680
|
+
<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>
|
|
18681
|
+
<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>
|
|
18682
|
+
<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>
|
|
18683
|
+
<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>
|
|
18684
|
+
<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>
|
|
18685
|
+
<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>
|
|
18686
|
+
<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>
|
|
18687
|
+
<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>
|
|
18688
|
+
<li>ipVersion: filter by IP version. The options for the corresponding value are as follows:<br> 4: IPv4;<br> 6: IPv6.</li>
|
|
18689
|
+
<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>
|
|
18690
|
+
<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>
|
|
18691
|
+
<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>
|
|
18692
|
+
|
|
18690
18693
|
* @type {Array.<QueryCondition> || null}
|
|
18691
18694
|
*/
|
|
18692
18695
|
this.Filters = null;
|
|
18693
18696
|
|
|
18694
18697
|
/**
|
|
18695
|
-
* Data region.
|
|
18696
|
-
<li>overseas: global (excluding the Chinese mainland) data;</li>
|
|
18697
|
-
<li>mainland: Chinese mainland data;</li>
|
|
18698
|
-
<li>global: global data.</li>
|
|
18699
|
-
If this parameter is not filled in, the default value is global.
|
|
18698
|
+
* Data ownership region. This parameter is deprecated. Please filter data by client region in Filters.country.
|
|
18700
18699
|
* @type {string || null}
|
|
18701
18700
|
*/
|
|
18702
18701
|
this.Area = null;
|