@alicloud/eas20210701 7.6.0 → 7.7.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 +72 -0
- package/dist/client.js +166 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateConfigRequest.d.ts +21 -0
- package/dist/models/CreateConfigRequest.js +58 -0
- package/dist/models/CreateConfigRequest.js.map +1 -0
- package/dist/models/CreateConfigResponse.d.ts +19 -0
- package/dist/models/CreateConfigResponse.js +69 -0
- package/dist/models/CreateConfigResponse.js.map +1 -0
- package/dist/models/CreateConfigResponseBody.d.ts +33 -0
- package/dist/models/CreateConfigResponseBody.js +64 -0
- package/dist/models/CreateConfigResponseBody.js.map +1 -0
- package/dist/models/DeleteConfigRequest.d.ts +13 -0
- package/dist/models/DeleteConfigRequest.js +54 -0
- package/dist/models/DeleteConfigRequest.js.map +1 -0
- package/dist/models/DeleteConfigResponse.d.ts +19 -0
- package/dist/models/DeleteConfigResponse.js +69 -0
- package/dist/models/DeleteConfigResponse.js.map +1 -0
- package/dist/models/DeleteConfigResponseBody.d.ts +29 -0
- package/dist/models/DeleteConfigResponseBody.js +60 -0
- package/dist/models/DeleteConfigResponseBody.js.map +1 -0
- package/dist/models/ListConfigsRequest.d.ts +15 -0
- package/dist/models/ListConfigsRequest.js +60 -0
- package/dist/models/ListConfigsRequest.js.map +1 -0
- package/dist/models/ListConfigsResponse.d.ts +19 -0
- package/dist/models/ListConfigsResponse.js +69 -0
- package/dist/models/ListConfigsResponse.js.map +1 -0
- package/dist/models/ListConfigsResponseBody.d.ts +113 -0
- package/dist/models/ListConfigsResponseBody.js +98 -0
- package/dist/models/ListConfigsResponseBody.js.map +1 -0
- package/dist/models/UpdateConfigRequest.d.ts +21 -0
- package/dist/models/UpdateConfigRequest.js +58 -0
- package/dist/models/UpdateConfigRequest.js.map +1 -0
- package/dist/models/UpdateConfigResponse.d.ts +19 -0
- package/dist/models/UpdateConfigResponse.js +69 -0
- package/dist/models/UpdateConfigResponse.js.map +1 -0
- package/dist/models/UpdateConfigResponseBody.d.ts +45 -0
- package/dist/models/UpdateConfigResponseBody.js +64 -0
- package/dist/models/UpdateConfigResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +13 -0
- package/dist/models/model.js +35 -9
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +178 -0
- package/src/models/CreateConfigRequest.ts +34 -0
- package/src/models/CreateConfigResponse.ts +40 -0
- package/src/models/CreateConfigResponseBody.ts +52 -0
- package/src/models/DeleteConfigRequest.ts +24 -0
- package/src/models/DeleteConfigResponse.ts +40 -0
- package/src/models/DeleteConfigResponseBody.ts +44 -0
- package/src/models/ListConfigsRequest.ts +30 -0
- package/src/models/ListConfigsResponse.ts +40 -0
- package/src/models/ListConfigsResponseBody.ts +157 -0
- package/src/models/UpdateConfigRequest.ts +34 -0
- package/src/models/UpdateConfigResponse.ts +40 -0
- package/src/models/UpdateConfigResponseBody.ts +64 -0
- package/src/models/model.ts +13 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { DeleteConfigResponseBody } from "./DeleteConfigResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class DeleteConfigResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: DeleteConfigResponseBody;
|
|
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: DeleteConfigResponseBody,
|
|
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,44 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DeleteConfigResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* 删除的配置数量
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* 1
|
|
12
|
+
*/
|
|
13
|
+
deleted?: number;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* 操作结果消息
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* Successfully deleted 1 configs
|
|
20
|
+
*/
|
|
21
|
+
message?: string;
|
|
22
|
+
static names(): { [key: string]: string } {
|
|
23
|
+
return {
|
|
24
|
+
deleted: 'deleted',
|
|
25
|
+
message: 'message',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
deleted: 'number',
|
|
32
|
+
message: 'string',
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
validate() {
|
|
37
|
+
super.validate();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
constructor(map?: { [key: string]: any }) {
|
|
41
|
+
super(map);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListConfigsRequest extends $dara.Model {
|
|
6
|
+
page?: number;
|
|
7
|
+
pageSize?: number;
|
|
8
|
+
static names(): { [key: string]: string } {
|
|
9
|
+
return {
|
|
10
|
+
page: 'Page',
|
|
11
|
+
pageSize: 'PageSize',
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
static types(): { [key: string]: any } {
|
|
16
|
+
return {
|
|
17
|
+
page: 'number',
|
|
18
|
+
pageSize: 'number',
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
validate() {
|
|
23
|
+
super.validate();
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
constructor(map?: { [key: string]: any }) {
|
|
27
|
+
super(map);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { ListConfigsResponseBody } from "./ListConfigsResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class ListConfigsResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: ListConfigsResponseBody;
|
|
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: ListConfigsResponseBody,
|
|
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,157 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListConfigsResponseBodyConfigs extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* 创建时间
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* 2024-01-01T10:00:00Z
|
|
12
|
+
*/
|
|
13
|
+
createdAt?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* 配置项键名
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* rate_limit
|
|
20
|
+
*/
|
|
21
|
+
key?: string;
|
|
22
|
+
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* 更新时间
|
|
25
|
+
*
|
|
26
|
+
* @example
|
|
27
|
+
* 2024-01-01T10:00:00Z
|
|
28
|
+
*/
|
|
29
|
+
updatedAt?: string;
|
|
30
|
+
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* 配置值
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* 100
|
|
36
|
+
*/
|
|
37
|
+
value?: string;
|
|
38
|
+
static names(): { [key: string]: string } {
|
|
39
|
+
return {
|
|
40
|
+
createdAt: 'CreatedAt',
|
|
41
|
+
key: 'Key',
|
|
42
|
+
updatedAt: 'UpdatedAt',
|
|
43
|
+
value: 'Value',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static types(): { [key: string]: any } {
|
|
48
|
+
return {
|
|
49
|
+
createdAt: 'string',
|
|
50
|
+
key: 'string',
|
|
51
|
+
updatedAt: 'string',
|
|
52
|
+
value: 'string',
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
validate() {
|
|
57
|
+
super.validate();
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
constructor(map?: { [key: string]: any }) {
|
|
61
|
+
super(map);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export class ListConfigsResponseBody extends $dara.Model {
|
|
66
|
+
/**
|
|
67
|
+
* @remarks
|
|
68
|
+
* 配置项列表
|
|
69
|
+
*
|
|
70
|
+
* @example
|
|
71
|
+
* [{"Key": "rate_limit", "Value": "{\\"limit\\": 100}", "CreatedAt": "2024-01-15T10:30:00Z", "UpdatedAt": "2024-01-15T10:30:00Z"}]
|
|
72
|
+
*/
|
|
73
|
+
configs?: ListConfigsResponseBodyConfigs[];
|
|
74
|
+
/**
|
|
75
|
+
* @remarks
|
|
76
|
+
* 是否有更多数据
|
|
77
|
+
*
|
|
78
|
+
* @example
|
|
79
|
+
* true
|
|
80
|
+
*/
|
|
81
|
+
hasMore?: boolean;
|
|
82
|
+
/**
|
|
83
|
+
* @remarks
|
|
84
|
+
* 服务名称
|
|
85
|
+
*
|
|
86
|
+
* @example
|
|
87
|
+
* my-service
|
|
88
|
+
*/
|
|
89
|
+
name?: string;
|
|
90
|
+
/**
|
|
91
|
+
* @remarks
|
|
92
|
+
* 当前页码
|
|
93
|
+
*
|
|
94
|
+
* @example
|
|
95
|
+
* 1
|
|
96
|
+
*/
|
|
97
|
+
page?: number;
|
|
98
|
+
/**
|
|
99
|
+
* @remarks
|
|
100
|
+
* 每页数量
|
|
101
|
+
*
|
|
102
|
+
* @example
|
|
103
|
+
* 100
|
|
104
|
+
*/
|
|
105
|
+
pageSize?: number;
|
|
106
|
+
/**
|
|
107
|
+
* @remarks
|
|
108
|
+
* 总数量
|
|
109
|
+
*
|
|
110
|
+
* @example
|
|
111
|
+
* 150
|
|
112
|
+
*/
|
|
113
|
+
total?: number;
|
|
114
|
+
/**
|
|
115
|
+
* @remarks
|
|
116
|
+
* 配置类型
|
|
117
|
+
*
|
|
118
|
+
* @example
|
|
119
|
+
* Service
|
|
120
|
+
*/
|
|
121
|
+
type?: string;
|
|
122
|
+
static names(): { [key: string]: string } {
|
|
123
|
+
return {
|
|
124
|
+
configs: 'Configs',
|
|
125
|
+
hasMore: 'HasMore',
|
|
126
|
+
name: 'Name',
|
|
127
|
+
page: 'Page',
|
|
128
|
+
pageSize: 'PageSize',
|
|
129
|
+
total: 'Total',
|
|
130
|
+
type: 'Type',
|
|
131
|
+
};
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
static types(): { [key: string]: any } {
|
|
135
|
+
return {
|
|
136
|
+
configs: { 'type': 'array', 'itemType': ListConfigsResponseBodyConfigs },
|
|
137
|
+
hasMore: 'boolean',
|
|
138
|
+
name: 'string',
|
|
139
|
+
page: 'number',
|
|
140
|
+
pageSize: 'number',
|
|
141
|
+
total: 'number',
|
|
142
|
+
type: 'string',
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
validate() {
|
|
147
|
+
if(Array.isArray(this.configs)) {
|
|
148
|
+
$dara.Model.validateArray(this.configs);
|
|
149
|
+
}
|
|
150
|
+
super.validate();
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
constructor(map?: { [key: string]: any }) {
|
|
154
|
+
super(map);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
@@ -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 UpdateConfigRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* 新的配置值
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* 200
|
|
12
|
+
*/
|
|
13
|
+
value?: string;
|
|
14
|
+
static names(): { [key: string]: string } {
|
|
15
|
+
return {
|
|
16
|
+
value: 'Value',
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
static types(): { [key: string]: any } {
|
|
21
|
+
return {
|
|
22
|
+
value: '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 { UpdateConfigResponseBody } from "./UpdateConfigResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class UpdateConfigResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: UpdateConfigResponseBody;
|
|
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: UpdateConfigResponseBody,
|
|
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,64 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class UpdateConfigResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* 创建时间
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* 2024-01-15T10:30:00Z
|
|
12
|
+
*/
|
|
13
|
+
createdAt?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* 配置键名
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* llm_gateway.route_policy
|
|
20
|
+
*/
|
|
21
|
+
key?: string;
|
|
22
|
+
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* 更新时间
|
|
25
|
+
*
|
|
26
|
+
* @example
|
|
27
|
+
* 2024-01-15T11:00:00Z
|
|
28
|
+
*/
|
|
29
|
+
updatedAt?: string;
|
|
30
|
+
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* 配置值
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* {"model": "gpt-4-turbo"}
|
|
36
|
+
*/
|
|
37
|
+
value?: string;
|
|
38
|
+
static names(): { [key: string]: string } {
|
|
39
|
+
return {
|
|
40
|
+
createdAt: 'CreatedAt',
|
|
41
|
+
key: 'Key',
|
|
42
|
+
updatedAt: 'UpdatedAt',
|
|
43
|
+
value: 'Value',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static types(): { [key: string]: any } {
|
|
48
|
+
return {
|
|
49
|
+
createdAt: 'string',
|
|
50
|
+
key: 'string',
|
|
51
|
+
updatedAt: 'string',
|
|
52
|
+
value: 'string',
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
validate() {
|
|
57
|
+
super.validate();
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
constructor(map?: { [key: string]: any }) {
|
|
61
|
+
super(map);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -42,6 +42,7 @@ export { ListAclPolicyResponseBodyInternetAclPolicyList } from './ListAclPolicyR
|
|
|
42
42
|
export { ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList } from './ListAclPolicyResponseBody';
|
|
43
43
|
export { ListAclPolicyResponseBodyIntranetVpcAclPolicyList } from './ListAclPolicyResponseBody';
|
|
44
44
|
export { ListBenchmarkTaskResponseBodyTasks } from './ListBenchmarkTaskResponseBody';
|
|
45
|
+
export { ListConfigsResponseBodyConfigs } from './ListConfigsResponseBody';
|
|
45
46
|
export { ListGatewayResponseBodyGatewaysLabels } from './ListGatewayResponseBody';
|
|
46
47
|
export { ListGatewayResponseBodyGateways } from './ListGatewayResponseBody';
|
|
47
48
|
export { ListGatewayDomainsResponseBodyCustomDomains } from './ListGatewayDomainsResponseBody';
|
|
@@ -92,6 +93,9 @@ export { CreateAppServiceResponse } from './CreateAppServiceResponse';
|
|
|
92
93
|
export { CreateBenchmarkTaskRequest } from './CreateBenchmarkTaskRequest';
|
|
93
94
|
export { CreateBenchmarkTaskResponseBody } from './CreateBenchmarkTaskResponseBody';
|
|
94
95
|
export { CreateBenchmarkTaskResponse } from './CreateBenchmarkTaskResponse';
|
|
96
|
+
export { CreateConfigRequest } from './CreateConfigRequest';
|
|
97
|
+
export { CreateConfigResponseBody } from './CreateConfigResponseBody';
|
|
98
|
+
export { CreateConfigResponse } from './CreateConfigResponse';
|
|
95
99
|
export { CreateFaultInjectionRequest } from './CreateFaultInjectionRequest';
|
|
96
100
|
export { CreateFaultInjectionResponseBody } from './CreateFaultInjectionResponseBody';
|
|
97
101
|
export { CreateFaultInjectionResponse } from './CreateFaultInjectionResponse';
|
|
@@ -143,6 +147,9 @@ export { DeleteAclPolicyResponse } from './DeleteAclPolicyResponse';
|
|
|
143
147
|
export { DeleteBenchmarkTaskRequest } from './DeleteBenchmarkTaskRequest';
|
|
144
148
|
export { DeleteBenchmarkTaskResponseBody } from './DeleteBenchmarkTaskResponseBody';
|
|
145
149
|
export { DeleteBenchmarkTaskResponse } from './DeleteBenchmarkTaskResponse';
|
|
150
|
+
export { DeleteConfigRequest } from './DeleteConfigRequest';
|
|
151
|
+
export { DeleteConfigResponseBody } from './DeleteConfigResponseBody';
|
|
152
|
+
export { DeleteConfigResponse } from './DeleteConfigResponse';
|
|
146
153
|
export { DeleteFaultInjectionRequest } from './DeleteFaultInjectionRequest';
|
|
147
154
|
export { DeleteFaultInjectionResponseBody } from './DeleteFaultInjectionResponseBody';
|
|
148
155
|
export { DeleteFaultInjectionResponse } from './DeleteFaultInjectionResponse';
|
|
@@ -281,6 +288,9 @@ export { ListAclPolicyResponse } from './ListAclPolicyResponse';
|
|
|
281
288
|
export { ListBenchmarkTaskRequest } from './ListBenchmarkTaskRequest';
|
|
282
289
|
export { ListBenchmarkTaskResponseBody } from './ListBenchmarkTaskResponseBody';
|
|
283
290
|
export { ListBenchmarkTaskResponse } from './ListBenchmarkTaskResponse';
|
|
291
|
+
export { ListConfigsRequest } from './ListConfigsRequest';
|
|
292
|
+
export { ListConfigsResponseBody } from './ListConfigsResponseBody';
|
|
293
|
+
export { ListConfigsResponse } from './ListConfigsResponse';
|
|
284
294
|
export { ListGatewayRequest } from './ListGatewayRequest';
|
|
285
295
|
export { ListGatewayShrinkRequest } from './ListGatewayShrinkRequest';
|
|
286
296
|
export { ListGatewayResponseBody } from './ListGatewayResponseBody';
|
|
@@ -367,6 +377,9 @@ export { UpdateAppServiceResponse } from './UpdateAppServiceResponse';
|
|
|
367
377
|
export { UpdateBenchmarkTaskRequest } from './UpdateBenchmarkTaskRequest';
|
|
368
378
|
export { UpdateBenchmarkTaskResponseBody } from './UpdateBenchmarkTaskResponseBody';
|
|
369
379
|
export { UpdateBenchmarkTaskResponse } from './UpdateBenchmarkTaskResponse';
|
|
380
|
+
export { UpdateConfigRequest } from './UpdateConfigRequest';
|
|
381
|
+
export { UpdateConfigResponseBody } from './UpdateConfigResponseBody';
|
|
382
|
+
export { UpdateConfigResponse } from './UpdateConfigResponse';
|
|
370
383
|
export { UpdateGatewayRequest } from './UpdateGatewayRequest';
|
|
371
384
|
export { UpdateGatewayResponseBody } from './UpdateGatewayResponseBody';
|
|
372
385
|
export { UpdateGatewayResponse } from './UpdateGatewayResponse';
|