@alicloud/esa20240910 2.31.0 → 2.32.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/dist/client.d.ts +75 -0
  2. package/dist/client.js +241 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateRecordRequest.d.ts +2 -0
  5. package/dist/models/CreateRecordRequest.js.map +1 -1
  6. package/dist/models/CreateRecordShrinkRequest.d.ts +2 -0
  7. package/dist/models/CreateRecordShrinkRequest.js.map +1 -1
  8. package/dist/models/CreateTransportLayerApplicationRequest.d.ts +170 -0
  9. package/dist/models/CreateTransportLayerApplicationRequest.js +104 -0
  10. package/dist/models/CreateTransportLayerApplicationRequest.js.map +1 -0
  11. package/dist/models/CreateTransportLayerApplicationResponse.d.ts +19 -0
  12. package/dist/models/CreateTransportLayerApplicationResponse.js +69 -0
  13. package/dist/models/CreateTransportLayerApplicationResponse.js.map +1 -0
  14. package/dist/models/CreateTransportLayerApplicationResponseBody.d.ts +29 -0
  15. package/dist/models/CreateTransportLayerApplicationResponseBody.js +60 -0
  16. package/dist/models/CreateTransportLayerApplicationResponseBody.js.map +1 -0
  17. package/dist/models/CreateTransportLayerApplicationShrinkRequest.d.ts +70 -0
  18. package/dist/models/CreateTransportLayerApplicationShrinkRequest.js +70 -0
  19. package/dist/models/CreateTransportLayerApplicationShrinkRequest.js.map +1 -0
  20. package/dist/models/DeleteRecordRequest.d.ts +1 -0
  21. package/dist/models/DeleteRecordRequest.js +2 -0
  22. package/dist/models/DeleteRecordRequest.js.map +1 -1
  23. package/dist/models/DeleteTransportLayerApplicationRequest.d.ts +33 -0
  24. package/dist/models/DeleteTransportLayerApplicationRequest.js +60 -0
  25. package/dist/models/DeleteTransportLayerApplicationRequest.js.map +1 -0
  26. package/dist/models/DeleteTransportLayerApplicationResponse.d.ts +19 -0
  27. package/dist/models/DeleteTransportLayerApplicationResponse.js +69 -0
  28. package/dist/models/DeleteTransportLayerApplicationResponse.js.map +1 -0
  29. package/dist/models/DeleteTransportLayerApplicationResponseBody.d.ts +21 -0
  30. package/dist/models/DeleteTransportLayerApplicationResponseBody.js +58 -0
  31. package/dist/models/DeleteTransportLayerApplicationResponseBody.js.map +1 -0
  32. package/dist/models/GetRoutineResponseBody.d.ts +0 -21
  33. package/dist/models/GetRoutineResponseBody.js +0 -9
  34. package/dist/models/GetRoutineResponseBody.js.map +1 -1
  35. package/dist/models/GetTransportLayerApplicationRequest.d.ts +33 -0
  36. package/dist/models/GetTransportLayerApplicationRequest.js +60 -0
  37. package/dist/models/GetTransportLayerApplicationRequest.js.map +1 -0
  38. package/dist/models/GetTransportLayerApplicationResponse.d.ts +19 -0
  39. package/dist/models/GetTransportLayerApplicationResponse.js +69 -0
  40. package/dist/models/GetTransportLayerApplicationResponse.js.map +1 -0
  41. package/dist/models/GetTransportLayerApplicationResponseBody.d.ts +216 -0
  42. package/dist/models/GetTransportLayerApplicationResponseBody.js +142 -0
  43. package/dist/models/GetTransportLayerApplicationResponseBody.js.map +1 -0
  44. package/dist/models/ListTransportLayerApplicationsRequest.d.ts +60 -0
  45. package/dist/models/ListTransportLayerApplicationsRequest.js +66 -0
  46. package/dist/models/ListTransportLayerApplicationsRequest.js.map +1 -0
  47. package/dist/models/ListTransportLayerApplicationsResponse.d.ts +19 -0
  48. package/dist/models/ListTransportLayerApplicationsResponse.js +69 -0
  49. package/dist/models/ListTransportLayerApplicationsResponse.js.map +1 -0
  50. package/dist/models/ListTransportLayerApplicationsResponseBody.d.ts +262 -0
  51. package/dist/models/ListTransportLayerApplicationsResponseBody.js +170 -0
  52. package/dist/models/ListTransportLayerApplicationsResponseBody.js.map +1 -0
  53. package/dist/models/UpdateTransportLayerApplicationRequest.d.ts +156 -0
  54. package/dist/models/UpdateTransportLayerApplicationRequest.js +104 -0
  55. package/dist/models/UpdateTransportLayerApplicationRequest.js.map +1 -0
  56. package/dist/models/UpdateTransportLayerApplicationResponse.d.ts +19 -0
  57. package/dist/models/UpdateTransportLayerApplicationResponse.js +69 -0
  58. package/dist/models/UpdateTransportLayerApplicationResponse.js.map +1 -0
  59. package/dist/models/UpdateTransportLayerApplicationResponseBody.d.ts +21 -0
  60. package/dist/models/UpdateTransportLayerApplicationResponseBody.js +58 -0
  61. package/dist/models/UpdateTransportLayerApplicationResponseBody.js.map +1 -0
  62. package/dist/models/UpdateTransportLayerApplicationShrinkRequest.d.ts +69 -0
  63. package/dist/models/UpdateTransportLayerApplicationShrinkRequest.js +70 -0
  64. package/dist/models/UpdateTransportLayerApplicationShrinkRequest.js.map +1 -0
  65. package/dist/models/model.d.ts +24 -0
  66. package/dist/models/model.js +76 -27
  67. package/dist/models/model.js.map +1 -1
  68. package/package.json +1 -1
  69. package/src/client.ts +270 -0
  70. package/src/models/CreateRecordRequest.ts +2 -0
  71. package/src/models/CreateRecordShrinkRequest.ts +2 -0
  72. package/src/models/CreateTransportLayerApplicationRequest.ts +220 -0
  73. package/src/models/CreateTransportLayerApplicationResponse.ts +40 -0
  74. package/src/models/CreateTransportLayerApplicationResponseBody.ts +44 -0
  75. package/src/models/CreateTransportLayerApplicationShrinkRequest.ts +95 -0
  76. package/src/models/DeleteRecordRequest.ts +3 -0
  77. package/src/models/DeleteTransportLayerApplicationRequest.ts +48 -0
  78. package/src/models/DeleteTransportLayerApplicationResponse.ts +40 -0
  79. package/src/models/DeleteTransportLayerApplicationResponseBody.ts +34 -0
  80. package/src/models/GetRoutineResponseBody.ts +0 -30
  81. package/src/models/GetTransportLayerApplicationRequest.ts +48 -0
  82. package/src/models/GetTransportLayerApplicationResponse.ts +40 -0
  83. package/src/models/GetTransportLayerApplicationResponseBody.ts +295 -0
  84. package/src/models/ListTransportLayerApplicationsRequest.ts +81 -0
  85. package/src/models/ListTransportLayerApplicationsResponse.ts +40 -0
  86. package/src/models/ListTransportLayerApplicationsResponseBody.ts +360 -0
  87. package/src/models/UpdateTransportLayerApplicationRequest.ts +206 -0
  88. package/src/models/UpdateTransportLayerApplicationResponse.ts +40 -0
  89. package/src/models/UpdateTransportLayerApplicationResponseBody.ts +34 -0
  90. package/src/models/UpdateTransportLayerApplicationShrinkRequest.ts +94 -0
  91. package/src/models/model.ts +24 -0
@@ -0,0 +1,216 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class GetTransportLayerApplicationResponseBodyRules extends $dara.Model {
3
+ /**
4
+ * @remarks
5
+ * Client IP pass-through protocol, supporting:
6
+ * - **off**: No pass-through.
7
+ * - **PPv1**: PROXY Protocol v1, supports client IP pass-through for TCP protocol.
8
+ * - **PPv2**: PROXY Protocol v2, supports client IP pass-through for TCP and UDP protocols.
9
+ * - **SPP**: Simple Proxy Protocol, supports client IP pass-through for UDP protocol.
10
+ *
11
+ * @example
12
+ * off
13
+ */
14
+ clientIPPassThroughMode?: string;
15
+ /**
16
+ * @remarks
17
+ * Comment information of the rule.
18
+ *
19
+ * @example
20
+ * 测试
21
+ */
22
+ comment?: string;
23
+ /**
24
+ * @remarks
25
+ * Edge port. Supports:
26
+ *
27
+ * - A single port, such as 80.
28
+ * - Port range, such as 81-85, representing ports 81, 82, 83, 84, 85.
29
+ * - Combination of ports and port ranges, separated by commas, for example 80,81-85,90, representing ports 80, 81, 82, 83, 84, 85, 90.
30
+ *
31
+ * @example
32
+ * 80
33
+ */
34
+ edgePort?: string;
35
+ /**
36
+ * @remarks
37
+ * Forwarding rule protocol, with values:
38
+ *
39
+ * - TCP: TCP protocol.
40
+ * - UDP: UDP protocol.
41
+ *
42
+ * @example
43
+ * TCP
44
+ */
45
+ protocol?: string;
46
+ /**
47
+ * @remarks
48
+ * Rule ID.
49
+ *
50
+ * @example
51
+ * 1234323***
52
+ */
53
+ ruleId?: number;
54
+ /**
55
+ * @remarks
56
+ * Specific value of the origin, which needs to match the type of the origin.
57
+ *
58
+ * @example
59
+ * 1.1.1.1
60
+ */
61
+ source?: string;
62
+ /**
63
+ * @remarks
64
+ * Origin port. Supports:
65
+ *
66
+ * - A single port, when the origin port is a single port, any valid edge port combination is supported.
67
+ * - Port range, only when the edge port is a port range, the origin port can be set as a port range and the size of the range must be consistent with the edge port. For example, if the edge port is 90-93, the origin port cannot be set to 81-85 because the origin port range is 5 and the edge port range is 3, which are inconsistent.
68
+ *
69
+ * @example
70
+ * 80
71
+ */
72
+ sourcePort?: string;
73
+ /**
74
+ * @remarks
75
+ * Origin type, supporting:
76
+ * - **ip**: IP.
77
+ * - **domain**: Domain name.
78
+ * - **OP**: Origin pool.
79
+ * - **LB**: Load balancer.
80
+ *
81
+ * @example
82
+ * domain
83
+ */
84
+ sourceType?: string;
85
+ static names(): {
86
+ [key: string]: string;
87
+ };
88
+ static types(): {
89
+ [key: string]: any;
90
+ };
91
+ validate(): void;
92
+ constructor(map?: {
93
+ [key: string]: any;
94
+ });
95
+ }
96
+ export declare class GetTransportLayerApplicationResponseBodyStaticIpV4List extends $dara.Model {
97
+ address?: string;
98
+ status?: string;
99
+ static names(): {
100
+ [key: string]: string;
101
+ };
102
+ static types(): {
103
+ [key: string]: any;
104
+ };
105
+ validate(): void;
106
+ constructor(map?: {
107
+ [key: string]: any;
108
+ });
109
+ }
110
+ export declare class GetTransportLayerApplicationResponseBody extends $dara.Model {
111
+ /**
112
+ * @remarks
113
+ * Transport layer application ID.
114
+ *
115
+ * @example
116
+ * 17099311410****
117
+ */
118
+ applicationId?: number;
119
+ /**
120
+ * @remarks
121
+ * The CNAME domain corresponding to the transport layer acceleration application. This field is not empty only when the site is accessed via CNAME.
122
+ *
123
+ * @example
124
+ * example.com.ialicdn.com
125
+ */
126
+ cname?: string;
127
+ /**
128
+ * @remarks
129
+ * Whether to enable China mainland network access optimization, default is off. Value range:
130
+ * - on: Enabled.
131
+ * - off: Disabled.
132
+ *
133
+ * @example
134
+ * on
135
+ */
136
+ crossBorderOptimization?: string;
137
+ /**
138
+ * @remarks
139
+ * Switch for IP access rules. When turned on, the IP access rules in WAF take effect on the transport layer application.
140
+ *
141
+ * - on: Turned on.
142
+ * - off: Turned off.
143
+ *
144
+ * @example
145
+ * on
146
+ */
147
+ ipAccessRule?: string;
148
+ /**
149
+ * @remarks
150
+ * IPv6 switch.
151
+ *
152
+ * @example
153
+ * on
154
+ */
155
+ ipv6?: string;
156
+ /**
157
+ * @remarks
158
+ * The domain name of the transport layer application.
159
+ *
160
+ * @example
161
+ * test.example.com
162
+ */
163
+ recordName?: string;
164
+ /**
165
+ * @remarks
166
+ * Id of the request
167
+ *
168
+ * @example
169
+ * EB635996-1FD6-5DFD-BA57-27A849599940
170
+ */
171
+ requestId?: string;
172
+ /**
173
+ * @remarks
174
+ * List of forwarding rules.
175
+ */
176
+ rules?: GetTransportLayerApplicationResponseBodyRules[];
177
+ /**
178
+ * @remarks
179
+ * Number of forwarding rules contained in the transport layer acceleration application.
180
+ *
181
+ * @example
182
+ * 1
183
+ */
184
+ rulesCount?: number;
185
+ /**
186
+ * @remarks
187
+ * Site ID.
188
+ *
189
+ * @example
190
+ * 123456****
191
+ */
192
+ siteId?: number;
193
+ staticIp?: string;
194
+ staticIpV4List?: GetTransportLayerApplicationResponseBodyStaticIpV4List[];
195
+ /**
196
+ * @remarks
197
+ * Status of the transport layer application
198
+ *
199
+ * - **deploying**: Deploying. In this state, modification and deletion are not allowed.
200
+ * - **active**: Active.
201
+ *
202
+ * @example
203
+ * active
204
+ */
205
+ status?: string;
206
+ static names(): {
207
+ [key: string]: string;
208
+ };
209
+ static types(): {
210
+ [key: string]: any;
211
+ };
212
+ validate(): void;
213
+ constructor(map?: {
214
+ [key: string]: any;
215
+ });
216
+ }
@@ -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.GetTransportLayerApplicationResponseBody = exports.GetTransportLayerApplicationResponseBodyStaticIpV4List = exports.GetTransportLayerApplicationResponseBodyRules = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class GetTransportLayerApplicationResponseBodyRules 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.GetTransportLayerApplicationResponseBodyRules = GetTransportLayerApplicationResponseBodyRules;
72
+ class GetTransportLayerApplicationResponseBodyStaticIpV4List extends $dara.Model {
73
+ static names() {
74
+ return {
75
+ address: 'Address',
76
+ status: 'Status',
77
+ };
78
+ }
79
+ static types() {
80
+ return {
81
+ address: 'string',
82
+ status: 'string',
83
+ };
84
+ }
85
+ validate() {
86
+ super.validate();
87
+ }
88
+ constructor(map) {
89
+ super(map);
90
+ }
91
+ }
92
+ exports.GetTransportLayerApplicationResponseBodyStaticIpV4List = GetTransportLayerApplicationResponseBodyStaticIpV4List;
93
+ class GetTransportLayerApplicationResponseBody extends $dara.Model {
94
+ static names() {
95
+ return {
96
+ applicationId: 'ApplicationId',
97
+ cname: 'Cname',
98
+ crossBorderOptimization: 'CrossBorderOptimization',
99
+ ipAccessRule: 'IpAccessRule',
100
+ ipv6: 'Ipv6',
101
+ recordName: 'RecordName',
102
+ requestId: 'RequestId',
103
+ rules: 'Rules',
104
+ rulesCount: 'RulesCount',
105
+ siteId: 'SiteId',
106
+ staticIp: 'StaticIp',
107
+ staticIpV4List: 'StaticIpV4List',
108
+ status: 'Status',
109
+ };
110
+ }
111
+ static types() {
112
+ return {
113
+ applicationId: 'number',
114
+ cname: 'string',
115
+ crossBorderOptimization: 'string',
116
+ ipAccessRule: 'string',
117
+ ipv6: 'string',
118
+ recordName: 'string',
119
+ requestId: 'string',
120
+ rules: { 'type': 'array', 'itemType': GetTransportLayerApplicationResponseBodyRules },
121
+ rulesCount: 'number',
122
+ siteId: 'number',
123
+ staticIp: 'string',
124
+ staticIpV4List: { 'type': 'array', 'itemType': GetTransportLayerApplicationResponseBodyStaticIpV4List },
125
+ status: 'string',
126
+ };
127
+ }
128
+ validate() {
129
+ if (Array.isArray(this.rules)) {
130
+ $dara.Model.validateArray(this.rules);
131
+ }
132
+ if (Array.isArray(this.staticIpV4List)) {
133
+ $dara.Model.validateArray(this.staticIpV4List);
134
+ }
135
+ super.validate();
136
+ }
137
+ constructor(map) {
138
+ super(map);
139
+ }
140
+ }
141
+ exports.GetTransportLayerApplicationResponseBody = GetTransportLayerApplicationResponseBody;
142
+ //# sourceMappingURL=GetTransportLayerApplicationResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetTransportLayerApplicationResponseBody.js","sourceRoot":"","sources":["../../src/models/GetTransportLayerApplicationResponseBody.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,60 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class ListTransportLayerApplicationsRequest extends $dara.Model {
3
+ /**
4
+ * @remarks
5
+ * Query type for the transport layer application host record, supporting the following 4 types, with exact query as the default.
6
+ *
7
+ * - fuzzy: Fuzzy query.
8
+ * - exact: Exact query.
9
+ * - prefix: Prefix match query.
10
+ * - suffix: Suffix match query.
11
+ *
12
+ * @example
13
+ * fuzzy
14
+ */
15
+ matchType?: string;
16
+ /**
17
+ * @remarks
18
+ * Page number set for pagination. Starting value: 1. Default value: 1.
19
+ *
20
+ * @example
21
+ * 1
22
+ */
23
+ pageNumber?: number;
24
+ /**
25
+ * @remarks
26
+ * Page size. The maximum value is 500.
27
+ *
28
+ * @example
29
+ * 500
30
+ */
31
+ pageSize?: number;
32
+ /**
33
+ * @remarks
34
+ * Host record of the transport layer application.
35
+ *
36
+ * @example
37
+ * www.example.com
38
+ */
39
+ recordName?: string;
40
+ /**
41
+ * @remarks
42
+ * Site ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) API.
43
+ *
44
+ * This parameter is required.
45
+ *
46
+ * @example
47
+ * 123456******
48
+ */
49
+ siteId?: number;
50
+ static names(): {
51
+ [key: string]: string;
52
+ };
53
+ static types(): {
54
+ [key: string]: any;
55
+ };
56
+ validate(): void;
57
+ constructor(map?: {
58
+ [key: string]: any;
59
+ });
60
+ }
@@ -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;IAgDpE,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;AA3ED,sFA2EC"}
@@ -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"}