@alicloud/apig20240327 5.3.0 → 5.4.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 +22 -4
- package/dist/client.js +58 -4
- package/dist/client.js.map +1 -1
- package/dist/models/CreateServiceRequest.d.ts +1 -0
- package/dist/models/CreateServiceRequest.js +2 -0
- package/dist/models/CreateServiceRequest.js.map +1 -1
- package/dist/models/CreateSourceRequest.d.ts +45 -0
- package/dist/models/CreateSourceRequest.js.map +1 -1
- package/dist/models/GetResourceOverviewRequest.d.ts +4 -0
- package/dist/models/GetResourceOverviewRequest.js.map +1 -1
- package/dist/models/GetResourceOverviewResponseBody.d.ts +57 -0
- package/dist/models/GetResourceOverviewResponseBody.js +62 -1
- package/dist/models/GetResourceOverviewResponseBody.js.map +1 -1
- package/dist/models/GetSourceResponseBody.d.ts +51 -0
- package/dist/models/GetSourceResponseBody.js.map +1 -1
- package/dist/models/HttpApiDeployConfig.d.ts +1 -0
- package/dist/models/HttpApiDeployConfig.js +2 -0
- package/dist/models/HttpApiDeployConfig.js.map +1 -1
- package/dist/models/ListGatewayFeaturesResponseBody.d.ts +94 -0
- package/dist/models/ListGatewayFeaturesResponseBody.js.map +1 -1
- package/dist/models/RiskCheckResults.d.ts +188 -0
- package/dist/models/RiskCheckResults.js +145 -0
- package/dist/models/RiskCheckResults.js.map +1 -0
- package/dist/models/SyncMcpserversRequest.d.ts +66 -0
- package/dist/models/SyncMcpserversRequest.js +102 -0
- package/dist/models/SyncMcpserversRequest.js.map +1 -0
- package/dist/models/SyncMcpserversResponse.d.ts +19 -0
- package/dist/models/SyncMcpserversResponse.js +69 -0
- package/dist/models/SyncMcpserversResponse.js.map +1 -0
- package/dist/models/SyncMcpserversResponseBody.d.ts +82 -0
- package/dist/models/SyncMcpserversResponseBody.js +142 -0
- package/dist/models/SyncMcpserversResponseBody.js.map +1 -0
- package/dist/models/UpdateServiceRequest.d.ts +129 -0
- package/dist/models/UpdateServiceRequest.js.map +1 -1
- package/dist/models/model.d.ts +12 -0
- package/dist/models/model.js +37 -13
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +65 -4
- package/src/models/CreateServiceRequest.ts +3 -0
- package/src/models/CreateSourceRequest.ts +45 -0
- package/src/models/GetResourceOverviewRequest.ts +4 -0
- package/src/models/GetResourceOverviewResponseBody.ts +100 -0
- package/src/models/GetSourceResponseBody.ts +51 -0
- package/src/models/HttpApiDeployConfig.ts +3 -0
- package/src/models/ListGatewayFeaturesResponseBody.ts +94 -0
- package/src/models/RiskCheckResults.ts +268 -0
- package/src/models/SyncMcpserversRequest.ts +114 -0
- package/src/models/SyncMcpserversResponse.ts +40 -0
- package/src/models/SyncMcpserversResponseBody.ts +152 -0
- package/src/models/UpdateServiceRequest.ts +129 -0
- package/src/models/model.ts +12 -0
|
@@ -82,6 +82,100 @@ export class GetResourceOverviewResponseBodyDataGateway extends $dara.Model {
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
export class GetResourceOverviewResponseBodyDataRiskOverviewRiskDetails extends $dara.Model {
|
|
86
|
+
/**
|
|
87
|
+
* @example
|
|
88
|
+
* gw-xxxxxx
|
|
89
|
+
*/
|
|
90
|
+
gatewayId?: string;
|
|
91
|
+
/**
|
|
92
|
+
* @example
|
|
93
|
+
* test-gateway
|
|
94
|
+
*/
|
|
95
|
+
gatewayName?: string;
|
|
96
|
+
/**
|
|
97
|
+
* @example
|
|
98
|
+
* LOW
|
|
99
|
+
*/
|
|
100
|
+
riskLevel?: string;
|
|
101
|
+
riskNames?: string[];
|
|
102
|
+
/**
|
|
103
|
+
* @example
|
|
104
|
+
* 100
|
|
105
|
+
*/
|
|
106
|
+
score?: string;
|
|
107
|
+
static names(): { [key: string]: string } {
|
|
108
|
+
return {
|
|
109
|
+
gatewayId: 'gatewayId',
|
|
110
|
+
gatewayName: 'gatewayName',
|
|
111
|
+
riskLevel: 'riskLevel',
|
|
112
|
+
riskNames: 'riskNames',
|
|
113
|
+
score: 'score',
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
static types(): { [key: string]: any } {
|
|
118
|
+
return {
|
|
119
|
+
gatewayId: 'string',
|
|
120
|
+
gatewayName: 'string',
|
|
121
|
+
riskLevel: 'string',
|
|
122
|
+
riskNames: { 'type': 'array', 'itemType': 'string' },
|
|
123
|
+
score: 'string',
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
validate() {
|
|
128
|
+
if(Array.isArray(this.riskNames)) {
|
|
129
|
+
$dara.Model.validateArray(this.riskNames);
|
|
130
|
+
}
|
|
131
|
+
super.validate();
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
constructor(map?: { [key: string]: any }) {
|
|
135
|
+
super(map);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export class GetResourceOverviewResponseBodyDataRiskOverview extends $dara.Model {
|
|
140
|
+
/**
|
|
141
|
+
* @example
|
|
142
|
+
* 1
|
|
143
|
+
*/
|
|
144
|
+
count?: string;
|
|
145
|
+
riskDetails?: GetResourceOverviewResponseBodyDataRiskOverviewRiskDetails[];
|
|
146
|
+
/**
|
|
147
|
+
* @example
|
|
148
|
+
* LOW
|
|
149
|
+
*/
|
|
150
|
+
riskLevel?: string;
|
|
151
|
+
static names(): { [key: string]: string } {
|
|
152
|
+
return {
|
|
153
|
+
count: 'count',
|
|
154
|
+
riskDetails: 'riskDetails',
|
|
155
|
+
riskLevel: 'riskLevel',
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
static types(): { [key: string]: any } {
|
|
160
|
+
return {
|
|
161
|
+
count: 'string',
|
|
162
|
+
riskDetails: { 'type': 'array', 'itemType': GetResourceOverviewResponseBodyDataRiskOverviewRiskDetails },
|
|
163
|
+
riskLevel: 'string',
|
|
164
|
+
};
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
validate() {
|
|
168
|
+
if(Array.isArray(this.riskDetails)) {
|
|
169
|
+
$dara.Model.validateArray(this.riskDetails);
|
|
170
|
+
}
|
|
171
|
+
super.validate();
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
constructor(map?: { [key: string]: any }) {
|
|
175
|
+
super(map);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
85
179
|
export class GetResourceOverviewResponseBodyData extends $dara.Model {
|
|
86
180
|
/**
|
|
87
181
|
* @remarks
|
|
@@ -93,10 +187,12 @@ export class GetResourceOverviewResponseBodyData extends $dara.Model {
|
|
|
93
187
|
* Gateway information.
|
|
94
188
|
*/
|
|
95
189
|
gateway?: GetResourceOverviewResponseBodyDataGateway;
|
|
190
|
+
riskOverview?: GetResourceOverviewResponseBodyDataRiskOverview[];
|
|
96
191
|
static names(): { [key: string]: string } {
|
|
97
192
|
return {
|
|
98
193
|
api: 'api',
|
|
99
194
|
gateway: 'gateway',
|
|
195
|
+
riskOverview: 'riskOverview',
|
|
100
196
|
};
|
|
101
197
|
}
|
|
102
198
|
|
|
@@ -104,6 +200,7 @@ export class GetResourceOverviewResponseBodyData extends $dara.Model {
|
|
|
104
200
|
return {
|
|
105
201
|
api: GetResourceOverviewResponseBodyDataApi,
|
|
106
202
|
gateway: GetResourceOverviewResponseBodyDataGateway,
|
|
203
|
+
riskOverview: { 'type': 'array', 'itemType': GetResourceOverviewResponseBodyDataRiskOverview },
|
|
107
204
|
};
|
|
108
205
|
}
|
|
109
206
|
|
|
@@ -114,6 +211,9 @@ export class GetResourceOverviewResponseBodyData extends $dara.Model {
|
|
|
114
211
|
if(this.gateway && typeof (this.gateway as any).validate === 'function') {
|
|
115
212
|
(this.gateway as any).validate();
|
|
116
213
|
}
|
|
214
|
+
if(Array.isArray(this.riskOverview)) {
|
|
215
|
+
$dara.Model.validateArray(this.riskOverview);
|
|
216
|
+
}
|
|
117
217
|
super.validate();
|
|
118
218
|
}
|
|
119
219
|
|
|
@@ -4,6 +4,9 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class GetSourceResponseBodyDataK8SSourceInfo extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The ID of the Container Service for Kubernetes (ACK) cluster.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* c2d290b2d8b5d4935864cace5f0173f31
|
|
9
12
|
*/
|
|
@@ -31,16 +34,25 @@ export class GetSourceResponseBodyDataK8SSourceInfo extends $dara.Model {
|
|
|
31
34
|
|
|
32
35
|
export class GetSourceResponseBodyDataNacosSourceInfo extends $dara.Model {
|
|
33
36
|
/**
|
|
37
|
+
* @remarks
|
|
38
|
+
* The endpoint of the Nacos instance.
|
|
39
|
+
*
|
|
34
40
|
* @example
|
|
35
41
|
* mse
|
|
36
42
|
*/
|
|
37
43
|
address?: string;
|
|
38
44
|
/**
|
|
45
|
+
* @remarks
|
|
46
|
+
* The cluster ID.
|
|
47
|
+
*
|
|
39
48
|
* @example
|
|
40
49
|
* fluss-cn-w7k4hann601
|
|
41
50
|
*/
|
|
42
51
|
clusterId?: string;
|
|
43
52
|
/**
|
|
53
|
+
* @remarks
|
|
54
|
+
* The Nacos instance ID.
|
|
55
|
+
*
|
|
44
56
|
* @example
|
|
45
57
|
* hgprecn-cn-cfn47q7oh001
|
|
46
58
|
*/
|
|
@@ -72,38 +84,67 @@ export class GetSourceResponseBodyDataNacosSourceInfo extends $dara.Model {
|
|
|
72
84
|
|
|
73
85
|
export class GetSourceResponseBodyData extends $dara.Model {
|
|
74
86
|
/**
|
|
87
|
+
* @remarks
|
|
88
|
+
* The creation timestamp.
|
|
89
|
+
*
|
|
75
90
|
* @example
|
|
76
91
|
* 1719386834548
|
|
77
92
|
*/
|
|
78
93
|
createTimestamp?: number;
|
|
79
94
|
/**
|
|
95
|
+
* @remarks
|
|
96
|
+
* The gateway ID.
|
|
97
|
+
*
|
|
80
98
|
* @example
|
|
81
99
|
* gw-cq2vundlhtg***
|
|
82
100
|
*/
|
|
83
101
|
gatewayId?: string;
|
|
102
|
+
/**
|
|
103
|
+
* @remarks
|
|
104
|
+
* Kubernetes source information.
|
|
105
|
+
*/
|
|
84
106
|
k8SSourceInfo?: GetSourceResponseBodyDataK8SSourceInfo;
|
|
107
|
+
/**
|
|
108
|
+
* @remarks
|
|
109
|
+
* The source information when the source type is MSE_NACOS.
|
|
110
|
+
*/
|
|
85
111
|
nacosSourceInfo?: GetSourceResponseBodyDataNacosSourceInfo;
|
|
86
112
|
/**
|
|
113
|
+
* @remarks
|
|
114
|
+
* The name.
|
|
115
|
+
*
|
|
87
116
|
* @example
|
|
88
117
|
* import-test
|
|
89
118
|
*/
|
|
90
119
|
name?: string;
|
|
91
120
|
/**
|
|
121
|
+
* @remarks
|
|
122
|
+
* The resource group ID.
|
|
123
|
+
*
|
|
92
124
|
* @example
|
|
93
125
|
* rg-aekz4us4iruleja
|
|
94
126
|
*/
|
|
95
127
|
resourceGroupId?: string;
|
|
96
128
|
/**
|
|
129
|
+
* @remarks
|
|
130
|
+
* The source ID.
|
|
131
|
+
*
|
|
97
132
|
* @example
|
|
98
133
|
* src-crdddallhtgt***
|
|
99
134
|
*/
|
|
100
135
|
sourceId?: string;
|
|
101
136
|
/**
|
|
137
|
+
* @remarks
|
|
138
|
+
* The type.
|
|
139
|
+
*
|
|
102
140
|
* @example
|
|
103
141
|
* K8S
|
|
104
142
|
*/
|
|
105
143
|
type?: string;
|
|
106
144
|
/**
|
|
145
|
+
* @remarks
|
|
146
|
+
* The update timestamp.
|
|
147
|
+
*
|
|
107
148
|
* @example
|
|
108
149
|
* 1719386834548
|
|
109
150
|
*/
|
|
@@ -153,12 +194,22 @@ export class GetSourceResponseBodyData extends $dara.Model {
|
|
|
153
194
|
|
|
154
195
|
export class GetSourceResponseBody extends $dara.Model {
|
|
155
196
|
/**
|
|
197
|
+
* @remarks
|
|
198
|
+
* The status code.
|
|
199
|
+
*
|
|
156
200
|
* @example
|
|
157
201
|
* Ok
|
|
158
202
|
*/
|
|
159
203
|
code?: string;
|
|
204
|
+
/**
|
|
205
|
+
* @remarks
|
|
206
|
+
* The response data.
|
|
207
|
+
*/
|
|
160
208
|
data?: GetSourceResponseBodyData;
|
|
161
209
|
/**
|
|
210
|
+
* @remarks
|
|
211
|
+
* The response message.
|
|
212
|
+
*
|
|
162
213
|
* @example
|
|
163
214
|
* success
|
|
164
215
|
*/
|
|
@@ -127,6 +127,7 @@ export class HttpApiDeployConfigPolicyConfigs extends $dara.Model {
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
export class HttpApiDeployConfigServiceConfigs extends $dara.Model {
|
|
130
|
+
intentCode?: string;
|
|
130
131
|
/**
|
|
131
132
|
* @example
|
|
132
133
|
* qwen-max
|
|
@@ -149,6 +150,7 @@ export class HttpApiDeployConfigServiceConfigs extends $dara.Model {
|
|
|
149
150
|
weight?: number;
|
|
150
151
|
static names(): { [key: string]: string } {
|
|
151
152
|
return {
|
|
153
|
+
intentCode: 'intentCode',
|
|
152
154
|
modelName: 'modelName',
|
|
153
155
|
modelNamePattern: 'modelNamePattern',
|
|
154
156
|
serviceId: 'serviceId',
|
|
@@ -158,6 +160,7 @@ export class HttpApiDeployConfigServiceConfigs extends $dara.Model {
|
|
|
158
160
|
|
|
159
161
|
static types(): { [key: string]: any } {
|
|
160
162
|
return {
|
|
163
|
+
intentCode: 'string',
|
|
161
164
|
modelName: 'string',
|
|
162
165
|
modelNamePattern: 'string',
|
|
163
166
|
serviceId: 'string',
|
|
@@ -4,10 +4,17 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class ListGatewayFeaturesResponseBodyDataItemsDefinitionValueOptions extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The key to pass the parameter.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* KEEP_UNCHANGED
|
|
9
12
|
*/
|
|
10
13
|
key?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The display value.
|
|
17
|
+
*/
|
|
11
18
|
label?: string;
|
|
12
19
|
static names(): { [key: string]: string } {
|
|
13
20
|
return {
|
|
@@ -34,68 +41,131 @@ export class ListGatewayFeaturesResponseBodyDataItemsDefinitionValueOptions exte
|
|
|
34
41
|
|
|
35
42
|
export class ListGatewayFeaturesResponseBodyDataItemsDefinition extends $dara.Model {
|
|
36
43
|
/**
|
|
44
|
+
* @remarks
|
|
45
|
+
* The default value of the parameter.
|
|
46
|
+
*
|
|
37
47
|
* @example
|
|
38
48
|
* "true"
|
|
39
49
|
*/
|
|
40
50
|
defaultValue?: string;
|
|
51
|
+
/**
|
|
52
|
+
* @remarks
|
|
53
|
+
* The parameter description.
|
|
54
|
+
*/
|
|
41
55
|
description?: string;
|
|
42
56
|
/**
|
|
57
|
+
* @remarks
|
|
58
|
+
* The display name of the parameter.
|
|
59
|
+
*
|
|
43
60
|
* @example
|
|
44
61
|
* EnableGzip
|
|
45
62
|
*/
|
|
46
63
|
displayName?: string;
|
|
47
64
|
/**
|
|
65
|
+
* @remarks
|
|
66
|
+
* The parameter group to which the parameter belongs. Valid values:
|
|
67
|
+
*
|
|
68
|
+
* * Telemetry: an observability parameter
|
|
69
|
+
* * Engine: an engine parameter
|
|
70
|
+
*
|
|
48
71
|
* @example
|
|
49
72
|
* Engine
|
|
50
73
|
*/
|
|
51
74
|
group?: string;
|
|
52
75
|
/**
|
|
76
|
+
* @remarks
|
|
77
|
+
* The input type of the parameter. Valid values:
|
|
78
|
+
*
|
|
79
|
+
* * Trigger
|
|
80
|
+
* * Input
|
|
81
|
+
* * SingleSelect
|
|
82
|
+
* * MultiSelect
|
|
83
|
+
*
|
|
53
84
|
* @example
|
|
54
85
|
* Trigger
|
|
55
86
|
*/
|
|
56
87
|
inputType?: string;
|
|
57
88
|
/**
|
|
89
|
+
* @remarks
|
|
90
|
+
* The maximum length of the value. This parameter is valid when the value type is string.
|
|
91
|
+
*
|
|
58
92
|
* @example
|
|
59
93
|
* 64
|
|
60
94
|
*/
|
|
61
95
|
maxLength?: number;
|
|
62
96
|
/**
|
|
97
|
+
* @remarks
|
|
98
|
+
* The maximum value of the parameter. This parameter is valid when the value type is int32, int64, or float.
|
|
99
|
+
*
|
|
63
100
|
* @example
|
|
64
101
|
* 65535
|
|
65
102
|
*/
|
|
66
103
|
maxValue?: string;
|
|
67
104
|
/**
|
|
105
|
+
* @remarks
|
|
106
|
+
* The minimum length of the value. This parameter is valid when the value type is string.
|
|
107
|
+
*
|
|
68
108
|
* @example
|
|
69
109
|
* 8
|
|
70
110
|
*/
|
|
71
111
|
minLength?: number;
|
|
72
112
|
/**
|
|
113
|
+
* @remarks
|
|
114
|
+
* The minimum value of the parameter. This parameter is valid when the value type is int32, int64, or float.
|
|
115
|
+
*
|
|
73
116
|
* @example
|
|
74
117
|
* 100
|
|
75
118
|
*/
|
|
76
119
|
minValue?: string;
|
|
77
120
|
/**
|
|
121
|
+
* @remarks
|
|
122
|
+
* The parameter name.
|
|
123
|
+
*
|
|
78
124
|
* @example
|
|
79
125
|
* enable-gzip
|
|
80
126
|
*/
|
|
81
127
|
name?: string;
|
|
82
128
|
/**
|
|
129
|
+
* @remarks
|
|
130
|
+
* Indicates whether the parameter is read-only.
|
|
131
|
+
*
|
|
83
132
|
* @example
|
|
84
133
|
* false
|
|
85
134
|
*/
|
|
86
135
|
readOnly?: boolean;
|
|
87
136
|
/**
|
|
137
|
+
* @remarks
|
|
138
|
+
* The regular expression that the parameter value must fulfill. This parameter is valid when the value type is string.
|
|
139
|
+
*
|
|
88
140
|
* @example
|
|
89
141
|
* [a-z].*
|
|
90
142
|
*/
|
|
91
143
|
regex?: string;
|
|
144
|
+
/**
|
|
145
|
+
* @remarks
|
|
146
|
+
* The list of options supported by the parameter value.
|
|
147
|
+
*/
|
|
92
148
|
valueOptions?: ListGatewayFeaturesResponseBodyDataItemsDefinitionValueOptions[];
|
|
93
149
|
/**
|
|
150
|
+
* @remarks
|
|
151
|
+
* The value type of the parameter. Valid values:
|
|
152
|
+
*
|
|
153
|
+
* * bool: boolean
|
|
154
|
+
* * string
|
|
155
|
+
* * int32: integer
|
|
156
|
+
* * int64: long integer
|
|
157
|
+
* * json
|
|
158
|
+
* * array: JSON array
|
|
159
|
+
* * float: floating point
|
|
160
|
+
*
|
|
94
161
|
* @example
|
|
95
162
|
* bool
|
|
96
163
|
*/
|
|
97
164
|
valueType?: string;
|
|
98
165
|
/**
|
|
166
|
+
* @remarks
|
|
167
|
+
* The value unit.
|
|
168
|
+
*
|
|
99
169
|
* @example
|
|
100
170
|
* byte
|
|
101
171
|
*/
|
|
@@ -153,8 +223,15 @@ export class ListGatewayFeaturesResponseBodyDataItemsDefinition extends $dara.Mo
|
|
|
153
223
|
}
|
|
154
224
|
|
|
155
225
|
export class ListGatewayFeaturesResponseBodyDataItems extends $dara.Model {
|
|
226
|
+
/**
|
|
227
|
+
* @remarks
|
|
228
|
+
* The parameter definition.
|
|
229
|
+
*/
|
|
156
230
|
definition?: ListGatewayFeaturesResponseBodyDataItemsDefinition;
|
|
157
231
|
/**
|
|
232
|
+
* @remarks
|
|
233
|
+
* The parameter value.
|
|
234
|
+
*
|
|
158
235
|
* @example
|
|
159
236
|
* "true"
|
|
160
237
|
*/
|
|
@@ -186,6 +263,10 @@ export class ListGatewayFeaturesResponseBodyDataItems extends $dara.Model {
|
|
|
186
263
|
}
|
|
187
264
|
|
|
188
265
|
export class ListGatewayFeaturesResponseBodyData extends $dara.Model {
|
|
266
|
+
/**
|
|
267
|
+
* @remarks
|
|
268
|
+
* The list of parameter configurations.
|
|
269
|
+
*/
|
|
189
270
|
items?: ListGatewayFeaturesResponseBodyDataItems[];
|
|
190
271
|
static names(): { [key: string]: string } {
|
|
191
272
|
return {
|
|
@@ -213,17 +294,30 @@ export class ListGatewayFeaturesResponseBodyData extends $dara.Model {
|
|
|
213
294
|
|
|
214
295
|
export class ListGatewayFeaturesResponseBody extends $dara.Model {
|
|
215
296
|
/**
|
|
297
|
+
* @remarks
|
|
298
|
+
* The status code.
|
|
299
|
+
*
|
|
216
300
|
* @example
|
|
217
301
|
* Ok
|
|
218
302
|
*/
|
|
219
303
|
code?: string;
|
|
304
|
+
/**
|
|
305
|
+
* @remarks
|
|
306
|
+
* The returned data.
|
|
307
|
+
*/
|
|
220
308
|
data?: ListGatewayFeaturesResponseBodyData;
|
|
221
309
|
/**
|
|
310
|
+
* @remarks
|
|
311
|
+
* The response message returned.
|
|
312
|
+
*
|
|
222
313
|
* @example
|
|
223
314
|
* success
|
|
224
315
|
*/
|
|
225
316
|
message?: string;
|
|
226
317
|
/**
|
|
318
|
+
* @remarks
|
|
319
|
+
* The request ID.
|
|
320
|
+
*
|
|
227
321
|
* @example
|
|
228
322
|
* 393E2630-DBE7-5221-AB35-9E740675491A
|
|
229
323
|
*/
|