@alicloud/esa20240910 2.31.0 → 2.32.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 +75 -0
- package/dist/client.js +235 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateRecordRequest.d.ts +2 -0
- package/dist/models/CreateRecordRequest.js.map +1 -1
- package/dist/models/CreateRecordShrinkRequest.d.ts +2 -0
- package/dist/models/CreateRecordShrinkRequest.js.map +1 -1
- package/dist/models/CreateTransportLayerApplicationRequest.d.ts +98 -0
- package/dist/models/CreateTransportLayerApplicationRequest.js +102 -0
- package/dist/models/CreateTransportLayerApplicationRequest.js.map +1 -0
- package/dist/models/CreateTransportLayerApplicationResponse.d.ts +19 -0
- package/dist/models/CreateTransportLayerApplicationResponse.js +69 -0
- package/dist/models/CreateTransportLayerApplicationResponse.js.map +1 -0
- package/dist/models/CreateTransportLayerApplicationResponseBody.d.ts +23 -0
- package/dist/models/CreateTransportLayerApplicationResponseBody.js +60 -0
- package/dist/models/CreateTransportLayerApplicationResponseBody.js.map +1 -0
- package/dist/models/CreateTransportLayerApplicationShrinkRequest.d.ts +37 -0
- package/dist/models/CreateTransportLayerApplicationShrinkRequest.js +68 -0
- package/dist/models/CreateTransportLayerApplicationShrinkRequest.js.map +1 -0
- package/dist/models/DeleteRecordRequest.d.ts +1 -0
- package/dist/models/DeleteRecordRequest.js +2 -0
- package/dist/models/DeleteRecordRequest.js.map +1 -1
- package/dist/models/DeleteTransportLayerApplicationRequest.d.ts +29 -0
- package/dist/models/DeleteTransportLayerApplicationRequest.js +60 -0
- package/dist/models/DeleteTransportLayerApplicationRequest.js.map +1 -0
- package/dist/models/DeleteTransportLayerApplicationResponse.d.ts +19 -0
- package/dist/models/DeleteTransportLayerApplicationResponse.js +69 -0
- package/dist/models/DeleteTransportLayerApplicationResponse.js.map +1 -0
- package/dist/models/DeleteTransportLayerApplicationResponseBody.d.ts +18 -0
- package/dist/models/DeleteTransportLayerApplicationResponseBody.js +58 -0
- package/dist/models/DeleteTransportLayerApplicationResponseBody.js.map +1 -0
- package/dist/models/GetTransportLayerApplicationRequest.d.ts +29 -0
- package/dist/models/GetTransportLayerApplicationRequest.js +60 -0
- package/dist/models/GetTransportLayerApplicationRequest.js.map +1 -0
- package/dist/models/GetTransportLayerApplicationResponse.d.ts +19 -0
- package/dist/models/GetTransportLayerApplicationResponse.js +69 -0
- package/dist/models/GetTransportLayerApplicationResponse.js.map +1 -0
- package/dist/models/GetTransportLayerApplicationResponseBody.d.ts +99 -0
- package/dist/models/GetTransportLayerApplicationResponseBody.js +114 -0
- package/dist/models/GetTransportLayerApplicationResponseBody.js.map +1 -0
- package/dist/models/ListTransportLayerApplicationsRequest.d.ts +41 -0
- package/dist/models/ListTransportLayerApplicationsRequest.js +66 -0
- package/dist/models/ListTransportLayerApplicationsRequest.js.map +1 -0
- package/dist/models/ListTransportLayerApplicationsResponse.d.ts +19 -0
- package/dist/models/ListTransportLayerApplicationsResponse.js +69 -0
- package/dist/models/ListTransportLayerApplicationsResponse.js.map +1 -0
- package/dist/models/ListTransportLayerApplicationsResponseBody.d.ts +124 -0
- package/dist/models/ListTransportLayerApplicationsResponseBody.js +142 -0
- package/dist/models/ListTransportLayerApplicationsResponseBody.js.map +1 -0
- package/dist/models/UpdateTransportLayerApplicationRequest.d.ts +80 -0
- package/dist/models/UpdateTransportLayerApplicationRequest.js +102 -0
- package/dist/models/UpdateTransportLayerApplicationRequest.js.map +1 -0
- package/dist/models/UpdateTransportLayerApplicationResponse.d.ts +19 -0
- package/dist/models/UpdateTransportLayerApplicationResponse.js +69 -0
- package/dist/models/UpdateTransportLayerApplicationResponse.js.map +1 -0
- package/dist/models/UpdateTransportLayerApplicationResponseBody.d.ts +18 -0
- package/dist/models/UpdateTransportLayerApplicationResponseBody.js +58 -0
- package/dist/models/UpdateTransportLayerApplicationResponseBody.js.map +1 -0
- package/dist/models/UpdateTransportLayerApplicationShrinkRequest.d.ts +33 -0
- package/dist/models/UpdateTransportLayerApplicationShrinkRequest.js +68 -0
- package/dist/models/UpdateTransportLayerApplicationShrinkRequest.js.map +1 -0
- package/dist/models/model.d.ts +22 -0
- package/dist/models/model.js +72 -27
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +262 -0
- package/src/models/CreateRecordRequest.ts +2 -0
- package/src/models/CreateRecordShrinkRequest.ts +2 -0
- package/src/models/CreateTransportLayerApplicationRequest.ts +146 -0
- package/src/models/CreateTransportLayerApplicationResponse.ts +40 -0
- package/src/models/CreateTransportLayerApplicationResponseBody.ts +38 -0
- package/src/models/CreateTransportLayerApplicationShrinkRequest.ts +60 -0
- package/src/models/DeleteRecordRequest.ts +3 -0
- package/src/models/DeleteTransportLayerApplicationRequest.ts +44 -0
- package/src/models/DeleteTransportLayerApplicationResponse.ts +40 -0
- package/src/models/DeleteTransportLayerApplicationResponseBody.ts +31 -0
- package/src/models/GetTransportLayerApplicationRequest.ts +44 -0
- package/src/models/GetTransportLayerApplicationResponse.ts +40 -0
- package/src/models/GetTransportLayerApplicationResponseBody.ts +159 -0
- package/src/models/ListTransportLayerApplicationsRequest.ts +62 -0
- package/src/models/ListTransportLayerApplicationsResponse.ts +40 -0
- package/src/models/ListTransportLayerApplicationsResponseBody.ts +203 -0
- package/src/models/UpdateTransportLayerApplicationRequest.ts +128 -0
- package/src/models/UpdateTransportLayerApplicationResponse.ts +40 -0
- package/src/models/UpdateTransportLayerApplicationResponseBody.ts +31 -0
- package/src/models/UpdateTransportLayerApplicationShrinkRequest.ts +56 -0
- package/src/models/model.ts +22 -0
|
@@ -0,0 +1,66 @@
|
|
|
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.ListTransportLayerApplicationsRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class ListTransportLayerApplicationsRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
matchType: 'MatchType',
|
|
43
|
+
pageNumber: 'PageNumber',
|
|
44
|
+
pageSize: 'PageSize',
|
|
45
|
+
recordName: 'RecordName',
|
|
46
|
+
siteId: 'SiteId',
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
static types() {
|
|
50
|
+
return {
|
|
51
|
+
matchType: 'string',
|
|
52
|
+
pageNumber: 'number',
|
|
53
|
+
pageSize: 'number',
|
|
54
|
+
recordName: 'string',
|
|
55
|
+
siteId: 'number',
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
validate() {
|
|
59
|
+
super.validate();
|
|
60
|
+
}
|
|
61
|
+
constructor(map) {
|
|
62
|
+
super(map);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.ListTransportLayerApplicationsRequest = ListTransportLayerApplicationsRequest;
|
|
66
|
+
//# sourceMappingURL=ListTransportLayerApplicationsRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListTransportLayerApplicationsRequest.js","sourceRoot":"","sources":["../../src/models/ListTransportLayerApplicationsRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;IA6BpE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,UAAU,EAAE,YAAY;YACxB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,UAAU,EAAE,QAAQ;YACpB,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;AAxDD,sFAwDC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { ListTransportLayerApplicationsResponseBody } from "./ListTransportLayerApplicationsResponseBody";
|
|
3
|
+
export declare class ListTransportLayerApplicationsResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: ListTransportLayerApplicationsResponseBody;
|
|
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.ListTransportLayerApplicationsResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const ListTransportLayerApplicationsResponseBody_1 = require("./ListTransportLayerApplicationsResponseBody");
|
|
40
|
+
class ListTransportLayerApplicationsResponse 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: ListTransportLayerApplicationsResponseBody_1.ListTransportLayerApplicationsResponseBody,
|
|
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.ListTransportLayerApplicationsResponse = ListTransportLayerApplicationsResponse;
|
|
69
|
+
//# sourceMappingURL=ListTransportLayerApplicationsResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListTransportLayerApplicationsResponse.js","sourceRoot":"","sources":["../../src/models/ListTransportLayerApplicationsResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,6GAA0G;AAG1G,MAAa,sCAAuC,SAAQ,KAAK,CAAC,KAAK;IAIrE,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,uFAA0C;SACjD,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,wFAiCC"}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class ListTransportLayerApplicationsResponseBodyApplicationsRules extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* off
|
|
6
|
+
*/
|
|
7
|
+
clientIPPassThroughMode?: string;
|
|
8
|
+
comment?: string;
|
|
9
|
+
/**
|
|
10
|
+
* @example
|
|
11
|
+
* 80
|
|
12
|
+
*/
|
|
13
|
+
edgePort?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @example
|
|
16
|
+
* TCP
|
|
17
|
+
*/
|
|
18
|
+
protocol?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @example
|
|
21
|
+
* 20258028****
|
|
22
|
+
*/
|
|
23
|
+
ruleId?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @example
|
|
26
|
+
* 1.1.1.1
|
|
27
|
+
*/
|
|
28
|
+
source?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @example
|
|
31
|
+
* 80
|
|
32
|
+
*/
|
|
33
|
+
sourcePort?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @example
|
|
36
|
+
* ip
|
|
37
|
+
*/
|
|
38
|
+
sourceType?: string;
|
|
39
|
+
static names(): {
|
|
40
|
+
[key: string]: string;
|
|
41
|
+
};
|
|
42
|
+
static types(): {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
};
|
|
45
|
+
validate(): void;
|
|
46
|
+
constructor(map?: {
|
|
47
|
+
[key: string]: any;
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
export declare class ListTransportLayerApplicationsResponseBodyApplications extends $dara.Model {
|
|
51
|
+
/**
|
|
52
|
+
* @example
|
|
53
|
+
* 170997271816****
|
|
54
|
+
*/
|
|
55
|
+
applicationId?: number;
|
|
56
|
+
/**
|
|
57
|
+
* @example
|
|
58
|
+
* example.com.ialicdn.com
|
|
59
|
+
*/
|
|
60
|
+
cname?: string;
|
|
61
|
+
crossBorderOptimization?: string;
|
|
62
|
+
ipAccessRule?: string;
|
|
63
|
+
ipv6?: string;
|
|
64
|
+
/**
|
|
65
|
+
* @example
|
|
66
|
+
* test.example.com
|
|
67
|
+
*/
|
|
68
|
+
recordName?: string;
|
|
69
|
+
rules?: ListTransportLayerApplicationsResponseBodyApplicationsRules[];
|
|
70
|
+
/**
|
|
71
|
+
* @example
|
|
72
|
+
* 1
|
|
73
|
+
*/
|
|
74
|
+
rulesCount?: number;
|
|
75
|
+
/**
|
|
76
|
+
* @example
|
|
77
|
+
* 36556540048****
|
|
78
|
+
*/
|
|
79
|
+
siteId?: number;
|
|
80
|
+
status?: string;
|
|
81
|
+
static names(): {
|
|
82
|
+
[key: string]: string;
|
|
83
|
+
};
|
|
84
|
+
static types(): {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
};
|
|
87
|
+
validate(): void;
|
|
88
|
+
constructor(map?: {
|
|
89
|
+
[key: string]: any;
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
export declare class ListTransportLayerApplicationsResponseBody extends $dara.Model {
|
|
93
|
+
applications?: ListTransportLayerApplicationsResponseBodyApplications[];
|
|
94
|
+
/**
|
|
95
|
+
* @example
|
|
96
|
+
* 1
|
|
97
|
+
*/
|
|
98
|
+
pageNumber?: number;
|
|
99
|
+
/**
|
|
100
|
+
* @example
|
|
101
|
+
* 1
|
|
102
|
+
*/
|
|
103
|
+
pageSize?: number;
|
|
104
|
+
/**
|
|
105
|
+
* @example
|
|
106
|
+
* CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
|
|
107
|
+
*/
|
|
108
|
+
requestId?: string;
|
|
109
|
+
/**
|
|
110
|
+
* @example
|
|
111
|
+
* 1
|
|
112
|
+
*/
|
|
113
|
+
totalCount?: number;
|
|
114
|
+
static names(): {
|
|
115
|
+
[key: string]: string;
|
|
116
|
+
};
|
|
117
|
+
static types(): {
|
|
118
|
+
[key: string]: any;
|
|
119
|
+
};
|
|
120
|
+
validate(): void;
|
|
121
|
+
constructor(map?: {
|
|
122
|
+
[key: string]: any;
|
|
123
|
+
});
|
|
124
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
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.ListTransportLayerApplicationsResponseBody = exports.ListTransportLayerApplicationsResponseBodyApplications = exports.ListTransportLayerApplicationsResponseBodyApplicationsRules = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class ListTransportLayerApplicationsResponseBodyApplicationsRules extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
clientIPPassThroughMode: 'ClientIPPassThroughMode',
|
|
43
|
+
comment: 'Comment',
|
|
44
|
+
edgePort: 'EdgePort',
|
|
45
|
+
protocol: 'Protocol',
|
|
46
|
+
ruleId: 'RuleId',
|
|
47
|
+
source: 'Source',
|
|
48
|
+
sourcePort: 'SourcePort',
|
|
49
|
+
sourceType: 'SourceType',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
static types() {
|
|
53
|
+
return {
|
|
54
|
+
clientIPPassThroughMode: 'string',
|
|
55
|
+
comment: 'string',
|
|
56
|
+
edgePort: 'string',
|
|
57
|
+
protocol: 'string',
|
|
58
|
+
ruleId: 'number',
|
|
59
|
+
source: 'string',
|
|
60
|
+
sourcePort: 'string',
|
|
61
|
+
sourceType: 'string',
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
validate() {
|
|
65
|
+
super.validate();
|
|
66
|
+
}
|
|
67
|
+
constructor(map) {
|
|
68
|
+
super(map);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
exports.ListTransportLayerApplicationsResponseBodyApplicationsRules = ListTransportLayerApplicationsResponseBodyApplicationsRules;
|
|
72
|
+
class ListTransportLayerApplicationsResponseBodyApplications extends $dara.Model {
|
|
73
|
+
static names() {
|
|
74
|
+
return {
|
|
75
|
+
applicationId: 'ApplicationId',
|
|
76
|
+
cname: 'Cname',
|
|
77
|
+
crossBorderOptimization: 'CrossBorderOptimization',
|
|
78
|
+
ipAccessRule: 'IpAccessRule',
|
|
79
|
+
ipv6: 'Ipv6',
|
|
80
|
+
recordName: 'RecordName',
|
|
81
|
+
rules: 'Rules',
|
|
82
|
+
rulesCount: 'RulesCount',
|
|
83
|
+
siteId: 'SiteId',
|
|
84
|
+
status: 'Status',
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
static types() {
|
|
88
|
+
return {
|
|
89
|
+
applicationId: 'number',
|
|
90
|
+
cname: 'string',
|
|
91
|
+
crossBorderOptimization: 'string',
|
|
92
|
+
ipAccessRule: 'string',
|
|
93
|
+
ipv6: 'string',
|
|
94
|
+
recordName: 'string',
|
|
95
|
+
rules: { 'type': 'array', 'itemType': ListTransportLayerApplicationsResponseBodyApplicationsRules },
|
|
96
|
+
rulesCount: 'number',
|
|
97
|
+
siteId: 'number',
|
|
98
|
+
status: 'string',
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
validate() {
|
|
102
|
+
if (Array.isArray(this.rules)) {
|
|
103
|
+
$dara.Model.validateArray(this.rules);
|
|
104
|
+
}
|
|
105
|
+
super.validate();
|
|
106
|
+
}
|
|
107
|
+
constructor(map) {
|
|
108
|
+
super(map);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
exports.ListTransportLayerApplicationsResponseBodyApplications = ListTransportLayerApplicationsResponseBodyApplications;
|
|
112
|
+
class ListTransportLayerApplicationsResponseBody extends $dara.Model {
|
|
113
|
+
static names() {
|
|
114
|
+
return {
|
|
115
|
+
applications: 'Applications',
|
|
116
|
+
pageNumber: 'PageNumber',
|
|
117
|
+
pageSize: 'PageSize',
|
|
118
|
+
requestId: 'RequestId',
|
|
119
|
+
totalCount: 'TotalCount',
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
static types() {
|
|
123
|
+
return {
|
|
124
|
+
applications: { 'type': 'array', 'itemType': ListTransportLayerApplicationsResponseBodyApplications },
|
|
125
|
+
pageNumber: 'number',
|
|
126
|
+
pageSize: 'number',
|
|
127
|
+
requestId: 'string',
|
|
128
|
+
totalCount: 'number',
|
|
129
|
+
};
|
|
130
|
+
}
|
|
131
|
+
validate() {
|
|
132
|
+
if (Array.isArray(this.applications)) {
|
|
133
|
+
$dara.Model.validateArray(this.applications);
|
|
134
|
+
}
|
|
135
|
+
super.validate();
|
|
136
|
+
}
|
|
137
|
+
constructor(map) {
|
|
138
|
+
super(map);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
exports.ListTransportLayerApplicationsResponseBody = ListTransportLayerApplicationsResponseBody;
|
|
142
|
+
//# sourceMappingURL=ListTransportLayerApplicationsResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListTransportLayerApplicationsResponseBody.js","sourceRoot":"","sources":["../../src/models/ListTransportLayerApplicationsResponseBody.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class UpdateTransportLayerApplicationRequestRules extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* TOA
|
|
6
|
+
*/
|
|
7
|
+
clientIPPassThroughMode?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 123
|
|
11
|
+
*/
|
|
12
|
+
comment?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* 80
|
|
16
|
+
*/
|
|
17
|
+
edgePort?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* TCP
|
|
21
|
+
*/
|
|
22
|
+
protocol?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* 1.1.1.1
|
|
26
|
+
*/
|
|
27
|
+
source?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* 80
|
|
31
|
+
*/
|
|
32
|
+
sourcePort?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @example
|
|
35
|
+
* ip
|
|
36
|
+
*/
|
|
37
|
+
sourceType?: 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 UpdateTransportLayerApplicationRequest extends $dara.Model {
|
|
50
|
+
/**
|
|
51
|
+
* @remarks
|
|
52
|
+
* This parameter is required.
|
|
53
|
+
*
|
|
54
|
+
* @example
|
|
55
|
+
* 165503967****
|
|
56
|
+
*/
|
|
57
|
+
applicationId?: number;
|
|
58
|
+
crossBorderOptimization?: string;
|
|
59
|
+
ipAccessRule?: string;
|
|
60
|
+
ipv6?: string;
|
|
61
|
+
rules?: UpdateTransportLayerApplicationRequestRules[];
|
|
62
|
+
/**
|
|
63
|
+
* @remarks
|
|
64
|
+
* This parameter is required.
|
|
65
|
+
*
|
|
66
|
+
* @example
|
|
67
|
+
* 123456****
|
|
68
|
+
*/
|
|
69
|
+
siteId?: number;
|
|
70
|
+
static names(): {
|
|
71
|
+
[key: string]: string;
|
|
72
|
+
};
|
|
73
|
+
static types(): {
|
|
74
|
+
[key: string]: any;
|
|
75
|
+
};
|
|
76
|
+
validate(): void;
|
|
77
|
+
constructor(map?: {
|
|
78
|
+
[key: string]: any;
|
|
79
|
+
});
|
|
80
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
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.UpdateTransportLayerApplicationRequest = exports.UpdateTransportLayerApplicationRequestRules = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class UpdateTransportLayerApplicationRequestRules extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
clientIPPassThroughMode: 'ClientIPPassThroughMode',
|
|
43
|
+
comment: 'Comment',
|
|
44
|
+
edgePort: 'EdgePort',
|
|
45
|
+
protocol: 'Protocol',
|
|
46
|
+
source: 'Source',
|
|
47
|
+
sourcePort: 'SourcePort',
|
|
48
|
+
sourceType: 'SourceType',
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
static types() {
|
|
52
|
+
return {
|
|
53
|
+
clientIPPassThroughMode: 'string',
|
|
54
|
+
comment: 'string',
|
|
55
|
+
edgePort: 'string',
|
|
56
|
+
protocol: 'string',
|
|
57
|
+
source: 'string',
|
|
58
|
+
sourcePort: 'string',
|
|
59
|
+
sourceType: 'string',
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
validate() {
|
|
63
|
+
super.validate();
|
|
64
|
+
}
|
|
65
|
+
constructor(map) {
|
|
66
|
+
super(map);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.UpdateTransportLayerApplicationRequestRules = UpdateTransportLayerApplicationRequestRules;
|
|
70
|
+
class UpdateTransportLayerApplicationRequest extends $dara.Model {
|
|
71
|
+
static names() {
|
|
72
|
+
return {
|
|
73
|
+
applicationId: 'ApplicationId',
|
|
74
|
+
crossBorderOptimization: 'CrossBorderOptimization',
|
|
75
|
+
ipAccessRule: 'IpAccessRule',
|
|
76
|
+
ipv6: 'Ipv6',
|
|
77
|
+
rules: 'Rules',
|
|
78
|
+
siteId: 'SiteId',
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
static types() {
|
|
82
|
+
return {
|
|
83
|
+
applicationId: 'number',
|
|
84
|
+
crossBorderOptimization: 'string',
|
|
85
|
+
ipAccessRule: 'string',
|
|
86
|
+
ipv6: 'string',
|
|
87
|
+
rules: { 'type': 'array', 'itemType': UpdateTransportLayerApplicationRequestRules },
|
|
88
|
+
siteId: 'number',
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
validate() {
|
|
92
|
+
if (Array.isArray(this.rules)) {
|
|
93
|
+
$dara.Model.validateArray(this.rules);
|
|
94
|
+
}
|
|
95
|
+
super.validate();
|
|
96
|
+
}
|
|
97
|
+
constructor(map) {
|
|
98
|
+
super(map);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
exports.UpdateTransportLayerApplicationRequest = UpdateTransportLayerApplicationRequest;
|
|
102
|
+
//# sourceMappingURL=UpdateTransportLayerApplicationRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UpdateTransportLayerApplicationRequest.js","sourceRoot":"","sources":["../../src/models/UpdateTransportLayerApplicationRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,2CAA4C,SAAQ,KAAK,CAAC,KAAK;IAoC1E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,uBAAuB,EAAE,yBAAyB;YAClD,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,UAAU;YACpB,QAAQ,EAAE,UAAU;YACpB,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,YAAY;YACxB,UAAU,EAAE,YAAY;SACzB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,uBAAuB,EAAE,QAAQ;YACjC,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,QAAQ;YAClB,QAAQ,EAAE,QAAQ;YAClB,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,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,kGAmEC;AAED,MAAa,sCAAuC,SAAQ,KAAK,CAAC,KAAK;IAqBrE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,eAAe;YAC9B,uBAAuB,EAAE,yBAAyB;YAClD,YAAY,EAAE,cAAc;YAC5B,IAAI,EAAE,MAAM;YACZ,KAAK,EAAE,OAAO;YACd,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,QAAQ;YACvB,uBAAuB,EAAE,QAAQ;YACjC,YAAY,EAAE,QAAQ;YACtB,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,2CAA2C,EAAE;YACnF,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;YAC7B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACxC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AArDD,wFAqDC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { UpdateTransportLayerApplicationResponseBody } from "./UpdateTransportLayerApplicationResponseBody";
|
|
3
|
+
export declare class UpdateTransportLayerApplicationResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: UpdateTransportLayerApplicationResponseBody;
|
|
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
|
+
}
|