@alicloud/alidns20150109 4.3.6 → 4.4.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 +60 -0
- package/dist/client.js +228 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewRequest.d.ts +33 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewRequest.js +64 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewRequest.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponse.d.ts +19 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponse.js +69 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponse.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponseBody.d.ts +54 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponseBody.js +88 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponseBody.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryRequest.d.ts +44 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryRequest.js +70 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryRequest.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponse.d.ts +19 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponse.js +69 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponse.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponseBody.d.ts +69 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponseBody.js +94 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponseBody.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryRequest.d.ts +80 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryRequest.js +84 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryRequest.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponse.d.ts +19 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponse.js +69 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponse.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponseBody.d.ts +124 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponseBody.js +116 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponseBody.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewRequest.d.ts +28 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewRequest.js +62 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewRequest.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponse.d.ts +19 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponse.js +69 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponse.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponseBody.d.ts +49 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponseBody.js +86 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +16 -0
- package/dist/models/model.js +51 -18
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +264 -0
- package/src/models/DescribeInterAuthStatisticsGlobalOverviewRequest.ts +52 -0
- package/src/models/DescribeInterAuthStatisticsGlobalOverviewResponse.ts +40 -0
- package/src/models/DescribeInterAuthStatisticsGlobalOverviewResponseBody.ts +88 -0
- package/src/models/DescribeInterAuthStatisticsHistoryRequest.ts +69 -0
- package/src/models/DescribeInterAuthStatisticsHistoryResponse.ts +40 -0
- package/src/models/DescribeInterAuthStatisticsHistoryResponseBody.ts +109 -0
- package/src/models/DescribeInterAuthStatisticsSummaryRequest.ts +119 -0
- package/src/models/DescribeInterAuthStatisticsSummaryResponse.ts +40 -0
- package/src/models/DescribeInterAuthStatisticsSummaryResponseBody.ts +186 -0
- package/src/models/DescribeInterAuthStatisticsZoneOverviewRequest.ts +45 -0
- package/src/models/DescribeInterAuthStatisticsZoneOverviewResponse.ts +40 -0
- package/src/models/DescribeInterAuthStatisticsZoneOverviewResponseBody.ts +81 -0
- package/src/models/model.ts +16 -0
package/dist/client.d.ts
CHANGED
|
@@ -1809,6 +1809,66 @@ export default class Client extends OpenApi {
|
|
|
1809
1809
|
* @returns DescribeInstanceDomainsResponse
|
|
1810
1810
|
*/
|
|
1811
1811
|
describeInstanceDomains(request: $_model.DescribeInstanceDomainsRequest): Promise<$_model.DescribeInstanceDomainsResponse>;
|
|
1812
|
+
/**
|
|
1813
|
+
* 公网权威解析统计信息全局总览
|
|
1814
|
+
*
|
|
1815
|
+
* @param request - DescribeInterAuthStatisticsGlobalOverviewRequest
|
|
1816
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1817
|
+
* @returns DescribeInterAuthStatisticsGlobalOverviewResponse
|
|
1818
|
+
*/
|
|
1819
|
+
describeInterAuthStatisticsGlobalOverviewWithOptions(request: $_model.DescribeInterAuthStatisticsGlobalOverviewRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeInterAuthStatisticsGlobalOverviewResponse>;
|
|
1820
|
+
/**
|
|
1821
|
+
* 公网权威解析统计信息全局总览
|
|
1822
|
+
*
|
|
1823
|
+
* @param request - DescribeInterAuthStatisticsGlobalOverviewRequest
|
|
1824
|
+
* @returns DescribeInterAuthStatisticsGlobalOverviewResponse
|
|
1825
|
+
*/
|
|
1826
|
+
describeInterAuthStatisticsGlobalOverview(request: $_model.DescribeInterAuthStatisticsGlobalOverviewRequest): Promise<$_model.DescribeInterAuthStatisticsGlobalOverviewResponse>;
|
|
1827
|
+
/**
|
|
1828
|
+
* 公网权威解析统计信息趋势
|
|
1829
|
+
*
|
|
1830
|
+
* @param request - DescribeInterAuthStatisticsHistoryRequest
|
|
1831
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1832
|
+
* @returns DescribeInterAuthStatisticsHistoryResponse
|
|
1833
|
+
*/
|
|
1834
|
+
describeInterAuthStatisticsHistoryWithOptions(request: $_model.DescribeInterAuthStatisticsHistoryRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeInterAuthStatisticsHistoryResponse>;
|
|
1835
|
+
/**
|
|
1836
|
+
* 公网权威解析统计信息趋势
|
|
1837
|
+
*
|
|
1838
|
+
* @param request - DescribeInterAuthStatisticsHistoryRequest
|
|
1839
|
+
* @returns DescribeInterAuthStatisticsHistoryResponse
|
|
1840
|
+
*/
|
|
1841
|
+
describeInterAuthStatisticsHistory(request: $_model.DescribeInterAuthStatisticsHistoryRequest): Promise<$_model.DescribeInterAuthStatisticsHistoryResponse>;
|
|
1842
|
+
/**
|
|
1843
|
+
* 公网权威解析统计信息摘要列表
|
|
1844
|
+
*
|
|
1845
|
+
* @param request - DescribeInterAuthStatisticsSummaryRequest
|
|
1846
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1847
|
+
* @returns DescribeInterAuthStatisticsSummaryResponse
|
|
1848
|
+
*/
|
|
1849
|
+
describeInterAuthStatisticsSummaryWithOptions(request: $_model.DescribeInterAuthStatisticsSummaryRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeInterAuthStatisticsSummaryResponse>;
|
|
1850
|
+
/**
|
|
1851
|
+
* 公网权威解析统计信息摘要列表
|
|
1852
|
+
*
|
|
1853
|
+
* @param request - DescribeInterAuthStatisticsSummaryRequest
|
|
1854
|
+
* @returns DescribeInterAuthStatisticsSummaryResponse
|
|
1855
|
+
*/
|
|
1856
|
+
describeInterAuthStatisticsSummary(request: $_model.DescribeInterAuthStatisticsSummaryRequest): Promise<$_model.DescribeInterAuthStatisticsSummaryResponse>;
|
|
1857
|
+
/**
|
|
1858
|
+
* 公网权威解析统计信息Zone维度总览
|
|
1859
|
+
*
|
|
1860
|
+
* @param request - DescribeInterAuthStatisticsZoneOverviewRequest
|
|
1861
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1862
|
+
* @returns DescribeInterAuthStatisticsZoneOverviewResponse
|
|
1863
|
+
*/
|
|
1864
|
+
describeInterAuthStatisticsZoneOverviewWithOptions(request: $_model.DescribeInterAuthStatisticsZoneOverviewRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeInterAuthStatisticsZoneOverviewResponse>;
|
|
1865
|
+
/**
|
|
1866
|
+
* 公网权威解析统计信息Zone维度总览
|
|
1867
|
+
*
|
|
1868
|
+
* @param request - DescribeInterAuthStatisticsZoneOverviewRequest
|
|
1869
|
+
* @returns DescribeInterAuthStatisticsZoneOverviewResponse
|
|
1870
|
+
*/
|
|
1871
|
+
describeInterAuthStatisticsZoneOverview(request: $_model.DescribeInterAuthStatisticsZoneOverviewRequest): Promise<$_model.DescribeInterAuthStatisticsZoneOverviewResponse>;
|
|
1812
1872
|
/**
|
|
1813
1873
|
* 查询解析日志
|
|
1814
1874
|
*
|
package/dist/client.js
CHANGED
|
@@ -5615,6 +5615,234 @@ class Client extends openapi_core_1.default {
|
|
|
5615
5615
|
let runtime = new $dara.RuntimeOptions({});
|
|
5616
5616
|
return await this.describeInstanceDomainsWithOptions(request, runtime);
|
|
5617
5617
|
}
|
|
5618
|
+
/**
|
|
5619
|
+
* 公网权威解析统计信息全局总览
|
|
5620
|
+
*
|
|
5621
|
+
* @param request - DescribeInterAuthStatisticsGlobalOverviewRequest
|
|
5622
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5623
|
+
* @returns DescribeInterAuthStatisticsGlobalOverviewResponse
|
|
5624
|
+
*/
|
|
5625
|
+
async describeInterAuthStatisticsGlobalOverviewWithOptions(request, runtime) {
|
|
5626
|
+
request.validate();
|
|
5627
|
+
let query = {};
|
|
5628
|
+
if (!$dara.isNull(request.acceptLanguage)) {
|
|
5629
|
+
query["AcceptLanguage"] = request.acceptLanguage;
|
|
5630
|
+
}
|
|
5631
|
+
if (!$dara.isNull(request.clientToken)) {
|
|
5632
|
+
query["ClientToken"] = request.clientToken;
|
|
5633
|
+
}
|
|
5634
|
+
if (!$dara.isNull(request.overviewPeriod)) {
|
|
5635
|
+
query["OverviewPeriod"] = request.overviewPeriod;
|
|
5636
|
+
}
|
|
5637
|
+
if (!$dara.isNull(request.serverRegion)) {
|
|
5638
|
+
query["ServerRegion"] = request.serverRegion;
|
|
5639
|
+
}
|
|
5640
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
5641
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
5642
|
+
});
|
|
5643
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
5644
|
+
action: "DescribeInterAuthStatisticsGlobalOverview",
|
|
5645
|
+
version: "2015-01-09",
|
|
5646
|
+
protocol: "HTTPS",
|
|
5647
|
+
pathname: "/",
|
|
5648
|
+
method: "POST",
|
|
5649
|
+
authType: "AK",
|
|
5650
|
+
style: "RPC",
|
|
5651
|
+
reqBodyType: "formData",
|
|
5652
|
+
bodyType: "json",
|
|
5653
|
+
});
|
|
5654
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeInterAuthStatisticsGlobalOverviewResponse({}));
|
|
5655
|
+
}
|
|
5656
|
+
/**
|
|
5657
|
+
* 公网权威解析统计信息全局总览
|
|
5658
|
+
*
|
|
5659
|
+
* @param request - DescribeInterAuthStatisticsGlobalOverviewRequest
|
|
5660
|
+
* @returns DescribeInterAuthStatisticsGlobalOverviewResponse
|
|
5661
|
+
*/
|
|
5662
|
+
async describeInterAuthStatisticsGlobalOverview(request) {
|
|
5663
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
5664
|
+
return await this.describeInterAuthStatisticsGlobalOverviewWithOptions(request, runtime);
|
|
5665
|
+
}
|
|
5666
|
+
/**
|
|
5667
|
+
* 公网权威解析统计信息趋势
|
|
5668
|
+
*
|
|
5669
|
+
* @param request - DescribeInterAuthStatisticsHistoryRequest
|
|
5670
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5671
|
+
* @returns DescribeInterAuthStatisticsHistoryResponse
|
|
5672
|
+
*/
|
|
5673
|
+
async describeInterAuthStatisticsHistoryWithOptions(request, runtime) {
|
|
5674
|
+
request.validate();
|
|
5675
|
+
let query = {};
|
|
5676
|
+
if (!$dara.isNull(request.domainName)) {
|
|
5677
|
+
query["DomainName"] = request.domainName;
|
|
5678
|
+
}
|
|
5679
|
+
if (!$dara.isNull(request.endTimestamp)) {
|
|
5680
|
+
query["EndTimestamp"] = request.endTimestamp;
|
|
5681
|
+
}
|
|
5682
|
+
if (!$dara.isNull(request.rcode)) {
|
|
5683
|
+
query["Rcode"] = request.rcode;
|
|
5684
|
+
}
|
|
5685
|
+
if (!$dara.isNull(request.serverRegion)) {
|
|
5686
|
+
query["ServerRegion"] = request.serverRegion;
|
|
5687
|
+
}
|
|
5688
|
+
if (!$dara.isNull(request.startTimestamp)) {
|
|
5689
|
+
query["StartTimestamp"] = request.startTimestamp;
|
|
5690
|
+
}
|
|
5691
|
+
if (!$dara.isNull(request.statisticalType)) {
|
|
5692
|
+
query["StatisticalType"] = request.statisticalType;
|
|
5693
|
+
}
|
|
5694
|
+
if (!$dara.isNull(request.zoneName)) {
|
|
5695
|
+
query["ZoneName"] = request.zoneName;
|
|
5696
|
+
}
|
|
5697
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
5698
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
5699
|
+
});
|
|
5700
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
5701
|
+
action: "DescribeInterAuthStatisticsHistory",
|
|
5702
|
+
version: "2015-01-09",
|
|
5703
|
+
protocol: "HTTPS",
|
|
5704
|
+
pathname: "/",
|
|
5705
|
+
method: "POST",
|
|
5706
|
+
authType: "AK",
|
|
5707
|
+
style: "RPC",
|
|
5708
|
+
reqBodyType: "formData",
|
|
5709
|
+
bodyType: "json",
|
|
5710
|
+
});
|
|
5711
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeInterAuthStatisticsHistoryResponse({}));
|
|
5712
|
+
}
|
|
5713
|
+
/**
|
|
5714
|
+
* 公网权威解析统计信息趋势
|
|
5715
|
+
*
|
|
5716
|
+
* @param request - DescribeInterAuthStatisticsHistoryRequest
|
|
5717
|
+
* @returns DescribeInterAuthStatisticsHistoryResponse
|
|
5718
|
+
*/
|
|
5719
|
+
async describeInterAuthStatisticsHistory(request) {
|
|
5720
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
5721
|
+
return await this.describeInterAuthStatisticsHistoryWithOptions(request, runtime);
|
|
5722
|
+
}
|
|
5723
|
+
/**
|
|
5724
|
+
* 公网权威解析统计信息摘要列表
|
|
5725
|
+
*
|
|
5726
|
+
* @param request - DescribeInterAuthStatisticsSummaryRequest
|
|
5727
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5728
|
+
* @returns DescribeInterAuthStatisticsSummaryResponse
|
|
5729
|
+
*/
|
|
5730
|
+
async describeInterAuthStatisticsSummaryWithOptions(request, runtime) {
|
|
5731
|
+
request.validate();
|
|
5732
|
+
let query = {};
|
|
5733
|
+
if (!$dara.isNull(request.direction)) {
|
|
5734
|
+
query["Direction"] = request.direction;
|
|
5735
|
+
}
|
|
5736
|
+
if (!$dara.isNull(request.domainName)) {
|
|
5737
|
+
query["DomainName"] = request.domainName;
|
|
5738
|
+
}
|
|
5739
|
+
if (!$dara.isNull(request.endTimestamp)) {
|
|
5740
|
+
query["EndTimestamp"] = request.endTimestamp;
|
|
5741
|
+
}
|
|
5742
|
+
if (!$dara.isNull(request.growType)) {
|
|
5743
|
+
query["GrowType"] = request.growType;
|
|
5744
|
+
}
|
|
5745
|
+
if (!$dara.isNull(request.orderBy)) {
|
|
5746
|
+
query["OrderBy"] = request.orderBy;
|
|
5747
|
+
}
|
|
5748
|
+
if (!$dara.isNull(request.pageNumber)) {
|
|
5749
|
+
query["PageNumber"] = request.pageNumber;
|
|
5750
|
+
}
|
|
5751
|
+
if (!$dara.isNull(request.pageSize)) {
|
|
5752
|
+
query["PageSize"] = request.pageSize;
|
|
5753
|
+
}
|
|
5754
|
+
if (!$dara.isNull(request.period)) {
|
|
5755
|
+
query["Period"] = request.period;
|
|
5756
|
+
}
|
|
5757
|
+
if (!$dara.isNull(request.rcode)) {
|
|
5758
|
+
query["Rcode"] = request.rcode;
|
|
5759
|
+
}
|
|
5760
|
+
if (!$dara.isNull(request.serverRegion)) {
|
|
5761
|
+
query["ServerRegion"] = request.serverRegion;
|
|
5762
|
+
}
|
|
5763
|
+
if (!$dara.isNull(request.sourceType)) {
|
|
5764
|
+
query["SourceType"] = request.sourceType;
|
|
5765
|
+
}
|
|
5766
|
+
if (!$dara.isNull(request.startTimestamp)) {
|
|
5767
|
+
query["StartTimestamp"] = request.startTimestamp;
|
|
5768
|
+
}
|
|
5769
|
+
if (!$dara.isNull(request.statisticalType)) {
|
|
5770
|
+
query["StatisticalType"] = request.statisticalType;
|
|
5771
|
+
}
|
|
5772
|
+
if (!$dara.isNull(request.zoneName)) {
|
|
5773
|
+
query["ZoneName"] = request.zoneName;
|
|
5774
|
+
}
|
|
5775
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
5776
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
5777
|
+
});
|
|
5778
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
5779
|
+
action: "DescribeInterAuthStatisticsSummary",
|
|
5780
|
+
version: "2015-01-09",
|
|
5781
|
+
protocol: "HTTPS",
|
|
5782
|
+
pathname: "/",
|
|
5783
|
+
method: "POST",
|
|
5784
|
+
authType: "AK",
|
|
5785
|
+
style: "RPC",
|
|
5786
|
+
reqBodyType: "formData",
|
|
5787
|
+
bodyType: "json",
|
|
5788
|
+
});
|
|
5789
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeInterAuthStatisticsSummaryResponse({}));
|
|
5790
|
+
}
|
|
5791
|
+
/**
|
|
5792
|
+
* 公网权威解析统计信息摘要列表
|
|
5793
|
+
*
|
|
5794
|
+
* @param request - DescribeInterAuthStatisticsSummaryRequest
|
|
5795
|
+
* @returns DescribeInterAuthStatisticsSummaryResponse
|
|
5796
|
+
*/
|
|
5797
|
+
async describeInterAuthStatisticsSummary(request) {
|
|
5798
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
5799
|
+
return await this.describeInterAuthStatisticsSummaryWithOptions(request, runtime);
|
|
5800
|
+
}
|
|
5801
|
+
/**
|
|
5802
|
+
* 公网权威解析统计信息Zone维度总览
|
|
5803
|
+
*
|
|
5804
|
+
* @param request - DescribeInterAuthStatisticsZoneOverviewRequest
|
|
5805
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5806
|
+
* @returns DescribeInterAuthStatisticsZoneOverviewResponse
|
|
5807
|
+
*/
|
|
5808
|
+
async describeInterAuthStatisticsZoneOverviewWithOptions(request, runtime) {
|
|
5809
|
+
request.validate();
|
|
5810
|
+
let query = {};
|
|
5811
|
+
if (!$dara.isNull(request.overviewPeriod)) {
|
|
5812
|
+
query["OverviewPeriod"] = request.overviewPeriod;
|
|
5813
|
+
}
|
|
5814
|
+
if (!$dara.isNull(request.serverRegion)) {
|
|
5815
|
+
query["ServerRegion"] = request.serverRegion;
|
|
5816
|
+
}
|
|
5817
|
+
if (!$dara.isNull(request.zoneName)) {
|
|
5818
|
+
query["ZoneName"] = request.zoneName;
|
|
5819
|
+
}
|
|
5820
|
+
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
5821
|
+
query: openapi_core_2.OpenApiUtil.query(query),
|
|
5822
|
+
});
|
|
5823
|
+
let params = new openapi_core_2.$OpenApiUtil.Params({
|
|
5824
|
+
action: "DescribeInterAuthStatisticsZoneOverview",
|
|
5825
|
+
version: "2015-01-09",
|
|
5826
|
+
protocol: "HTTPS",
|
|
5827
|
+
pathname: "/",
|
|
5828
|
+
method: "POST",
|
|
5829
|
+
authType: "AK",
|
|
5830
|
+
style: "RPC",
|
|
5831
|
+
reqBodyType: "formData",
|
|
5832
|
+
bodyType: "json",
|
|
5833
|
+
});
|
|
5834
|
+
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeInterAuthStatisticsZoneOverviewResponse({}));
|
|
5835
|
+
}
|
|
5836
|
+
/**
|
|
5837
|
+
* 公网权威解析统计信息Zone维度总览
|
|
5838
|
+
*
|
|
5839
|
+
* @param request - DescribeInterAuthStatisticsZoneOverviewRequest
|
|
5840
|
+
* @returns DescribeInterAuthStatisticsZoneOverviewResponse
|
|
5841
|
+
*/
|
|
5842
|
+
async describeInterAuthStatisticsZoneOverview(request) {
|
|
5843
|
+
let runtime = new $dara.RuntimeOptions({});
|
|
5844
|
+
return await this.describeInterAuthStatisticsZoneOverviewWithOptions(request, runtime);
|
|
5845
|
+
}
|
|
5618
5846
|
/**
|
|
5619
5847
|
* 查询解析日志
|
|
5620
5848
|
*
|