@alicloud/dytnsapi20200217 2.2.0 → 2.3.0
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/dist/client.d.ts +559 -6
- package/dist/client.js +746 -3
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +846 -6
package/dist/client.d.ts
CHANGED
|
@@ -493,6 +493,60 @@ export declare class DescribePhoneTwiceTelVerifyResponse extends $tea.Model {
|
|
|
493
493
|
[key: string]: any;
|
|
494
494
|
});
|
|
495
495
|
}
|
|
496
|
+
export declare class GetUAIDApplyTokenSignRequest extends $tea.Model {
|
|
497
|
+
authCode?: string;
|
|
498
|
+
carrier?: string;
|
|
499
|
+
clientType?: string;
|
|
500
|
+
format?: string;
|
|
501
|
+
outId?: string;
|
|
502
|
+
ownerId?: number;
|
|
503
|
+
paramKey?: string;
|
|
504
|
+
paramStr?: string;
|
|
505
|
+
resourceOwnerAccount?: string;
|
|
506
|
+
resourceOwnerId?: number;
|
|
507
|
+
time?: string;
|
|
508
|
+
static names(): {
|
|
509
|
+
[key: string]: string;
|
|
510
|
+
};
|
|
511
|
+
static types(): {
|
|
512
|
+
[key: string]: any;
|
|
513
|
+
};
|
|
514
|
+
constructor(map?: {
|
|
515
|
+
[key: string]: any;
|
|
516
|
+
});
|
|
517
|
+
}
|
|
518
|
+
export declare class GetUAIDApplyTokenSignResponseBody extends $tea.Model {
|
|
519
|
+
accessDeniedDetail?: string;
|
|
520
|
+
code?: string;
|
|
521
|
+
data?: GetUAIDApplyTokenSignResponseBodyData;
|
|
522
|
+
message?: string;
|
|
523
|
+
requestId?: string;
|
|
524
|
+
static names(): {
|
|
525
|
+
[key: string]: string;
|
|
526
|
+
};
|
|
527
|
+
static types(): {
|
|
528
|
+
[key: string]: any;
|
|
529
|
+
};
|
|
530
|
+
constructor(map?: {
|
|
531
|
+
[key: string]: any;
|
|
532
|
+
});
|
|
533
|
+
}
|
|
534
|
+
export declare class GetUAIDApplyTokenSignResponse extends $tea.Model {
|
|
535
|
+
headers: {
|
|
536
|
+
[key: string]: string;
|
|
537
|
+
};
|
|
538
|
+
statusCode: number;
|
|
539
|
+
body: GetUAIDApplyTokenSignResponseBody;
|
|
540
|
+
static names(): {
|
|
541
|
+
[key: string]: string;
|
|
542
|
+
};
|
|
543
|
+
static types(): {
|
|
544
|
+
[key: string]: any;
|
|
545
|
+
};
|
|
546
|
+
constructor(map?: {
|
|
547
|
+
[key: string]: any;
|
|
548
|
+
});
|
|
549
|
+
}
|
|
496
550
|
export declare class InvalidPhoneNumberFilterRequest extends $tea.Model {
|
|
497
551
|
authCode?: string;
|
|
498
552
|
inputNumber?: string;
|
|
@@ -1266,10 +1320,74 @@ export declare class TwoElementsVerificationResponse extends $tea.Model {
|
|
|
1266
1320
|
[key: string]: any;
|
|
1267
1321
|
});
|
|
1268
1322
|
}
|
|
1269
|
-
export declare class
|
|
1270
|
-
|
|
1323
|
+
export declare class UAIDVerificationRequest extends $tea.Model {
|
|
1324
|
+
authCode?: string;
|
|
1325
|
+
carrier?: string;
|
|
1326
|
+
ip?: string;
|
|
1327
|
+
outId?: string;
|
|
1328
|
+
ownerId?: number;
|
|
1329
|
+
resourceOwnerAccount?: string;
|
|
1330
|
+
resourceOwnerId?: number;
|
|
1331
|
+
token?: string;
|
|
1332
|
+
userGrantId?: string;
|
|
1333
|
+
static names(): {
|
|
1334
|
+
[key: string]: string;
|
|
1335
|
+
};
|
|
1336
|
+
static types(): {
|
|
1271
1337
|
[key: string]: any;
|
|
1272
1338
|
};
|
|
1339
|
+
constructor(map?: {
|
|
1340
|
+
[key: string]: any;
|
|
1341
|
+
});
|
|
1342
|
+
}
|
|
1343
|
+
export declare class UAIDVerificationResponseBody extends $tea.Model {
|
|
1344
|
+
accessDeniedDetail?: string;
|
|
1345
|
+
code?: string;
|
|
1346
|
+
data?: UAIDVerificationResponseBodyData;
|
|
1347
|
+
message?: string;
|
|
1348
|
+
requestId?: string;
|
|
1349
|
+
static names(): {
|
|
1350
|
+
[key: string]: string;
|
|
1351
|
+
};
|
|
1352
|
+
static types(): {
|
|
1353
|
+
[key: string]: any;
|
|
1354
|
+
};
|
|
1355
|
+
constructor(map?: {
|
|
1356
|
+
[key: string]: any;
|
|
1357
|
+
});
|
|
1358
|
+
}
|
|
1359
|
+
export declare class UAIDVerificationResponse extends $tea.Model {
|
|
1360
|
+
headers: {
|
|
1361
|
+
[key: string]: string;
|
|
1362
|
+
};
|
|
1363
|
+
statusCode: number;
|
|
1364
|
+
body: UAIDVerificationResponseBody;
|
|
1365
|
+
static names(): {
|
|
1366
|
+
[key: string]: string;
|
|
1367
|
+
};
|
|
1368
|
+
static types(): {
|
|
1369
|
+
[key: string]: any;
|
|
1370
|
+
};
|
|
1371
|
+
constructor(map?: {
|
|
1372
|
+
[key: string]: any;
|
|
1373
|
+
});
|
|
1374
|
+
}
|
|
1375
|
+
export declare class CompanyFourElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
|
|
1376
|
+
enterpriseStatus?: string;
|
|
1377
|
+
openTime?: string;
|
|
1378
|
+
static names(): {
|
|
1379
|
+
[key: string]: string;
|
|
1380
|
+
};
|
|
1381
|
+
static types(): {
|
|
1382
|
+
[key: string]: any;
|
|
1383
|
+
};
|
|
1384
|
+
constructor(map?: {
|
|
1385
|
+
[key: string]: any;
|
|
1386
|
+
});
|
|
1387
|
+
}
|
|
1388
|
+
export declare class CompanyFourElementsVerificationResponseBodyData extends $tea.Model {
|
|
1389
|
+
detailInfo?: CompanyFourElementsVerificationResponseBodyDataDetailInfo;
|
|
1390
|
+
inconsistentData?: string[];
|
|
1273
1391
|
reasonCode?: number;
|
|
1274
1392
|
verifyResult?: string;
|
|
1275
1393
|
static names(): {
|
|
@@ -1282,10 +1400,22 @@ export declare class CompanyFourElementsVerificationResponseBodyData extends $te
|
|
|
1282
1400
|
[key: string]: any;
|
|
1283
1401
|
});
|
|
1284
1402
|
}
|
|
1285
|
-
export declare class
|
|
1286
|
-
|
|
1403
|
+
export declare class CompanyThreeElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
|
|
1404
|
+
enterpriseStatus?: string;
|
|
1405
|
+
openTime?: string;
|
|
1406
|
+
static names(): {
|
|
1407
|
+
[key: string]: string;
|
|
1408
|
+
};
|
|
1409
|
+
static types(): {
|
|
1287
1410
|
[key: string]: any;
|
|
1288
1411
|
};
|
|
1412
|
+
constructor(map?: {
|
|
1413
|
+
[key: string]: any;
|
|
1414
|
+
});
|
|
1415
|
+
}
|
|
1416
|
+
export declare class CompanyThreeElementsVerificationResponseBodyData extends $tea.Model {
|
|
1417
|
+
detailInfo?: CompanyThreeElementsVerificationResponseBodyDataDetailInfo;
|
|
1418
|
+
inconsistentData?: string[];
|
|
1289
1419
|
reasonCode?: number;
|
|
1290
1420
|
verifyResult?: string;
|
|
1291
1421
|
static names(): {
|
|
@@ -1298,10 +1428,22 @@ export declare class CompanyThreeElementsVerificationResponseBodyData extends $t
|
|
|
1298
1428
|
[key: string]: any;
|
|
1299
1429
|
});
|
|
1300
1430
|
}
|
|
1301
|
-
export declare class
|
|
1302
|
-
|
|
1431
|
+
export declare class CompanyTwoElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
|
|
1432
|
+
enterpriseStatus?: string;
|
|
1433
|
+
openTime?: string;
|
|
1434
|
+
static names(): {
|
|
1435
|
+
[key: string]: string;
|
|
1436
|
+
};
|
|
1437
|
+
static types(): {
|
|
1303
1438
|
[key: string]: any;
|
|
1304
1439
|
};
|
|
1440
|
+
constructor(map?: {
|
|
1441
|
+
[key: string]: any;
|
|
1442
|
+
});
|
|
1443
|
+
}
|
|
1444
|
+
export declare class CompanyTwoElementsVerificationResponseBodyData extends $tea.Model {
|
|
1445
|
+
detailInfo?: CompanyTwoElementsVerificationResponseBodyDataDetailInfo;
|
|
1446
|
+
inconsistentData?: string[];
|
|
1305
1447
|
reasonCode?: string;
|
|
1306
1448
|
verifyResult?: string;
|
|
1307
1449
|
static names(): {
|
|
@@ -1425,6 +1567,20 @@ export declare class DescribePhoneTwiceTelVerifyResponseBodyData extends $tea.Mo
|
|
|
1425
1567
|
[key: string]: any;
|
|
1426
1568
|
});
|
|
1427
1569
|
}
|
|
1570
|
+
export declare class GetUAIDApplyTokenSignResponseBodyData extends $tea.Model {
|
|
1571
|
+
carrier?: string;
|
|
1572
|
+
outId?: string;
|
|
1573
|
+
sign?: string;
|
|
1574
|
+
static names(): {
|
|
1575
|
+
[key: string]: string;
|
|
1576
|
+
};
|
|
1577
|
+
static types(): {
|
|
1578
|
+
[key: string]: any;
|
|
1579
|
+
};
|
|
1580
|
+
constructor(map?: {
|
|
1581
|
+
[key: string]: any;
|
|
1582
|
+
});
|
|
1583
|
+
}
|
|
1428
1584
|
export declare class InvalidPhoneNumberFilterResponseBodyData extends $tea.Model {
|
|
1429
1585
|
code?: string;
|
|
1430
1586
|
encryptedNumber?: string;
|
|
@@ -1595,6 +1751,7 @@ export declare class QueryTagInfoBySelectionResponseBodyDataParamList extends $t
|
|
|
1595
1751
|
}
|
|
1596
1752
|
export declare class QueryTagInfoBySelectionResponseBodyData extends $tea.Model {
|
|
1597
1753
|
authCodeList?: string[];
|
|
1754
|
+
complexityType?: string;
|
|
1598
1755
|
demoAddress?: string;
|
|
1599
1756
|
docAddress?: string;
|
|
1600
1757
|
enumDefinitionAddress?: string;
|
|
@@ -1602,6 +1759,7 @@ export declare class QueryTagInfoBySelectionResponseBodyData extends $tea.Model
|
|
|
1602
1759
|
industryId?: number;
|
|
1603
1760
|
industryName?: string;
|
|
1604
1761
|
paramList?: QueryTagInfoBySelectionResponseBodyDataParamList[];
|
|
1762
|
+
richTextDescription?: string;
|
|
1605
1763
|
sceneId?: number;
|
|
1606
1764
|
sceneName?: string;
|
|
1607
1765
|
tagId?: number;
|
|
@@ -1703,48 +1861,399 @@ export declare class TwoElementsVerificationResponseBodyData extends $tea.Model
|
|
|
1703
1861
|
[key: string]: any;
|
|
1704
1862
|
});
|
|
1705
1863
|
}
|
|
1864
|
+
export declare class UAIDVerificationResponseBodyData extends $tea.Model {
|
|
1865
|
+
uaid?: string;
|
|
1866
|
+
static names(): {
|
|
1867
|
+
[key: string]: string;
|
|
1868
|
+
};
|
|
1869
|
+
static types(): {
|
|
1870
|
+
[key: string]: any;
|
|
1871
|
+
};
|
|
1872
|
+
constructor(map?: {
|
|
1873
|
+
[key: string]: any;
|
|
1874
|
+
});
|
|
1875
|
+
}
|
|
1706
1876
|
export default class Client extends OpenApi {
|
|
1707
1877
|
constructor(config: $OpenApi.Config);
|
|
1708
1878
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
1709
1879
|
[key: string]: string;
|
|
1710
1880
|
}, endpoint: string): string;
|
|
1881
|
+
/**
|
|
1882
|
+
* * Before you call this operation, make sure that you are familiar with the billing of services related to four-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
1883
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
|
|
1884
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
1885
|
+
*
|
|
1886
|
+
* @param request CompanyFourElementsVerificationRequest
|
|
1887
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1888
|
+
* @return CompanyFourElementsVerificationResponse
|
|
1889
|
+
*/
|
|
1711
1890
|
companyFourElementsVerificationWithOptions(request: CompanyFourElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyFourElementsVerificationResponse>;
|
|
1891
|
+
/**
|
|
1892
|
+
* * Before you call this operation, make sure that you are familiar with the billing of services related to four-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
1893
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
|
|
1894
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
1895
|
+
*
|
|
1896
|
+
* @param request CompanyFourElementsVerificationRequest
|
|
1897
|
+
* @return CompanyFourElementsVerificationResponse
|
|
1898
|
+
*/
|
|
1712
1899
|
companyFourElementsVerification(request: CompanyFourElementsVerificationRequest): Promise<CompanyFourElementsVerificationResponse>;
|
|
1900
|
+
/**
|
|
1901
|
+
* * Before you call this operation, make sure that you are familiar with the billing of services related to three-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
1902
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
|
|
1903
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
1904
|
+
*
|
|
1905
|
+
* @param request CompanyThreeElementsVerificationRequest
|
|
1906
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1907
|
+
* @return CompanyThreeElementsVerificationResponse
|
|
1908
|
+
*/
|
|
1713
1909
|
companyThreeElementsVerificationWithOptions(request: CompanyThreeElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyThreeElementsVerificationResponse>;
|
|
1910
|
+
/**
|
|
1911
|
+
* * Before you call this operation, make sure that you are familiar with the billing of services related to three-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
1912
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
|
|
1913
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
1914
|
+
*
|
|
1915
|
+
* @param request CompanyThreeElementsVerificationRequest
|
|
1916
|
+
* @return CompanyThreeElementsVerificationResponse
|
|
1917
|
+
*/
|
|
1714
1918
|
companyThreeElementsVerification(request: CompanyThreeElementsVerificationRequest): Promise<CompanyThreeElementsVerificationResponse>;
|
|
1919
|
+
/**
|
|
1920
|
+
* * Before you call this operation, make sure that you are familiar with the billing of services related to two-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
1921
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0 or 1.
|
|
1922
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
1923
|
+
*
|
|
1924
|
+
* @param request CompanyTwoElementsVerificationRequest
|
|
1925
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1926
|
+
* @return CompanyTwoElementsVerificationResponse
|
|
1927
|
+
*/
|
|
1715
1928
|
companyTwoElementsVerificationWithOptions(request: CompanyTwoElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyTwoElementsVerificationResponse>;
|
|
1929
|
+
/**
|
|
1930
|
+
* * Before you call this operation, make sure that you are familiar with the billing of services related to two-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
1931
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0 or 1.
|
|
1932
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
1933
|
+
*
|
|
1934
|
+
* @param request CompanyTwoElementsVerificationRequest
|
|
1935
|
+
* @return CompanyTwoElementsVerificationResponse
|
|
1936
|
+
*/
|
|
1716
1937
|
companyTwoElementsVerification(request: CompanyTwoElementsVerificationRequest): Promise<CompanyTwoElementsVerificationResponse>;
|
|
1938
|
+
/**
|
|
1939
|
+
* * You can call this operation to verify whether a phone number is a nonexistent number. When you call this operation to verify a number, the system charges you CNY 0.01 per verification based on the number of verifications. **Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.**
|
|
1940
|
+
* * You are charged only if the value of Code is OK and the value of Status is not UNKNOWN.
|
|
1941
|
+
* * The prediction is not strictly accurate because Cell Phone Number Service predicts the nonexistent number probability by using AI algorithms. The accuracy rate of the prediction and the recall rate of empty numbers are about 95%. **Pay attention to this point when you call this operation**.
|
|
1942
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
1943
|
+
* ### [](#qps)QPS limits
|
|
1944
|
+
* You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
1945
|
+
* ### [](#)Authorization information
|
|
1946
|
+
* By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
1947
|
+
*
|
|
1948
|
+
* @param request DescribeEmptyNumberRequest
|
|
1949
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1950
|
+
* @return DescribeEmptyNumberResponse
|
|
1951
|
+
*/
|
|
1717
1952
|
describeEmptyNumberWithOptions(request: DescribeEmptyNumberRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEmptyNumberResponse>;
|
|
1953
|
+
/**
|
|
1954
|
+
* * You can call this operation to verify whether a phone number is a nonexistent number. When you call this operation to verify a number, the system charges you CNY 0.01 per verification based on the number of verifications. **Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.**
|
|
1955
|
+
* * You are charged only if the value of Code is OK and the value of Status is not UNKNOWN.
|
|
1956
|
+
* * The prediction is not strictly accurate because Cell Phone Number Service predicts the nonexistent number probability by using AI algorithms. The accuracy rate of the prediction and the recall rate of empty numbers are about 95%. **Pay attention to this point when you call this operation**.
|
|
1957
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
1958
|
+
* ### [](#qps)QPS limits
|
|
1959
|
+
* You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
1960
|
+
* ### [](#)Authorization information
|
|
1961
|
+
* By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
1962
|
+
*
|
|
1963
|
+
* @param request DescribeEmptyNumberRequest
|
|
1964
|
+
* @return DescribeEmptyNumberResponse
|
|
1965
|
+
*/
|
|
1718
1966
|
describeEmptyNumber(request: DescribeEmptyNumberRequest): Promise<DescribeEmptyNumberResponse>;
|
|
1719
1967
|
describePhoneNumberAnalysisWithOptions(request: DescribePhoneNumberAnalysisRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisResponse>;
|
|
1720
1968
|
describePhoneNumberAnalysis(request: DescribePhoneNumberAnalysisRequest): Promise<DescribePhoneNumberAnalysisResponse>;
|
|
1969
|
+
/**
|
|
1970
|
+
* Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the Labels page, find the label that you want to use, click Activate Now, enter the required information, and then submit your application. After your application is approved, you can use the label. Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.
|
|
1971
|
+
*
|
|
1972
|
+
* @param request DescribePhoneNumberAnalysisAIRequest
|
|
1973
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1974
|
+
* @return DescribePhoneNumberAnalysisAIResponse
|
|
1975
|
+
*/
|
|
1721
1976
|
describePhoneNumberAnalysisAIWithOptions(request: DescribePhoneNumberAnalysisAIRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisAIResponse>;
|
|
1977
|
+
/**
|
|
1978
|
+
* Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the Labels page, find the label that you want to use, click Activate Now, enter the required information, and then submit your application. After your application is approved, you can use the label. Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.
|
|
1979
|
+
*
|
|
1980
|
+
* @param request DescribePhoneNumberAnalysisAIRequest
|
|
1981
|
+
* @return DescribePhoneNumberAnalysisAIResponse
|
|
1982
|
+
*/
|
|
1722
1983
|
describePhoneNumberAnalysisAI(request: DescribePhoneNumberAnalysisAIRequest): Promise<DescribePhoneNumberAnalysisAIResponse>;
|
|
1984
|
+
/**
|
|
1985
|
+
* @deprecated : DescribePhoneNumberAttribute is deprecated, please use Dytnsapi::2020-02-17::DescribePhoneNumberOperatorAttribute instead.
|
|
1986
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
1987
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
1988
|
+
* ### [](#qps)QPS limits
|
|
1989
|
+
* You can call this operation up to 2,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
1990
|
+
*
|
|
1991
|
+
* @param request DescribePhoneNumberAttributeRequest
|
|
1992
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1993
|
+
* @return DescribePhoneNumberAttributeResponse
|
|
1994
|
+
*/
|
|
1723
1995
|
describePhoneNumberAttributeWithOptions(request: DescribePhoneNumberAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAttributeResponse>;
|
|
1996
|
+
/**
|
|
1997
|
+
* @deprecated : DescribePhoneNumberAttribute is deprecated, please use Dytnsapi::2020-02-17::DescribePhoneNumberOperatorAttribute instead.
|
|
1998
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
1999
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2000
|
+
* ### [](#qps)QPS limits
|
|
2001
|
+
* You can call this operation up to 2,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2002
|
+
*
|
|
2003
|
+
* @param request DescribePhoneNumberAttributeRequest
|
|
2004
|
+
* @return DescribePhoneNumberAttributeResponse
|
|
2005
|
+
*/
|
|
1724
2006
|
describePhoneNumberAttribute(request: DescribePhoneNumberAttributeRequest): Promise<DescribePhoneNumberAttributeResponse>;
|
|
2007
|
+
/**
|
|
2008
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2009
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2010
|
+
* ### [](#qps)QPS limits
|
|
2011
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2012
|
+
*
|
|
2013
|
+
* @param request DescribePhoneNumberOnlineTimeRequest
|
|
2014
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2015
|
+
* @return DescribePhoneNumberOnlineTimeResponse
|
|
2016
|
+
*/
|
|
1725
2017
|
describePhoneNumberOnlineTimeWithOptions(request: DescribePhoneNumberOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberOnlineTimeResponse>;
|
|
2018
|
+
/**
|
|
2019
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2020
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2021
|
+
* ### [](#qps)QPS limits
|
|
2022
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2023
|
+
*
|
|
2024
|
+
* @param request DescribePhoneNumberOnlineTimeRequest
|
|
2025
|
+
* @return DescribePhoneNumberOnlineTimeResponse
|
|
2026
|
+
*/
|
|
1726
2027
|
describePhoneNumberOnlineTime(request: DescribePhoneNumberOnlineTimeRequest): Promise<DescribePhoneNumberOnlineTimeResponse>;
|
|
2028
|
+
/**
|
|
2029
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154008~~) of Cell Phone Number Service.
|
|
2030
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2031
|
+
* * You can call this operation to obtain the carrier, registration location, and mobile number portability information about a phone number. You can query phone numbers in **plaintext** and phone numbers that are encrypted by using **MD5** and **SHA256**.
|
|
2032
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2033
|
+
*
|
|
2034
|
+
* @param request DescribePhoneNumberOperatorAttributeRequest
|
|
2035
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2036
|
+
* @return DescribePhoneNumberOperatorAttributeResponse
|
|
2037
|
+
*/
|
|
1727
2038
|
describePhoneNumberOperatorAttributeWithOptions(request: DescribePhoneNumberOperatorAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberOperatorAttributeResponse>;
|
|
2039
|
+
/**
|
|
2040
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154008~~) of Cell Phone Number Service.
|
|
2041
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2042
|
+
* * You can call this operation to obtain the carrier, registration location, and mobile number portability information about a phone number. You can query phone numbers in **plaintext** and phone numbers that are encrypted by using **MD5** and **SHA256**.
|
|
2043
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2044
|
+
*
|
|
2045
|
+
* @param request DescribePhoneNumberOperatorAttributeRequest
|
|
2046
|
+
* @return DescribePhoneNumberOperatorAttributeResponse
|
|
2047
|
+
*/
|
|
1728
2048
|
describePhoneNumberOperatorAttribute(request: DescribePhoneNumberOperatorAttributeRequest): Promise<DescribePhoneNumberOperatorAttributeResponse>;
|
|
2049
|
+
/**
|
|
2050
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2051
|
+
* * You are charged for phone number verifications only if the value of Code is OK and the value of VerifyResult is not 0.
|
|
2052
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2053
|
+
* ## [](#qps)QPS limits
|
|
2054
|
+
* You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2055
|
+
* ## [](#)Authorization information
|
|
2056
|
+
* By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2057
|
+
*
|
|
2058
|
+
* @param request DescribePhoneTwiceTelVerifyRequest
|
|
2059
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2060
|
+
* @return DescribePhoneTwiceTelVerifyResponse
|
|
2061
|
+
*/
|
|
1729
2062
|
describePhoneTwiceTelVerifyWithOptions(request: DescribePhoneTwiceTelVerifyRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneTwiceTelVerifyResponse>;
|
|
2063
|
+
/**
|
|
2064
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2065
|
+
* * You are charged for phone number verifications only if the value of Code is OK and the value of VerifyResult is not 0.
|
|
2066
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2067
|
+
* ## [](#qps)QPS limits
|
|
2068
|
+
* You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2069
|
+
* ## [](#)Authorization information
|
|
2070
|
+
* By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2071
|
+
*
|
|
2072
|
+
* @param request DescribePhoneTwiceTelVerifyRequest
|
|
2073
|
+
* @return DescribePhoneTwiceTelVerifyResponse
|
|
2074
|
+
*/
|
|
1730
2075
|
describePhoneTwiceTelVerify(request: DescribePhoneTwiceTelVerifyRequest): Promise<DescribePhoneTwiceTelVerifyResponse>;
|
|
2076
|
+
getUAIDApplyTokenSignWithOptions(request: GetUAIDApplyTokenSignRequest, runtime: $Util.RuntimeOptions): Promise<GetUAIDApplyTokenSignResponse>;
|
|
2077
|
+
getUAIDApplyTokenSign(request: GetUAIDApplyTokenSignRequest): Promise<GetUAIDApplyTokenSignResponse>;
|
|
2078
|
+
/**
|
|
2079
|
+
* Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2080
|
+
* ### [](#qps)QPS limits
|
|
2081
|
+
* You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2082
|
+
*
|
|
2083
|
+
* @param request InvalidPhoneNumberFilterRequest
|
|
2084
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2085
|
+
* @return InvalidPhoneNumberFilterResponse
|
|
2086
|
+
*/
|
|
1731
2087
|
invalidPhoneNumberFilterWithOptions(request: InvalidPhoneNumberFilterRequest, runtime: $Util.RuntimeOptions): Promise<InvalidPhoneNumberFilterResponse>;
|
|
2088
|
+
/**
|
|
2089
|
+
* Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2090
|
+
* ### [](#qps)QPS limits
|
|
2091
|
+
* You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2092
|
+
*
|
|
2093
|
+
* @param request InvalidPhoneNumberFilterRequest
|
|
2094
|
+
* @return InvalidPhoneNumberFilterResponse
|
|
2095
|
+
*/
|
|
1732
2096
|
invalidPhoneNumberFilter(request: InvalidPhoneNumberFilterRequest): Promise<InvalidPhoneNumberFilterResponse>;
|
|
1733
2097
|
phoneNumberConvertServiceWithOptions(request: PhoneNumberConvertServiceRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberConvertServiceResponse>;
|
|
1734
2098
|
phoneNumberConvertService(request: PhoneNumberConvertServiceRequest): Promise<PhoneNumberConvertServiceResponse>;
|
|
2099
|
+
/**
|
|
2100
|
+
* Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2101
|
+
* ### [](#qps)QPS limits
|
|
2102
|
+
* You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2103
|
+
*
|
|
2104
|
+
* @param request PhoneNumberEncryptRequest
|
|
2105
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2106
|
+
* @return PhoneNumberEncryptResponse
|
|
2107
|
+
*/
|
|
1735
2108
|
phoneNumberEncryptWithOptions(request: PhoneNumberEncryptRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberEncryptResponse>;
|
|
2109
|
+
/**
|
|
2110
|
+
* Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2111
|
+
* ### [](#qps)QPS limits
|
|
2112
|
+
* You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2113
|
+
*
|
|
2114
|
+
* @param request PhoneNumberEncryptRequest
|
|
2115
|
+
* @return PhoneNumberEncryptResponse
|
|
2116
|
+
*/
|
|
1736
2117
|
phoneNumberEncrypt(request: PhoneNumberEncryptRequest): Promise<PhoneNumberEncryptResponse>;
|
|
2118
|
+
/**
|
|
2119
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2120
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2121
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2122
|
+
* ### [](#qps)QPS limits
|
|
2123
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2124
|
+
*
|
|
2125
|
+
* @param request PhoneNumberStatusForAccountRequest
|
|
2126
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2127
|
+
* @return PhoneNumberStatusForAccountResponse
|
|
2128
|
+
*/
|
|
1737
2129
|
phoneNumberStatusForAccountWithOptions(request: PhoneNumberStatusForAccountRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForAccountResponse>;
|
|
2130
|
+
/**
|
|
2131
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2132
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2133
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2134
|
+
* ### [](#qps)QPS limits
|
|
2135
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2136
|
+
*
|
|
2137
|
+
* @param request PhoneNumberStatusForAccountRequest
|
|
2138
|
+
* @return PhoneNumberStatusForAccountResponse
|
|
2139
|
+
*/
|
|
1738
2140
|
phoneNumberStatusForAccount(request: PhoneNumberStatusForAccountRequest): Promise<PhoneNumberStatusForAccountResponse>;
|
|
2141
|
+
/**
|
|
2142
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2143
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2144
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2145
|
+
* ### [](#qps)QPS limits
|
|
2146
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2147
|
+
*
|
|
2148
|
+
* @param request PhoneNumberStatusForPublicRequest
|
|
2149
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2150
|
+
* @return PhoneNumberStatusForPublicResponse
|
|
2151
|
+
*/
|
|
1739
2152
|
phoneNumberStatusForPublicWithOptions(request: PhoneNumberStatusForPublicRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForPublicResponse>;
|
|
2153
|
+
/**
|
|
2154
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2155
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2156
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2157
|
+
* ### [](#qps)QPS limits
|
|
2158
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2159
|
+
*
|
|
2160
|
+
* @param request PhoneNumberStatusForPublicRequest
|
|
2161
|
+
* @return PhoneNumberStatusForPublicResponse
|
|
2162
|
+
*/
|
|
1740
2163
|
phoneNumberStatusForPublic(request: PhoneNumberStatusForPublicRequest): Promise<PhoneNumberStatusForPublicResponse>;
|
|
2164
|
+
/**
|
|
2165
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2166
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2167
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2168
|
+
* ### [](#qps)QPS limits
|
|
2169
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2170
|
+
*
|
|
2171
|
+
* @param request PhoneNumberStatusForRealRequest
|
|
2172
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2173
|
+
* @return PhoneNumberStatusForRealResponse
|
|
2174
|
+
*/
|
|
1741
2175
|
phoneNumberStatusForRealWithOptions(request: PhoneNumberStatusForRealRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForRealResponse>;
|
|
2176
|
+
/**
|
|
2177
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2178
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2179
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2180
|
+
* ### [](#qps)QPS limits
|
|
2181
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2182
|
+
*
|
|
2183
|
+
* @param request PhoneNumberStatusForRealRequest
|
|
2184
|
+
* @return PhoneNumberStatusForRealResponse
|
|
2185
|
+
*/
|
|
1742
2186
|
phoneNumberStatusForReal(request: PhoneNumberStatusForRealRequest): Promise<PhoneNumberStatusForRealResponse>;
|
|
2187
|
+
/**
|
|
2188
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2189
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2190
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2191
|
+
* ### [](#qps)QPS limits
|
|
2192
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2193
|
+
*
|
|
2194
|
+
* @param request PhoneNumberStatusForSmsRequest
|
|
2195
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2196
|
+
* @return PhoneNumberStatusForSmsResponse
|
|
2197
|
+
*/
|
|
1743
2198
|
phoneNumberStatusForSmsWithOptions(request: PhoneNumberStatusForSmsRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForSmsResponse>;
|
|
2199
|
+
/**
|
|
2200
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2201
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2202
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2203
|
+
* ### [](#qps)QPS limits
|
|
2204
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2205
|
+
*
|
|
2206
|
+
* @param request PhoneNumberStatusForSmsRequest
|
|
2207
|
+
* @return PhoneNumberStatusForSmsResponse
|
|
2208
|
+
*/
|
|
1744
2209
|
phoneNumberStatusForSms(request: PhoneNumberStatusForSmsRequest): Promise<PhoneNumberStatusForSmsResponse>;
|
|
2210
|
+
/**
|
|
2211
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2212
|
+
* * You are charged only if the value of Code is OK and the value of IsPrivacyNumber is true or false.
|
|
2213
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2214
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2215
|
+
* ### [](#qps)QPS limits
|
|
2216
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2217
|
+
*
|
|
2218
|
+
* @param request PhoneNumberStatusForVirtualRequest
|
|
2219
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2220
|
+
* @return PhoneNumberStatusForVirtualResponse
|
|
2221
|
+
*/
|
|
1745
2222
|
phoneNumberStatusForVirtualWithOptions(request: PhoneNumberStatusForVirtualRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForVirtualResponse>;
|
|
2223
|
+
/**
|
|
2224
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2225
|
+
* * You are charged only if the value of Code is OK and the value of IsPrivacyNumber is true or false.
|
|
2226
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2227
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2228
|
+
* ### [](#qps)QPS limits
|
|
2229
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2230
|
+
*
|
|
2231
|
+
* @param request PhoneNumberStatusForVirtualRequest
|
|
2232
|
+
* @return PhoneNumberStatusForVirtualResponse
|
|
2233
|
+
*/
|
|
1746
2234
|
phoneNumberStatusForVirtual(request: PhoneNumberStatusForVirtualRequest): Promise<PhoneNumberStatusForVirtualResponse>;
|
|
2235
|
+
/**
|
|
2236
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2237
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2238
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2239
|
+
* ### [](#qps)QPS limits
|
|
2240
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2241
|
+
*
|
|
2242
|
+
* @param request PhoneNumberStatusForVoiceRequest
|
|
2243
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2244
|
+
* @return PhoneNumberStatusForVoiceResponse
|
|
2245
|
+
*/
|
|
1747
2246
|
phoneNumberStatusForVoiceWithOptions(request: PhoneNumberStatusForVoiceRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForVoiceResponse>;
|
|
2247
|
+
/**
|
|
2248
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2249
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
|
|
2250
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2251
|
+
* ### [](#qps)QPS limits
|
|
2252
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2253
|
+
*
|
|
2254
|
+
* @param request PhoneNumberStatusForVoiceRequest
|
|
2255
|
+
* @return PhoneNumberStatusForVoiceResponse
|
|
2256
|
+
*/
|
|
1748
2257
|
phoneNumberStatusForVoice(request: PhoneNumberStatusForVoiceRequest): Promise<PhoneNumberStatusForVoiceResponse>;
|
|
1749
2258
|
queryAvailableAuthCodeWithOptions(request: QueryAvailableAuthCodeRequest, runtime: $Util.RuntimeOptions): Promise<QueryAvailableAuthCodeResponse>;
|
|
1750
2259
|
queryAvailableAuthCode(request: QueryAvailableAuthCodeRequest): Promise<QueryAvailableAuthCodeResponse>;
|
|
@@ -1756,8 +2265,52 @@ export default class Client extends OpenApi {
|
|
|
1756
2265
|
queryTagListPage(request: QueryTagListPageRequest): Promise<QueryTagListPageResponse>;
|
|
1757
2266
|
queryUsageStatisticsByTagIdWithOptions(request: QueryUsageStatisticsByTagIdRequest, runtime: $Util.RuntimeOptions): Promise<QueryUsageStatisticsByTagIdResponse>;
|
|
1758
2267
|
queryUsageStatisticsByTagId(request: QueryUsageStatisticsByTagIdRequest): Promise<QueryUsageStatisticsByTagIdResponse>;
|
|
2268
|
+
/**
|
|
2269
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2270
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2271
|
+
* * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
|
|
2272
|
+
* ### [](#qps)QPS limits
|
|
2273
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2274
|
+
*
|
|
2275
|
+
* @param request ThreeElementsVerificationRequest
|
|
2276
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2277
|
+
* @return ThreeElementsVerificationResponse
|
|
2278
|
+
*/
|
|
1759
2279
|
threeElementsVerificationWithOptions(request: ThreeElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<ThreeElementsVerificationResponse>;
|
|
2280
|
+
/**
|
|
2281
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2282
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2283
|
+
* * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
|
|
2284
|
+
* ### [](#qps)QPS limits
|
|
2285
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2286
|
+
*
|
|
2287
|
+
* @param request ThreeElementsVerificationRequest
|
|
2288
|
+
* @return ThreeElementsVerificationResponse
|
|
2289
|
+
*/
|
|
1760
2290
|
threeElementsVerification(request: ThreeElementsVerificationRequest): Promise<ThreeElementsVerificationResponse>;
|
|
2291
|
+
/**
|
|
2292
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2293
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2294
|
+
* * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
|
|
2295
|
+
* ### [](#qps)QPS limits
|
|
2296
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2297
|
+
*
|
|
2298
|
+
* @param request TwoElementsVerificationRequest
|
|
2299
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2300
|
+
* @return TwoElementsVerificationResponse
|
|
2301
|
+
*/
|
|
1761
2302
|
twoElementsVerificationWithOptions(request: TwoElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<TwoElementsVerificationResponse>;
|
|
2303
|
+
/**
|
|
2304
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
|
|
2305
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
2306
|
+
* * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
|
|
2307
|
+
* ### [](#qps)QPS limits
|
|
2308
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
2309
|
+
*
|
|
2310
|
+
* @param request TwoElementsVerificationRequest
|
|
2311
|
+
* @return TwoElementsVerificationResponse
|
|
2312
|
+
*/
|
|
1762
2313
|
twoElementsVerification(request: TwoElementsVerificationRequest): Promise<TwoElementsVerificationResponse>;
|
|
2314
|
+
uAIDVerificationWithOptions(request: UAIDVerificationRequest, runtime: $Util.RuntimeOptions): Promise<UAIDVerificationResponse>;
|
|
2315
|
+
uAIDVerification(request: UAIDVerificationRequest): Promise<UAIDVerificationResponse>;
|
|
1763
2316
|
}
|