@alicloud/alidns20150109 4.0.0 → 4.1.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 +23 -0
- package/dist/client.js +53 -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/DescribePdnsAppKeysResponseBody.d.ts +16 -0
- package/dist/models/DescribePdnsAppKeysResponseBody.js +29 -1
- package/dist/models/DescribePdnsAppKeysResponseBody.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 +58 -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/DescribePdnsAppKeysResponseBody.ts +35 -0
- package/src/models/model.ts +6 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class AddRspDomainServerHoldStatusForGatewayRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* This parameter is required.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* token123
|
|
9
|
+
*/
|
|
10
|
+
clientToken?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @remarks
|
|
13
|
+
* This parameter is required.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* dns-example.top
|
|
17
|
+
*/
|
|
18
|
+
domainName?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @remarks
|
|
21
|
+
* This parameter is required.
|
|
22
|
+
*/
|
|
23
|
+
statusMsg?: string;
|
|
24
|
+
static names(): {
|
|
25
|
+
[key: string]: string;
|
|
26
|
+
};
|
|
27
|
+
static types(): {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
};
|
|
30
|
+
validate(): void;
|
|
31
|
+
constructor(map?: {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
});
|
|
34
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.AddRspDomainServerHoldStatusForGatewayRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class AddRspDomainServerHoldStatusForGatewayRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
clientToken: 'ClientToken',
|
|
43
|
+
domainName: 'DomainName',
|
|
44
|
+
statusMsg: 'StatusMsg',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static types() {
|
|
48
|
+
return {
|
|
49
|
+
clientToken: 'string',
|
|
50
|
+
domainName: 'string',
|
|
51
|
+
statusMsg: 'string',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
validate() {
|
|
55
|
+
super.validate();
|
|
56
|
+
}
|
|
57
|
+
constructor(map) {
|
|
58
|
+
super(map);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.AddRspDomainServerHoldStatusForGatewayRequest = AddRspDomainServerHoldStatusForGatewayRequest;
|
|
62
|
+
//# sourceMappingURL=AddRspDomainServerHoldStatusForGatewayRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AddRspDomainServerHoldStatusForGatewayRequest.js","sourceRoot":"","sources":["../../src/models/AddRspDomainServerHoldStatusForGatewayRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,6CAA8C,SAAQ,KAAK,CAAC,KAAK;IAsB5E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA7CD,sGA6CC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { AddRspDomainServerHoldStatusForGatewayResponseBody } from "./AddRspDomainServerHoldStatusForGatewayResponseBody";
|
|
3
|
+
export declare class AddRspDomainServerHoldStatusForGatewayResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: AddRspDomainServerHoldStatusForGatewayResponseBody;
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.AddRspDomainServerHoldStatusForGatewayResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const AddRspDomainServerHoldStatusForGatewayResponseBody_1 = require("./AddRspDomainServerHoldStatusForGatewayResponseBody");
|
|
40
|
+
class AddRspDomainServerHoldStatusForGatewayResponse extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
headers: 'headers',
|
|
44
|
+
statusCode: 'statusCode',
|
|
45
|
+
body: 'body',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
51
|
+
statusCode: 'number',
|
|
52
|
+
body: AddRspDomainServerHoldStatusForGatewayResponseBody_1.AddRspDomainServerHoldStatusForGatewayResponseBody,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
validate() {
|
|
56
|
+
if (this.headers) {
|
|
57
|
+
$dara.Model.validateMap(this.headers);
|
|
58
|
+
}
|
|
59
|
+
if (this.body && typeof this.body.validate === 'function') {
|
|
60
|
+
this.body.validate();
|
|
61
|
+
}
|
|
62
|
+
super.validate();
|
|
63
|
+
}
|
|
64
|
+
constructor(map) {
|
|
65
|
+
super(map);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.AddRspDomainServerHoldStatusForGatewayResponse = AddRspDomainServerHoldStatusForGatewayResponse;
|
|
69
|
+
//# sourceMappingURL=AddRspDomainServerHoldStatusForGatewayResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AddRspDomainServerHoldStatusForGatewayResponse.js","sourceRoot":"","sources":["../../src/models/AddRspDomainServerHoldStatusForGatewayResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,6HAA0H;AAG1H,MAAa,8CAA+C,SAAQ,KAAK,CAAC,KAAK;IAI7E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,uGAAkD;SACzD,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,wGAiCC"}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class AddRspDomainServerHoldStatusForGatewayResponseBodyAccessDeniedDetail extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* CreateUser
|
|
6
|
+
*/
|
|
7
|
+
authAction?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 2015555733387XXXX
|
|
11
|
+
*/
|
|
12
|
+
authPrincipalDisplayName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* 1046973331XXXX
|
|
16
|
+
*/
|
|
17
|
+
authPrincipalOwnerId?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* SubUser
|
|
21
|
+
*/
|
|
22
|
+
authPrincipalType?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* AQEAAAAAaNIARXXXXUQwNjE0LUQzN0XXXXVEQy1BQzExLTMzXXXXNTkxRjk1Ng==
|
|
26
|
+
*/
|
|
27
|
+
encodedDiagnosticMessage?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* ImplicitDeny
|
|
31
|
+
*/
|
|
32
|
+
noPermissionType?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @example
|
|
35
|
+
* DlpSend
|
|
36
|
+
*/
|
|
37
|
+
policyType?: string;
|
|
38
|
+
static names(): {
|
|
39
|
+
[key: string]: string;
|
|
40
|
+
};
|
|
41
|
+
static types(): {
|
|
42
|
+
[key: string]: any;
|
|
43
|
+
};
|
|
44
|
+
validate(): void;
|
|
45
|
+
constructor(map?: {
|
|
46
|
+
[key: string]: any;
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
export declare class AddRspDomainServerHoldStatusForGatewayResponseBodyData extends $dara.Model {
|
|
50
|
+
/**
|
|
51
|
+
* @example
|
|
52
|
+
* example.com
|
|
53
|
+
*/
|
|
54
|
+
domainName?: string;
|
|
55
|
+
static names(): {
|
|
56
|
+
[key: string]: string;
|
|
57
|
+
};
|
|
58
|
+
static types(): {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
};
|
|
61
|
+
validate(): void;
|
|
62
|
+
constructor(map?: {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
export declare class AddRspDomainServerHoldStatusForGatewayResponseBody extends $dara.Model {
|
|
67
|
+
accessDeniedDetail?: AddRspDomainServerHoldStatusForGatewayResponseBodyAccessDeniedDetail;
|
|
68
|
+
data?: AddRspDomainServerHoldStatusForGatewayResponseBodyData;
|
|
69
|
+
/**
|
|
70
|
+
* @example
|
|
71
|
+
* true
|
|
72
|
+
*/
|
|
73
|
+
recoverableError?: boolean;
|
|
74
|
+
/**
|
|
75
|
+
* @example
|
|
76
|
+
* 0629502C-XXXX-5DC9-XXXX-2ED73A2E3931
|
|
77
|
+
*/
|
|
78
|
+
requestId?: string;
|
|
79
|
+
/**
|
|
80
|
+
* @example
|
|
81
|
+
* true
|
|
82
|
+
*/
|
|
83
|
+
success?: boolean;
|
|
84
|
+
static names(): {
|
|
85
|
+
[key: string]: string;
|
|
86
|
+
};
|
|
87
|
+
static types(): {
|
|
88
|
+
[key: string]: any;
|
|
89
|
+
};
|
|
90
|
+
validate(): void;
|
|
91
|
+
constructor(map?: {
|
|
92
|
+
[key: string]: any;
|
|
93
|
+
});
|
|
94
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.AddRspDomainServerHoldStatusForGatewayResponseBody = exports.AddRspDomainServerHoldStatusForGatewayResponseBodyData = exports.AddRspDomainServerHoldStatusForGatewayResponseBodyAccessDeniedDetail = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class AddRspDomainServerHoldStatusForGatewayResponseBodyAccessDeniedDetail extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
authAction: 'AuthAction',
|
|
43
|
+
authPrincipalDisplayName: 'AuthPrincipalDisplayName',
|
|
44
|
+
authPrincipalOwnerId: 'AuthPrincipalOwnerId',
|
|
45
|
+
authPrincipalType: 'AuthPrincipalType',
|
|
46
|
+
encodedDiagnosticMessage: 'EncodedDiagnosticMessage',
|
|
47
|
+
noPermissionType: 'NoPermissionType',
|
|
48
|
+
policyType: 'PolicyType',
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
static types() {
|
|
52
|
+
return {
|
|
53
|
+
authAction: 'string',
|
|
54
|
+
authPrincipalDisplayName: 'string',
|
|
55
|
+
authPrincipalOwnerId: 'string',
|
|
56
|
+
authPrincipalType: 'string',
|
|
57
|
+
encodedDiagnosticMessage: 'string',
|
|
58
|
+
noPermissionType: 'string',
|
|
59
|
+
policyType: 'string',
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
validate() {
|
|
63
|
+
super.validate();
|
|
64
|
+
}
|
|
65
|
+
constructor(map) {
|
|
66
|
+
super(map);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.AddRspDomainServerHoldStatusForGatewayResponseBodyAccessDeniedDetail = AddRspDomainServerHoldStatusForGatewayResponseBodyAccessDeniedDetail;
|
|
70
|
+
class AddRspDomainServerHoldStatusForGatewayResponseBodyData extends $dara.Model {
|
|
71
|
+
static names() {
|
|
72
|
+
return {
|
|
73
|
+
domainName: 'DomainName',
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
static types() {
|
|
77
|
+
return {
|
|
78
|
+
domainName: 'string',
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
validate() {
|
|
82
|
+
super.validate();
|
|
83
|
+
}
|
|
84
|
+
constructor(map) {
|
|
85
|
+
super(map);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.AddRspDomainServerHoldStatusForGatewayResponseBodyData = AddRspDomainServerHoldStatusForGatewayResponseBodyData;
|
|
89
|
+
class AddRspDomainServerHoldStatusForGatewayResponseBody extends $dara.Model {
|
|
90
|
+
static names() {
|
|
91
|
+
return {
|
|
92
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
93
|
+
data: 'Data',
|
|
94
|
+
recoverableError: 'RecoverableError',
|
|
95
|
+
requestId: 'RequestId',
|
|
96
|
+
success: 'Success',
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
static types() {
|
|
100
|
+
return {
|
|
101
|
+
accessDeniedDetail: AddRspDomainServerHoldStatusForGatewayResponseBodyAccessDeniedDetail,
|
|
102
|
+
data: AddRspDomainServerHoldStatusForGatewayResponseBodyData,
|
|
103
|
+
recoverableError: 'boolean',
|
|
104
|
+
requestId: 'string',
|
|
105
|
+
success: 'boolean',
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
validate() {
|
|
109
|
+
if (this.accessDeniedDetail && typeof this.accessDeniedDetail.validate === 'function') {
|
|
110
|
+
this.accessDeniedDetail.validate();
|
|
111
|
+
}
|
|
112
|
+
if (this.data && typeof this.data.validate === 'function') {
|
|
113
|
+
this.data.validate();
|
|
114
|
+
}
|
|
115
|
+
super.validate();
|
|
116
|
+
}
|
|
117
|
+
constructor(map) {
|
|
118
|
+
super(map);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
exports.AddRspDomainServerHoldStatusForGatewayResponseBody = AddRspDomainServerHoldStatusForGatewayResponseBody;
|
|
122
|
+
//# sourceMappingURL=AddRspDomainServerHoldStatusForGatewayResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AddRspDomainServerHoldStatusForGatewayResponseBody.js","sourceRoot":"","sources":["../../src/models/AddRspDomainServerHoldStatusForGatewayResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oEAAqE,SAAQ,KAAK,CAAC,KAAK;IAoCnG,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,wBAAwB,EAAE,0BAA0B;YACpD,oBAAoB,EAAE,sBAAsB;YAC5C,iBAAiB,EAAE,mBAAmB;YACtC,wBAAwB,EAAE,0BAA0B;YACpD,gBAAgB,EAAE,kBAAkB;YACpC,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;YACpB,wBAAwB,EAAE,QAAQ;YAClC,oBAAoB,EAAE,QAAQ;YAC9B,iBAAiB,EAAE,QAAQ;YAC3B,wBAAwB,EAAE,QAAQ;YAClC,gBAAgB,EAAE,QAAQ;YAC1B,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAnED,oJAmEC;AAED,MAAa,sDAAuD,SAAQ,KAAK,CAAC,KAAK;IAMrF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;SACrB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAzBD,wHAyBC;AAED,MAAa,kDAAmD,SAAQ,KAAK,CAAC,KAAK;IAkBjF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,oBAAoB;YACxC,IAAI,EAAE,MAAM;YACZ,gBAAgB,EAAE,kBAAkB;YACpC,SAAS,EAAE,WAAW;YACtB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,oEAAoE;YACxF,IAAI,EAAE,sDAAsD;YAC5D,gBAAgB,EAAE,SAAS;YAC3B,SAAS,EAAE,QAAQ;YACnB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,kBAAkB,IAAI,OAAQ,IAAI,CAAC,kBAA0B,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YAC7F,IAAI,CAAC,kBAA0B,CAAC,QAAQ,EAAE,CAAC;QAC9C,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAnDD,gHAmDC"}
|
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters extends $dara.Model {
|
|
3
|
+
clusterId?: string;
|
|
4
|
+
clusterName?: string;
|
|
5
|
+
clusterUserId?: string;
|
|
6
|
+
static names(): {
|
|
7
|
+
[key: string]: string;
|
|
8
|
+
};
|
|
9
|
+
static types(): {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
};
|
|
12
|
+
validate(): void;
|
|
13
|
+
constructor(map?: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
2
17
|
export declare class DescribePdnsAppKeysResponseBodyAppKeys extends $dara.Model {
|
|
3
18
|
appKeyId?: string;
|
|
19
|
+
bindEdgeDnsClusters?: DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters[];
|
|
4
20
|
createDate?: string;
|
|
5
21
|
createTimestamp?: number;
|
|
6
22
|
remark?: string;
|
|
@@ -33,13 +33,37 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.DescribePdnsAppKeysResponseBody = exports.DescribePdnsAppKeysResponseBodyAppKeys = void 0;
|
|
36
|
+
exports.DescribePdnsAppKeysResponseBody = exports.DescribePdnsAppKeysResponseBodyAppKeys = exports.DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters = void 0;
|
|
37
37
|
// This file is auto-generated, don't edit it
|
|
38
38
|
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
clusterId: 'ClusterId',
|
|
43
|
+
clusterName: 'ClusterName',
|
|
44
|
+
clusterUserId: 'ClusterUserId',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static types() {
|
|
48
|
+
return {
|
|
49
|
+
clusterId: 'string',
|
|
50
|
+
clusterName: 'string',
|
|
51
|
+
clusterUserId: 'string',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
validate() {
|
|
55
|
+
super.validate();
|
|
56
|
+
}
|
|
57
|
+
constructor(map) {
|
|
58
|
+
super(map);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters = DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters;
|
|
39
62
|
class DescribePdnsAppKeysResponseBodyAppKeys extends $dara.Model {
|
|
40
63
|
static names() {
|
|
41
64
|
return {
|
|
42
65
|
appKeyId: 'AppKeyId',
|
|
66
|
+
bindEdgeDnsClusters: 'BindEdgeDnsClusters',
|
|
43
67
|
createDate: 'CreateDate',
|
|
44
68
|
createTimestamp: 'CreateTimestamp',
|
|
45
69
|
remark: 'Remark',
|
|
@@ -49,6 +73,7 @@ class DescribePdnsAppKeysResponseBodyAppKeys extends $dara.Model {
|
|
|
49
73
|
static types() {
|
|
50
74
|
return {
|
|
51
75
|
appKeyId: 'string',
|
|
76
|
+
bindEdgeDnsClusters: { 'type': 'array', 'itemType': DescribePdnsAppKeysResponseBodyAppKeysBindEdgeDnsClusters },
|
|
52
77
|
createDate: 'string',
|
|
53
78
|
createTimestamp: 'number',
|
|
54
79
|
remark: 'string',
|
|
@@ -56,6 +81,9 @@ class DescribePdnsAppKeysResponseBodyAppKeys extends $dara.Model {
|
|
|
56
81
|
};
|
|
57
82
|
}
|
|
58
83
|
validate() {
|
|
84
|
+
if (Array.isArray(this.bindEdgeDnsClusters)) {
|
|
85
|
+
$dara.Model.validateArray(this.bindEdgeDnsClusters);
|
|
86
|
+
}
|
|
59
87
|
super.validate();
|
|
60
88
|
}
|
|
61
89
|
constructor(map) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DescribePdnsAppKeysResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribePdnsAppKeysResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,sCAAuC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"DescribePdnsAppKeysResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribePdnsAppKeysResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,yDAA0D,SAAQ,KAAK,CAAC,KAAK;IAIxF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,WAAW,EAAE,aAAa;YAC1B,aAAa,EAAE,eAAe;SAC/B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,WAAW,EAAE,QAAQ;YACrB,aAAa,EAAE,QAAQ;SACxB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA3BD,8HA2BC;AAED,MAAa,sCAAuC,SAAQ,KAAK,CAAC,KAAK;IAOrE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,UAAU;YACpB,mBAAmB,EAAE,qBAAqB;YAC1C,UAAU,EAAE,YAAY;YACxB,eAAe,EAAE,iBAAiB;YAClC,MAAM,EAAE,QAAQ;YAChB,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,QAAQ;YAClB,mBAAmB,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,yDAAyD,EAAE;YAC/G,UAAU,EAAE,QAAQ;YACpB,eAAe,EAAE,QAAQ;YACzB,MAAM,EAAE,QAAQ;YAChB,KAAK,EAAE,QAAQ;SAChB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,mBAAmB,CAAC,EAAE,CAAC;YAC3C,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;QACtD,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvCD,wFAuCC;AAED,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;IAG9D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,sCAAsC,EAAE;YAChF,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YAC/B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA3BD,0EA2BC"}
|
package/dist/models/model.d.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';
|