@meshery/schemas 1.0.2 → 1.0.4
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/cloudApi.d.mts +1516 -1495
- package/dist/cloudApi.d.ts +1516 -1495
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1alpha1/core/CoreSchema.js +1 -1
- package/dist/constructs/v1alpha1/core/CoreSchema.mjs +1 -1
- package/dist/constructs/v1beta1/component/Component.d.mts +2 -2
- package/dist/constructs/v1beta1/component/Component.d.ts +2 -2
- package/dist/constructs/v1beta1/component/ComponentSchema.js +1 -1
- package/dist/constructs/v1beta1/component/ComponentSchema.mjs +1 -1
- package/dist/constructs/v1beta1/connection/Connection.d.mts +18 -18
- package/dist/constructs/v1beta1/connection/Connection.d.ts +18 -18
- package/dist/constructs/v1beta1/connection/ConnectionSchema.js +1 -1
- package/dist/constructs/v1beta1/connection/ConnectionSchema.mjs +1 -1
- package/dist/constructs/v1beta1/core/CoreSchema.js +1 -1
- package/dist/constructs/v1beta1/core/CoreSchema.mjs +1 -1
- package/dist/constructs/v1beta1/evaluation/Evaluation.d.mts +8 -8
- package/dist/constructs/v1beta1/evaluation/Evaluation.d.ts +8 -8
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.js +4 -4
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.mjs +4 -4
- package/dist/constructs/v1beta1/model/Model.d.mts +2 -2
- package/dist/constructs/v1beta1/model/Model.d.ts +2 -2
- package/dist/constructs/v1beta1/model/ModelSchema.js +1 -1
- package/dist/constructs/v1beta1/model/ModelSchema.mjs +1 -1
- package/dist/constructs/v1beta1/pattern/Pattern.d.mts +22 -22
- package/dist/constructs/v1beta1/pattern/Pattern.d.ts +22 -22
- package/dist/constructs/v1beta1/pattern/PatternSchema.js +11 -11
- package/dist/constructs/v1beta1/pattern/PatternSchema.mjs +11 -11
- package/dist/constructs/v1beta1/workspace/Workspace.d.mts +313 -146
- package/dist/constructs/v1beta1/workspace/Workspace.d.ts +313 -146
- package/dist/constructs/v1beta1/workspace/WorkspaceSchema.js +5 -5
- package/dist/constructs/v1beta1/workspace/WorkspaceSchema.mjs +5 -5
- package/dist/constructs/v1beta2/component/Component.d.mts +2 -2
- package/dist/constructs/v1beta2/component/Component.d.ts +2 -2
- package/dist/constructs/v1beta2/component/ComponentSchema.js +1 -1
- package/dist/constructs/v1beta2/component/ComponentSchema.mjs +1 -1
- package/dist/constructs/v1beta2/connection/Connection.d.mts +6 -6
- package/dist/constructs/v1beta2/connection/Connection.d.ts +6 -6
- package/dist/constructs/v1beta2/connection/ConnectionSchema.js +1 -1
- package/dist/constructs/v1beta2/connection/ConnectionSchema.mjs +1 -1
- package/dist/constructs/v1beta2/core/CoreSchema.js +1 -1
- package/dist/constructs/v1beta2/core/CoreSchema.mjs +1 -1
- package/dist/constructs/v1beta2/design/Design.d.mts +22 -22
- package/dist/constructs/v1beta2/design/Design.d.ts +22 -22
- package/dist/constructs/v1beta2/design/DesignSchema.js +11 -11
- package/dist/constructs/v1beta2/design/DesignSchema.mjs +11 -11
- package/dist/index.js +33 -33
- package/dist/index.mjs +33 -33
- package/dist/mesheryApi.d.mts +391 -391
- package/dist/mesheryApi.d.ts +391 -391
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +1 -1
|
@@ -60,112 +60,74 @@ interface paths {
|
|
|
60
60
|
}
|
|
61
61
|
interface components {
|
|
62
62
|
schemas: {
|
|
63
|
+
/** @description A workspace is a logical grouping of resources within an organization. Workspaces provide a way to organize environments, designs, teams, and views. Learn more at https://docs.meshery.io/concepts/logical/workspaces */
|
|
63
64
|
Workspace: {
|
|
64
65
|
/** Format: uuid */
|
|
65
|
-
id
|
|
66
|
-
|
|
66
|
+
id: string;
|
|
67
|
+
/** @description Name of the workspace. */
|
|
68
|
+
name: string;
|
|
69
|
+
/** @description Description of the workspace. */
|
|
67
70
|
description?: string;
|
|
68
71
|
/**
|
|
69
72
|
* Format: uuid
|
|
70
|
-
* @description
|
|
73
|
+
* @description Organization to which this workspace belongs.
|
|
74
|
+
*/
|
|
75
|
+
organization_id: string;
|
|
76
|
+
/**
|
|
77
|
+
* Format: uuid
|
|
78
|
+
* @description User ID of the workspace owner.
|
|
71
79
|
*/
|
|
72
|
-
organization_id?: string;
|
|
73
80
|
owner?: string;
|
|
81
|
+
/** @description Metadata associated with the workspace. */
|
|
74
82
|
metadata?: {
|
|
75
|
-
[key: string]:
|
|
83
|
+
[key: string]: unknown;
|
|
76
84
|
};
|
|
77
85
|
/**
|
|
78
86
|
* Format: date-time
|
|
79
87
|
* @description Timestamp when the resource was created.
|
|
80
88
|
*/
|
|
81
|
-
created_at
|
|
82
|
-
/**
|
|
83
|
-
* Format: date-time
|
|
84
|
-
* @description Timestamp when the resource was updated.
|
|
85
|
-
*/
|
|
86
|
-
updated_at?: string;
|
|
87
|
-
/**
|
|
88
|
-
* Format: date-time
|
|
89
|
-
* @description Timestamp when the resource was deleted.
|
|
90
|
-
*/
|
|
91
|
-
deleted_at?: string;
|
|
92
|
-
};
|
|
93
|
-
WorkspacesTeamsMapping: {
|
|
94
|
-
/** Format: uuid */
|
|
95
|
-
id?: string;
|
|
96
|
-
/** Format: uuid */
|
|
97
|
-
team_id?: string;
|
|
98
|
-
/** Format: uuid */
|
|
99
|
-
workspace_id?: string;
|
|
100
|
-
/**
|
|
101
|
-
* Format: date-time
|
|
102
|
-
* @description Timestamp when the resource was created.
|
|
103
|
-
*/
|
|
104
|
-
created_at?: string;
|
|
105
|
-
/**
|
|
106
|
-
* Format: date-time
|
|
107
|
-
* @description Timestamp when the resource was updated.
|
|
108
|
-
*/
|
|
109
|
-
updated_at?: string;
|
|
110
|
-
/**
|
|
111
|
-
* Format: date-time
|
|
112
|
-
* @description Timestamp when the resource was deleted.
|
|
113
|
-
*/
|
|
114
|
-
deleted_at?: string;
|
|
115
|
-
};
|
|
116
|
-
WorkspacesEnvironmentsMapping: {
|
|
117
|
-
/** Format: uuid */
|
|
118
|
-
id?: string;
|
|
119
|
-
/** Format: uuid */
|
|
120
|
-
environment_id?: string;
|
|
121
|
-
/** Format: uuid */
|
|
122
|
-
workspace_id?: string;
|
|
123
|
-
/**
|
|
124
|
-
* Format: date-time
|
|
125
|
-
* @description Timestamp when the resource was created.
|
|
126
|
-
*/
|
|
127
|
-
created_at?: string;
|
|
89
|
+
created_at: string;
|
|
128
90
|
/**
|
|
129
91
|
* Format: date-time
|
|
130
92
|
* @description Timestamp when the resource was updated.
|
|
131
93
|
*/
|
|
132
|
-
updated_at
|
|
94
|
+
updated_at: string;
|
|
133
95
|
/**
|
|
134
96
|
* Format: date-time
|
|
135
97
|
* @description Timestamp when the resource was deleted.
|
|
136
98
|
*/
|
|
137
99
|
deleted_at?: string;
|
|
138
100
|
};
|
|
139
|
-
|
|
101
|
+
/** @description Workspace with resolved owner details, as returned in list and get responses. */
|
|
102
|
+
AvailableWorkspace: {
|
|
140
103
|
/** Format: uuid */
|
|
141
104
|
id?: string;
|
|
142
|
-
/**
|
|
143
|
-
|
|
144
|
-
/**
|
|
145
|
-
|
|
146
|
-
/**
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
created_at?: string;
|
|
105
|
+
/** @description Name of the workspace. */
|
|
106
|
+
name?: string;
|
|
107
|
+
/** @description Description of the workspace. */
|
|
108
|
+
description?: string;
|
|
109
|
+
/** @description Name of the owning organization. */
|
|
110
|
+
org_name?: string;
|
|
111
|
+
/** @description Display name of the workspace owner. */
|
|
112
|
+
owner?: string;
|
|
151
113
|
/**
|
|
152
|
-
* Format:
|
|
153
|
-
* @description
|
|
114
|
+
* Format: uuid
|
|
115
|
+
* @description User ID of the workspace owner.
|
|
154
116
|
*/
|
|
155
|
-
|
|
117
|
+
owner_id?: string;
|
|
118
|
+
/** @description Email address of the workspace owner. */
|
|
119
|
+
owner_email?: string;
|
|
120
|
+
/** @description Avatar URL of the workspace owner. */
|
|
121
|
+
owner_avatar?: string;
|
|
122
|
+
/** @description Metadata associated with the workspace. */
|
|
123
|
+
metadata?: {
|
|
124
|
+
[key: string]: unknown;
|
|
125
|
+
};
|
|
156
126
|
/**
|
|
157
|
-
* Format:
|
|
158
|
-
* @description
|
|
127
|
+
* Format: uuid
|
|
128
|
+
* @description Organization to which this workspace belongs.
|
|
159
129
|
*/
|
|
160
|
-
|
|
161
|
-
};
|
|
162
|
-
WorkspacesDesignsMapping: {
|
|
163
|
-
/** Format: uuid */
|
|
164
|
-
id?: string;
|
|
165
|
-
/** Format: uuid */
|
|
166
|
-
design_id?: string;
|
|
167
|
-
/** Format: uuid */
|
|
168
|
-
workspace_id?: string;
|
|
130
|
+
organization_id?: string;
|
|
169
131
|
/**
|
|
170
132
|
* Format: date-time
|
|
171
133
|
* @description Timestamp when the resource was created.
|
|
@@ -182,6 +144,7 @@ interface components {
|
|
|
182
144
|
*/
|
|
183
145
|
deleted_at?: string;
|
|
184
146
|
};
|
|
147
|
+
/** @description Payload for creating a workspace. */
|
|
185
148
|
WorkspacePayload: {
|
|
186
149
|
/** @description Name of the workspace. */
|
|
187
150
|
name: string;
|
|
@@ -192,7 +155,12 @@ interface components {
|
|
|
192
155
|
* @description Organization ID.
|
|
193
156
|
*/
|
|
194
157
|
organization_id: string;
|
|
158
|
+
/** @description Metadata associated with the workspace. */
|
|
159
|
+
metadata?: {
|
|
160
|
+
[key: string]: unknown;
|
|
161
|
+
};
|
|
195
162
|
};
|
|
163
|
+
/** @description Payload for updating a workspace. */
|
|
196
164
|
WorkspaceUpdatePayload: {
|
|
197
165
|
/** @description Name of the workspace. */
|
|
198
166
|
name?: string;
|
|
@@ -203,26 +171,46 @@ interface components {
|
|
|
203
171
|
* @description Organization ID.
|
|
204
172
|
*/
|
|
205
173
|
organization_id: string;
|
|
174
|
+
/** @description Metadata associated with the workspace. */
|
|
175
|
+
metadata?: {
|
|
176
|
+
[key: string]: unknown;
|
|
177
|
+
};
|
|
206
178
|
};
|
|
179
|
+
/** @description Paginated list of workspaces. */
|
|
207
180
|
WorkspacePage: {
|
|
208
181
|
page?: number;
|
|
209
182
|
page_size?: number;
|
|
210
183
|
total_count?: number;
|
|
211
|
-
/** @description
|
|
184
|
+
/** @description List of workspaces with resolved owner details. */
|
|
212
185
|
workspaces?: {
|
|
213
186
|
/** Format: uuid */
|
|
214
187
|
id?: string;
|
|
188
|
+
/** @description Name of the workspace. */
|
|
215
189
|
name?: string;
|
|
190
|
+
/** @description Description of the workspace. */
|
|
216
191
|
description?: string;
|
|
192
|
+
/** @description Name of the owning organization. */
|
|
193
|
+
org_name?: string;
|
|
194
|
+
/** @description Display name of the workspace owner. */
|
|
195
|
+
owner?: string;
|
|
217
196
|
/**
|
|
218
197
|
* Format: uuid
|
|
219
|
-
* @description
|
|
198
|
+
* @description User ID of the workspace owner.
|
|
220
199
|
*/
|
|
221
|
-
|
|
222
|
-
owner
|
|
200
|
+
owner_id?: string;
|
|
201
|
+
/** @description Email address of the workspace owner. */
|
|
202
|
+
owner_email?: string;
|
|
203
|
+
/** @description Avatar URL of the workspace owner. */
|
|
204
|
+
owner_avatar?: string;
|
|
205
|
+
/** @description Metadata associated with the workspace. */
|
|
223
206
|
metadata?: {
|
|
224
|
-
[key: string]:
|
|
207
|
+
[key: string]: unknown;
|
|
225
208
|
};
|
|
209
|
+
/**
|
|
210
|
+
* Format: uuid
|
|
211
|
+
* @description Organization to which this workspace belongs.
|
|
212
|
+
*/
|
|
213
|
+
organization_id?: string;
|
|
226
214
|
/**
|
|
227
215
|
* Format: date-time
|
|
228
216
|
* @description Timestamp when the resource was created.
|
|
@@ -240,18 +228,43 @@ interface components {
|
|
|
240
228
|
deleted_at?: string;
|
|
241
229
|
}[];
|
|
242
230
|
};
|
|
231
|
+
/** @description Junction record linking a workspace to a team. */
|
|
232
|
+
WorkspacesTeamsMapping: {
|
|
233
|
+
/** Format: uuid */
|
|
234
|
+
id?: string;
|
|
235
|
+
/** Format: uuid */
|
|
236
|
+
workspace_id?: string;
|
|
237
|
+
/** Format: uuid */
|
|
238
|
+
team_id?: string;
|
|
239
|
+
/**
|
|
240
|
+
* Format: date-time
|
|
241
|
+
* @description Timestamp when the resource was created.
|
|
242
|
+
*/
|
|
243
|
+
created_at?: string;
|
|
244
|
+
/**
|
|
245
|
+
* Format: date-time
|
|
246
|
+
* @description Timestamp when the resource was updated.
|
|
247
|
+
*/
|
|
248
|
+
updated_at?: string;
|
|
249
|
+
/**
|
|
250
|
+
* Format: date-time
|
|
251
|
+
* @description Timestamp when the resource was deleted.
|
|
252
|
+
*/
|
|
253
|
+
deleted_at?: string;
|
|
254
|
+
};
|
|
255
|
+
/** @description Paginated list of workspace-team mappings. */
|
|
243
256
|
WorkspacesTeamsMappingPage: {
|
|
244
257
|
page?: number;
|
|
245
258
|
page_size?: number;
|
|
246
259
|
total_count?: number;
|
|
247
|
-
/** @description
|
|
260
|
+
/** @description Workspace-team mapping entries. */
|
|
248
261
|
workspacesTeamsMapping?: {
|
|
249
262
|
/** Format: uuid */
|
|
250
263
|
id?: string;
|
|
251
264
|
/** Format: uuid */
|
|
252
|
-
team_id?: string;
|
|
253
|
-
/** Format: uuid */
|
|
254
265
|
workspace_id?: string;
|
|
266
|
+
/** Format: uuid */
|
|
267
|
+
team_id?: string;
|
|
255
268
|
/**
|
|
256
269
|
* Format: date-time
|
|
257
270
|
* @description Timestamp when the resource was created.
|
|
@@ -269,18 +282,43 @@ interface components {
|
|
|
269
282
|
deleted_at?: string;
|
|
270
283
|
}[];
|
|
271
284
|
};
|
|
285
|
+
/** @description Junction record linking a workspace to an environment. */
|
|
286
|
+
WorkspacesEnvironmentsMapping: {
|
|
287
|
+
/** Format: uuid */
|
|
288
|
+
id?: string;
|
|
289
|
+
/** Format: uuid */
|
|
290
|
+
workspace_id?: string;
|
|
291
|
+
/** Format: uuid */
|
|
292
|
+
environment_id?: string;
|
|
293
|
+
/**
|
|
294
|
+
* Format: date-time
|
|
295
|
+
* @description Timestamp when the resource was created.
|
|
296
|
+
*/
|
|
297
|
+
created_at?: string;
|
|
298
|
+
/**
|
|
299
|
+
* Format: date-time
|
|
300
|
+
* @description Timestamp when the resource was updated.
|
|
301
|
+
*/
|
|
302
|
+
updated_at?: string;
|
|
303
|
+
/**
|
|
304
|
+
* Format: date-time
|
|
305
|
+
* @description Timestamp when the resource was deleted.
|
|
306
|
+
*/
|
|
307
|
+
deleted_at?: string;
|
|
308
|
+
};
|
|
309
|
+
/** @description Paginated list of workspace-environment mappings. */
|
|
272
310
|
WorkspacesEnvironmentsMappingPage: {
|
|
273
311
|
page?: number;
|
|
274
312
|
page_size?: number;
|
|
275
313
|
total_count?: number;
|
|
276
|
-
/** @description
|
|
314
|
+
/** @description Workspace-environment mapping entries. */
|
|
277
315
|
workspacesEnvironmentsMapping?: {
|
|
278
316
|
/** Format: uuid */
|
|
279
317
|
id?: string;
|
|
280
318
|
/** Format: uuid */
|
|
281
|
-
environment_id?: string;
|
|
282
|
-
/** Format: uuid */
|
|
283
319
|
workspace_id?: string;
|
|
320
|
+
/** Format: uuid */
|
|
321
|
+
environment_id?: string;
|
|
284
322
|
/**
|
|
285
323
|
* Format: date-time
|
|
286
324
|
* @description Timestamp when the resource was created.
|
|
@@ -298,18 +336,43 @@ interface components {
|
|
|
298
336
|
deleted_at?: string;
|
|
299
337
|
}[];
|
|
300
338
|
};
|
|
339
|
+
/** @description Junction record linking a workspace to a design. */
|
|
340
|
+
WorkspacesDesignsMapping: {
|
|
341
|
+
/** Format: uuid */
|
|
342
|
+
id?: string;
|
|
343
|
+
/** Format: uuid */
|
|
344
|
+
workspace_id?: string;
|
|
345
|
+
/** Format: uuid */
|
|
346
|
+
design_id?: string;
|
|
347
|
+
/**
|
|
348
|
+
* Format: date-time
|
|
349
|
+
* @description Timestamp when the resource was created.
|
|
350
|
+
*/
|
|
351
|
+
created_at?: string;
|
|
352
|
+
/**
|
|
353
|
+
* Format: date-time
|
|
354
|
+
* @description Timestamp when the resource was updated.
|
|
355
|
+
*/
|
|
356
|
+
updated_at?: string;
|
|
357
|
+
/**
|
|
358
|
+
* Format: date-time
|
|
359
|
+
* @description Timestamp when the resource was deleted.
|
|
360
|
+
*/
|
|
361
|
+
deleted_at?: string;
|
|
362
|
+
};
|
|
363
|
+
/** @description Paginated list of workspace-design mappings. */
|
|
301
364
|
WorkspacesDesignsMappingPage: {
|
|
302
365
|
page?: number;
|
|
303
366
|
page_size?: number;
|
|
304
367
|
total_count?: number;
|
|
305
|
-
/** @description
|
|
368
|
+
/** @description Workspace-design mapping entries. */
|
|
306
369
|
workspacesDesignsMapping?: {
|
|
307
370
|
/** Format: uuid */
|
|
308
371
|
id?: string;
|
|
309
372
|
/** Format: uuid */
|
|
310
|
-
design_id?: string;
|
|
311
|
-
/** Format: uuid */
|
|
312
373
|
workspace_id?: string;
|
|
374
|
+
/** Format: uuid */
|
|
375
|
+
design_id?: string;
|
|
313
376
|
/**
|
|
314
377
|
* Format: date-time
|
|
315
378
|
* @description Timestamp when the resource was created.
|
|
@@ -327,18 +390,43 @@ interface components {
|
|
|
327
390
|
deleted_at?: string;
|
|
328
391
|
}[];
|
|
329
392
|
};
|
|
393
|
+
/** @description Junction record linking a workspace to a view. */
|
|
394
|
+
WorkspacesViewsMapping: {
|
|
395
|
+
/** Format: uuid */
|
|
396
|
+
id?: string;
|
|
397
|
+
/** Format: uuid */
|
|
398
|
+
workspace_id?: string;
|
|
399
|
+
/** Format: uuid */
|
|
400
|
+
view_id?: string;
|
|
401
|
+
/**
|
|
402
|
+
* Format: date-time
|
|
403
|
+
* @description Timestamp when the resource was created.
|
|
404
|
+
*/
|
|
405
|
+
created_at?: string;
|
|
406
|
+
/**
|
|
407
|
+
* Format: date-time
|
|
408
|
+
* @description Timestamp when the resource was updated.
|
|
409
|
+
*/
|
|
410
|
+
updated_at?: string;
|
|
411
|
+
/**
|
|
412
|
+
* Format: date-time
|
|
413
|
+
* @description Timestamp when the resource was deleted.
|
|
414
|
+
*/
|
|
415
|
+
deleted_at?: string;
|
|
416
|
+
};
|
|
417
|
+
/** @description Paginated list of workspace-view mappings. */
|
|
330
418
|
WorkspacesViewsMappingPage: {
|
|
331
419
|
page?: number;
|
|
332
420
|
page_size?: number;
|
|
333
421
|
total_count?: number;
|
|
334
|
-
/** @description
|
|
422
|
+
/** @description Workspace-view mapping entries. */
|
|
335
423
|
workspacesViewsMapping?: {
|
|
336
424
|
/** Format: uuid */
|
|
337
425
|
id?: string;
|
|
338
426
|
/** Format: uuid */
|
|
339
|
-
view_id?: string;
|
|
340
|
-
/** Format: uuid */
|
|
341
427
|
workspace_id?: string;
|
|
428
|
+
/** Format: uuid */
|
|
429
|
+
view_id?: string;
|
|
342
430
|
/**
|
|
343
431
|
* Format: date-time
|
|
344
432
|
* @description Timestamp when the resource was created.
|
|
@@ -356,11 +444,12 @@ interface components {
|
|
|
356
444
|
deleted_at?: string;
|
|
357
445
|
}[];
|
|
358
446
|
};
|
|
447
|
+
/** @description Paginated list of designs. */
|
|
359
448
|
MesheryDesignPage: {
|
|
360
449
|
page?: number;
|
|
361
450
|
page_size?: number;
|
|
362
451
|
total_count?: number;
|
|
363
|
-
/** @description
|
|
452
|
+
/** @description Designs in this page. */
|
|
364
453
|
designs?: {
|
|
365
454
|
catalogData?: {
|
|
366
455
|
/** @description Tracks the specific content version that has been made available in the Catalog. */
|
|
@@ -553,11 +642,11 @@ interface components {
|
|
|
553
642
|
* Format: uuid
|
|
554
643
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
555
644
|
*/
|
|
556
|
-
|
|
645
|
+
credentialId?: string;
|
|
557
646
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
558
647
|
type: string;
|
|
559
648
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
560
|
-
|
|
649
|
+
subType: string;
|
|
561
650
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
562
651
|
kind: string;
|
|
563
652
|
/** @description Additional connection metadata */
|
|
@@ -1772,17 +1861,26 @@ interface components {
|
|
|
1772
1861
|
visibility?: string;
|
|
1773
1862
|
}[];
|
|
1774
1863
|
};
|
|
1864
|
+
/** @description A saved view with filters and metadata. */
|
|
1775
1865
|
MesheryView: {
|
|
1776
1866
|
/** Format: uuid */
|
|
1777
1867
|
id?: string;
|
|
1868
|
+
/** @description Name of the view. */
|
|
1778
1869
|
name?: string;
|
|
1870
|
+
/** @description Filter configuration for this view. */
|
|
1779
1871
|
filters?: {
|
|
1780
|
-
[key: string]:
|
|
1872
|
+
[key: string]: unknown;
|
|
1781
1873
|
};
|
|
1874
|
+
/** @description Visibility of the view. */
|
|
1782
1875
|
visibility?: string;
|
|
1876
|
+
/** @description Metadata associated with the view. */
|
|
1783
1877
|
metadata?: {
|
|
1784
|
-
[key: string]:
|
|
1878
|
+
[key: string]: unknown;
|
|
1785
1879
|
};
|
|
1880
|
+
/**
|
|
1881
|
+
* Format: uuid
|
|
1882
|
+
* @description User ID of the view creator.
|
|
1883
|
+
*/
|
|
1786
1884
|
user_id?: string;
|
|
1787
1885
|
/**
|
|
1788
1886
|
* Format: date-time
|
|
@@ -1800,22 +1898,31 @@ interface components {
|
|
|
1800
1898
|
*/
|
|
1801
1899
|
deleted_at?: string;
|
|
1802
1900
|
};
|
|
1901
|
+
/** @description Paginated list of views. */
|
|
1803
1902
|
MesheryViewPage: {
|
|
1804
1903
|
page?: number;
|
|
1805
1904
|
page_size?: number;
|
|
1806
1905
|
total_count?: number;
|
|
1807
|
-
/** @description
|
|
1906
|
+
/** @description Views in this page. */
|
|
1808
1907
|
views?: {
|
|
1809
1908
|
/** Format: uuid */
|
|
1810
1909
|
id?: string;
|
|
1910
|
+
/** @description Name of the view. */
|
|
1811
1911
|
name?: string;
|
|
1912
|
+
/** @description Filter configuration for this view. */
|
|
1812
1913
|
filters?: {
|
|
1813
|
-
[key: string]:
|
|
1914
|
+
[key: string]: unknown;
|
|
1814
1915
|
};
|
|
1916
|
+
/** @description Visibility of the view. */
|
|
1815
1917
|
visibility?: string;
|
|
1918
|
+
/** @description Metadata associated with the view. */
|
|
1816
1919
|
metadata?: {
|
|
1817
|
-
[key: string]:
|
|
1920
|
+
[key: string]: unknown;
|
|
1818
1921
|
};
|
|
1922
|
+
/**
|
|
1923
|
+
* Format: uuid
|
|
1924
|
+
* @description User ID of the view creator.
|
|
1925
|
+
*/
|
|
1819
1926
|
user_id?: string;
|
|
1820
1927
|
/**
|
|
1821
1928
|
* Format: date-time
|
|
@@ -1903,6 +2010,10 @@ interface components {
|
|
|
1903
2010
|
* @description Organization ID.
|
|
1904
2011
|
*/
|
|
1905
2012
|
organization_id: string;
|
|
2013
|
+
/** @description Metadata associated with the workspace. */
|
|
2014
|
+
metadata?: {
|
|
2015
|
+
[key: string]: unknown;
|
|
2016
|
+
};
|
|
1906
2017
|
};
|
|
1907
2018
|
};
|
|
1908
2019
|
};
|
|
@@ -1919,6 +2030,10 @@ interface components {
|
|
|
1919
2030
|
* @description Organization ID.
|
|
1920
2031
|
*/
|
|
1921
2032
|
organization_id: string;
|
|
2033
|
+
/** @description Metadata associated with the workspace. */
|
|
2034
|
+
metadata?: {
|
|
2035
|
+
[key: string]: unknown;
|
|
2036
|
+
};
|
|
1922
2037
|
};
|
|
1923
2038
|
};
|
|
1924
2039
|
};
|
|
@@ -1949,21 +2064,36 @@ interface operations {
|
|
|
1949
2064
|
page?: number;
|
|
1950
2065
|
page_size?: number;
|
|
1951
2066
|
total_count?: number;
|
|
1952
|
-
/** @description
|
|
2067
|
+
/** @description List of workspaces with resolved owner details. */
|
|
1953
2068
|
workspaces?: {
|
|
1954
2069
|
/** Format: uuid */
|
|
1955
2070
|
id?: string;
|
|
2071
|
+
/** @description Name of the workspace. */
|
|
1956
2072
|
name?: string;
|
|
2073
|
+
/** @description Description of the workspace. */
|
|
1957
2074
|
description?: string;
|
|
2075
|
+
/** @description Name of the owning organization. */
|
|
2076
|
+
org_name?: string;
|
|
2077
|
+
/** @description Display name of the workspace owner. */
|
|
2078
|
+
owner?: string;
|
|
1958
2079
|
/**
|
|
1959
2080
|
* Format: uuid
|
|
1960
|
-
* @description
|
|
2081
|
+
* @description User ID of the workspace owner.
|
|
1961
2082
|
*/
|
|
1962
|
-
|
|
1963
|
-
owner
|
|
2083
|
+
owner_id?: string;
|
|
2084
|
+
/** @description Email address of the workspace owner. */
|
|
2085
|
+
owner_email?: string;
|
|
2086
|
+
/** @description Avatar URL of the workspace owner. */
|
|
2087
|
+
owner_avatar?: string;
|
|
2088
|
+
/** @description Metadata associated with the workspace. */
|
|
1964
2089
|
metadata?: {
|
|
1965
|
-
[key: string]:
|
|
2090
|
+
[key: string]: unknown;
|
|
1966
2091
|
};
|
|
2092
|
+
/**
|
|
2093
|
+
* Format: uuid
|
|
2094
|
+
* @description Organization to which this workspace belongs.
|
|
2095
|
+
*/
|
|
2096
|
+
organization_id?: string;
|
|
1967
2097
|
/**
|
|
1968
2098
|
* Format: date-time
|
|
1969
2099
|
* @description Timestamp when the resource was created.
|
|
@@ -2005,28 +2135,35 @@ interface operations {
|
|
|
2005
2135
|
content: {
|
|
2006
2136
|
"application/json": {
|
|
2007
2137
|
/** Format: uuid */
|
|
2008
|
-
id
|
|
2009
|
-
|
|
2138
|
+
id: string;
|
|
2139
|
+
/** @description Name of the workspace. */
|
|
2140
|
+
name: string;
|
|
2141
|
+
/** @description Description of the workspace. */
|
|
2010
2142
|
description?: string;
|
|
2011
2143
|
/**
|
|
2012
2144
|
* Format: uuid
|
|
2013
|
-
* @description
|
|
2145
|
+
* @description Organization to which this workspace belongs.
|
|
2146
|
+
*/
|
|
2147
|
+
organization_id: string;
|
|
2148
|
+
/**
|
|
2149
|
+
* Format: uuid
|
|
2150
|
+
* @description User ID of the workspace owner.
|
|
2014
2151
|
*/
|
|
2015
|
-
organization_id?: string;
|
|
2016
2152
|
owner?: string;
|
|
2153
|
+
/** @description Metadata associated with the workspace. */
|
|
2017
2154
|
metadata?: {
|
|
2018
|
-
[key: string]:
|
|
2155
|
+
[key: string]: unknown;
|
|
2019
2156
|
};
|
|
2020
2157
|
/**
|
|
2021
2158
|
* Format: date-time
|
|
2022
2159
|
* @description Timestamp when the resource was created.
|
|
2023
2160
|
*/
|
|
2024
|
-
created_at
|
|
2161
|
+
created_at: string;
|
|
2025
2162
|
/**
|
|
2026
2163
|
* Format: date-time
|
|
2027
2164
|
* @description Timestamp when the resource was updated.
|
|
2028
2165
|
*/
|
|
2029
|
-
updated_at
|
|
2166
|
+
updated_at: string;
|
|
2030
2167
|
/**
|
|
2031
2168
|
* Format: date-time
|
|
2032
2169
|
* @description Timestamp when the resource was deleted.
|
|
@@ -2067,6 +2204,10 @@ interface operations {
|
|
|
2067
2204
|
* @description Organization ID.
|
|
2068
2205
|
*/
|
|
2069
2206
|
organization_id: string;
|
|
2207
|
+
/** @description Metadata associated with the workspace. */
|
|
2208
|
+
metadata?: {
|
|
2209
|
+
[key: string]: unknown;
|
|
2210
|
+
};
|
|
2070
2211
|
};
|
|
2071
2212
|
};
|
|
2072
2213
|
};
|
|
@@ -2085,28 +2226,35 @@ interface operations {
|
|
|
2085
2226
|
content: {
|
|
2086
2227
|
"application/json": {
|
|
2087
2228
|
/** Format: uuid */
|
|
2088
|
-
id
|
|
2089
|
-
|
|
2229
|
+
id: string;
|
|
2230
|
+
/** @description Name of the workspace. */
|
|
2231
|
+
name: string;
|
|
2232
|
+
/** @description Description of the workspace. */
|
|
2090
2233
|
description?: string;
|
|
2091
2234
|
/**
|
|
2092
2235
|
* Format: uuid
|
|
2093
|
-
* @description
|
|
2236
|
+
* @description Organization to which this workspace belongs.
|
|
2237
|
+
*/
|
|
2238
|
+
organization_id: string;
|
|
2239
|
+
/**
|
|
2240
|
+
* Format: uuid
|
|
2241
|
+
* @description User ID of the workspace owner.
|
|
2094
2242
|
*/
|
|
2095
|
-
organization_id?: string;
|
|
2096
2243
|
owner?: string;
|
|
2244
|
+
/** @description Metadata associated with the workspace. */
|
|
2097
2245
|
metadata?: {
|
|
2098
|
-
[key: string]:
|
|
2246
|
+
[key: string]: unknown;
|
|
2099
2247
|
};
|
|
2100
2248
|
/**
|
|
2101
2249
|
* Format: date-time
|
|
2102
2250
|
* @description Timestamp when the resource was created.
|
|
2103
2251
|
*/
|
|
2104
|
-
created_at
|
|
2252
|
+
created_at: string;
|
|
2105
2253
|
/**
|
|
2106
2254
|
* Format: date-time
|
|
2107
2255
|
* @description Timestamp when the resource was updated.
|
|
2108
2256
|
*/
|
|
2109
|
-
updated_at
|
|
2257
|
+
updated_at: string;
|
|
2110
2258
|
/**
|
|
2111
2259
|
* Format: date-time
|
|
2112
2260
|
* @description Timestamp when the resource was deleted.
|
|
@@ -2155,28 +2303,35 @@ interface operations {
|
|
|
2155
2303
|
content: {
|
|
2156
2304
|
"application/json": {
|
|
2157
2305
|
/** Format: uuid */
|
|
2158
|
-
id
|
|
2159
|
-
|
|
2306
|
+
id: string;
|
|
2307
|
+
/** @description Name of the workspace. */
|
|
2308
|
+
name: string;
|
|
2309
|
+
/** @description Description of the workspace. */
|
|
2160
2310
|
description?: string;
|
|
2161
2311
|
/**
|
|
2162
2312
|
* Format: uuid
|
|
2163
|
-
* @description
|
|
2313
|
+
* @description Organization to which this workspace belongs.
|
|
2314
|
+
*/
|
|
2315
|
+
organization_id: string;
|
|
2316
|
+
/**
|
|
2317
|
+
* Format: uuid
|
|
2318
|
+
* @description User ID of the workspace owner.
|
|
2164
2319
|
*/
|
|
2165
|
-
organization_id?: string;
|
|
2166
2320
|
owner?: string;
|
|
2321
|
+
/** @description Metadata associated with the workspace. */
|
|
2167
2322
|
metadata?: {
|
|
2168
|
-
[key: string]:
|
|
2323
|
+
[key: string]: unknown;
|
|
2169
2324
|
};
|
|
2170
2325
|
/**
|
|
2171
2326
|
* Format: date-time
|
|
2172
2327
|
* @description Timestamp when the resource was created.
|
|
2173
2328
|
*/
|
|
2174
|
-
created_at
|
|
2329
|
+
created_at: string;
|
|
2175
2330
|
/**
|
|
2176
2331
|
* Format: date-time
|
|
2177
2332
|
* @description Timestamp when the resource was updated.
|
|
2178
2333
|
*/
|
|
2179
|
-
updated_at
|
|
2334
|
+
updated_at: string;
|
|
2180
2335
|
/**
|
|
2181
2336
|
* Format: date-time
|
|
2182
2337
|
* @description Timestamp when the resource was deleted.
|
|
@@ -2223,6 +2378,10 @@ interface operations {
|
|
|
2223
2378
|
* @description Organization ID.
|
|
2224
2379
|
*/
|
|
2225
2380
|
organization_id: string;
|
|
2381
|
+
/** @description Metadata associated with the workspace. */
|
|
2382
|
+
metadata?: {
|
|
2383
|
+
[key: string]: unknown;
|
|
2384
|
+
};
|
|
2226
2385
|
};
|
|
2227
2386
|
};
|
|
2228
2387
|
};
|
|
@@ -2369,14 +2528,14 @@ interface operations {
|
|
|
2369
2528
|
page?: number;
|
|
2370
2529
|
page_size?: number;
|
|
2371
2530
|
total_count?: number;
|
|
2372
|
-
/** @description
|
|
2531
|
+
/** @description Workspace-team mapping entries. */
|
|
2373
2532
|
workspacesTeamsMapping?: {
|
|
2374
2533
|
/** Format: uuid */
|
|
2375
2534
|
id?: string;
|
|
2376
2535
|
/** Format: uuid */
|
|
2377
|
-
team_id?: string;
|
|
2378
|
-
/** Format: uuid */
|
|
2379
2536
|
workspace_id?: string;
|
|
2537
|
+
/** Format: uuid */
|
|
2538
|
+
team_id?: string;
|
|
2380
2539
|
/**
|
|
2381
2540
|
* Format: date-time
|
|
2382
2541
|
* @description Timestamp when the resource was created.
|
|
@@ -2590,14 +2749,14 @@ interface operations {
|
|
|
2590
2749
|
page?: number;
|
|
2591
2750
|
page_size?: number;
|
|
2592
2751
|
total_count?: number;
|
|
2593
|
-
/** @description
|
|
2752
|
+
/** @description Workspace-environment mapping entries. */
|
|
2594
2753
|
workspacesEnvironmentsMapping?: {
|
|
2595
2754
|
/** Format: uuid */
|
|
2596
2755
|
id?: string;
|
|
2597
2756
|
/** Format: uuid */
|
|
2598
|
-
environment_id?: string;
|
|
2599
|
-
/** Format: uuid */
|
|
2600
2757
|
workspace_id?: string;
|
|
2758
|
+
/** Format: uuid */
|
|
2759
|
+
environment_id?: string;
|
|
2601
2760
|
/**
|
|
2602
2761
|
* Format: date-time
|
|
2603
2762
|
* @description Timestamp when the resource was created.
|
|
@@ -2710,7 +2869,7 @@ interface operations {
|
|
|
2710
2869
|
page?: number;
|
|
2711
2870
|
page_size?: number;
|
|
2712
2871
|
total_count?: number;
|
|
2713
|
-
/** @description
|
|
2872
|
+
/** @description Designs in this page. */
|
|
2714
2873
|
designs?: {
|
|
2715
2874
|
catalogData?: {
|
|
2716
2875
|
/** @description Tracks the specific content version that has been made available in the Catalog. */
|
|
@@ -2903,11 +3062,11 @@ interface operations {
|
|
|
2903
3062
|
* Format: uuid
|
|
2904
3063
|
* @description A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas.
|
|
2905
3064
|
*/
|
|
2906
|
-
|
|
3065
|
+
credentialId?: string;
|
|
2907
3066
|
/** @description Connection Type (platform, telemetry, collaboration) */
|
|
2908
3067
|
type: string;
|
|
2909
3068
|
/** @description Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
2910
|
-
|
|
3069
|
+
subType: string;
|
|
2911
3070
|
/** @description Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
2912
3071
|
kind: string;
|
|
2913
3072
|
/** @description Additional connection metadata */
|
|
@@ -4168,14 +4327,14 @@ interface operations {
|
|
|
4168
4327
|
page?: number;
|
|
4169
4328
|
page_size?: number;
|
|
4170
4329
|
total_count?: number;
|
|
4171
|
-
/** @description
|
|
4330
|
+
/** @description Workspace-design mapping entries. */
|
|
4172
4331
|
workspacesDesignsMapping?: {
|
|
4173
4332
|
/** Format: uuid */
|
|
4174
4333
|
id?: string;
|
|
4175
4334
|
/** Format: uuid */
|
|
4176
|
-
design_id?: string;
|
|
4177
|
-
/** Format: uuid */
|
|
4178
4335
|
workspace_id?: string;
|
|
4336
|
+
/** Format: uuid */
|
|
4337
|
+
design_id?: string;
|
|
4179
4338
|
/**
|
|
4180
4339
|
* Format: date-time
|
|
4181
4340
|
* @description Timestamp when the resource was created.
|
|
@@ -4288,18 +4447,26 @@ interface operations {
|
|
|
4288
4447
|
page?: number;
|
|
4289
4448
|
page_size?: number;
|
|
4290
4449
|
total_count?: number;
|
|
4291
|
-
/** @description
|
|
4450
|
+
/** @description Views in this page. */
|
|
4292
4451
|
views?: {
|
|
4293
4452
|
/** Format: uuid */
|
|
4294
4453
|
id?: string;
|
|
4454
|
+
/** @description Name of the view. */
|
|
4295
4455
|
name?: string;
|
|
4456
|
+
/** @description Filter configuration for this view. */
|
|
4296
4457
|
filters?: {
|
|
4297
|
-
[key: string]:
|
|
4458
|
+
[key: string]: unknown;
|
|
4298
4459
|
};
|
|
4460
|
+
/** @description Visibility of the view. */
|
|
4299
4461
|
visibility?: string;
|
|
4462
|
+
/** @description Metadata associated with the view. */
|
|
4300
4463
|
metadata?: {
|
|
4301
|
-
[key: string]:
|
|
4464
|
+
[key: string]: unknown;
|
|
4302
4465
|
};
|
|
4466
|
+
/**
|
|
4467
|
+
* Format: uuid
|
|
4468
|
+
* @description User ID of the view creator.
|
|
4469
|
+
*/
|
|
4303
4470
|
user_id?: string;
|
|
4304
4471
|
/**
|
|
4305
4472
|
* Format: date-time
|
|
@@ -4364,14 +4531,14 @@ interface operations {
|
|
|
4364
4531
|
page?: number;
|
|
4365
4532
|
page_size?: number;
|
|
4366
4533
|
total_count?: number;
|
|
4367
|
-
/** @description
|
|
4534
|
+
/** @description Workspace-view mapping entries. */
|
|
4368
4535
|
workspacesViewsMapping?: {
|
|
4369
4536
|
/** Format: uuid */
|
|
4370
4537
|
id?: string;
|
|
4371
4538
|
/** Format: uuid */
|
|
4372
|
-
view_id?: string;
|
|
4373
|
-
/** Format: uuid */
|
|
4374
4539
|
workspace_id?: string;
|
|
4540
|
+
/** Format: uuid */
|
|
4541
|
+
view_id?: string;
|
|
4375
4542
|
/**
|
|
4376
4543
|
* Format: date-time
|
|
4377
4544
|
* @description Timestamp when the resource was created.
|