@alicloud/esa20240910 2.35.2 → 2.36.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 +60 -0
- package/dist/client.js +168 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateEdgeContainerAppImageSecretRequest.d.ts +45 -0
- package/dist/models/CreateEdgeContainerAppImageSecretRequest.js +64 -0
- package/dist/models/CreateEdgeContainerAppImageSecretRequest.js.map +1 -0
- package/dist/models/CreateEdgeContainerAppImageSecretResponse.d.ts +19 -0
- package/dist/models/CreateEdgeContainerAppImageSecretResponse.js +69 -0
- package/dist/models/CreateEdgeContainerAppImageSecretResponse.js.map +1 -0
- package/dist/models/CreateEdgeContainerAppImageSecretResponseBody.d.ts +18 -0
- package/dist/models/CreateEdgeContainerAppImageSecretResponseBody.js +58 -0
- package/dist/models/CreateEdgeContainerAppImageSecretResponseBody.js.map +1 -0
- package/dist/models/DeleteEdgeContainerAppImageSecretRequest.d.ts +29 -0
- package/dist/models/DeleteEdgeContainerAppImageSecretRequest.js +60 -0
- package/dist/models/DeleteEdgeContainerAppImageSecretRequest.js.map +1 -0
- package/dist/models/DeleteEdgeContainerAppImageSecretResponse.d.ts +19 -0
- package/dist/models/DeleteEdgeContainerAppImageSecretResponse.js +69 -0
- package/dist/models/DeleteEdgeContainerAppImageSecretResponse.js.map +1 -0
- package/dist/models/DeleteEdgeContainerAppImageSecretResponseBody.d.ts +18 -0
- package/dist/models/DeleteEdgeContainerAppImageSecretResponseBody.js +58 -0
- package/dist/models/DeleteEdgeContainerAppImageSecretResponseBody.js.map +1 -0
- package/dist/models/GetEdgeContainerAppResourceCapacityRequest.d.ts +21 -0
- package/dist/models/GetEdgeContainerAppResourceCapacityRequest.js +58 -0
- package/dist/models/GetEdgeContainerAppResourceCapacityRequest.js.map +1 -0
- package/dist/models/GetEdgeContainerAppResourceCapacityResponse.d.ts +19 -0
- package/dist/models/GetEdgeContainerAppResourceCapacityResponse.js +69 -0
- package/dist/models/GetEdgeContainerAppResourceCapacityResponse.js.map +1 -0
- package/dist/models/GetEdgeContainerAppResourceCapacityResponseBody.d.ts +46 -0
- package/dist/models/GetEdgeContainerAppResourceCapacityResponseBody.js +86 -0
- package/dist/models/GetEdgeContainerAppResourceCapacityResponseBody.js.map +1 -0
- package/dist/models/GetWafQuotaResponseBody.d.ts +15 -0
- package/dist/models/GetWafQuotaResponseBody.js +30 -1
- package/dist/models/GetWafQuotaResponseBody.js.map +1 -1
- package/dist/models/ListEdgeContainerAppImageSecretsRequest.d.ts +21 -0
- package/dist/models/ListEdgeContainerAppImageSecretsRequest.js +58 -0
- package/dist/models/ListEdgeContainerAppImageSecretsRequest.js.map +1 -0
- package/dist/models/ListEdgeContainerAppImageSecretsResponse.d.ts +19 -0
- package/dist/models/ListEdgeContainerAppImageSecretsResponse.js +69 -0
- package/dist/models/ListEdgeContainerAppImageSecretsResponse.js.map +1 -0
- package/dist/models/ListEdgeContainerAppImageSecretsResponseBody.d.ts +46 -0
- package/dist/models/ListEdgeContainerAppImageSecretsResponseBody.js +86 -0
- package/dist/models/ListEdgeContainerAppImageSecretsResponseBody.js.map +1 -0
- package/dist/models/ListUserRatePlanInstancesRequest.d.ts +1 -0
- package/dist/models/ListUserRatePlanInstancesRequest.js +2 -0
- package/dist/models/ListUserRatePlanInstancesRequest.js.map +1 -1
- package/dist/models/model.d.ts +15 -0
- package/dist/models/model.js +65 -34
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +184 -0
- package/src/models/CreateEdgeContainerAppImageSecretRequest.ts +64 -0
- package/src/models/CreateEdgeContainerAppImageSecretResponse.ts +40 -0
- package/src/models/CreateEdgeContainerAppImageSecretResponseBody.ts +31 -0
- package/src/models/DeleteEdgeContainerAppImageSecretRequest.ts +44 -0
- package/src/models/DeleteEdgeContainerAppImageSecretResponse.ts +40 -0
- package/src/models/DeleteEdgeContainerAppImageSecretResponseBody.ts +31 -0
- package/src/models/GetEdgeContainerAppResourceCapacityRequest.ts +34 -0
- package/src/models/GetEdgeContainerAppResourceCapacityResponse.ts +40 -0
- package/src/models/GetEdgeContainerAppResourceCapacityResponseBody.ts +78 -0
- package/src/models/GetWafQuotaResponseBody.ts +35 -0
- package/src/models/ListEdgeContainerAppImageSecretsRequest.ts +34 -0
- package/src/models/ListEdgeContainerAppImageSecretsResponse.ts +40 -0
- package/src/models/ListEdgeContainerAppImageSecretsResponseBody.ts +78 -0
- package/src/models/ListUserRatePlanInstancesRequest.ts +3 -0
- package/src/models/model.ts +15 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { DeleteEdgeContainerAppImageSecretResponseBody } from "./DeleteEdgeContainerAppImageSecretResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class DeleteEdgeContainerAppImageSecretResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: DeleteEdgeContainerAppImageSecretResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: DeleteEdgeContainerAppImageSecretResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DeleteEdgeContainerAppImageSecretResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* EEEBE525-F576-1196-8DAF-2D70CA3F4D2F
|
|
9
|
+
*/
|
|
10
|
+
requestId?: string;
|
|
11
|
+
static names(): { [key: string]: string } {
|
|
12
|
+
return {
|
|
13
|
+
requestId: 'RequestId',
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static types(): { [key: string]: any } {
|
|
18
|
+
return {
|
|
19
|
+
requestId: 'string',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
validate() {
|
|
24
|
+
super.validate();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
constructor(map?: { [key: string]: any }) {
|
|
28
|
+
super(map);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class GetEdgeContainerAppResourceCapacityRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* app-88068867578379****
|
|
12
|
+
*/
|
|
13
|
+
appId?: string;
|
|
14
|
+
static names(): { [key: string]: string } {
|
|
15
|
+
return {
|
|
16
|
+
appId: 'AppId',
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
static types(): { [key: string]: any } {
|
|
21
|
+
return {
|
|
22
|
+
appId: 'string',
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
super.validate();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
constructor(map?: { [key: string]: any }) {
|
|
31
|
+
super(map);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { GetEdgeContainerAppResourceCapacityResponseBody } from "./GetEdgeContainerAppResourceCapacityResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class GetEdgeContainerAppResourceCapacityResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: GetEdgeContainerAppResourceCapacityResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: GetEdgeContainerAppResourceCapacityResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class GetEdgeContainerAppResourceCapacityResponseBodyRegions extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* unicom
|
|
9
|
+
*/
|
|
10
|
+
isp?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* huadong
|
|
14
|
+
*/
|
|
15
|
+
region?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 16
|
|
19
|
+
*/
|
|
20
|
+
replicas?: number;
|
|
21
|
+
static names(): { [key: string]: string } {
|
|
22
|
+
return {
|
|
23
|
+
isp: 'Isp',
|
|
24
|
+
region: 'Region',
|
|
25
|
+
replicas: 'Replicas',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
isp: 'string',
|
|
32
|
+
region: 'string',
|
|
33
|
+
replicas: 'number',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
validate() {
|
|
38
|
+
super.validate();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
constructor(map?: { [key: string]: any }) {
|
|
42
|
+
super(map);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export class GetEdgeContainerAppResourceCapacityResponseBody extends $dara.Model {
|
|
47
|
+
regions?: GetEdgeContainerAppResourceCapacityResponseBodyRegions[];
|
|
48
|
+
/**
|
|
49
|
+
* @example
|
|
50
|
+
* 50423A7F-A83D-1E24-B80E-86DD25790759
|
|
51
|
+
*/
|
|
52
|
+
requestId?: string;
|
|
53
|
+
static names(): { [key: string]: string } {
|
|
54
|
+
return {
|
|
55
|
+
regions: 'Regions',
|
|
56
|
+
requestId: 'RequestId',
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
static types(): { [key: string]: any } {
|
|
61
|
+
return {
|
|
62
|
+
regions: { 'type': 'array', 'itemType': GetEdgeContainerAppResourceCapacityResponseBodyRegions },
|
|
63
|
+
requestId: 'string',
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
validate() {
|
|
68
|
+
if(Array.isArray(this.regions)) {
|
|
69
|
+
$dara.Model.validateArray(this.regions);
|
|
70
|
+
}
|
|
71
|
+
super.validate();
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
constructor(map?: { [key: string]: any }) {
|
|
75
|
+
super(map);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -5,6 +5,35 @@ import { QuotaPageContentTypesValue } from "./QuotaPageContentTypesValue";
|
|
|
5
5
|
import { QuotaListItemsValue } from "./QuotaListItemsValue";
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
export class GetWafQuotaResponseBodyQuotaCaptcha extends $dara.Model {
|
|
9
|
+
enable?: boolean;
|
|
10
|
+
numberTotal?: WafQuotaInteger;
|
|
11
|
+
static names(): { [key: string]: string } {
|
|
12
|
+
return {
|
|
13
|
+
enable: 'Enable',
|
|
14
|
+
numberTotal: 'NumberTotal',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
enable: 'boolean',
|
|
21
|
+
numberTotal: WafQuotaInteger,
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
validate() {
|
|
26
|
+
if(this.numberTotal && typeof (this.numberTotal as any).validate === 'function') {
|
|
27
|
+
(this.numberTotal as any).validate();
|
|
28
|
+
}
|
|
29
|
+
super.validate();
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
constructor(map?: { [key: string]: any }) {
|
|
33
|
+
super(map);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
8
37
|
export class GetWafQuotaResponseBodyQuotaList extends $dara.Model {
|
|
9
38
|
/**
|
|
10
39
|
* @remarks
|
|
@@ -194,6 +223,7 @@ export class GetWafQuotaResponseBodyQuotaScenePolicy extends $dara.Model {
|
|
|
194
223
|
}
|
|
195
224
|
|
|
196
225
|
export class GetWafQuotaResponseBodyQuota extends $dara.Model {
|
|
226
|
+
captcha?: GetWafQuotaResponseBodyQuotaCaptcha;
|
|
197
227
|
/**
|
|
198
228
|
* @remarks
|
|
199
229
|
* Quota information related to custom lists.
|
|
@@ -216,6 +246,7 @@ export class GetWafQuotaResponseBodyQuota extends $dara.Model {
|
|
|
216
246
|
scenePolicy?: GetWafQuotaResponseBodyQuotaScenePolicy;
|
|
217
247
|
static names(): { [key: string]: string } {
|
|
218
248
|
return {
|
|
249
|
+
captcha: 'Captcha',
|
|
219
250
|
list: 'List',
|
|
220
251
|
managedRulesGroup: 'ManagedRulesGroup',
|
|
221
252
|
page: 'Page',
|
|
@@ -225,6 +256,7 @@ export class GetWafQuotaResponseBodyQuota extends $dara.Model {
|
|
|
225
256
|
|
|
226
257
|
static types(): { [key: string]: any } {
|
|
227
258
|
return {
|
|
259
|
+
captcha: GetWafQuotaResponseBodyQuotaCaptcha,
|
|
228
260
|
list: GetWafQuotaResponseBodyQuotaList,
|
|
229
261
|
managedRulesGroup: GetWafQuotaResponseBodyQuotaManagedRulesGroup,
|
|
230
262
|
page: GetWafQuotaResponseBodyQuotaPage,
|
|
@@ -233,6 +265,9 @@ export class GetWafQuotaResponseBodyQuota extends $dara.Model {
|
|
|
233
265
|
}
|
|
234
266
|
|
|
235
267
|
validate() {
|
|
268
|
+
if(this.captcha && typeof (this.captcha as any).validate === 'function') {
|
|
269
|
+
(this.captcha as any).validate();
|
|
270
|
+
}
|
|
236
271
|
if(this.list && typeof (this.list as any).validate === 'function') {
|
|
237
272
|
(this.list as any).validate();
|
|
238
273
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListEdgeContainerAppImageSecretsRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* app-88068867578379****
|
|
12
|
+
*/
|
|
13
|
+
appId?: string;
|
|
14
|
+
static names(): { [key: string]: string } {
|
|
15
|
+
return {
|
|
16
|
+
appId: 'AppId',
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
static types(): { [key: string]: any } {
|
|
21
|
+
return {
|
|
22
|
+
appId: 'string',
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
super.validate();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
constructor(map?: { [key: string]: any }) {
|
|
31
|
+
super(map);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { ListEdgeContainerAppImageSecretsResponseBody } from "./ListEdgeContainerAppImageSecretsResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class ListEdgeContainerAppImageSecretsResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: ListEdgeContainerAppImageSecretsResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: ListEdgeContainerAppImageSecretsResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListEdgeContainerAppImageSecretsResponseBodyImageSecretList extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* reg-123****
|
|
9
|
+
*/
|
|
10
|
+
name?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* registry-vpc.cn-hangzhou.aliyuncs.com
|
|
14
|
+
*/
|
|
15
|
+
registry?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* admin
|
|
19
|
+
*/
|
|
20
|
+
username?: string;
|
|
21
|
+
static names(): { [key: string]: string } {
|
|
22
|
+
return {
|
|
23
|
+
name: 'Name',
|
|
24
|
+
registry: 'Registry',
|
|
25
|
+
username: 'Username',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
name: 'string',
|
|
32
|
+
registry: 'string',
|
|
33
|
+
username: 'string',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
validate() {
|
|
38
|
+
super.validate();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
constructor(map?: { [key: string]: any }) {
|
|
42
|
+
super(map);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export class ListEdgeContainerAppImageSecretsResponseBody extends $dara.Model {
|
|
47
|
+
imageSecretList?: ListEdgeContainerAppImageSecretsResponseBodyImageSecretList[];
|
|
48
|
+
/**
|
|
49
|
+
* @example
|
|
50
|
+
* 3558df77-8a7a-4060-a900-2d7949403836
|
|
51
|
+
*/
|
|
52
|
+
requestId?: string;
|
|
53
|
+
static names(): { [key: string]: string } {
|
|
54
|
+
return {
|
|
55
|
+
imageSecretList: 'ImageSecretList',
|
|
56
|
+
requestId: 'RequestId',
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
static types(): { [key: string]: any } {
|
|
61
|
+
return {
|
|
62
|
+
imageSecretList: { 'type': 'array', 'itemType': ListEdgeContainerAppImageSecretsResponseBodyImageSecretList },
|
|
63
|
+
requestId: 'string',
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
validate() {
|
|
68
|
+
if(Array.isArray(this.imageSecretList)) {
|
|
69
|
+
$dara.Model.validateArray(this.imageSecretList);
|
|
70
|
+
}
|
|
71
|
+
super.validate();
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
constructor(map?: { [key: string]: any }) {
|
|
75
|
+
super(map);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -38,6 +38,7 @@ export class ListUserRatePlanInstancesRequest extends $dara.Model {
|
|
|
38
38
|
* 500
|
|
39
39
|
*/
|
|
40
40
|
pageSize?: number;
|
|
41
|
+
planNameEn?: string;
|
|
41
42
|
planType?: string;
|
|
42
43
|
remainingExpireDays?: number;
|
|
43
44
|
/**
|
|
@@ -85,6 +86,7 @@ export class ListUserRatePlanInstancesRequest extends $dara.Model {
|
|
|
85
86
|
instanceId: 'InstanceId',
|
|
86
87
|
pageNumber: 'PageNumber',
|
|
87
88
|
pageSize: 'PageSize',
|
|
89
|
+
planNameEn: 'PlanNameEn',
|
|
88
90
|
planType: 'PlanType',
|
|
89
91
|
remainingExpireDays: 'RemainingExpireDays',
|
|
90
92
|
sortBy: 'SortBy',
|
|
@@ -100,6 +102,7 @@ export class ListUserRatePlanInstancesRequest extends $dara.Model {
|
|
|
100
102
|
instanceId: 'string',
|
|
101
103
|
pageNumber: 'number',
|
|
102
104
|
pageSize: 'number',
|
|
105
|
+
planNameEn: 'string',
|
|
103
106
|
planType: 'string',
|
|
104
107
|
remainingExpireDays: 'number',
|
|
105
108
|
sortBy: 'string',
|
package/src/models/model.ts
CHANGED
|
@@ -110,6 +110,7 @@ export { GetClientCaCertificateResponseBodyResult } from './GetClientCaCertifica
|
|
|
110
110
|
export { GetClientCertificateResponseBodyResult } from './GetClientCertificateResponseBody';
|
|
111
111
|
export { GetEdgeContainerAppResponseBodyAppHealthCheck } from './GetEdgeContainerAppResponseBody';
|
|
112
112
|
export { GetEdgeContainerAppResponseBodyApp } from './GetEdgeContainerAppResponseBody';
|
|
113
|
+
export { GetEdgeContainerAppResourceCapacityResponseBodyRegions } from './GetEdgeContainerAppResourceCapacityResponseBody';
|
|
113
114
|
export { GetEdgeContainerAppResourceReserveResponseBodyReserveSet } from './GetEdgeContainerAppResourceReserveResponseBody';
|
|
114
115
|
export { GetEdgeContainerAppResourceStatusResponseBodyRegions } from './GetEdgeContainerAppResourceStatusResponseBody';
|
|
115
116
|
export { GetEdgeContainerAppStatusResponseBodyAppStatusRegions } from './GetEdgeContainerAppStatusResponseBody';
|
|
@@ -177,6 +178,7 @@ export { GetWafFilterResponseBodyFilterFieldsSelectorData } from './GetWafFilter
|
|
|
177
178
|
export { GetWafFilterResponseBodyFilterFieldsSelector } from './GetWafFilterResponseBody';
|
|
178
179
|
export { GetWafFilterResponseBodyFilterFields } from './GetWafFilterResponseBody';
|
|
179
180
|
export { GetWafFilterResponseBodyFilter } from './GetWafFilterResponseBody';
|
|
181
|
+
export { GetWafQuotaResponseBodyQuotaCaptcha } from './GetWafQuotaResponseBody';
|
|
180
182
|
export { GetWafQuotaResponseBodyQuotaList } from './GetWafQuotaResponseBody';
|
|
181
183
|
export { GetWafQuotaResponseBodyQuotaManagedRulesGroup } from './GetWafQuotaResponseBody';
|
|
182
184
|
export { GetWafQuotaResponseBodyQuotaPage } from './GetWafQuotaResponseBody';
|
|
@@ -192,6 +194,7 @@ export { ListClientCaCertificatesResponseBodyResult } from './ListClientCaCertif
|
|
|
192
194
|
export { ListClientCertificatesResponseBodyResult } from './ListClientCertificatesResponseBody';
|
|
193
195
|
export { ListCompressionRulesResponseBodyConfigs } from './ListCompressionRulesResponseBody';
|
|
194
196
|
export { ListESAIPInfoResponseBodyContent } from './ListEsaipinfoResponseBody';
|
|
197
|
+
export { ListEdgeContainerAppImageSecretsResponseBodyImageSecretList } from './ListEdgeContainerAppImageSecretsResponseBody';
|
|
195
198
|
export { ListEdgeContainerAppRecordsResponseBodyRecords } from './ListEdgeContainerAppRecordsResponseBody';
|
|
196
199
|
export { ListEdgeContainerAppVersionsResponseBodyVersionsContainersProbeContent } from './ListEdgeContainerAppVersionsResponseBody';
|
|
197
200
|
export { ListEdgeContainerAppVersionsResponseBodyVersionsContainers } from './ListEdgeContainerAppVersionsResponseBody';
|
|
@@ -393,6 +396,9 @@ export { CreateCustomScenePolicyResponse } from './CreateCustomScenePolicyRespon
|
|
|
393
396
|
export { CreateEdgeContainerAppRequest } from './CreateEdgeContainerAppRequest';
|
|
394
397
|
export { CreateEdgeContainerAppResponseBody } from './CreateEdgeContainerAppResponseBody';
|
|
395
398
|
export { CreateEdgeContainerAppResponse } from './CreateEdgeContainerAppResponse';
|
|
399
|
+
export { CreateEdgeContainerAppImageSecretRequest } from './CreateEdgeContainerAppImageSecretRequest';
|
|
400
|
+
export { CreateEdgeContainerAppImageSecretResponseBody } from './CreateEdgeContainerAppImageSecretResponseBody';
|
|
401
|
+
export { CreateEdgeContainerAppImageSecretResponse } from './CreateEdgeContainerAppImageSecretResponse';
|
|
396
402
|
export { CreateEdgeContainerAppRecordRequest } from './CreateEdgeContainerAppRecordRequest';
|
|
397
403
|
export { CreateEdgeContainerAppRecordResponseBody } from './CreateEdgeContainerAppRecordResponseBody';
|
|
398
404
|
export { CreateEdgeContainerAppRecordResponse } from './CreateEdgeContainerAppRecordResponse';
|
|
@@ -554,6 +560,9 @@ export { DeleteCustomScenePolicyResponse } from './DeleteCustomScenePolicyRespon
|
|
|
554
560
|
export { DeleteEdgeContainerAppRequest } from './DeleteEdgeContainerAppRequest';
|
|
555
561
|
export { DeleteEdgeContainerAppResponseBody } from './DeleteEdgeContainerAppResponseBody';
|
|
556
562
|
export { DeleteEdgeContainerAppResponse } from './DeleteEdgeContainerAppResponse';
|
|
563
|
+
export { DeleteEdgeContainerAppImageSecretRequest } from './DeleteEdgeContainerAppImageSecretRequest';
|
|
564
|
+
export { DeleteEdgeContainerAppImageSecretResponseBody } from './DeleteEdgeContainerAppImageSecretResponseBody';
|
|
565
|
+
export { DeleteEdgeContainerAppImageSecretResponse } from './DeleteEdgeContainerAppImageSecretResponse';
|
|
557
566
|
export { DeleteEdgeContainerAppRecordRequest } from './DeleteEdgeContainerAppRecordRequest';
|
|
558
567
|
export { DeleteEdgeContainerAppRecordResponseBody } from './DeleteEdgeContainerAppRecordResponseBody';
|
|
559
568
|
export { DeleteEdgeContainerAppRecordResponse } from './DeleteEdgeContainerAppRecordResponse';
|
|
@@ -780,6 +789,9 @@ export { GetEdgeContainerAppResponse } from './GetEdgeContainerAppResponse';
|
|
|
780
789
|
export { GetEdgeContainerAppLogRiverRequest } from './GetEdgeContainerAppLogRiverRequest';
|
|
781
790
|
export { GetEdgeContainerAppLogRiverResponseBody } from './GetEdgeContainerAppLogRiverResponseBody';
|
|
782
791
|
export { GetEdgeContainerAppLogRiverResponse } from './GetEdgeContainerAppLogRiverResponse';
|
|
792
|
+
export { GetEdgeContainerAppResourceCapacityRequest } from './GetEdgeContainerAppResourceCapacityRequest';
|
|
793
|
+
export { GetEdgeContainerAppResourceCapacityResponseBody } from './GetEdgeContainerAppResourceCapacityResponseBody';
|
|
794
|
+
export { GetEdgeContainerAppResourceCapacityResponse } from './GetEdgeContainerAppResourceCapacityResponse';
|
|
783
795
|
export { GetEdgeContainerAppResourceReserveRequest } from './GetEdgeContainerAppResourceReserveRequest';
|
|
784
796
|
export { GetEdgeContainerAppResourceReserveResponseBody } from './GetEdgeContainerAppResourceReserveResponseBody';
|
|
785
797
|
export { GetEdgeContainerAppResourceReserveResponse } from './GetEdgeContainerAppResourceReserveResponse';
|
|
@@ -995,6 +1007,9 @@ export { ListCompressionRulesResponse } from './ListCompressionRulesResponse';
|
|
|
995
1007
|
export { ListESAIPInfoRequest } from './ListEsaipinfoRequest';
|
|
996
1008
|
export { ListESAIPInfoResponseBody } from './ListEsaipinfoResponseBody';
|
|
997
1009
|
export { ListESAIPInfoResponse } from './ListEsaipinfoResponse';
|
|
1010
|
+
export { ListEdgeContainerAppImageSecretsRequest } from './ListEdgeContainerAppImageSecretsRequest';
|
|
1011
|
+
export { ListEdgeContainerAppImageSecretsResponseBody } from './ListEdgeContainerAppImageSecretsResponseBody';
|
|
1012
|
+
export { ListEdgeContainerAppImageSecretsResponse } from './ListEdgeContainerAppImageSecretsResponse';
|
|
998
1013
|
export { ListEdgeContainerAppRecordsRequest } from './ListEdgeContainerAppRecordsRequest';
|
|
999
1014
|
export { ListEdgeContainerAppRecordsResponseBody } from './ListEdgeContainerAppRecordsResponseBody';
|
|
1000
1015
|
export { ListEdgeContainerAppRecordsResponse } from './ListEdgeContainerAppRecordsResponse';
|