@alicloud/dm20151123 1.4.0 → 1.6.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 +45 -0
- package/dist/client.js +144 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DedicatedIpListResponseBody.d.ts +1 -0
- package/dist/models/DedicatedIpListResponseBody.js +2 -0
- package/dist/models/DedicatedIpListResponseBody.js.map +1 -1
- package/dist/models/DescAccountSummaryResponseBody.d.ts +5 -0
- package/dist/models/DescAccountSummaryResponseBody.js +2 -0
- package/dist/models/DescAccountSummaryResponseBody.js.map +1 -1
- package/dist/models/GetDedicatedIpWarmUpDetailRequest.d.ts +17 -0
- package/dist/models/GetDedicatedIpWarmUpDetailRequest.js +64 -0
- package/dist/models/GetDedicatedIpWarmUpDetailRequest.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponse.d.ts +19 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponse.js +69 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponse.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponseBody.d.ts +31 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponseBody.js +88 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponseBody.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpInfoRequest.d.ts +14 -0
- package/dist/models/GetDedicatedIpWarmUpInfoRequest.js +58 -0
- package/dist/models/GetDedicatedIpWarmUpInfoRequest.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponse.d.ts +19 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponse.js +69 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponse.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponseBody.d.ts +29 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponseBody.js +84 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponseBody.js.map +1 -0
- package/dist/models/ListBlockSendingRequest.d.ts +51 -0
- package/dist/models/ListBlockSendingRequest.js +70 -0
- package/dist/models/ListBlockSendingRequest.js.map +1 -0
- package/dist/models/ListBlockSendingResponse.d.ts +19 -0
- package/dist/models/ListBlockSendingResponse.js +69 -0
- package/dist/models/ListBlockSendingResponse.js.map +1 -0
- package/dist/models/ListBlockSendingResponseBody.d.ts +66 -0
- package/dist/models/ListBlockSendingResponseBody.js +94 -0
- package/dist/models/ListBlockSendingResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +12 -0
- package/dist/models/model.js +29 -5
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +162 -0
- package/src/models/DedicatedIpListResponseBody.ts +3 -0
- package/src/models/DescAccountSummaryResponseBody.ts +7 -0
- package/src/models/GetDedicatedIpWarmUpDetailRequest.ts +36 -0
- package/src/models/GetDedicatedIpWarmUpDetailResponse.ts +40 -0
- package/src/models/GetDedicatedIpWarmUpDetailResponseBody.ts +65 -0
- package/src/models/GetDedicatedIpWarmUpInfoRequest.ts +27 -0
- package/src/models/GetDedicatedIpWarmUpInfoResponse.ts +40 -0
- package/src/models/GetDedicatedIpWarmUpInfoResponseBody.ts +59 -0
- package/src/models/ListBlockSendingRequest.ts +76 -0
- package/src/models/ListBlockSendingResponse.ts +40 -0
- package/src/models/ListBlockSendingResponseBody.ts +106 -0
- package/src/models/model.ts +12 -0
package/dist/client.d.ts
CHANGED
|
@@ -431,6 +431,36 @@ export default class Client extends OpenApi {
|
|
|
431
431
|
* @returns DescDomainResponse
|
|
432
432
|
*/
|
|
433
433
|
descDomain(request: $_model.DescDomainRequest): Promise<$_model.DescDomainResponse>;
|
|
434
|
+
/**
|
|
435
|
+
* 获取专属ip的预热详情信息
|
|
436
|
+
*
|
|
437
|
+
* @param request - GetDedicatedIpWarmUpDetailRequest
|
|
438
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
439
|
+
* @returns GetDedicatedIpWarmUpDetailResponse
|
|
440
|
+
*/
|
|
441
|
+
getDedicatedIpWarmUpDetailWithOptions(request: $_model.GetDedicatedIpWarmUpDetailRequest, runtime: $dara.RuntimeOptions): Promise<$_model.GetDedicatedIpWarmUpDetailResponse>;
|
|
442
|
+
/**
|
|
443
|
+
* 获取专属ip的预热详情信息
|
|
444
|
+
*
|
|
445
|
+
* @param request - GetDedicatedIpWarmUpDetailRequest
|
|
446
|
+
* @returns GetDedicatedIpWarmUpDetailResponse
|
|
447
|
+
*/
|
|
448
|
+
getDedicatedIpWarmUpDetail(request: $_model.GetDedicatedIpWarmUpDetailRequest): Promise<$_model.GetDedicatedIpWarmUpDetailResponse>;
|
|
449
|
+
/**
|
|
450
|
+
* 获取专属ip的预热信息
|
|
451
|
+
*
|
|
452
|
+
* @param request - GetDedicatedIpWarmUpInfoRequest
|
|
453
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
454
|
+
* @returns GetDedicatedIpWarmUpInfoResponse
|
|
455
|
+
*/
|
|
456
|
+
getDedicatedIpWarmUpInfoWithOptions(request: $_model.GetDedicatedIpWarmUpInfoRequest, runtime: $dara.RuntimeOptions): Promise<$_model.GetDedicatedIpWarmUpInfoResponse>;
|
|
457
|
+
/**
|
|
458
|
+
* 获取专属ip的预热信息
|
|
459
|
+
*
|
|
460
|
+
* @param request - GetDedicatedIpWarmUpInfoRequest
|
|
461
|
+
* @returns GetDedicatedIpWarmUpInfoResponse
|
|
462
|
+
*/
|
|
463
|
+
getDedicatedIpWarmUpInfo(request: $_model.GetDedicatedIpWarmUpInfoRequest): Promise<$_model.GetDedicatedIpWarmUpInfoResponse>;
|
|
434
464
|
/**
|
|
435
465
|
* Get IP Protection Information
|
|
436
466
|
*
|
|
@@ -519,6 +549,21 @@ export default class Client extends OpenApi {
|
|
|
519
549
|
* @returns GetUserResponse
|
|
520
550
|
*/
|
|
521
551
|
getUser(): Promise<$_model.GetUserResponse>;
|
|
552
|
+
/**
|
|
553
|
+
* 获取发信的黑名单列表
|
|
554
|
+
*
|
|
555
|
+
* @param request - ListBlockSendingRequest
|
|
556
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
557
|
+
* @returns ListBlockSendingResponse
|
|
558
|
+
*/
|
|
559
|
+
listBlockSendingWithOptions(request: $_model.ListBlockSendingRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ListBlockSendingResponse>;
|
|
560
|
+
/**
|
|
561
|
+
* 获取发信的黑名单列表
|
|
562
|
+
*
|
|
563
|
+
* @param request - ListBlockSendingRequest
|
|
564
|
+
* @returns ListBlockSendingResponse
|
|
565
|
+
*/
|
|
566
|
+
listBlockSending(request: $_model.ListBlockSendingRequest): Promise<$_model.ListBlockSendingResponse>;
|
|
522
567
|
/**
|
|
523
568
|
* List User Invalid Addresses.
|
|
524
569
|
*
|
package/dist/client.js
CHANGED
|
@@ -1446,6 +1446,93 @@ class Client extends openapi_core_1.default {
|
|
|
1446
1446
|
let runtime = new $dara.RuntimeOptions({});
|
|
1447
1447
|
return await this.descDomainWithOptions(request, runtime);
|
|
1448
1448
|
}
|
|
1449
|
+
/**
|
|
1450
|
+
* 获取专属ip的预热详情信息
|
|
1451
|
+
*
|
|
1452
|
+
* @param request - GetDedicatedIpWarmUpDetailRequest
|
|
1453
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1454
|
+
* @returns GetDedicatedIpWarmUpDetailResponse
|
|
1455
|
+
*/
|
|
1456
|
+
async getDedicatedIpWarmUpDetailWithOptions(request, runtime) {
|
|
1457
|
+
request.validate();
|
|
1458
|
+
let query = {};
|
|
1459
|
+
if (!$dara.isNull(request.dedicatedIp)) {
|
|
1460
|
+
query["DedicatedIp"] = request.dedicatedIp;
|
|
1461
|
+
}
|
|
1462
|
+
if (!$dara.isNull(request.endDayMark)) {
|
|
1463
|
+
query["EndDayMark"] = request.endDayMark;
|
|
1464
|
+
}
|
|
1465
|
+
if (!$dara.isNull(request.esp)) {
|
|
1466
|
+
query["Esp"] = request.esp;
|
|
1467
|
+
}
|
|
1468
|
+
if (!$dara.isNull(request.startDayMark)) {
|
|
1469
|
+
query["StartDayMark"] = request.startDayMark;
|
|
1470
|
+
}
|
|
1471
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
1472
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
1473
|
+
});
|
|
1474
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
1475
|
+
action: "GetDedicatedIpWarmUpDetail",
|
|
1476
|
+
version: "2015-11-23",
|
|
1477
|
+
protocol: "HTTPS",
|
|
1478
|
+
pathname: "/",
|
|
1479
|
+
method: "POST",
|
|
1480
|
+
authType: "AK",
|
|
1481
|
+
style: "RPC",
|
|
1482
|
+
reqBodyType: "formData",
|
|
1483
|
+
bodyType: "json",
|
|
1484
|
+
});
|
|
1485
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.GetDedicatedIpWarmUpDetailResponse({}));
|
|
1486
|
+
}
|
|
1487
|
+
/**
|
|
1488
|
+
* 获取专属ip的预热详情信息
|
|
1489
|
+
*
|
|
1490
|
+
* @param request - GetDedicatedIpWarmUpDetailRequest
|
|
1491
|
+
* @returns GetDedicatedIpWarmUpDetailResponse
|
|
1492
|
+
*/
|
|
1493
|
+
async getDedicatedIpWarmUpDetail(request) {
|
|
1494
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
1495
|
+
return await this.getDedicatedIpWarmUpDetailWithOptions(request, runtime);
|
|
1496
|
+
}
|
|
1497
|
+
/**
|
|
1498
|
+
* 获取专属ip的预热信息
|
|
1499
|
+
*
|
|
1500
|
+
* @param request - GetDedicatedIpWarmUpInfoRequest
|
|
1501
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1502
|
+
* @returns GetDedicatedIpWarmUpInfoResponse
|
|
1503
|
+
*/
|
|
1504
|
+
async getDedicatedIpWarmUpInfoWithOptions(request, runtime) {
|
|
1505
|
+
request.validate();
|
|
1506
|
+
let query = {};
|
|
1507
|
+
if (!$dara.isNull(request.dedicatedIp)) {
|
|
1508
|
+
query["DedicatedIp"] = request.dedicatedIp;
|
|
1509
|
+
}
|
|
1510
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
1511
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
1512
|
+
});
|
|
1513
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
1514
|
+
action: "GetDedicatedIpWarmUpInfo",
|
|
1515
|
+
version: "2015-11-23",
|
|
1516
|
+
protocol: "HTTPS",
|
|
1517
|
+
pathname: "/",
|
|
1518
|
+
method: "POST",
|
|
1519
|
+
authType: "AK",
|
|
1520
|
+
style: "RPC",
|
|
1521
|
+
reqBodyType: "formData",
|
|
1522
|
+
bodyType: "json",
|
|
1523
|
+
});
|
|
1524
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.GetDedicatedIpWarmUpInfoResponse({}));
|
|
1525
|
+
}
|
|
1526
|
+
/**
|
|
1527
|
+
* 获取专属ip的预热信息
|
|
1528
|
+
*
|
|
1529
|
+
* @param request - GetDedicatedIpWarmUpInfoRequest
|
|
1530
|
+
* @returns GetDedicatedIpWarmUpInfoResponse
|
|
1531
|
+
*/
|
|
1532
|
+
async getDedicatedIpWarmUpInfo(request) {
|
|
1533
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
1534
|
+
return await this.getDedicatedIpWarmUpInfoWithOptions(request, runtime);
|
|
1535
|
+
}
|
|
1449
1536
|
/**
|
|
1450
1537
|
* Get IP Protection Information
|
|
1451
1538
|
*
|
|
@@ -1779,6 +1866,63 @@ class Client extends openapi_core_1.default {
|
|
|
1779
1866
|
let runtime = new $dara.RuntimeOptions({});
|
|
1780
1867
|
return await this.getUserWithOptions(runtime);
|
|
1781
1868
|
}
|
|
1869
|
+
/**
|
|
1870
|
+
* 获取发信的黑名单列表
|
|
1871
|
+
*
|
|
1872
|
+
* @param request - ListBlockSendingRequest
|
|
1873
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1874
|
+
* @returns ListBlockSendingResponse
|
|
1875
|
+
*/
|
|
1876
|
+
async listBlockSendingWithOptions(request, runtime) {
|
|
1877
|
+
request.validate();
|
|
1878
|
+
let query = {};
|
|
1879
|
+
if (!$dara.isNull(request.beginTime)) {
|
|
1880
|
+
query["BeginTime"] = request.beginTime;
|
|
1881
|
+
}
|
|
1882
|
+
if (!$dara.isNull(request.blockEmail)) {
|
|
1883
|
+
query["BlockEmail"] = request.blockEmail;
|
|
1884
|
+
}
|
|
1885
|
+
if (!$dara.isNull(request.blockType)) {
|
|
1886
|
+
query["BlockType"] = request.blockType;
|
|
1887
|
+
}
|
|
1888
|
+
if (!$dara.isNull(request.endTime)) {
|
|
1889
|
+
query["EndTime"] = request.endTime;
|
|
1890
|
+
}
|
|
1891
|
+
if (!$dara.isNull(request.maxResults)) {
|
|
1892
|
+
query["MaxResults"] = request.maxResults;
|
|
1893
|
+
}
|
|
1894
|
+
if (!$dara.isNull(request.nextToken)) {
|
|
1895
|
+
query["NextToken"] = request.nextToken;
|
|
1896
|
+
}
|
|
1897
|
+
if (!$dara.isNull(request.senderEmail)) {
|
|
1898
|
+
query["SenderEmail"] = request.senderEmail;
|
|
1899
|
+
}
|
|
1900
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
1901
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
1902
|
+
});
|
|
1903
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
1904
|
+
action: "ListBlockSending",
|
|
1905
|
+
version: "2015-11-23",
|
|
1906
|
+
protocol: "HTTPS",
|
|
1907
|
+
pathname: "/",
|
|
1908
|
+
method: "POST",
|
|
1909
|
+
authType: "AK",
|
|
1910
|
+
style: "RPC",
|
|
1911
|
+
reqBodyType: "formData",
|
|
1912
|
+
bodyType: "json",
|
|
1913
|
+
});
|
|
1914
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListBlockSendingResponse({}));
|
|
1915
|
+
}
|
|
1916
|
+
/**
|
|
1917
|
+
* 获取发信的黑名单列表
|
|
1918
|
+
*
|
|
1919
|
+
* @param request - ListBlockSendingRequest
|
|
1920
|
+
* @returns ListBlockSendingResponse
|
|
1921
|
+
*/
|
|
1922
|
+
async listBlockSending(request) {
|
|
1923
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
1924
|
+
return await this.listBlockSendingWithOptions(request, runtime);
|
|
1925
|
+
}
|
|
1782
1926
|
/**
|
|
1783
1927
|
* List User Invalid Addresses.
|
|
1784
1928
|
*
|