@alicloud/waf-openapi20211001 5.2.0 → 5.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 +45 -0
- package/dist/client.js +180 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateDomainRequest.d.ts +16 -0
- package/dist/models/CreateDomainRequest.js +29 -1
- package/dist/models/CreateDomainRequest.js.map +1 -1
- package/dist/models/DescribeBaseSystemRulesRequest.d.ts +81 -0
- package/dist/models/DescribeBaseSystemRulesRequest.js +82 -0
- package/dist/models/DescribeBaseSystemRulesRequest.js.map +1 -0
- package/dist/models/DescribeBaseSystemRulesResponse.d.ts +19 -0
- package/dist/models/DescribeBaseSystemRulesResponse.js +69 -0
- package/dist/models/DescribeBaseSystemRulesResponse.js.map +1 -0
- package/dist/models/DescribeBaseSystemRulesResponseBody.d.ts +81 -0
- package/dist/models/DescribeBaseSystemRulesResponseBody.js +100 -0
- package/dist/models/DescribeBaseSystemRulesResponseBody.js.map +1 -0
- package/dist/models/DescribeCustomBaseRuleCompileResultRequest.d.ts +31 -0
- package/dist/models/DescribeCustomBaseRuleCompileResultRequest.js +62 -0
- package/dist/models/DescribeCustomBaseRuleCompileResultRequest.js.map +1 -0
- package/dist/models/DescribeCustomBaseRuleCompileResultResponse.d.ts +19 -0
- package/dist/models/DescribeCustomBaseRuleCompileResultResponse.js +69 -0
- package/dist/models/DescribeCustomBaseRuleCompileResultResponse.js.map +1 -0
- package/dist/models/DescribeCustomBaseRuleCompileResultResponseBody.d.ts +23 -0
- package/dist/models/DescribeCustomBaseRuleCompileResultResponseBody.js +60 -0
- package/dist/models/DescribeCustomBaseRuleCompileResultResponseBody.js.map +1 -0
- package/dist/models/DescribeDefenseRuleStatisticsRequest.d.ts +62 -0
- package/dist/models/DescribeDefenseRuleStatisticsRequest.js +72 -0
- package/dist/models/DescribeDefenseRuleStatisticsRequest.js.map +1 -0
- package/dist/models/DescribeDefenseRuleStatisticsResponse.d.ts +19 -0
- package/dist/models/DescribeDefenseRuleStatisticsResponse.js +69 -0
- package/dist/models/DescribeDefenseRuleStatisticsResponse.js.map +1 -0
- package/dist/models/DescribeDefenseRuleStatisticsResponseBody.d.ts +56 -0
- package/dist/models/DescribeDefenseRuleStatisticsResponseBody.js +90 -0
- package/dist/models/DescribeDefenseRuleStatisticsResponseBody.js.map +1 -0
- package/dist/models/DescribeDomainDetailResponseBody.d.ts +16 -0
- package/dist/models/DescribeDomainDetailResponseBody.js +29 -1
- package/dist/models/DescribeDomainDetailResponseBody.js.map +1 -1
- package/dist/models/ModifyDomainRequest.d.ts +16 -0
- package/dist/models/ModifyDomainRequest.js +29 -1
- package/dist/models/ModifyDomainRequest.js.map +1 -1
- package/dist/models/model.d.ts +14 -0
- package/dist/models/model.js +59 -31
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +210 -0
- package/src/models/CreateDomainRequest.ts +35 -0
- package/src/models/DescribeBaseSystemRulesRequest.ts +118 -0
- package/src/models/DescribeBaseSystemRulesResponse.ts +40 -0
- package/src/models/DescribeBaseSystemRulesResponseBody.ts +127 -0
- package/src/models/DescribeCustomBaseRuleCompileResultRequest.ts +48 -0
- package/src/models/DescribeCustomBaseRuleCompileResultResponse.ts +40 -0
- package/src/models/DescribeCustomBaseRuleCompileResultResponseBody.ts +38 -0
- package/src/models/DescribeDefenseRuleStatisticsRequest.ts +89 -0
- package/src/models/DescribeDefenseRuleStatisticsResponse.ts +40 -0
- package/src/models/DescribeDefenseRuleStatisticsResponseBody.ts +92 -0
- package/src/models/DescribeDomainDetailResponseBody.ts +35 -0
- package/src/models/ModifyDomainRequest.ts +35 -0
- package/src/models/model.ts +14 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { DescribeCustomBaseRuleCompileResultResponseBody } from "./DescribeCustomBaseRuleCompileResultResponseBody";
|
|
3
|
+
export declare class DescribeCustomBaseRuleCompileResultResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: DescribeCustomBaseRuleCompileResultResponseBody;
|
|
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.DescribeCustomBaseRuleCompileResultResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const DescribeCustomBaseRuleCompileResultResponseBody_1 = require("./DescribeCustomBaseRuleCompileResultResponseBody");
|
|
40
|
+
class DescribeCustomBaseRuleCompileResultResponse 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: DescribeCustomBaseRuleCompileResultResponseBody_1.DescribeCustomBaseRuleCompileResultResponseBody,
|
|
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.DescribeCustomBaseRuleCompileResultResponse = DescribeCustomBaseRuleCompileResultResponse;
|
|
69
|
+
//# sourceMappingURL=DescribeCustomBaseRuleCompileResultResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeCustomBaseRuleCompileResultResponse.js","sourceRoot":"","sources":["../../src/models/DescribeCustomBaseRuleCompileResultResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,uHAAoH;AAGpH,MAAa,2CAA4C,SAAQ,KAAK,CAAC,KAAK;IAI1E,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,iGAA+C;SACtD,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,kGAiCC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeCustomBaseRuleCompileResultResponseBody extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 58FDF266-3D56-5DE8-91E0-96A26BAB****
|
|
6
|
+
*/
|
|
7
|
+
requestId?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* success
|
|
11
|
+
*/
|
|
12
|
+
result?: string;
|
|
13
|
+
static names(): {
|
|
14
|
+
[key: string]: string;
|
|
15
|
+
};
|
|
16
|
+
static types(): {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
};
|
|
19
|
+
validate(): void;
|
|
20
|
+
constructor(map?: {
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
});
|
|
23
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
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.DescribeCustomBaseRuleCompileResultResponseBody = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeCustomBaseRuleCompileResultResponseBody extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
requestId: 'RequestId',
|
|
43
|
+
result: 'Result',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
static types() {
|
|
47
|
+
return {
|
|
48
|
+
requestId: 'string',
|
|
49
|
+
result: 'string',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
validate() {
|
|
53
|
+
super.validate();
|
|
54
|
+
}
|
|
55
|
+
constructor(map) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.DescribeCustomBaseRuleCompileResultResponseBody = DescribeCustomBaseRuleCompileResultResponseBody;
|
|
60
|
+
//# sourceMappingURL=DescribeCustomBaseRuleCompileResultResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeCustomBaseRuleCompileResultResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeCustomBaseRuleCompileResultResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,+CAAgD,SAAQ,KAAK,CAAC,KAAK;IAW9E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,MAAM,EAAE,QAAQ;SACjB,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;AAhCD,0GAgCC"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeDefenseRuleStatisticsRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* riskLevel
|
|
6
|
+
*/
|
|
7
|
+
fourthKey?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @remarks
|
|
10
|
+
* This parameter is required.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* waf_elasticity-cn-0xldbqt****
|
|
14
|
+
*/
|
|
15
|
+
instanceId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @remarks
|
|
18
|
+
* This parameter is required.
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* scene
|
|
22
|
+
*/
|
|
23
|
+
primaryKey?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @example
|
|
26
|
+
* cn-hangzhou
|
|
27
|
+
*/
|
|
28
|
+
regionId?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @example
|
|
31
|
+
* rg-acfm***q
|
|
32
|
+
*/
|
|
33
|
+
resourceManagerResourceGroupId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @example
|
|
36
|
+
* action
|
|
37
|
+
*/
|
|
38
|
+
secondaryKey?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @remarks
|
|
41
|
+
* This parameter is required.
|
|
42
|
+
*
|
|
43
|
+
* @example
|
|
44
|
+
* 239136
|
|
45
|
+
*/
|
|
46
|
+
templateId?: number;
|
|
47
|
+
/**
|
|
48
|
+
* @example
|
|
49
|
+
* status
|
|
50
|
+
*/
|
|
51
|
+
thirdKey?: string;
|
|
52
|
+
static names(): {
|
|
53
|
+
[key: string]: string;
|
|
54
|
+
};
|
|
55
|
+
static types(): {
|
|
56
|
+
[key: string]: any;
|
|
57
|
+
};
|
|
58
|
+
validate(): void;
|
|
59
|
+
constructor(map?: {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
});
|
|
62
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
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.DescribeDefenseRuleStatisticsRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeDefenseRuleStatisticsRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
fourthKey: 'FourthKey',
|
|
43
|
+
instanceId: 'InstanceId',
|
|
44
|
+
primaryKey: 'PrimaryKey',
|
|
45
|
+
regionId: 'RegionId',
|
|
46
|
+
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
47
|
+
secondaryKey: 'SecondaryKey',
|
|
48
|
+
templateId: 'TemplateId',
|
|
49
|
+
thirdKey: 'ThirdKey',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
static types() {
|
|
53
|
+
return {
|
|
54
|
+
fourthKey: 'string',
|
|
55
|
+
instanceId: 'string',
|
|
56
|
+
primaryKey: 'string',
|
|
57
|
+
regionId: 'string',
|
|
58
|
+
resourceManagerResourceGroupId: 'string',
|
|
59
|
+
secondaryKey: 'string',
|
|
60
|
+
templateId: 'number',
|
|
61
|
+
thirdKey: 'string',
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
validate() {
|
|
65
|
+
super.validate();
|
|
66
|
+
}
|
|
67
|
+
constructor(map) {
|
|
68
|
+
super(map);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
exports.DescribeDefenseRuleStatisticsRequest = DescribeDefenseRuleStatisticsRequest;
|
|
72
|
+
//# sourceMappingURL=DescribeDefenseRuleStatisticsRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeDefenseRuleStatisticsRequest.js","sourceRoot":"","sources":["../../src/models/DescribeDefenseRuleStatisticsRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IAkDnE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,UAAU,EAAE,YAAY;YACxB,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,8BAA8B,EAAE,gCAAgC;YAChE,YAAY,EAAE,cAAc;YAC5B,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,UAAU,EAAE,QAAQ;YACpB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,8BAA8B,EAAE,QAAQ;YACxC,YAAY,EAAE,QAAQ;YACtB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;SACnB,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;AAnFD,oFAmFC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { DescribeDefenseRuleStatisticsResponseBody } from "./DescribeDefenseRuleStatisticsResponseBody";
|
|
3
|
+
export declare class DescribeDefenseRuleStatisticsResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: DescribeDefenseRuleStatisticsResponseBody;
|
|
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.DescribeDefenseRuleStatisticsResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const DescribeDefenseRuleStatisticsResponseBody_1 = require("./DescribeDefenseRuleStatisticsResponseBody");
|
|
40
|
+
class DescribeDefenseRuleStatisticsResponse 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: DescribeDefenseRuleStatisticsResponseBody_1.DescribeDefenseRuleStatisticsResponseBody,
|
|
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.DescribeDefenseRuleStatisticsResponse = DescribeDefenseRuleStatisticsResponse;
|
|
69
|
+
//# sourceMappingURL=DescribeDefenseRuleStatisticsResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeDefenseRuleStatisticsResponse.js","sourceRoot":"","sources":["../../src/models/DescribeDefenseRuleStatisticsResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,2GAAwG;AAGxG,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;IAIpE,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,qFAAyC;SAChD,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,sFAiCC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeDefenseRuleStatisticsResponseBodyStatisticsInfos extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 27
|
|
6
|
+
*/
|
|
7
|
+
count?: number;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* action
|
|
11
|
+
*/
|
|
12
|
+
fourthValue?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* sytem
|
|
16
|
+
*/
|
|
17
|
+
primaryValue?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* block
|
|
21
|
+
*/
|
|
22
|
+
secondaryValue?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* 1
|
|
26
|
+
*/
|
|
27
|
+
thirdValue?: string;
|
|
28
|
+
static names(): {
|
|
29
|
+
[key: string]: string;
|
|
30
|
+
};
|
|
31
|
+
static types(): {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
};
|
|
34
|
+
validate(): void;
|
|
35
|
+
constructor(map?: {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
export declare class DescribeDefenseRuleStatisticsResponseBody extends $dara.Model {
|
|
40
|
+
/**
|
|
41
|
+
* @example
|
|
42
|
+
* D7861F61-5B61-46CE-A47C-6B19160D5EB0
|
|
43
|
+
*/
|
|
44
|
+
requestId?: string;
|
|
45
|
+
statisticsInfos?: DescribeDefenseRuleStatisticsResponseBodyStatisticsInfos[];
|
|
46
|
+
static names(): {
|
|
47
|
+
[key: string]: string;
|
|
48
|
+
};
|
|
49
|
+
static types(): {
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
};
|
|
52
|
+
validate(): void;
|
|
53
|
+
constructor(map?: {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
});
|
|
56
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
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.DescribeDefenseRuleStatisticsResponseBody = exports.DescribeDefenseRuleStatisticsResponseBodyStatisticsInfos = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeDefenseRuleStatisticsResponseBodyStatisticsInfos extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
count: 'Count',
|
|
43
|
+
fourthValue: 'FourthValue',
|
|
44
|
+
primaryValue: 'PrimaryValue',
|
|
45
|
+
secondaryValue: 'SecondaryValue',
|
|
46
|
+
thirdValue: 'ThirdValue',
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
static types() {
|
|
50
|
+
return {
|
|
51
|
+
count: 'number',
|
|
52
|
+
fourthValue: 'string',
|
|
53
|
+
primaryValue: 'string',
|
|
54
|
+
secondaryValue: 'string',
|
|
55
|
+
thirdValue: 'string',
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
validate() {
|
|
59
|
+
super.validate();
|
|
60
|
+
}
|
|
61
|
+
constructor(map) {
|
|
62
|
+
super(map);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.DescribeDefenseRuleStatisticsResponseBodyStatisticsInfos = DescribeDefenseRuleStatisticsResponseBodyStatisticsInfos;
|
|
66
|
+
class DescribeDefenseRuleStatisticsResponseBody extends $dara.Model {
|
|
67
|
+
static names() {
|
|
68
|
+
return {
|
|
69
|
+
requestId: 'RequestId',
|
|
70
|
+
statisticsInfos: 'StatisticsInfos',
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
static types() {
|
|
74
|
+
return {
|
|
75
|
+
requestId: 'string',
|
|
76
|
+
statisticsInfos: { 'type': 'array', 'itemType': DescribeDefenseRuleStatisticsResponseBodyStatisticsInfos },
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
validate() {
|
|
80
|
+
if (Array.isArray(this.statisticsInfos)) {
|
|
81
|
+
$dara.Model.validateArray(this.statisticsInfos);
|
|
82
|
+
}
|
|
83
|
+
super.validate();
|
|
84
|
+
}
|
|
85
|
+
constructor(map) {
|
|
86
|
+
super(map);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.DescribeDefenseRuleStatisticsResponseBody = DescribeDefenseRuleStatisticsResponseBody;
|
|
90
|
+
//# sourceMappingURL=DescribeDefenseRuleStatisticsResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeDefenseRuleStatisticsResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeDefenseRuleStatisticsResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wDAAyD,SAAQ,KAAK,CAAC,KAAK;IA0BvF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,WAAW,EAAE,aAAa;YAC1B,YAAY,EAAE,cAAc;YAC5B,cAAc,EAAE,gBAAgB;YAChC,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,QAAQ;YACf,WAAW,EAAE,QAAQ;YACrB,YAAY,EAAE,QAAQ;YACtB,cAAc,EAAE,QAAQ;YACxB,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;AArDD,4HAqDC;AAED,MAAa,yCAA0C,SAAQ,KAAK,CAAC,KAAK;IAOxE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,eAAe,EAAE,iBAAiB;SACnC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,eAAe,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,wDAAwD,EAAE;SAC3G,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE,CAAC;YACvC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QAClD,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA/BD,8FA+BC"}
|
|
@@ -228,6 +228,21 @@ export declare class DescribeDomainDetailResponseBodyListen extends $dara.Model
|
|
|
228
228
|
[key: string]: any;
|
|
229
229
|
});
|
|
230
230
|
}
|
|
231
|
+
export declare class DescribeDomainDetailResponseBodyRedirectBackendPorts extends $dara.Model {
|
|
232
|
+
backendPort?: number;
|
|
233
|
+
listenPort?: number;
|
|
234
|
+
protocol?: string;
|
|
235
|
+
static names(): {
|
|
236
|
+
[key: string]: string;
|
|
237
|
+
};
|
|
238
|
+
static types(): {
|
|
239
|
+
[key: string]: any;
|
|
240
|
+
};
|
|
241
|
+
validate(): void;
|
|
242
|
+
constructor(map?: {
|
|
243
|
+
[key: string]: any;
|
|
244
|
+
});
|
|
245
|
+
}
|
|
231
246
|
export declare class DescribeDomainDetailResponseBodyRedirectBackends extends $dara.Model {
|
|
232
247
|
/**
|
|
233
248
|
* @remarks
|
|
@@ -302,6 +317,7 @@ export declare class DescribeDomainDetailResponseBodyRedirectRequestHeaders exte
|
|
|
302
317
|
export declare class DescribeDomainDetailResponseBodyRedirect extends $dara.Model {
|
|
303
318
|
backUpBackendList?: string[];
|
|
304
319
|
backendList?: string[];
|
|
320
|
+
backendPorts?: DescribeDomainDetailResponseBodyRedirectBackendPorts[];
|
|
305
321
|
/**
|
|
306
322
|
* @remarks
|
|
307
323
|
* An array of addresses of origin servers.
|
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.DescribeDomainDetailResponseBody = exports.DescribeDomainDetailResponseBodySM2CertDetail = exports.DescribeDomainDetailResponseBodyRedirect = exports.DescribeDomainDetailResponseBodyRedirectRequestHeaders = exports.DescribeDomainDetailResponseBodyRedirectBackupBackends = exports.DescribeDomainDetailResponseBodyRedirectBackends = exports.DescribeDomainDetailResponseBodyListen = exports.DescribeDomainDetailResponseBodyCertDetail = void 0;
|
|
36
|
+
exports.DescribeDomainDetailResponseBody = exports.DescribeDomainDetailResponseBodySM2CertDetail = exports.DescribeDomainDetailResponseBodyRedirect = exports.DescribeDomainDetailResponseBodyRedirectRequestHeaders = exports.DescribeDomainDetailResponseBodyRedirectBackupBackends = exports.DescribeDomainDetailResponseBodyRedirectBackends = exports.DescribeDomainDetailResponseBodyRedirectBackendPorts = exports.DescribeDomainDetailResponseBodyListen = exports.DescribeDomainDetailResponseBodyCertDetail = void 0;
|
|
37
37
|
// This file is auto-generated, don't edit it
|
|
38
38
|
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
39
|
class DescribeDomainDetailResponseBodyCertDetail extends $dara.Model {
|
|
@@ -131,6 +131,29 @@ class DescribeDomainDetailResponseBodyListen extends $dara.Model {
|
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
exports.DescribeDomainDetailResponseBodyListen = DescribeDomainDetailResponseBodyListen;
|
|
134
|
+
class DescribeDomainDetailResponseBodyRedirectBackendPorts extends $dara.Model {
|
|
135
|
+
static names() {
|
|
136
|
+
return {
|
|
137
|
+
backendPort: 'BackendPort',
|
|
138
|
+
listenPort: 'ListenPort',
|
|
139
|
+
protocol: 'Protocol',
|
|
140
|
+
};
|
|
141
|
+
}
|
|
142
|
+
static types() {
|
|
143
|
+
return {
|
|
144
|
+
backendPort: 'number',
|
|
145
|
+
listenPort: 'number',
|
|
146
|
+
protocol: 'string',
|
|
147
|
+
};
|
|
148
|
+
}
|
|
149
|
+
validate() {
|
|
150
|
+
super.validate();
|
|
151
|
+
}
|
|
152
|
+
constructor(map) {
|
|
153
|
+
super(map);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
exports.DescribeDomainDetailResponseBodyRedirectBackendPorts = DescribeDomainDetailResponseBodyRedirectBackendPorts;
|
|
134
157
|
class DescribeDomainDetailResponseBodyRedirectBackends extends $dara.Model {
|
|
135
158
|
static names() {
|
|
136
159
|
return {
|
|
@@ -195,6 +218,7 @@ class DescribeDomainDetailResponseBodyRedirect extends $dara.Model {
|
|
|
195
218
|
return {
|
|
196
219
|
backUpBackendList: 'BackUpBackendList',
|
|
197
220
|
backendList: 'BackendList',
|
|
221
|
+
backendPorts: 'BackendPorts',
|
|
198
222
|
backends: 'Backends',
|
|
199
223
|
backupBackends: 'BackupBackends',
|
|
200
224
|
connectTimeout: 'ConnectTimeout',
|
|
@@ -216,6 +240,7 @@ class DescribeDomainDetailResponseBodyRedirect extends $dara.Model {
|
|
|
216
240
|
return {
|
|
217
241
|
backUpBackendList: { 'type': 'array', 'itemType': 'string' },
|
|
218
242
|
backendList: { 'type': 'array', 'itemType': 'string' },
|
|
243
|
+
backendPorts: { 'type': 'array', 'itemType': DescribeDomainDetailResponseBodyRedirectBackendPorts },
|
|
219
244
|
backends: { 'type': 'array', 'itemType': DescribeDomainDetailResponseBodyRedirectBackends },
|
|
220
245
|
backupBackends: { 'type': 'array', 'itemType': DescribeDomainDetailResponseBodyRedirectBackupBackends },
|
|
221
246
|
connectTimeout: 'number',
|
|
@@ -240,6 +265,9 @@ class DescribeDomainDetailResponseBodyRedirect extends $dara.Model {
|
|
|
240
265
|
if (Array.isArray(this.backendList)) {
|
|
241
266
|
$dara.Model.validateArray(this.backendList);
|
|
242
267
|
}
|
|
268
|
+
if (Array.isArray(this.backendPorts)) {
|
|
269
|
+
$dara.Model.validateArray(this.backendPorts);
|
|
270
|
+
}
|
|
243
271
|
if (Array.isArray(this.backends)) {
|
|
244
272
|
$dara.Model.validateArray(this.backends);
|
|
245
273
|
}
|