@alicloud/alidns20150109 4.0.0 → 4.1.1
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 +31 -0
- package/dist/client.js +61 -0
- package/dist/client.js.map +1 -1
- package/dist/models/AddRspDomainServerHoldStatusForGatewayRequest.d.ts +34 -0
- package/dist/models/AddRspDomainServerHoldStatusForGatewayRequest.js +62 -0
- package/dist/models/AddRspDomainServerHoldStatusForGatewayRequest.js.map +1 -0
- package/dist/models/AddRspDomainServerHoldStatusForGatewayResponse.d.ts +19 -0
- package/dist/models/AddRspDomainServerHoldStatusForGatewayResponse.js +69 -0
- package/dist/models/AddRspDomainServerHoldStatusForGatewayResponse.js.map +1 -0
- package/dist/models/AddRspDomainServerHoldStatusForGatewayResponseBody.d.ts +94 -0
- package/dist/models/AddRspDomainServerHoldStatusForGatewayResponseBody.js +122 -0
- package/dist/models/AddRspDomainServerHoldStatusForGatewayResponseBody.js.map +1 -0
- package/dist/models/DescribeCloudGtmGlobalAlertResponseBody.d.ts +5 -0
- package/dist/models/DescribeCloudGtmGlobalAlertResponseBody.js +2 -0
- package/dist/models/DescribeCloudGtmGlobalAlertResponseBody.js.map +1 -1
- package/dist/models/DescribeInternetDnsLogsResponseBody.d.ts +3 -0
- package/dist/models/DescribeInternetDnsLogsResponseBody.js +6 -0
- package/dist/models/DescribeInternetDnsLogsResponseBody.js.map +1 -1
- package/dist/models/DescribePdnsAppKeysResponseBody.d.ts +16 -0
- package/dist/models/DescribePdnsAppKeysResponseBody.js +29 -1
- package/dist/models/DescribePdnsAppKeysResponseBody.js.map +1 -1
- package/dist/models/ListCloudGtmInstanceConfigsResponseBody.d.ts +5 -0
- package/dist/models/ListCloudGtmInstanceConfigsResponseBody.js +2 -0
- package/dist/models/ListCloudGtmInstanceConfigsResponseBody.js.map +1 -1
- package/dist/models/SearchCloudGtmInstanceConfigsResponseBody.d.ts +5 -0
- package/dist/models/SearchCloudGtmInstanceConfigsResponseBody.js +2 -0
- package/dist/models/SearchCloudGtmInstanceConfigsResponseBody.js.map +1 -1
- package/dist/models/UpdateCloudGtmGlobalAlertRequest.d.ts +5 -0
- package/dist/models/UpdateCloudGtmGlobalAlertRequest.js +2 -0
- package/dist/models/UpdateCloudGtmGlobalAlertRequest.js.map +1 -1
- package/dist/models/model.d.ts +6 -0
- package/dist/models/model.js +36 -24
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +66 -0
- package/src/models/AddRspDomainServerHoldStatusForGatewayRequest.ts +51 -0
- package/src/models/AddRspDomainServerHoldStatusForGatewayResponse.ts +40 -0
- package/src/models/AddRspDomainServerHoldStatusForGatewayResponseBody.ts +153 -0
- package/src/models/DescribeCloudGtmGlobalAlertResponseBody.ts +7 -0
- package/src/models/DescribeInternetDnsLogsResponseBody.ts +9 -0
- package/src/models/DescribePdnsAppKeysResponseBody.ts +35 -0
- package/src/models/ListCloudGtmInstanceConfigsResponseBody.ts +7 -0
- package/src/models/SearchCloudGtmInstanceConfigsResponseBody.ts +7 -0
- package/src/models/UpdateCloudGtmGlobalAlertRequest.ts +7 -0
- package/src/models/model.ts +6 -0
|
@@ -2,8 +2,38 @@
|
|
|
2
2
|
import * as $dara from '@darabonba/typescript';
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
export class DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters extends $dara.Model {
|
|
6
|
+
clusterId?: string;
|
|
7
|
+
clusterName?: string;
|
|
8
|
+
clusterUserId?: string;
|
|
9
|
+
static names(): { [key: string]: string } {
|
|
10
|
+
return {
|
|
11
|
+
clusterId: 'ClusterId',
|
|
12
|
+
clusterName: 'ClusterName',
|
|
13
|
+
clusterUserId: 'ClusterUserId',
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static types(): { [key: string]: any } {
|
|
18
|
+
return {
|
|
19
|
+
clusterId: 'string',
|
|
20
|
+
clusterName: 'string',
|
|
21
|
+
clusterUserId: 'string',
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
validate() {
|
|
26
|
+
super.validate();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
constructor(map?: { [key: string]: any }) {
|
|
30
|
+
super(map);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
5
34
|
export class DescribePdnsAppKeysResponseBodyAppKeys extends $dara.Model {
|
|
6
35
|
appKeyId?: string;
|
|
36
|
+
bindEdgeDnsClusters?: DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters[];
|
|
7
37
|
createDate?: string;
|
|
8
38
|
createTimestamp?: number;
|
|
9
39
|
remark?: string;
|
|
@@ -11,6 +41,7 @@ export class DescribePdnsAppKeysResponseBodyAppKeys extends $dara.Model {
|
|
|
11
41
|
static names(): { [key: string]: string } {
|
|
12
42
|
return {
|
|
13
43
|
appKeyId: 'AppKeyId',
|
|
44
|
+
bindEdgeDnsClusters: 'BindEdgeDnsClusters',
|
|
14
45
|
createDate: 'CreateDate',
|
|
15
46
|
createTimestamp: 'CreateTimestamp',
|
|
16
47
|
remark: 'Remark',
|
|
@@ -21,6 +52,7 @@ export class DescribePdnsAppKeysResponseBodyAppKeys extends $dara.Model {
|
|
|
21
52
|
static types(): { [key: string]: any } {
|
|
22
53
|
return {
|
|
23
54
|
appKeyId: 'string',
|
|
55
|
+
bindEdgeDnsClusters: { 'type': 'array', 'itemType': DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters },
|
|
24
56
|
createDate: 'string',
|
|
25
57
|
createTimestamp: 'number',
|
|
26
58
|
remark: 'string',
|
|
@@ -29,6 +61,9 @@ export class DescribePdnsAppKeysResponseBodyAppKeys extends $dara.Model {
|
|
|
29
61
|
}
|
|
30
62
|
|
|
31
63
|
validate() {
|
|
64
|
+
if(Array.isArray(this.bindEdgeDnsClusters)) {
|
|
65
|
+
$dara.Model.validateArray(this.bindEdgeDnsClusters);
|
|
66
|
+
}
|
|
32
67
|
super.validate();
|
|
33
68
|
}
|
|
34
69
|
|
|
@@ -318,6 +318,11 @@ export class ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfi
|
|
|
318
318
|
* Config-000**11
|
|
319
319
|
*/
|
|
320
320
|
configId?: string;
|
|
321
|
+
/**
|
|
322
|
+
* @example
|
|
323
|
+
* ENABLE
|
|
324
|
+
*/
|
|
325
|
+
configLoggingSwitchStatus?: string;
|
|
321
326
|
/**
|
|
322
327
|
* @remarks
|
|
323
328
|
* Instance configuration creation time.
|
|
@@ -472,6 +477,7 @@ export class ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfi
|
|
|
472
477
|
availableStatus: 'AvailableStatus',
|
|
473
478
|
commodityCode: 'CommodityCode',
|
|
474
479
|
configId: 'ConfigId',
|
|
480
|
+
configLoggingSwitchStatus: 'ConfigLoggingSwitchStatus',
|
|
475
481
|
createTime: 'CreateTime',
|
|
476
482
|
createTimestamp: 'CreateTimestamp',
|
|
477
483
|
enableStatus: 'EnableStatus',
|
|
@@ -498,6 +504,7 @@ export class ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfi
|
|
|
498
504
|
availableStatus: 'string',
|
|
499
505
|
commodityCode: 'string',
|
|
500
506
|
configId: 'string',
|
|
507
|
+
configLoggingSwitchStatus: 'string',
|
|
501
508
|
createTime: 'string',
|
|
502
509
|
createTimestamp: 'number',
|
|
503
510
|
enableStatus: 'string',
|
|
@@ -319,6 +319,11 @@ export class SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceCon
|
|
|
319
319
|
* Config-000**11
|
|
320
320
|
*/
|
|
321
321
|
configId?: string;
|
|
322
|
+
/**
|
|
323
|
+
* @example
|
|
324
|
+
* ENABLE
|
|
325
|
+
*/
|
|
326
|
+
configLoggingSwitchStatus?: string;
|
|
322
327
|
/**
|
|
323
328
|
* @remarks
|
|
324
329
|
* Domain instance creation time.
|
|
@@ -472,6 +477,7 @@ export class SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceCon
|
|
|
472
477
|
availableStatus: 'AvailableStatus',
|
|
473
478
|
commodityCode: 'CommodityCode',
|
|
474
479
|
configId: 'ConfigId',
|
|
480
|
+
configLoggingSwitchStatus: 'ConfigLoggingSwitchStatus',
|
|
475
481
|
createTime: 'CreateTime',
|
|
476
482
|
createTimestamp: 'CreateTimestamp',
|
|
477
483
|
enableStatus: 'EnableStatus',
|
|
@@ -498,6 +504,7 @@ export class SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceCon
|
|
|
498
504
|
availableStatus: 'string',
|
|
499
505
|
commodityCode: 'string',
|
|
500
506
|
configId: 'string',
|
|
507
|
+
configLoggingSwitchStatus: 'string',
|
|
501
508
|
createTime: 'string',
|
|
502
509
|
createTimestamp: 'number',
|
|
503
510
|
enableStatus: 'string',
|
|
@@ -51,12 +51,18 @@ export class UpdateCloudGtmGlobalAlertRequestAlertConfig extends $dara.Model {
|
|
|
51
51
|
* true
|
|
52
52
|
*/
|
|
53
53
|
smsNotice?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* @example
|
|
56
|
+
* 100
|
|
57
|
+
*/
|
|
58
|
+
threshold?: number;
|
|
54
59
|
static names(): { [key: string]: string } {
|
|
55
60
|
return {
|
|
56
61
|
dingtalkNotice: 'DingtalkNotice',
|
|
57
62
|
emailNotice: 'EmailNotice',
|
|
58
63
|
noticeType: 'NoticeType',
|
|
59
64
|
smsNotice: 'SmsNotice',
|
|
65
|
+
threshold: 'Threshold',
|
|
60
66
|
};
|
|
61
67
|
}
|
|
62
68
|
|
|
@@ -66,6 +72,7 @@ export class UpdateCloudGtmGlobalAlertRequestAlertConfig extends $dara.Model {
|
|
|
66
72
|
emailNotice: 'boolean',
|
|
67
73
|
noticeType: 'string',
|
|
68
74
|
smsNotice: 'boolean',
|
|
75
|
+
threshold: 'number',
|
|
69
76
|
};
|
|
70
77
|
}
|
|
71
78
|
|
package/src/models/model.ts
CHANGED
|
@@ -9,6 +9,8 @@ export { AddDomainResponseBodyDnsServers } from './AddDomainResponseBody';
|
|
|
9
9
|
export { AddGtmAddressPoolRequestAddr } from './AddGtmAddressPoolRequest';
|
|
10
10
|
export { AddGtmAddressPoolRequestIspCityNode } from './AddGtmAddressPoolRequest';
|
|
11
11
|
export { AddGtmMonitorRequestIspCityNode } from './AddGtmMonitorRequest';
|
|
12
|
+
export { AddRspDomainServerHoldStatusForGatewayResponseBodyAccessDeniedDetail } from './AddRspDomainServerHoldStatusForGatewayResponseBody';
|
|
13
|
+
export { AddRspDomainServerHoldStatusForGatewayResponseBodyData } from './AddRspDomainServerHoldStatusForGatewayResponseBody';
|
|
12
14
|
export { CreateCloudGtmAddressRequestHealthTasks } from './CreateCloudGtmAddressRequest';
|
|
13
15
|
export { CreateCloudGtmMonitorTemplateRequestIspCityNodes } from './CreateCloudGtmMonitorTemplateRequest';
|
|
14
16
|
export { DescribeBatchResultDetailResponseBodyBatchResultDetailsBatchResultDetail } from './DescribeBatchResultDetailResponseBody';
|
|
@@ -181,6 +183,7 @@ export { DescribeIspFlushCacheTaskResponseBodyFlushCacheResults } from './Descri
|
|
|
181
183
|
export { DescribeIspFlushCacheTasksResponseBodyIspFlushCacheTasks } from './DescribeIspFlushCacheTasksResponseBody';
|
|
182
184
|
export { DescribePdnsAccountSummaryResponseBodyData } from './DescribePdnsAccountSummaryResponseBody';
|
|
183
185
|
export { DescribePdnsAppKeyResponseBodyAppKey } from './DescribePdnsAppKeyResponseBody';
|
|
186
|
+
export { DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters } from './DescribePdnsAppKeysResponseBody';
|
|
184
187
|
export { DescribePdnsAppKeysResponseBodyAppKeys } from './DescribePdnsAppKeysResponseBody';
|
|
185
188
|
export { DescribePdnsOperateLogsResponseBodyLogs } from './DescribePdnsOperateLogsResponseBody';
|
|
186
189
|
export { DescribePdnsRequestStatisticResponseBodyData } from './DescribePdnsRequestStatisticResponseBody';
|
|
@@ -354,6 +357,9 @@ export { AddRecursionRecordResponse } from './AddRecursionRecordResponse';
|
|
|
354
357
|
export { AddRecursionZoneRequest } from './AddRecursionZoneRequest';
|
|
355
358
|
export { AddRecursionZoneResponseBody } from './AddRecursionZoneResponseBody';
|
|
356
359
|
export { AddRecursionZoneResponse } from './AddRecursionZoneResponse';
|
|
360
|
+
export { AddRspDomainServerHoldStatusForGatewayRequest } from './AddRspDomainServerHoldStatusForGatewayRequest';
|
|
361
|
+
export { AddRspDomainServerHoldStatusForGatewayResponseBody } from './AddRspDomainServerHoldStatusForGatewayResponseBody';
|
|
362
|
+
export { AddRspDomainServerHoldStatusForGatewayResponse } from './AddRspDomainServerHoldStatusForGatewayResponse';
|
|
357
363
|
export { BindInstanceDomainsRequest } from './BindInstanceDomainsRequest';
|
|
358
364
|
export { BindInstanceDomainsResponseBody } from './BindInstanceDomainsResponseBody';
|
|
359
365
|
export { BindInstanceDomainsResponse } from './BindInstanceDomainsResponse';
|