@meshery/schemas 1.3.17 → 1.3.18
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/README.md +2 -2
- package/dist/cloudApi.d.mts +2017 -1619
- package/dist/cloudApi.d.ts +2017 -1619
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1beta2/user/User.d.ts +286 -0
- package/dist/constructs/v1beta2/user/UserSchema.js +1 -1
- package/dist/constructs/v1beta2/user/UserSchema.mjs +1 -1
- package/dist/mesheryApi.d.mts +711 -711
- package/dist/mesheryApi.d.ts +711 -711
- package/dist/permissions.d.mts +4437 -2
- package/dist/permissions.d.ts +4437 -2
- package/dist/permissions.js +1 -1
- package/dist/permissions.mjs +1 -1
- package/package.json +1 -1
package/dist/permissions.d.ts
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
type PermissionKey = string & {
|
|
11
11
|
readonly __brand: 'PermissionKey';
|
|
12
12
|
};
|
|
13
|
+
/**
|
|
14
|
+
* Interface representing a Key conforming to the Key schema.
|
|
15
|
+
*/
|
|
16
|
+
interface Key {
|
|
17
|
+
readonly id: PermissionKey;
|
|
18
|
+
readonly category: string;
|
|
19
|
+
readonly subcategory: string;
|
|
20
|
+
readonly function: string;
|
|
21
|
+
readonly description: string;
|
|
22
|
+
}
|
|
13
23
|
/**
|
|
14
24
|
* Permissions Index ID used for this generated file.
|
|
15
25
|
*/
|
|
@@ -20,6 +30,4431 @@ declare const PERMISSIONS_INDEX_ID: "8d7905beb07904185485104a47bb9916237daee1dc5
|
|
|
20
30
|
* @returns The branded PermissionKey
|
|
21
31
|
*/
|
|
22
32
|
declare function createPermissionKey(uuid: string): PermissionKey;
|
|
33
|
+
/**
|
|
34
|
+
* Keys conforming to the Key schema.
|
|
35
|
+
*/
|
|
36
|
+
declare const Keys: {
|
|
37
|
+
/**
|
|
38
|
+
* View your profile.
|
|
39
|
+
*/
|
|
40
|
+
readonly AccountManagementViewProfile: {
|
|
41
|
+
readonly id: PermissionKey;
|
|
42
|
+
readonly category: "Account Management";
|
|
43
|
+
readonly subcategory: "Profile";
|
|
44
|
+
readonly function: "View Profile";
|
|
45
|
+
readonly description: "View your profile.";
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Update details of your user account.
|
|
49
|
+
*/
|
|
50
|
+
readonly AccountManagementEditAccount: {
|
|
51
|
+
readonly id: PermissionKey;
|
|
52
|
+
readonly category: "Account Management";
|
|
53
|
+
readonly subcategory: "Profile";
|
|
54
|
+
readonly function: "Edit Account";
|
|
55
|
+
readonly description: "Update details of your user account.";
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Perform a password reset for your user account.
|
|
59
|
+
*/
|
|
60
|
+
readonly AccountManagementResetPasword: {
|
|
61
|
+
readonly id: PermissionKey;
|
|
62
|
+
readonly category: "Account Management";
|
|
63
|
+
readonly subcategory: "Profile";
|
|
64
|
+
readonly function: "Reset Pasword";
|
|
65
|
+
readonly description: "Perform a password reset for your user account.";
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Delete your user account.
|
|
69
|
+
*/
|
|
70
|
+
readonly AccountManagementDeleteAccount: {
|
|
71
|
+
readonly id: PermissionKey;
|
|
72
|
+
readonly category: "Account Management";
|
|
73
|
+
readonly subcategory: "Profile";
|
|
74
|
+
readonly function: "Delete Account";
|
|
75
|
+
readonly description: "Delete your user account.";
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Link your social sign-in with GitHub to your existing user account.
|
|
79
|
+
*/
|
|
80
|
+
readonly AccountManagementConnectYourGithubAccount: {
|
|
81
|
+
readonly id: PermissionKey;
|
|
82
|
+
readonly category: "Account Management";
|
|
83
|
+
readonly subcategory: "Profile";
|
|
84
|
+
readonly function: "Connect your Github Account";
|
|
85
|
+
readonly description: "Link your social sign-in with GitHub to your existing user account.";
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Link your social sign-in with Google to your existing user account.
|
|
89
|
+
*/
|
|
90
|
+
readonly AccountManagementConnectYourGoogleAccount: {
|
|
91
|
+
readonly id: PermissionKey;
|
|
92
|
+
readonly category: "Account Management";
|
|
93
|
+
readonly subcategory: "Profile";
|
|
94
|
+
readonly function: "Connect your Google Account";
|
|
95
|
+
readonly description: "Link your social sign-in with Google to your existing user account.";
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* List and see details of active and inactive subscriptions.
|
|
99
|
+
*/
|
|
100
|
+
readonly AccountManagementViewSubcription: {
|
|
101
|
+
readonly id: PermissionKey;
|
|
102
|
+
readonly category: "Account Management";
|
|
103
|
+
readonly subcategory: "Subscription";
|
|
104
|
+
readonly function: "View Subcription";
|
|
105
|
+
readonly description: "List and see details of active and inactive subscriptions.";
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* Create new subscriptions and update existing subscriptions
|
|
109
|
+
*/
|
|
110
|
+
readonly AccountManagementManageSubcriptions: {
|
|
111
|
+
readonly id: PermissionKey;
|
|
112
|
+
readonly category: "Account Management";
|
|
113
|
+
readonly subcategory: "Subscription";
|
|
114
|
+
readonly function: "Manage Subcriptions";
|
|
115
|
+
readonly description: "Create new subscriptions and update existing subscriptions";
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* Explore subscription plans and compare their features.
|
|
119
|
+
*/
|
|
120
|
+
readonly AccountManagementViewPlans: {
|
|
121
|
+
readonly id: PermissionKey;
|
|
122
|
+
readonly category: "Account Management";
|
|
123
|
+
readonly subcategory: "Plans";
|
|
124
|
+
readonly function: "View Plans";
|
|
125
|
+
readonly description: "Explore subscription plans and compare their features.";
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* Export a copy of a design to your local system.
|
|
129
|
+
*/
|
|
130
|
+
readonly CatalogManagementDeployDesign: {
|
|
131
|
+
readonly id: PermissionKey;
|
|
132
|
+
readonly category: "Catalog Management";
|
|
133
|
+
readonly subcategory: "Catalog";
|
|
134
|
+
readonly function: "Deploy Design";
|
|
135
|
+
readonly description: "Export a copy of a design to your local system.";
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Share design with anyone within your organization, and make your design easily accessible to all relevant team members.
|
|
139
|
+
*/
|
|
140
|
+
readonly CatalogManagementShareDesign: {
|
|
141
|
+
readonly id: PermissionKey;
|
|
142
|
+
readonly category: "Catalog Management";
|
|
143
|
+
readonly subcategory: "Catalog";
|
|
144
|
+
readonly function: "Share Design";
|
|
145
|
+
readonly description: "Share design with anyone within your organization, and make your design easily accessible to all relevant team members.";
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* Clone any published design to customise it according to your use cases
|
|
149
|
+
*/
|
|
150
|
+
readonly CatalogManagementCloneDesign: {
|
|
151
|
+
readonly id: PermissionKey;
|
|
152
|
+
readonly category: "Catalog Management";
|
|
153
|
+
readonly subcategory: "Catalog";
|
|
154
|
+
readonly function: "Clone Design";
|
|
155
|
+
readonly description: "Clone any published design to customise it according to your use cases";
|
|
156
|
+
};
|
|
157
|
+
/**
|
|
158
|
+
* Opens design in a Kanvas (currently, specifically in the playground.meshery.io Kanvas)
|
|
159
|
+
*/
|
|
160
|
+
readonly CatalogManagementOpenInPlayground: {
|
|
161
|
+
readonly id: PermissionKey;
|
|
162
|
+
readonly category: "Catalog Management";
|
|
163
|
+
readonly subcategory: "Catalog";
|
|
164
|
+
readonly function: "Open in Playground";
|
|
165
|
+
readonly description: "Opens design in a Kanvas (currently, specifically in the playground.meshery.io Kanvas)";
|
|
166
|
+
};
|
|
167
|
+
/**
|
|
168
|
+
* No description available
|
|
169
|
+
*/
|
|
170
|
+
readonly CatalogManagementViewApplications: {
|
|
171
|
+
readonly id: PermissionKey;
|
|
172
|
+
readonly category: "Catalog Management";
|
|
173
|
+
readonly subcategory: "Applications";
|
|
174
|
+
readonly function: "View Applications";
|
|
175
|
+
readonly description: "";
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* View all public and published designs of other team members and private of signed-in user
|
|
179
|
+
*/
|
|
180
|
+
readonly CatalogManagementViewDesigns: {
|
|
181
|
+
readonly id: PermissionKey;
|
|
182
|
+
readonly category: "Catalog Management";
|
|
183
|
+
readonly subcategory: "Designs";
|
|
184
|
+
readonly function: "View Designs";
|
|
185
|
+
readonly description: "View all public and published designs of other team members and private of signed-in user";
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* View all public and published filters of other team members and private of signed-in user
|
|
189
|
+
*/
|
|
190
|
+
readonly CatalogManagementViewFilters: {
|
|
191
|
+
readonly id: PermissionKey;
|
|
192
|
+
readonly category: "Catalog Management";
|
|
193
|
+
readonly subcategory: "Filters";
|
|
194
|
+
readonly function: "View Filters";
|
|
195
|
+
readonly description: "View all public and published filters of other team members and private of signed-in user";
|
|
196
|
+
};
|
|
197
|
+
/**
|
|
198
|
+
* View the catalog publication request queue
|
|
199
|
+
*/
|
|
200
|
+
readonly CatalogManagementViewCatalogRequests: {
|
|
201
|
+
readonly id: PermissionKey;
|
|
202
|
+
readonly category: "Catalog Management";
|
|
203
|
+
readonly subcategory: "Catalog Requests";
|
|
204
|
+
readonly function: "View Catalog Requests";
|
|
205
|
+
readonly description: "View the catalog publication request queue";
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* Approve catalog publication requests
|
|
209
|
+
*/
|
|
210
|
+
readonly CatalogManagementApproveCatalogRequest: {
|
|
211
|
+
readonly id: PermissionKey;
|
|
212
|
+
readonly category: "Catalog Management";
|
|
213
|
+
readonly subcategory: "Catalog Requests";
|
|
214
|
+
readonly function: "Approve Catalog Request";
|
|
215
|
+
readonly description: "Approve catalog publication requests";
|
|
216
|
+
};
|
|
217
|
+
/**
|
|
218
|
+
* Deny catalog publication requests
|
|
219
|
+
*/
|
|
220
|
+
readonly CatalogManagementDenyCatalogRequest: {
|
|
221
|
+
readonly id: PermissionKey;
|
|
222
|
+
readonly category: "Catalog Management";
|
|
223
|
+
readonly subcategory: "Catalog Requests";
|
|
224
|
+
readonly function: "Deny Catalog Request";
|
|
225
|
+
readonly description: "Deny catalog publication requests";
|
|
226
|
+
};
|
|
227
|
+
/**
|
|
228
|
+
* View private designs of the org
|
|
229
|
+
*/
|
|
230
|
+
readonly CatalogManagementViewPrivateDesigns: {
|
|
231
|
+
readonly id: PermissionKey;
|
|
232
|
+
readonly category: "Catalog Management";
|
|
233
|
+
readonly subcategory: "Designs";
|
|
234
|
+
readonly function: "View Private Designs";
|
|
235
|
+
readonly description: "View private designs of the org";
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* View public designs of the org
|
|
239
|
+
*/
|
|
240
|
+
readonly CatalogManagementViewPublicDesigns: {
|
|
241
|
+
readonly id: PermissionKey;
|
|
242
|
+
readonly category: "Catalog Management";
|
|
243
|
+
readonly subcategory: "Designs";
|
|
244
|
+
readonly function: "View Public Designs";
|
|
245
|
+
readonly description: "View public designs of the org";
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
248
|
+
* View published designs of the org
|
|
249
|
+
*/
|
|
250
|
+
readonly CatalogManagementViewPublishedDesigns: {
|
|
251
|
+
readonly id: PermissionKey;
|
|
252
|
+
readonly category: "Catalog Management";
|
|
253
|
+
readonly subcategory: "Designs";
|
|
254
|
+
readonly function: "View Published Designs";
|
|
255
|
+
readonly description: "View published designs of the org";
|
|
256
|
+
};
|
|
257
|
+
/**
|
|
258
|
+
* Create new Meshery design
|
|
259
|
+
*/
|
|
260
|
+
readonly CatalogManagementCreateNewDesign: {
|
|
261
|
+
readonly id: PermissionKey;
|
|
262
|
+
readonly category: "Catalog Management";
|
|
263
|
+
readonly subcategory: "Designs";
|
|
264
|
+
readonly function: "Create new design";
|
|
265
|
+
readonly description: "Create new Meshery design";
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* Import a design
|
|
269
|
+
*/
|
|
270
|
+
readonly CatalogManagementImportDesign: {
|
|
271
|
+
readonly id: PermissionKey;
|
|
272
|
+
readonly category: "Catalog Management";
|
|
273
|
+
readonly subcategory: "Designs";
|
|
274
|
+
readonly function: "Import Design";
|
|
275
|
+
readonly description: "Import a design";
|
|
276
|
+
};
|
|
277
|
+
/**
|
|
278
|
+
* Export a design in source type format (Kubernetes Manifest, Helm Chart, Docker Compose)
|
|
279
|
+
*/
|
|
280
|
+
readonly CatalogManagementExportDesign: {
|
|
281
|
+
readonly id: PermissionKey;
|
|
282
|
+
readonly category: "Catalog Management";
|
|
283
|
+
readonly subcategory: "Designs";
|
|
284
|
+
readonly function: "Export Design";
|
|
285
|
+
readonly description: "Export a design in source type format (Kubernetes Manifest, Helm Chart, Docker Compose)";
|
|
286
|
+
};
|
|
287
|
+
/**
|
|
288
|
+
* Publish a design
|
|
289
|
+
*/
|
|
290
|
+
readonly CatalogManagementPublishDesign: {
|
|
291
|
+
readonly id: PermissionKey;
|
|
292
|
+
readonly category: "Catalog Management";
|
|
293
|
+
readonly subcategory: "Designs";
|
|
294
|
+
readonly function: "Publish Design";
|
|
295
|
+
readonly description: "Publish a design";
|
|
296
|
+
};
|
|
297
|
+
/**
|
|
298
|
+
* Unpublish a design
|
|
299
|
+
*/
|
|
300
|
+
readonly CatalogManagementUnpublishDesign: {
|
|
301
|
+
readonly id: PermissionKey;
|
|
302
|
+
readonly category: "Catalog Management";
|
|
303
|
+
readonly subcategory: "Designs";
|
|
304
|
+
readonly function: "Unpublish Design";
|
|
305
|
+
readonly description: "Unpublish a design";
|
|
306
|
+
};
|
|
307
|
+
/**
|
|
308
|
+
* Validate a design
|
|
309
|
+
*/
|
|
310
|
+
readonly CatalogManagementValidateDesign: {
|
|
311
|
+
readonly id: PermissionKey;
|
|
312
|
+
readonly category: "Catalog Management";
|
|
313
|
+
readonly subcategory: "Designs";
|
|
314
|
+
readonly function: "Validate Design";
|
|
315
|
+
readonly description: "Validate a design";
|
|
316
|
+
};
|
|
317
|
+
/**
|
|
318
|
+
* Retract all resources used in a Meshery design from the cluster
|
|
319
|
+
*/
|
|
320
|
+
readonly CatalogManagementUndeployDesign: {
|
|
321
|
+
readonly id: PermissionKey;
|
|
322
|
+
readonly category: "Catalog Management";
|
|
323
|
+
readonly subcategory: "Designs";
|
|
324
|
+
readonly function: "Undeploy Design";
|
|
325
|
+
readonly description: "Retract all resources used in a Meshery design from the cluster";
|
|
326
|
+
};
|
|
327
|
+
/**
|
|
328
|
+
* Set design information or details of a design
|
|
329
|
+
*/
|
|
330
|
+
readonly CatalogManagementDetailsOfDesign: {
|
|
331
|
+
readonly id: PermissionKey;
|
|
332
|
+
readonly category: "Catalog Management";
|
|
333
|
+
readonly subcategory: "Designs";
|
|
334
|
+
readonly function: "Details of design";
|
|
335
|
+
readonly description: "Set design information or details of a design";
|
|
336
|
+
};
|
|
337
|
+
/**
|
|
338
|
+
* Edit a design
|
|
339
|
+
*/
|
|
340
|
+
readonly CatalogManagementEditDesign: {
|
|
341
|
+
readonly id: PermissionKey;
|
|
342
|
+
readonly category: "Catalog Management";
|
|
343
|
+
readonly subcategory: "Designs";
|
|
344
|
+
readonly function: "Edit design";
|
|
345
|
+
readonly description: "Edit a design";
|
|
346
|
+
};
|
|
347
|
+
/**
|
|
348
|
+
* Delete a design
|
|
349
|
+
*/
|
|
350
|
+
readonly CatalogManagementDeleteADesign: {
|
|
351
|
+
readonly id: PermissionKey;
|
|
352
|
+
readonly category: "Catalog Management";
|
|
353
|
+
readonly subcategory: "Designs";
|
|
354
|
+
readonly function: "Delete a design";
|
|
355
|
+
readonly description: "Delete a design";
|
|
356
|
+
};
|
|
357
|
+
/**
|
|
358
|
+
* Evaluate relationships inside a design
|
|
359
|
+
*/
|
|
360
|
+
readonly CatalogManagementEvaluateRelationships: {
|
|
361
|
+
readonly id: PermissionKey;
|
|
362
|
+
readonly category: "Catalog Management";
|
|
363
|
+
readonly subcategory: "Designs";
|
|
364
|
+
readonly function: "Evaluate Relationships";
|
|
365
|
+
readonly description: "Evaluate relationships inside a design";
|
|
366
|
+
};
|
|
367
|
+
/**
|
|
368
|
+
* Download a Meshery design in OCI or YAML format
|
|
369
|
+
*/
|
|
370
|
+
readonly CatalogManagementDownloadADesign: {
|
|
371
|
+
readonly id: PermissionKey;
|
|
372
|
+
readonly category: "Catalog Management";
|
|
373
|
+
readonly subcategory: "Designs";
|
|
374
|
+
readonly function: "Download a design";
|
|
375
|
+
readonly description: "Download a Meshery design in OCI or YAML format";
|
|
376
|
+
};
|
|
377
|
+
/**
|
|
378
|
+
* Import a filter
|
|
379
|
+
*/
|
|
380
|
+
readonly CatalogManagementImportFilter: {
|
|
381
|
+
readonly id: PermissionKey;
|
|
382
|
+
readonly category: "Catalog Management";
|
|
383
|
+
readonly subcategory: "Filters";
|
|
384
|
+
readonly function: "Import Filter";
|
|
385
|
+
readonly description: "Import a filter";
|
|
386
|
+
};
|
|
387
|
+
/**
|
|
388
|
+
* Publish WASM Filter
|
|
389
|
+
*/
|
|
390
|
+
readonly CatalogManagementPublishWasmFilter: {
|
|
391
|
+
readonly id: PermissionKey;
|
|
392
|
+
readonly category: "Catalog Management";
|
|
393
|
+
readonly subcategory: "Filters";
|
|
394
|
+
readonly function: "Publish WASM Filter";
|
|
395
|
+
readonly description: "Publish WASM Filter";
|
|
396
|
+
};
|
|
397
|
+
/**
|
|
398
|
+
* Unpublish WASM Filter
|
|
399
|
+
*/
|
|
400
|
+
readonly CatalogManagementUnpublishWasmFilter: {
|
|
401
|
+
readonly id: PermissionKey;
|
|
402
|
+
readonly category: "Catalog Management";
|
|
403
|
+
readonly subcategory: "Filters";
|
|
404
|
+
readonly function: "Unpublish WASM Filter";
|
|
405
|
+
readonly description: "Unpublish WASM Filter";
|
|
406
|
+
};
|
|
407
|
+
/**
|
|
408
|
+
* Download a WASM filter
|
|
409
|
+
*/
|
|
410
|
+
readonly CatalogManagementDownloadAWasmFilter: {
|
|
411
|
+
readonly id: PermissionKey;
|
|
412
|
+
readonly category: "Catalog Management";
|
|
413
|
+
readonly subcategory: "Filters";
|
|
414
|
+
readonly function: "Download a WASM filter";
|
|
415
|
+
readonly description: "Download a WASM filter";
|
|
416
|
+
};
|
|
417
|
+
/**
|
|
418
|
+
* Check information or details of a WASM filter
|
|
419
|
+
*/
|
|
420
|
+
readonly CatalogManagementDetailsOfWasmFilter: {
|
|
421
|
+
readonly id: PermissionKey;
|
|
422
|
+
readonly category: "Catalog Management";
|
|
423
|
+
readonly subcategory: "Filters";
|
|
424
|
+
readonly function: "Details of WASM Filter";
|
|
425
|
+
readonly description: "Check information or details of a WASM filter";
|
|
426
|
+
};
|
|
427
|
+
/**
|
|
428
|
+
* Edit WASM filter
|
|
429
|
+
*/
|
|
430
|
+
readonly CatalogManagementEditWasmFilter: {
|
|
431
|
+
readonly id: PermissionKey;
|
|
432
|
+
readonly category: "Catalog Management";
|
|
433
|
+
readonly subcategory: "Filters";
|
|
434
|
+
readonly function: "Edit WASM filter";
|
|
435
|
+
readonly description: "Edit WASM filter";
|
|
436
|
+
};
|
|
437
|
+
/**
|
|
438
|
+
* Clone WASM filter from catalog, which allows customizing filter and use it in design
|
|
439
|
+
*/
|
|
440
|
+
readonly CatalogManagementCloneWasmFilter: {
|
|
441
|
+
readonly id: PermissionKey;
|
|
442
|
+
readonly category: "Catalog Management";
|
|
443
|
+
readonly subcategory: "Filters";
|
|
444
|
+
readonly function: "Clone WASM Filter";
|
|
445
|
+
readonly description: "Clone WASM filter from catalog, which allows customizing filter and use it in design";
|
|
446
|
+
};
|
|
447
|
+
/**
|
|
448
|
+
* Delete WASM filter permanently from catalog.
|
|
449
|
+
*/
|
|
450
|
+
readonly CatalogManagementDeleteWasmFilter: {
|
|
451
|
+
readonly id: PermissionKey;
|
|
452
|
+
readonly category: "Catalog Management";
|
|
453
|
+
readonly subcategory: "Filters";
|
|
454
|
+
readonly function: "Delete WASM Filter";
|
|
455
|
+
readonly description: "Delete WASM filter permanently from catalog.";
|
|
456
|
+
};
|
|
457
|
+
/**
|
|
458
|
+
* Invite any Meshery Cloud user, or all Meshery users, to work with you on a public design that control – including making changes and releasing new versions.
|
|
459
|
+
*/
|
|
460
|
+
readonly CollaborationInviteAnyMesheryCloudUserOrAllMesheryUsers: {
|
|
461
|
+
readonly id: PermissionKey;
|
|
462
|
+
readonly category: "Collaboration";
|
|
463
|
+
readonly subcategory: "Collaborators for public designs";
|
|
464
|
+
readonly function: "Invite any Meshery Cloud user, or all Meshery users";
|
|
465
|
+
readonly description: "Invite any Meshery Cloud user, or all Meshery users, to work with you on a public design that control – including making changes and releasing new versions.";
|
|
466
|
+
};
|
|
467
|
+
/**
|
|
468
|
+
* Invite any Meshery Cloud user to work with you on a private design that control – including making changes and releasing new versions.
|
|
469
|
+
*/
|
|
470
|
+
readonly CollaborationInviteAnyMesheryCloudUserToOnAPrivateDesign: {
|
|
471
|
+
readonly id: PermissionKey;
|
|
472
|
+
readonly category: "Collaboration";
|
|
473
|
+
readonly subcategory: "Collaborators for private designs";
|
|
474
|
+
readonly function: "Invite any Meshery Cloud user to on a private design";
|
|
475
|
+
readonly description: "Invite any Meshery Cloud user to work with you on a private design that control – including making changes and releasing new versions.";
|
|
476
|
+
};
|
|
477
|
+
/**
|
|
478
|
+
* Message in real-time, unattached to a specific design. Control who can pariticpate in the discussion.
|
|
479
|
+
*/
|
|
480
|
+
readonly CollaborationMessageInRealTime: {
|
|
481
|
+
readonly id: PermissionKey;
|
|
482
|
+
readonly category: "Collaboration";
|
|
483
|
+
readonly subcategory: "Team Chat";
|
|
484
|
+
readonly function: "Message in real-time";
|
|
485
|
+
readonly description: "Message in real-time, unattached to a specific design. Control who can pariticpate in the discussion.";
|
|
486
|
+
};
|
|
487
|
+
/**
|
|
488
|
+
* Discuss any design by leaving review comments or notes on a specific design. Control who has access, notify discussion participants with updates, and link from anywhere.
|
|
489
|
+
*/
|
|
490
|
+
readonly CollaborationDiscussAnyDesignByLeavingReviewComments: {
|
|
491
|
+
readonly id: PermissionKey;
|
|
492
|
+
readonly category: "Collaboration";
|
|
493
|
+
readonly subcategory: "Design Reviews";
|
|
494
|
+
readonly function: "Discuss any design by leaving review comments";
|
|
495
|
+
readonly description: "Discuss any design by leaving review comments or notes on a specific design. Control who has access, notify discussion participants with updates, and link from anywhere.";
|
|
496
|
+
};
|
|
497
|
+
/**
|
|
498
|
+
* Manage access to designs on a team-by-team, or individual user, basis.
|
|
499
|
+
*/
|
|
500
|
+
readonly CollaborationManageAccessToDesigns: {
|
|
501
|
+
readonly id: PermissionKey;
|
|
502
|
+
readonly category: "Collaboration";
|
|
503
|
+
readonly subcategory: "Organization and Team Management";
|
|
504
|
+
readonly function: "Manage access to designs";
|
|
505
|
+
readonly description: "Manage access to designs on a team-by-team, or individual user, basis.";
|
|
506
|
+
};
|
|
507
|
+
/**
|
|
508
|
+
* Create and collaborate in online designs in real-time.
|
|
509
|
+
*/
|
|
510
|
+
readonly CollaborationCreateAndCollaborateInOnlineDesignsInRealTime: {
|
|
511
|
+
readonly id: PermissionKey;
|
|
512
|
+
readonly category: "Collaboration";
|
|
513
|
+
readonly subcategory: "Collaborative Design";
|
|
514
|
+
readonly function: "Create and collaborate in online designs in real-time.";
|
|
515
|
+
readonly description: "Create and collaborate in online designs in real-time.";
|
|
516
|
+
};
|
|
517
|
+
/**
|
|
518
|
+
* No description available
|
|
519
|
+
*/
|
|
520
|
+
readonly ContentCatalogIstioVirtualServiceDestinationRules: {
|
|
521
|
+
readonly id: PermissionKey;
|
|
522
|
+
readonly category: "Content Catalog";
|
|
523
|
+
readonly subcategory: "Best Practices";
|
|
524
|
+
readonly function: "Istio: Virtual Service, Destination Rules, ...";
|
|
525
|
+
readonly description: "";
|
|
526
|
+
};
|
|
527
|
+
/**
|
|
528
|
+
* No description available
|
|
529
|
+
*/
|
|
530
|
+
readonly ContentCatalogConsul: {
|
|
531
|
+
readonly id: PermissionKey;
|
|
532
|
+
readonly category: "Content Catalog";
|
|
533
|
+
readonly subcategory: "Best Practices";
|
|
534
|
+
readonly function: "Consul";
|
|
535
|
+
readonly description: "";
|
|
536
|
+
};
|
|
537
|
+
/**
|
|
538
|
+
* No description available
|
|
539
|
+
*/
|
|
540
|
+
readonly ContentCatalogKuma: {
|
|
541
|
+
readonly id: PermissionKey;
|
|
542
|
+
readonly category: "Content Catalog";
|
|
543
|
+
readonly subcategory: "Best Practices";
|
|
544
|
+
readonly function: "Kuma";
|
|
545
|
+
readonly description: "";
|
|
546
|
+
};
|
|
547
|
+
/**
|
|
548
|
+
* No description available
|
|
549
|
+
*/
|
|
550
|
+
readonly EventManagementViewStatistics: {
|
|
551
|
+
readonly id: PermissionKey;
|
|
552
|
+
readonly category: "Event Management";
|
|
553
|
+
readonly subcategory: "Statistics";
|
|
554
|
+
readonly function: "View Statistics";
|
|
555
|
+
readonly description: "";
|
|
556
|
+
};
|
|
557
|
+
/**
|
|
558
|
+
* No description available
|
|
559
|
+
*/
|
|
560
|
+
readonly EventsManagementViewEvents: {
|
|
561
|
+
readonly id: PermissionKey;
|
|
562
|
+
readonly category: "Events Management";
|
|
563
|
+
readonly subcategory: "Events";
|
|
564
|
+
readonly function: "View Events";
|
|
565
|
+
readonly description: "";
|
|
566
|
+
};
|
|
567
|
+
/**
|
|
568
|
+
* No description available
|
|
569
|
+
*/
|
|
570
|
+
readonly EventsManagementViewSummary: {
|
|
571
|
+
readonly id: PermissionKey;
|
|
572
|
+
readonly category: "Events Management";
|
|
573
|
+
readonly subcategory: "Summary";
|
|
574
|
+
readonly function: "View Summary";
|
|
575
|
+
readonly description: "";
|
|
576
|
+
};
|
|
577
|
+
/**
|
|
578
|
+
* No description available
|
|
579
|
+
*/
|
|
580
|
+
readonly EventsManagementViewAudit: {
|
|
581
|
+
readonly id: PermissionKey;
|
|
582
|
+
readonly category: "Events Management";
|
|
583
|
+
readonly subcategory: "Audit";
|
|
584
|
+
readonly function: "View Audit";
|
|
585
|
+
readonly description: "";
|
|
586
|
+
};
|
|
587
|
+
/**
|
|
588
|
+
* No description available
|
|
589
|
+
*/
|
|
590
|
+
readonly ExtensibilityDynamicInjectionViaRemoteProvider: {
|
|
591
|
+
readonly id: PermissionKey;
|
|
592
|
+
readonly category: "Extensibility";
|
|
593
|
+
readonly subcategory: "Framework";
|
|
594
|
+
readonly function: "Dynamic Injection via Remote Provider";
|
|
595
|
+
readonly description: "";
|
|
596
|
+
};
|
|
597
|
+
/**
|
|
598
|
+
* No description available
|
|
599
|
+
*/
|
|
600
|
+
readonly ExtensibilityNamespacedCustomEndpoints: {
|
|
601
|
+
readonly id: PermissionKey;
|
|
602
|
+
readonly category: "Extensibility";
|
|
603
|
+
readonly subcategory: "ReST API";
|
|
604
|
+
readonly function: "Namespaced custom endpoints";
|
|
605
|
+
readonly description: "";
|
|
606
|
+
};
|
|
607
|
+
/**
|
|
608
|
+
* No description available
|
|
609
|
+
*/
|
|
610
|
+
readonly ExtensibilitySwaggerIntegration: {
|
|
611
|
+
readonly id: PermissionKey;
|
|
612
|
+
readonly category: "Extensibility";
|
|
613
|
+
readonly subcategory: "ReST API";
|
|
614
|
+
readonly function: "Swagger integration";
|
|
615
|
+
readonly description: "";
|
|
616
|
+
};
|
|
617
|
+
/**
|
|
618
|
+
* No description available
|
|
619
|
+
*/
|
|
620
|
+
readonly ExtensibilityNamespacedCustomResolvers: {
|
|
621
|
+
readonly id: PermissionKey;
|
|
622
|
+
readonly category: "Extensibility";
|
|
623
|
+
readonly subcategory: "GraphQL API";
|
|
624
|
+
readonly function: "Namespaced custom resolvers";
|
|
625
|
+
readonly description: "";
|
|
626
|
+
};
|
|
627
|
+
/**
|
|
628
|
+
* Extend Meshery's capabilities behind a gRPC interface for Model registration and operation invocation
|
|
629
|
+
*/
|
|
630
|
+
readonly ExtensibilityAdapters: {
|
|
631
|
+
readonly id: PermissionKey;
|
|
632
|
+
readonly category: "Extensibility";
|
|
633
|
+
readonly subcategory: "Extension Point";
|
|
634
|
+
readonly function: "Adapters";
|
|
635
|
+
readonly description: "Extend Meshery's capabilities behind a gRPC interface for Model registration and operation invocation";
|
|
636
|
+
};
|
|
637
|
+
/**
|
|
638
|
+
* No description available
|
|
639
|
+
*/
|
|
640
|
+
readonly ExtensibilityLoadGenerators: {
|
|
641
|
+
readonly id: PermissionKey;
|
|
642
|
+
readonly category: "Extensibility";
|
|
643
|
+
readonly subcategory: "Extension Point";
|
|
644
|
+
readonly function: "Load Generators";
|
|
645
|
+
readonly description: "";
|
|
646
|
+
};
|
|
647
|
+
/**
|
|
648
|
+
* No description available
|
|
649
|
+
*/
|
|
650
|
+
readonly ExtensibilityAuthentication: {
|
|
651
|
+
readonly id: PermissionKey;
|
|
652
|
+
readonly category: "Extensibility";
|
|
653
|
+
readonly subcategory: "Extension Point";
|
|
654
|
+
readonly function: "Authentication";
|
|
655
|
+
readonly description: "";
|
|
656
|
+
};
|
|
657
|
+
/**
|
|
658
|
+
* No description available
|
|
659
|
+
*/
|
|
660
|
+
readonly ExtensibilityAuthorization: {
|
|
661
|
+
readonly id: PermissionKey;
|
|
662
|
+
readonly category: "Extensibility";
|
|
663
|
+
readonly subcategory: "Extension Point";
|
|
664
|
+
readonly function: "Authorization";
|
|
665
|
+
readonly description: "";
|
|
666
|
+
};
|
|
667
|
+
/**
|
|
668
|
+
* No description available
|
|
669
|
+
*/
|
|
670
|
+
readonly ExtensibilityRemoteProviders: {
|
|
671
|
+
readonly id: PermissionKey;
|
|
672
|
+
readonly category: "Extensibility";
|
|
673
|
+
readonly subcategory: "Extension Point";
|
|
674
|
+
readonly function: "Remote Providers";
|
|
675
|
+
readonly description: "";
|
|
676
|
+
};
|
|
677
|
+
/**
|
|
678
|
+
* No description available
|
|
679
|
+
*/
|
|
680
|
+
readonly ExtensibilityUserPreferences: {
|
|
681
|
+
readonly id: PermissionKey;
|
|
682
|
+
readonly category: "Extensibility";
|
|
683
|
+
readonly subcategory: "Extension Point";
|
|
684
|
+
readonly function: "User Preferences";
|
|
685
|
+
readonly description: "";
|
|
686
|
+
};
|
|
687
|
+
/**
|
|
688
|
+
* Propagate document updates peer-to-peer using WebRTC.
|
|
689
|
+
*/
|
|
690
|
+
readonly ExtensibilityPeerToPeer: {
|
|
691
|
+
readonly id: PermissionKey;
|
|
692
|
+
readonly category: "Extensibility";
|
|
693
|
+
readonly subcategory: "Extension Point";
|
|
694
|
+
readonly function: "Peer-to-Peer";
|
|
695
|
+
readonly description: "Propagate document updates peer-to-peer using WebRTC.";
|
|
696
|
+
};
|
|
697
|
+
/**
|
|
698
|
+
* Install or enable or disabble extensions in Meshery
|
|
699
|
+
*/
|
|
700
|
+
readonly ExtensibilityInstallExtension: {
|
|
701
|
+
readonly id: PermissionKey;
|
|
702
|
+
readonly category: "Extensibility";
|
|
703
|
+
readonly subcategory: "Extensions";
|
|
704
|
+
readonly function: "Install extension";
|
|
705
|
+
readonly description: "Install or enable or disabble extensions in Meshery";
|
|
706
|
+
};
|
|
707
|
+
/**
|
|
708
|
+
* View all user preferences in Meshery UI
|
|
709
|
+
*/
|
|
710
|
+
readonly ExtensibilityViewMesheryUserPreferences: {
|
|
711
|
+
readonly id: PermissionKey;
|
|
712
|
+
readonly category: "Extensibility";
|
|
713
|
+
readonly subcategory: "Extensions";
|
|
714
|
+
readonly function: "View Meshery User Preferences";
|
|
715
|
+
readonly description: "View all user preferences in Meshery UI";
|
|
716
|
+
};
|
|
717
|
+
/**
|
|
718
|
+
* View all extensions on the extension page
|
|
719
|
+
*/
|
|
720
|
+
readonly ExtensibilityViewExtensions: {
|
|
721
|
+
readonly id: PermissionKey;
|
|
722
|
+
readonly category: "Extensibility";
|
|
723
|
+
readonly subcategory: "Extensions";
|
|
724
|
+
readonly function: "View Extensions";
|
|
725
|
+
readonly description: "View all extensions on the extension page";
|
|
726
|
+
};
|
|
727
|
+
/**
|
|
728
|
+
* No description available
|
|
729
|
+
*/
|
|
730
|
+
readonly FinancialManagementShowback: {
|
|
731
|
+
readonly id: PermissionKey;
|
|
732
|
+
readonly category: "Financial Management";
|
|
733
|
+
readonly subcategory: "Accounting";
|
|
734
|
+
readonly function: "Showback";
|
|
735
|
+
readonly description: "";
|
|
736
|
+
};
|
|
737
|
+
/**
|
|
738
|
+
* Per service, per authenticated user
|
|
739
|
+
*/
|
|
740
|
+
readonly FinancialManagementChargeback: {
|
|
741
|
+
readonly id: PermissionKey;
|
|
742
|
+
readonly category: "Financial Management";
|
|
743
|
+
readonly subcategory: "Billing";
|
|
744
|
+
readonly function: "Chargeback";
|
|
745
|
+
readonly description: "Per service, per authenticated user";
|
|
746
|
+
};
|
|
747
|
+
/**
|
|
748
|
+
* Visual insights in your pull requests in GitLab
|
|
749
|
+
*/
|
|
750
|
+
readonly GitopsSnapshots: {
|
|
751
|
+
readonly id: PermissionKey;
|
|
752
|
+
readonly category: "GitOps";
|
|
753
|
+
readonly subcategory: "Review";
|
|
754
|
+
readonly function: "Snapshots";
|
|
755
|
+
readonly description: "Visual insights in your pull requests in GitLab";
|
|
756
|
+
};
|
|
757
|
+
/**
|
|
758
|
+
* Initiate deployment with creation of pull request
|
|
759
|
+
*/
|
|
760
|
+
readonly GitopsBitbucket: {
|
|
761
|
+
readonly id: PermissionKey;
|
|
762
|
+
readonly category: "GitOps";
|
|
763
|
+
readonly subcategory: "Pipeline";
|
|
764
|
+
readonly function: "BitBucket";
|
|
765
|
+
readonly description: "Initiate deployment with creation of pull request";
|
|
766
|
+
};
|
|
767
|
+
/**
|
|
768
|
+
* Initiate deployment with creation of pull request
|
|
769
|
+
*/
|
|
770
|
+
readonly GitopsGithub: {
|
|
771
|
+
readonly id: PermissionKey;
|
|
772
|
+
readonly category: "GitOps";
|
|
773
|
+
readonly subcategory: "Pipeline";
|
|
774
|
+
readonly function: "GitHub";
|
|
775
|
+
readonly description: "Initiate deployment with creation of pull request";
|
|
776
|
+
};
|
|
777
|
+
/**
|
|
778
|
+
* Initiate deployment with creation of pull request
|
|
779
|
+
*/
|
|
780
|
+
readonly GitopsGitlab: {
|
|
781
|
+
readonly id: PermissionKey;
|
|
782
|
+
readonly category: "GitOps";
|
|
783
|
+
readonly subcategory: "Pipeline";
|
|
784
|
+
readonly function: "GitLab";
|
|
785
|
+
readonly description: "Initiate deployment with creation of pull request";
|
|
786
|
+
};
|
|
787
|
+
/**
|
|
788
|
+
* Initiate deployment with creation of pull request
|
|
789
|
+
*/
|
|
790
|
+
readonly GitopsArgoevents: {
|
|
791
|
+
readonly id: PermissionKey;
|
|
792
|
+
readonly category: "GitOps";
|
|
793
|
+
readonly subcategory: "Pipeline";
|
|
794
|
+
readonly function: "ArgoEvents";
|
|
795
|
+
readonly description: "Initiate deployment with creation of pull request";
|
|
796
|
+
};
|
|
797
|
+
/**
|
|
798
|
+
* Signal pass or fail: to proceed or rollback a deployment
|
|
799
|
+
*/
|
|
800
|
+
readonly GitopsWebhook: {
|
|
801
|
+
readonly id: PermissionKey;
|
|
802
|
+
readonly category: "GitOps";
|
|
803
|
+
readonly subcategory: "Pipeline";
|
|
804
|
+
readonly function: "Webhook";
|
|
805
|
+
readonly description: "Signal pass or fail: to proceed or rollback a deployment";
|
|
806
|
+
};
|
|
807
|
+
/**
|
|
808
|
+
* Signal pass or fail: to proceed or rollback a deployment
|
|
809
|
+
*/
|
|
810
|
+
readonly GitopsAssessAndCharacterizeServicePerformance: {
|
|
811
|
+
readonly id: PermissionKey;
|
|
812
|
+
readonly category: "GitOps";
|
|
813
|
+
readonly subcategory: "Pipeline";
|
|
814
|
+
readonly function: "Assess and Characterize Service Performance";
|
|
815
|
+
readonly description: "Signal pass or fail: to proceed or rollback a deployment";
|
|
816
|
+
};
|
|
817
|
+
/**
|
|
818
|
+
* No description available
|
|
819
|
+
*/
|
|
820
|
+
readonly GitopsVerifyConformanceReturnResultsAndGreenRedLight: {
|
|
821
|
+
readonly id: PermissionKey;
|
|
822
|
+
readonly category: "GitOps";
|
|
823
|
+
readonly subcategory: "SMI Conformance";
|
|
824
|
+
readonly function: "Verify conformance; return results and green/red light";
|
|
825
|
+
readonly description: "";
|
|
826
|
+
};
|
|
827
|
+
/**
|
|
828
|
+
* No description available
|
|
829
|
+
*/
|
|
830
|
+
readonly IdentityAccessManagementImplicitUserImplicitRoleAdmin: {
|
|
831
|
+
readonly id: PermissionKey;
|
|
832
|
+
readonly category: "Identity & Access Management";
|
|
833
|
+
readonly subcategory: "Single User";
|
|
834
|
+
readonly function: "Implicit user; implicit role (admin)";
|
|
835
|
+
readonly description: "";
|
|
836
|
+
};
|
|
837
|
+
/**
|
|
838
|
+
* No description available
|
|
839
|
+
*/
|
|
840
|
+
readonly IdentityAccessManagementMultiTenancy: {
|
|
841
|
+
readonly id: PermissionKey;
|
|
842
|
+
readonly category: "Identity & Access Management";
|
|
843
|
+
readonly subcategory: "Multiple Users";
|
|
844
|
+
readonly function: "Multi-tenancy";
|
|
845
|
+
readonly description: "";
|
|
846
|
+
};
|
|
847
|
+
/**
|
|
848
|
+
* No description available
|
|
849
|
+
*/
|
|
850
|
+
readonly IdentityAccessManagementAllowsPreferencesToBeSetPerUser: {
|
|
851
|
+
readonly id: PermissionKey;
|
|
852
|
+
readonly category: "Identity & Access Management";
|
|
853
|
+
readonly subcategory: "Individual User Preferences";
|
|
854
|
+
readonly function: "Allows preferences to be set per user.";
|
|
855
|
+
readonly description: "";
|
|
856
|
+
};
|
|
857
|
+
/**
|
|
858
|
+
* Static - out of the box
|
|
859
|
+
*/
|
|
860
|
+
readonly IdentityAccessManagementBuiltInRoles: {
|
|
861
|
+
readonly id: PermissionKey;
|
|
862
|
+
readonly category: "Identity & Access Management";
|
|
863
|
+
readonly subcategory: "Built-in Roles";
|
|
864
|
+
readonly function: "Built-in Roles";
|
|
865
|
+
readonly description: "Static - out of the box";
|
|
866
|
+
};
|
|
867
|
+
/**
|
|
868
|
+
* Customizable roles for specific permission assignments
|
|
869
|
+
*/
|
|
870
|
+
readonly IdentityAccessManagementUserDefinedRoles: {
|
|
871
|
+
readonly id: PermissionKey;
|
|
872
|
+
readonly category: "Identity & Access Management";
|
|
873
|
+
readonly subcategory: "User-defined Roles";
|
|
874
|
+
readonly function: "User-defined Roles";
|
|
875
|
+
readonly description: "Customizable roles for specific permission assignments";
|
|
876
|
+
};
|
|
877
|
+
/**
|
|
878
|
+
* No description available
|
|
879
|
+
*/
|
|
880
|
+
readonly IdentityAccessManagementEnforcementOfTenancy: {
|
|
881
|
+
readonly id: PermissionKey;
|
|
882
|
+
readonly category: "Identity & Access Management";
|
|
883
|
+
readonly subcategory: "Multiple Organizations";
|
|
884
|
+
readonly function: "Enforcement of tenancy";
|
|
885
|
+
readonly description: "";
|
|
886
|
+
};
|
|
887
|
+
/**
|
|
888
|
+
* No description available
|
|
889
|
+
*/
|
|
890
|
+
readonly IdentityAccessManagementHierarchicalPermissioning: {
|
|
891
|
+
readonly id: PermissionKey;
|
|
892
|
+
readonly category: "Identity & Access Management";
|
|
893
|
+
readonly subcategory: "Multiple Organizations";
|
|
894
|
+
readonly function: "Hierarchical permissioning";
|
|
895
|
+
readonly description: "";
|
|
896
|
+
};
|
|
897
|
+
/**
|
|
898
|
+
* No description available
|
|
899
|
+
*/
|
|
900
|
+
readonly IdentityAccessManagementAuthenticationOauth: {
|
|
901
|
+
readonly id: PermissionKey;
|
|
902
|
+
readonly category: "Identity & Access Management";
|
|
903
|
+
readonly subcategory: "Authentication";
|
|
904
|
+
readonly function: "Authentication: OAuth";
|
|
905
|
+
readonly description: "";
|
|
906
|
+
};
|
|
907
|
+
/**
|
|
908
|
+
* Access Meshery Server using your existing accounts and centrally manage repository access.
|
|
909
|
+
*/
|
|
910
|
+
readonly IdentityAccessManagementAuthenticationLdap: {
|
|
911
|
+
readonly id: PermissionKey;
|
|
912
|
+
readonly category: "Identity & Access Management";
|
|
913
|
+
readonly subcategory: "Authentication: LDAP";
|
|
914
|
+
readonly function: "Authentication: LDAP";
|
|
915
|
+
readonly description: "Access Meshery Server using your existing accounts and centrally manage repository access.";
|
|
916
|
+
};
|
|
917
|
+
/**
|
|
918
|
+
* Use an identity provider to manage the identities of GitHub users and applications.
|
|
919
|
+
*/
|
|
920
|
+
readonly IdentityAccessManagementAuthenticationSaml: {
|
|
921
|
+
readonly id: PermissionKey;
|
|
922
|
+
readonly category: "Identity & Access Management";
|
|
923
|
+
readonly subcategory: "Authentication: SAML";
|
|
924
|
+
readonly function: "Authentication: SAML";
|
|
925
|
+
readonly description: "Use an identity provider to manage the identities of GitHub users and applications.";
|
|
926
|
+
};
|
|
927
|
+
/**
|
|
928
|
+
* No description available
|
|
929
|
+
*/
|
|
930
|
+
readonly IdentityAccessManagementAzureActiveDirectory: {
|
|
931
|
+
readonly id: PermissionKey;
|
|
932
|
+
readonly category: "Identity & Access Management";
|
|
933
|
+
readonly subcategory: "Authentication";
|
|
934
|
+
readonly function: "Azure Active Directory";
|
|
935
|
+
readonly description: "";
|
|
936
|
+
};
|
|
937
|
+
/**
|
|
938
|
+
* Own and control the user accounts of your enterprise members through your identity provider (IdP).
|
|
939
|
+
*/
|
|
940
|
+
readonly IdentityAccessManagementMesheryAsAnIdp: {
|
|
941
|
+
readonly id: PermissionKey;
|
|
942
|
+
readonly category: "Identity & Access Management";
|
|
943
|
+
readonly subcategory: "Authorization";
|
|
944
|
+
readonly function: "Meshery as an IDP";
|
|
945
|
+
readonly description: "Own and control the user accounts of your enterprise members through your identity provider (IdP).";
|
|
946
|
+
};
|
|
947
|
+
/**
|
|
948
|
+
* See public user profile details, public activities and public resources.
|
|
949
|
+
*/
|
|
950
|
+
readonly IdentityAccessManagementViewUserPublicProfile: {
|
|
951
|
+
readonly id: PermissionKey;
|
|
952
|
+
readonly category: "Identity & Access Management";
|
|
953
|
+
readonly subcategory: "Users";
|
|
954
|
+
readonly function: "View User Public Profile";
|
|
955
|
+
readonly description: "See public user profile details, public activities and public resources. ";
|
|
956
|
+
};
|
|
957
|
+
/**
|
|
958
|
+
* See private user profile details, private activities and private resources.
|
|
959
|
+
*/
|
|
960
|
+
readonly IdentityAccessManagementViewUserSettings: {
|
|
961
|
+
readonly id: PermissionKey;
|
|
962
|
+
readonly category: "Identity & Access Management";
|
|
963
|
+
readonly subcategory: "Users";
|
|
964
|
+
readonly function: "View User Settings";
|
|
965
|
+
readonly description: "See private user profile details, private activities and private resources. ";
|
|
966
|
+
};
|
|
967
|
+
/**
|
|
968
|
+
* See all teams within an organization. See all members of all teams.
|
|
969
|
+
*/
|
|
970
|
+
readonly IdentityAccessManagementViewAllUsers: {
|
|
971
|
+
readonly id: PermissionKey;
|
|
972
|
+
readonly category: "Identity & Access Management";
|
|
973
|
+
readonly subcategory: "Users";
|
|
974
|
+
readonly function: "View All Users";
|
|
975
|
+
readonly description: "See all teams within an organization. See all members of all teams.";
|
|
976
|
+
};
|
|
977
|
+
/**
|
|
978
|
+
* Directly create a new user account within a team.
|
|
979
|
+
*/
|
|
980
|
+
readonly IdentityAccessManagementUpdateUserProfile: {
|
|
981
|
+
readonly id: PermissionKey;
|
|
982
|
+
readonly category: "Identity & Access Management";
|
|
983
|
+
readonly subcategory: "Users";
|
|
984
|
+
readonly function: "Update User Profile";
|
|
985
|
+
readonly description: "Directly create a new user account within a team.";
|
|
986
|
+
};
|
|
987
|
+
/**
|
|
988
|
+
* Send a request for a user to join a team.
|
|
989
|
+
*/
|
|
990
|
+
readonly IdentityAccessManagementInviteUserToTeam: {
|
|
991
|
+
readonly id: PermissionKey;
|
|
992
|
+
readonly category: "Identity & Access Management";
|
|
993
|
+
readonly subcategory: "Users";
|
|
994
|
+
readonly function: "Invite User to Team";
|
|
995
|
+
readonly description: "Send a request for a user to join a team.";
|
|
996
|
+
};
|
|
997
|
+
/**
|
|
998
|
+
* Discontinue user membership of a team and team resources.
|
|
999
|
+
*/
|
|
1000
|
+
readonly IdentityAccessManagementRemoveUserFromTeam: {
|
|
1001
|
+
readonly id: PermissionKey;
|
|
1002
|
+
readonly category: "Identity & Access Management";
|
|
1003
|
+
readonly subcategory: "Users";
|
|
1004
|
+
readonly function: "Remove User from Team";
|
|
1005
|
+
readonly description: "Discontinue user membership of a team and team resources.";
|
|
1006
|
+
};
|
|
1007
|
+
/**
|
|
1008
|
+
* Establish new team for organizing groups of users and resource access.
|
|
1009
|
+
*/
|
|
1010
|
+
readonly IdentityAccessManagementCreateTeam: {
|
|
1011
|
+
readonly id: PermissionKey;
|
|
1012
|
+
readonly category: "Identity & Access Management";
|
|
1013
|
+
readonly subcategory: "Users";
|
|
1014
|
+
readonly function: "Create Team";
|
|
1015
|
+
readonly description: "Establish new team for organizing groups of users and resource access.";
|
|
1016
|
+
};
|
|
1017
|
+
/**
|
|
1018
|
+
* Dissolve a team and all user memberships. Leave associated resources intact.
|
|
1019
|
+
*/
|
|
1020
|
+
readonly IdentityAccessManagementDeleteTeam: {
|
|
1021
|
+
readonly id: PermissionKey;
|
|
1022
|
+
readonly category: "Identity & Access Management";
|
|
1023
|
+
readonly subcategory: "Users";
|
|
1024
|
+
readonly function: "Delete Team";
|
|
1025
|
+
readonly description: "Dissolve a team and all user memberships. Leave associated resources intact.";
|
|
1026
|
+
};
|
|
1027
|
+
/**
|
|
1028
|
+
* Delete a user account
|
|
1029
|
+
*/
|
|
1030
|
+
readonly IdentityAccessManagementDeleteUser: {
|
|
1031
|
+
readonly id: PermissionKey;
|
|
1032
|
+
readonly category: "Identity & Access Management";
|
|
1033
|
+
readonly subcategory: "Users";
|
|
1034
|
+
readonly function: "Delete User";
|
|
1035
|
+
readonly description: "Delete a user account";
|
|
1036
|
+
};
|
|
1037
|
+
/**
|
|
1038
|
+
* Edit user role, name, email etc
|
|
1039
|
+
*/
|
|
1040
|
+
readonly IdentityAccessManagementEditUser: {
|
|
1041
|
+
readonly id: PermissionKey;
|
|
1042
|
+
readonly category: "Identity & Access Management";
|
|
1043
|
+
readonly subcategory: "Users";
|
|
1044
|
+
readonly function: "Edit User";
|
|
1045
|
+
readonly description: "Edit user role, name, email etc";
|
|
1046
|
+
};
|
|
1047
|
+
/**
|
|
1048
|
+
* Create a new user
|
|
1049
|
+
*/
|
|
1050
|
+
readonly IdentityAccessManagementCreateUser: {
|
|
1051
|
+
readonly id: PermissionKey;
|
|
1052
|
+
readonly category: "Identity & Access Management";
|
|
1053
|
+
readonly subcategory: "Users";
|
|
1054
|
+
readonly function: "Create User";
|
|
1055
|
+
readonly description: "Create a new user";
|
|
1056
|
+
};
|
|
1057
|
+
/**
|
|
1058
|
+
* Leave a team
|
|
1059
|
+
*/
|
|
1060
|
+
readonly IdentityAccessManagementLeaveTeam: {
|
|
1061
|
+
readonly id: PermissionKey;
|
|
1062
|
+
readonly category: "Identity & Access Management";
|
|
1063
|
+
readonly subcategory: "Users";
|
|
1064
|
+
readonly function: "Leave Team";
|
|
1065
|
+
readonly description: "Leave a team";
|
|
1066
|
+
};
|
|
1067
|
+
/**
|
|
1068
|
+
* View all configured Kubernetes clusters
|
|
1069
|
+
*/
|
|
1070
|
+
readonly IdentityAccessManagementViewAllKubernetesClusters: {
|
|
1071
|
+
readonly id: PermissionKey;
|
|
1072
|
+
readonly category: "Identity & Access Management";
|
|
1073
|
+
readonly subcategory: "Users";
|
|
1074
|
+
readonly function: "View All Kubernetes Clusters";
|
|
1075
|
+
readonly description: "View all configured Kubernetes clusters";
|
|
1076
|
+
};
|
|
1077
|
+
/**
|
|
1078
|
+
* See only teams to which you are a member. See all other members within those teams.
|
|
1079
|
+
*/
|
|
1080
|
+
readonly IdentityAccessManagementViewTeam: {
|
|
1081
|
+
readonly id: PermissionKey;
|
|
1082
|
+
readonly category: "Identity & Access Management";
|
|
1083
|
+
readonly subcategory: "Teams";
|
|
1084
|
+
readonly function: "View Team";
|
|
1085
|
+
readonly description: "See only teams to which you are a member. See all other members within those teams.";
|
|
1086
|
+
};
|
|
1087
|
+
/**
|
|
1088
|
+
* See all teams of which you are an administrator. See all members of those teams.
|
|
1089
|
+
*/
|
|
1090
|
+
readonly IdentityAccessManagementViewTeams: {
|
|
1091
|
+
readonly id: PermissionKey;
|
|
1092
|
+
readonly category: "Identity & Access Management";
|
|
1093
|
+
readonly subcategory: "Teams";
|
|
1094
|
+
readonly function: "View Teams";
|
|
1095
|
+
readonly description: "See all teams of which you are an administrator. See all members of those teams.";
|
|
1096
|
+
};
|
|
1097
|
+
/**
|
|
1098
|
+
* See all teams within an organization. See all members of all teams.
|
|
1099
|
+
*/
|
|
1100
|
+
readonly IdentityAccessManagementViewAllTeams: {
|
|
1101
|
+
readonly id: PermissionKey;
|
|
1102
|
+
readonly category: "Identity & Access Management";
|
|
1103
|
+
readonly subcategory: "Teams";
|
|
1104
|
+
readonly function: "View All Teams";
|
|
1105
|
+
readonly description: "See all teams within an organization. See all members of all teams.";
|
|
1106
|
+
};
|
|
1107
|
+
/**
|
|
1108
|
+
* Directly create a new user account within a team.
|
|
1109
|
+
*/
|
|
1110
|
+
readonly IdentityAccessManagementAddUserToTeam: {
|
|
1111
|
+
readonly id: PermissionKey;
|
|
1112
|
+
readonly category: "Identity & Access Management";
|
|
1113
|
+
readonly subcategory: "Teams";
|
|
1114
|
+
readonly function: "Add User to Team";
|
|
1115
|
+
readonly description: "Directly create a new user account within a team.";
|
|
1116
|
+
};
|
|
1117
|
+
/**
|
|
1118
|
+
* Edit a team and add new members to it.
|
|
1119
|
+
*/
|
|
1120
|
+
readonly IdentityAccessManagementEditTeam: {
|
|
1121
|
+
readonly id: PermissionKey;
|
|
1122
|
+
readonly category: "Identity & Access Management";
|
|
1123
|
+
readonly subcategory: "Teams";
|
|
1124
|
+
readonly function: "Edit Team";
|
|
1125
|
+
readonly description: "Edit a team and add new members to it.";
|
|
1126
|
+
};
|
|
1127
|
+
/**
|
|
1128
|
+
* Remove roles from users in a team.
|
|
1129
|
+
*/
|
|
1130
|
+
readonly IdentityAccessManagementRemoveRolesFromTeamMembers: {
|
|
1131
|
+
readonly id: PermissionKey;
|
|
1132
|
+
readonly category: "Identity & Access Management";
|
|
1133
|
+
readonly subcategory: "Teams";
|
|
1134
|
+
readonly function: "Remove Roles from Team members";
|
|
1135
|
+
readonly description: "Remove roles from users in a team.";
|
|
1136
|
+
};
|
|
1137
|
+
/**
|
|
1138
|
+
* Assign roles to users in a team
|
|
1139
|
+
*/
|
|
1140
|
+
readonly IdentityAccessManagementAssignRolesToTeamMembers: {
|
|
1141
|
+
readonly id: PermissionKey;
|
|
1142
|
+
readonly category: "Identity & Access Management";
|
|
1143
|
+
readonly subcategory: "Teams";
|
|
1144
|
+
readonly function: "Assign Roles to Team members";
|
|
1145
|
+
readonly description: "Assign roles to users in a team";
|
|
1146
|
+
};
|
|
1147
|
+
/**
|
|
1148
|
+
* This governs the team's invitation permissions, determining whether the team is allowed to extend invitations to new individuals to join through open invite link.
|
|
1149
|
+
*/
|
|
1150
|
+
readonly IdentityAccessManagementOpenTeamInvite: {
|
|
1151
|
+
readonly id: PermissionKey;
|
|
1152
|
+
readonly category: "Identity & Access Management";
|
|
1153
|
+
readonly subcategory: "Teams";
|
|
1154
|
+
readonly function: "Open Team Invite";
|
|
1155
|
+
readonly description: "This governs the team's invitation permissions, determining whether the team is allowed to extend invitations to new individuals to join through open invite link.";
|
|
1156
|
+
};
|
|
1157
|
+
/**
|
|
1158
|
+
* Establish new organization for organizing teams, users, and resource access.
|
|
1159
|
+
*/
|
|
1160
|
+
readonly IdentityAccessManagementCreateOrganization: {
|
|
1161
|
+
readonly id: PermissionKey;
|
|
1162
|
+
readonly category: "Identity & Access Management";
|
|
1163
|
+
readonly subcategory: "Organizations";
|
|
1164
|
+
readonly function: "Create Organization";
|
|
1165
|
+
readonly description: "Establish new organization for organizing teams, users, and resource access.";
|
|
1166
|
+
};
|
|
1167
|
+
/**
|
|
1168
|
+
* Edit organiaztions and add teams to it
|
|
1169
|
+
*/
|
|
1170
|
+
readonly IdentityAccessManagementEditOrganization: {
|
|
1171
|
+
readonly id: PermissionKey;
|
|
1172
|
+
readonly category: "Identity & Access Management";
|
|
1173
|
+
readonly subcategory: "Organizations";
|
|
1174
|
+
readonly function: "Edit Organization";
|
|
1175
|
+
readonly description: "Edit organiaztions and add teams to it";
|
|
1176
|
+
};
|
|
1177
|
+
/**
|
|
1178
|
+
* Directly create a new user account within an organization.
|
|
1179
|
+
*/
|
|
1180
|
+
readonly IdentityAccessManagementAddUserToOrganization: {
|
|
1181
|
+
readonly id: PermissionKey;
|
|
1182
|
+
readonly category: "Identity & Access Management";
|
|
1183
|
+
readonly subcategory: "Organizations";
|
|
1184
|
+
readonly function: "Add User to Organization";
|
|
1185
|
+
readonly description: "Directly create a new user account within an organization.";
|
|
1186
|
+
};
|
|
1187
|
+
/**
|
|
1188
|
+
* Send a request for a user to join an organization.
|
|
1189
|
+
*/
|
|
1190
|
+
readonly IdentityAccessManagementInviteUserToOrganization: {
|
|
1191
|
+
readonly id: PermissionKey;
|
|
1192
|
+
readonly category: "Identity & Access Management";
|
|
1193
|
+
readonly subcategory: "Organizations";
|
|
1194
|
+
readonly function: "Invite User to Organization";
|
|
1195
|
+
readonly description: "Send a request for a user to join an organization.";
|
|
1196
|
+
};
|
|
1197
|
+
/**
|
|
1198
|
+
* Discontinue user access to organization, teams and resources; cease billing accrual.
|
|
1199
|
+
*/
|
|
1200
|
+
readonly IdentityAccessManagementRemoveUserFromOrganization: {
|
|
1201
|
+
readonly id: PermissionKey;
|
|
1202
|
+
readonly category: "Identity & Access Management";
|
|
1203
|
+
readonly subcategory: "Organizations";
|
|
1204
|
+
readonly function: "Remove User from Organization";
|
|
1205
|
+
readonly description: "Discontinue user access to organization, teams and resources; cease billing accrual.";
|
|
1206
|
+
};
|
|
1207
|
+
/**
|
|
1208
|
+
* Elevate or remove organization level administrative privileges.
|
|
1209
|
+
*/
|
|
1210
|
+
readonly IdentityAccessManagementPromoteOrDemoteUserToOrgAdmin: {
|
|
1211
|
+
readonly id: PermissionKey;
|
|
1212
|
+
readonly category: "Identity & Access Management";
|
|
1213
|
+
readonly subcategory: "Organizations";
|
|
1214
|
+
readonly function: "Promote or Demote User to Org Admin";
|
|
1215
|
+
readonly description: "Elevate or remove organization level administrative privileges.";
|
|
1216
|
+
};
|
|
1217
|
+
/**
|
|
1218
|
+
* See only organizations to which you are a member. See all other members within your membership teams.
|
|
1219
|
+
*/
|
|
1220
|
+
readonly IdentityAccessManagementViewOrg: {
|
|
1221
|
+
readonly id: PermissionKey;
|
|
1222
|
+
readonly category: "Identity & Access Management";
|
|
1223
|
+
readonly subcategory: "Organizations";
|
|
1224
|
+
readonly function: "View Org";
|
|
1225
|
+
readonly description: "See only organizations to which you are a member. See all other members within your membership teams.";
|
|
1226
|
+
};
|
|
1227
|
+
/**
|
|
1228
|
+
* See all organizations of which you are an administrator. See all members of those organizations.
|
|
1229
|
+
*/
|
|
1230
|
+
readonly IdentityAccessManagementViewOrganizations: {
|
|
1231
|
+
readonly id: PermissionKey;
|
|
1232
|
+
readonly category: "Identity & Access Management";
|
|
1233
|
+
readonly subcategory: "Organizations";
|
|
1234
|
+
readonly function: "View Organizations";
|
|
1235
|
+
readonly description: "See all organizations of which you are an administrator. See all members of those organizations.";
|
|
1236
|
+
};
|
|
1237
|
+
/**
|
|
1238
|
+
* See all organizations within a Cloud deployment. See all organizations, teams, and users.
|
|
1239
|
+
*/
|
|
1240
|
+
readonly IdentityAccessManagementViewAllOrganizations: {
|
|
1241
|
+
readonly id: PermissionKey;
|
|
1242
|
+
readonly category: "Identity & Access Management";
|
|
1243
|
+
readonly subcategory: "Organizations";
|
|
1244
|
+
readonly function: "View All Organizations";
|
|
1245
|
+
readonly description: "See all organizations within a Cloud deployment. See all organizations, teams, and users.";
|
|
1246
|
+
};
|
|
1247
|
+
/**
|
|
1248
|
+
* Remove roles from users in an organization
|
|
1249
|
+
*/
|
|
1250
|
+
readonly IdentityAccessManagementRemoveRolesFromOrganizationMembers: {
|
|
1251
|
+
readonly id: PermissionKey;
|
|
1252
|
+
readonly category: "Identity & Access Management";
|
|
1253
|
+
readonly subcategory: "Organizations";
|
|
1254
|
+
readonly function: "Remove Roles from Organization members";
|
|
1255
|
+
readonly description: "Remove roles from users in an organization";
|
|
1256
|
+
};
|
|
1257
|
+
/**
|
|
1258
|
+
* Assign roles to users in an organization
|
|
1259
|
+
*/
|
|
1260
|
+
readonly IdentityAccessManagementAssignRolesToOrganizationMembers: {
|
|
1261
|
+
readonly id: PermissionKey;
|
|
1262
|
+
readonly category: "Identity & Access Management";
|
|
1263
|
+
readonly subcategory: "Organizations";
|
|
1264
|
+
readonly function: "Assign Roles to Organization members";
|
|
1265
|
+
readonly description: "Assign roles to users in an organization";
|
|
1266
|
+
};
|
|
1267
|
+
/**
|
|
1268
|
+
* Transfer organization ownership to another member of the organization.
|
|
1269
|
+
*/
|
|
1270
|
+
readonly IdentityAccessManagementTransferOrganizationOwnership: {
|
|
1271
|
+
readonly id: PermissionKey;
|
|
1272
|
+
readonly category: "Identity & Access Management";
|
|
1273
|
+
readonly subcategory: "Organizations";
|
|
1274
|
+
readonly function: "Transfer Organization Ownership";
|
|
1275
|
+
readonly description: "Transfer organization ownership to another member of the organization.";
|
|
1276
|
+
};
|
|
1277
|
+
/**
|
|
1278
|
+
* Decommission organization and suspend account from additional accruals.
|
|
1279
|
+
*/
|
|
1280
|
+
readonly IdentityAccessManagementDeleteOrganization: {
|
|
1281
|
+
readonly id: PermissionKey;
|
|
1282
|
+
readonly category: "Identity & Access Management";
|
|
1283
|
+
readonly subcategory: "Organizations";
|
|
1284
|
+
readonly function: "Delete Organization";
|
|
1285
|
+
readonly description: "Decommission organization and suspend account from additional accruals.";
|
|
1286
|
+
};
|
|
1287
|
+
/**
|
|
1288
|
+
* Leave an organization
|
|
1289
|
+
*/
|
|
1290
|
+
readonly IdentityAccessManagementLeaveOrganization: {
|
|
1291
|
+
readonly id: PermissionKey;
|
|
1292
|
+
readonly category: "Identity & Access Management";
|
|
1293
|
+
readonly subcategory: "Organizations";
|
|
1294
|
+
readonly function: "Leave Organization";
|
|
1295
|
+
readonly description: "Leave an organization";
|
|
1296
|
+
};
|
|
1297
|
+
/**
|
|
1298
|
+
* Organizations can be assigned unique, validated custom domains through settings.
|
|
1299
|
+
*/
|
|
1300
|
+
readonly IdentityAccessManagementCustomDomain: {
|
|
1301
|
+
readonly id: PermissionKey;
|
|
1302
|
+
readonly category: "Identity & Access Management";
|
|
1303
|
+
readonly subcategory: "Organization";
|
|
1304
|
+
readonly function: "Custom Domain";
|
|
1305
|
+
readonly description: "Organizations can be assigned unique, validated custom domains through settings.";
|
|
1306
|
+
};
|
|
1307
|
+
/**
|
|
1308
|
+
* Assigned domains direct user traffic to organizations; clearing the field removes the assignment.
|
|
1309
|
+
*/
|
|
1310
|
+
readonly IdentityAccessManagementDomainRoutingAndRemoval: {
|
|
1311
|
+
readonly id: PermissionKey;
|
|
1312
|
+
readonly category: "Identity & Access Management";
|
|
1313
|
+
readonly subcategory: "Organization";
|
|
1314
|
+
readonly function: "Domain Routing and Removal";
|
|
1315
|
+
readonly description: "Assigned domains direct user traffic to organizations; clearing the field removes the assignment.";
|
|
1316
|
+
};
|
|
1317
|
+
/**
|
|
1318
|
+
* Create, update , delete and manage recogntions awarded by your organization
|
|
1319
|
+
*/
|
|
1320
|
+
readonly IdentityAccessManagementManageRecognitions: {
|
|
1321
|
+
readonly id: PermissionKey;
|
|
1322
|
+
readonly category: "Identity & Access Management";
|
|
1323
|
+
readonly subcategory: "Organization";
|
|
1324
|
+
readonly function: "Manage Recognitions";
|
|
1325
|
+
readonly description: "Create, update , delete and manage recogntions awarded by your organization";
|
|
1326
|
+
};
|
|
1327
|
+
/**
|
|
1328
|
+
* Create, update , delete and manage invitations to your organization
|
|
1329
|
+
*/
|
|
1330
|
+
readonly IdentityAccessManagementManageInvitations: {
|
|
1331
|
+
readonly id: PermissionKey;
|
|
1332
|
+
readonly category: "Identity & Access Management";
|
|
1333
|
+
readonly subcategory: "Organization";
|
|
1334
|
+
readonly function: "Manage invitations";
|
|
1335
|
+
readonly description: "Create, update , delete and manage invitations to your organization";
|
|
1336
|
+
};
|
|
1337
|
+
/**
|
|
1338
|
+
* Ability to use all selector to filter view
|
|
1339
|
+
*/
|
|
1340
|
+
readonly IdentityAccessManagementAllOrgSelector: {
|
|
1341
|
+
readonly id: PermissionKey;
|
|
1342
|
+
readonly category: "Identity & Access Management";
|
|
1343
|
+
readonly subcategory: "Provider Management";
|
|
1344
|
+
readonly function: "All Org Selector";
|
|
1345
|
+
readonly description: "Ability to use all selector to filter view";
|
|
1346
|
+
};
|
|
1347
|
+
/**
|
|
1348
|
+
* No description available
|
|
1349
|
+
*/
|
|
1350
|
+
readonly IdentityAccessManagementRoles: {
|
|
1351
|
+
readonly id: PermissionKey;
|
|
1352
|
+
readonly category: "Identity & Access Management";
|
|
1353
|
+
readonly subcategory: "Roles";
|
|
1354
|
+
readonly function: "Roles";
|
|
1355
|
+
readonly description: "";
|
|
1356
|
+
};
|
|
1357
|
+
/**
|
|
1358
|
+
* No description available
|
|
1359
|
+
*/
|
|
1360
|
+
readonly IdentityAccessManagementAssignUserRoles: {
|
|
1361
|
+
readonly id: PermissionKey;
|
|
1362
|
+
readonly category: "Identity & Access Management";
|
|
1363
|
+
readonly subcategory: "Roles";
|
|
1364
|
+
readonly function: "Assign User Roles";
|
|
1365
|
+
readonly description: "";
|
|
1366
|
+
};
|
|
1367
|
+
/**
|
|
1368
|
+
* No description available
|
|
1369
|
+
*/
|
|
1370
|
+
readonly IdentityAccessManagementAssignKeychainsToRoles: {
|
|
1371
|
+
readonly id: PermissionKey;
|
|
1372
|
+
readonly category: "Identity & Access Management";
|
|
1373
|
+
readonly subcategory: "Roles";
|
|
1374
|
+
readonly function: "Assign Keychains to Roles";
|
|
1375
|
+
readonly description: "";
|
|
1376
|
+
};
|
|
1377
|
+
/**
|
|
1378
|
+
* No description available
|
|
1379
|
+
*/
|
|
1380
|
+
readonly IdentityAccessManagementCreateCustomRoles: {
|
|
1381
|
+
readonly id: PermissionKey;
|
|
1382
|
+
readonly category: "Identity & Access Management";
|
|
1383
|
+
readonly subcategory: "Roles";
|
|
1384
|
+
readonly function: "Create Custom Roles";
|
|
1385
|
+
readonly description: "";
|
|
1386
|
+
};
|
|
1387
|
+
/**
|
|
1388
|
+
* No description available
|
|
1389
|
+
*/
|
|
1390
|
+
readonly IdentityAccessManagementUpdateCustomRoles: {
|
|
1391
|
+
readonly id: PermissionKey;
|
|
1392
|
+
readonly category: "Identity & Access Management";
|
|
1393
|
+
readonly subcategory: "Roles";
|
|
1394
|
+
readonly function: "Update Custom Roles";
|
|
1395
|
+
readonly description: "";
|
|
1396
|
+
};
|
|
1397
|
+
/**
|
|
1398
|
+
* Delete a user's role permanently
|
|
1399
|
+
*/
|
|
1400
|
+
readonly IdentityAccessManagementDeleteCustomRoles: {
|
|
1401
|
+
readonly id: PermissionKey;
|
|
1402
|
+
readonly category: "Identity & Access Management";
|
|
1403
|
+
readonly subcategory: "Roles";
|
|
1404
|
+
readonly function: "Delete Custom Roles";
|
|
1405
|
+
readonly description: "Delete a user's role permanently";
|
|
1406
|
+
};
|
|
1407
|
+
/**
|
|
1408
|
+
* No description available
|
|
1409
|
+
*/
|
|
1410
|
+
readonly IdentityAccessManagementExportCustomRoles: {
|
|
1411
|
+
readonly id: PermissionKey;
|
|
1412
|
+
readonly category: "Identity & Access Management";
|
|
1413
|
+
readonly subcategory: "Roles";
|
|
1414
|
+
readonly function: "Export Custom Roles";
|
|
1415
|
+
readonly description: "";
|
|
1416
|
+
};
|
|
1417
|
+
/**
|
|
1418
|
+
* Browse the list of open entitlement requests
|
|
1419
|
+
*/
|
|
1420
|
+
readonly IdentityAccessManagementViewAllAccessRequests: {
|
|
1421
|
+
readonly id: PermissionKey;
|
|
1422
|
+
readonly category: "Identity & Access Management";
|
|
1423
|
+
readonly subcategory: "Access Requests";
|
|
1424
|
+
readonly function: "View All Access Requests";
|
|
1425
|
+
readonly description: "Browse the list of open entitlement requests";
|
|
1426
|
+
};
|
|
1427
|
+
/**
|
|
1428
|
+
* Entitle user. Approve access request.
|
|
1429
|
+
*/
|
|
1430
|
+
readonly IdentityAccessManagementAcceptAccessRequest: {
|
|
1431
|
+
readonly id: PermissionKey;
|
|
1432
|
+
readonly category: "Identity & Access Management";
|
|
1433
|
+
readonly subcategory: "Access Requests";
|
|
1434
|
+
readonly function: "Accept Access Request";
|
|
1435
|
+
readonly description: "Entitle user. Approve access request.";
|
|
1436
|
+
};
|
|
1437
|
+
/**
|
|
1438
|
+
* Restrict user access to requested resource.
|
|
1439
|
+
*/
|
|
1440
|
+
readonly IdentityAccessManagementDenyAccessRequest: {
|
|
1441
|
+
readonly id: PermissionKey;
|
|
1442
|
+
readonly category: "Identity & Access Management";
|
|
1443
|
+
readonly subcategory: "Access Requests";
|
|
1444
|
+
readonly function: "Deny Access Request";
|
|
1445
|
+
readonly description: "Restrict user access to requested resource.";
|
|
1446
|
+
};
|
|
1447
|
+
/**
|
|
1448
|
+
* Test and verify configuration changes in a separate environment.
|
|
1449
|
+
*/
|
|
1450
|
+
readonly LifecycleManagementDryRun: {
|
|
1451
|
+
readonly id: PermissionKey;
|
|
1452
|
+
readonly category: "Lifecycle Management";
|
|
1453
|
+
readonly subcategory: "Dry-run";
|
|
1454
|
+
readonly function: "Dry-run";
|
|
1455
|
+
readonly description: "Test and verify configuration changes in a separate environment.";
|
|
1456
|
+
};
|
|
1457
|
+
/**
|
|
1458
|
+
* Istio, Linkerd, Consul, Kuma, Traefik Mesh, AWS App Mesh, NGINX Service Mesh, Network Service Mesh, Cilium Service Mesh, VMware Tanzu Service Mesh
|
|
1459
|
+
*/
|
|
1460
|
+
readonly LifecycleManagementMesheryAdaptersProvisionConfigureAndManage10DifferentServiceMeshes: {
|
|
1461
|
+
readonly id: PermissionKey;
|
|
1462
|
+
readonly category: "Lifecycle Management";
|
|
1463
|
+
readonly subcategory: "Configure and deploy any service mesh";
|
|
1464
|
+
readonly function: "Meshery adapters provision, configure, and manage 10 different service meshes.";
|
|
1465
|
+
readonly description: "Istio, Linkerd, Consul, Kuma, Traefik Mesh, AWS App Mesh, NGINX Service Mesh, Network Service Mesh, Cilium Service Mesh, VMware Tanzu Service Mesh";
|
|
1466
|
+
};
|
|
1467
|
+
/**
|
|
1468
|
+
* No description available
|
|
1469
|
+
*/
|
|
1470
|
+
readonly LifecycleManagementProvisioningDeprovisioning: {
|
|
1471
|
+
readonly id: PermissionKey;
|
|
1472
|
+
readonly category: "Lifecycle Management";
|
|
1473
|
+
readonly subcategory: "Operations";
|
|
1474
|
+
readonly function: "Provisioning, Deprovisioning";
|
|
1475
|
+
readonly description: "";
|
|
1476
|
+
};
|
|
1477
|
+
/**
|
|
1478
|
+
* MeshOpsv1
|
|
1479
|
+
*/
|
|
1480
|
+
readonly LifecycleManagementSimpleConfiguration: {
|
|
1481
|
+
readonly id: PermissionKey;
|
|
1482
|
+
readonly category: "Lifecycle Management";
|
|
1483
|
+
readonly subcategory: "Operations";
|
|
1484
|
+
readonly function: "Simple Configuration";
|
|
1485
|
+
readonly description: "MeshOpsv1";
|
|
1486
|
+
};
|
|
1487
|
+
/**
|
|
1488
|
+
* MeshOpsv2
|
|
1489
|
+
*/
|
|
1490
|
+
readonly LifecycleManagementAdvancedConfiguration: {
|
|
1491
|
+
readonly id: PermissionKey;
|
|
1492
|
+
readonly category: "Lifecycle Management";
|
|
1493
|
+
readonly subcategory: "Operations";
|
|
1494
|
+
readonly function: "Advanced Configuration";
|
|
1495
|
+
readonly description: "MeshOpsv2";
|
|
1496
|
+
};
|
|
1497
|
+
/**
|
|
1498
|
+
* No description available
|
|
1499
|
+
*/
|
|
1500
|
+
readonly LifecycleManagementManagedUpgrades: {
|
|
1501
|
+
readonly id: PermissionKey;
|
|
1502
|
+
readonly category: "Lifecycle Management";
|
|
1503
|
+
readonly subcategory: "Operations";
|
|
1504
|
+
readonly function: "Managed Upgrades";
|
|
1505
|
+
readonly description: "";
|
|
1506
|
+
};
|
|
1507
|
+
/**
|
|
1508
|
+
* No description available
|
|
1509
|
+
*/
|
|
1510
|
+
readonly LifecycleManagementAdHocAddOrRemove: {
|
|
1511
|
+
readonly id: PermissionKey;
|
|
1512
|
+
readonly category: "Lifecycle Management";
|
|
1513
|
+
readonly subcategory: "Sidecar";
|
|
1514
|
+
readonly function: "Ad-hoc: add or remove";
|
|
1515
|
+
readonly description: "";
|
|
1516
|
+
};
|
|
1517
|
+
/**
|
|
1518
|
+
* No description available
|
|
1519
|
+
*/
|
|
1520
|
+
readonly LifecycleManagementParseLogs: {
|
|
1521
|
+
readonly id: PermissionKey;
|
|
1522
|
+
readonly category: "Lifecycle Management";
|
|
1523
|
+
readonly subcategory: "Sidecar";
|
|
1524
|
+
readonly function: "Parse logs";
|
|
1525
|
+
readonly description: "";
|
|
1526
|
+
};
|
|
1527
|
+
/**
|
|
1528
|
+
* No description available
|
|
1529
|
+
*/
|
|
1530
|
+
readonly LifecycleManagementExecShell: {
|
|
1531
|
+
readonly id: PermissionKey;
|
|
1532
|
+
readonly category: "Lifecycle Management";
|
|
1533
|
+
readonly subcategory: "Sidecar";
|
|
1534
|
+
readonly function: "Exec Shell";
|
|
1535
|
+
readonly description: "";
|
|
1536
|
+
};
|
|
1537
|
+
/**
|
|
1538
|
+
* No description available
|
|
1539
|
+
*/
|
|
1540
|
+
readonly LifecycleManagementDynamicLoadUnload: {
|
|
1541
|
+
readonly id: PermissionKey;
|
|
1542
|
+
readonly category: "Lifecycle Management";
|
|
1543
|
+
readonly subcategory: "Filter";
|
|
1544
|
+
readonly function: "Dynamic load / unload";
|
|
1545
|
+
readonly description: "";
|
|
1546
|
+
};
|
|
1547
|
+
/**
|
|
1548
|
+
* Day 2 support for ongoing synchronization of Kubernetes configuration, workloads and service mesh changes.
|
|
1549
|
+
*/
|
|
1550
|
+
readonly LifecycleManagementClusterDiscovery: {
|
|
1551
|
+
readonly id: PermissionKey;
|
|
1552
|
+
readonly category: "Lifecycle Management";
|
|
1553
|
+
readonly subcategory: "Cluster discovery";
|
|
1554
|
+
readonly function: "Cluster discovery";
|
|
1555
|
+
readonly description: "Day 2 support for ongoing synchronization of Kubernetes configuration, workloads and service mesh changes.";
|
|
1556
|
+
};
|
|
1557
|
+
/**
|
|
1558
|
+
* Ongoing synchronization of Kubernetes configuration, workloads and service mesh changes across any number of Kubernetes clusters.
|
|
1559
|
+
*/
|
|
1560
|
+
readonly LifecycleManagementMultipleKubernetesClusters: {
|
|
1561
|
+
readonly id: PermissionKey;
|
|
1562
|
+
readonly category: "Lifecycle Management";
|
|
1563
|
+
readonly subcategory: "Multiple Kubernetes Clusters";
|
|
1564
|
+
readonly function: "Multiple Kubernetes Clusters";
|
|
1565
|
+
readonly description: "Ongoing synchronization of Kubernetes configuration, workloads and service mesh changes across any number of Kubernetes clusters.";
|
|
1566
|
+
};
|
|
1567
|
+
/**
|
|
1568
|
+
* No description available
|
|
1569
|
+
*/
|
|
1570
|
+
readonly LifecycleManagementEnvironments: {
|
|
1571
|
+
readonly id: PermissionKey;
|
|
1572
|
+
readonly category: "Lifecycle Management";
|
|
1573
|
+
readonly subcategory: "Mesh Federation";
|
|
1574
|
+
readonly function: "Environments";
|
|
1575
|
+
readonly description: "";
|
|
1576
|
+
};
|
|
1577
|
+
/**
|
|
1578
|
+
* No description available
|
|
1579
|
+
*/
|
|
1580
|
+
readonly LifecycleManagementAnnouncementAndSynchronization: {
|
|
1581
|
+
readonly id: PermissionKey;
|
|
1582
|
+
readonly category: "Lifecycle Management";
|
|
1583
|
+
readonly subcategory: "Service Catalog Federation";
|
|
1584
|
+
readonly function: "Announcement and synchronization";
|
|
1585
|
+
readonly description: "";
|
|
1586
|
+
};
|
|
1587
|
+
/**
|
|
1588
|
+
* No description available
|
|
1589
|
+
*/
|
|
1590
|
+
readonly LifecycleManagementOrganizationalPermissioning: {
|
|
1591
|
+
readonly id: PermissionKey;
|
|
1592
|
+
readonly category: "Lifecycle Management";
|
|
1593
|
+
readonly subcategory: "Service Catalog Federation";
|
|
1594
|
+
readonly function: "Organizational permissioning";
|
|
1595
|
+
readonly description: "";
|
|
1596
|
+
};
|
|
1597
|
+
/**
|
|
1598
|
+
* Add Kubernetes cluster
|
|
1599
|
+
*/
|
|
1600
|
+
readonly LifecycleManagementAddCluster: {
|
|
1601
|
+
readonly id: PermissionKey;
|
|
1602
|
+
readonly category: "Lifecycle Management";
|
|
1603
|
+
readonly subcategory: "Connections";
|
|
1604
|
+
readonly function: "Add cluster";
|
|
1605
|
+
readonly description: "Add Kubernetes cluster";
|
|
1606
|
+
};
|
|
1607
|
+
/**
|
|
1608
|
+
* Change connection state
|
|
1609
|
+
*/
|
|
1610
|
+
readonly LifecycleManagementChangeConnectionState: {
|
|
1611
|
+
readonly id: PermissionKey;
|
|
1612
|
+
readonly category: "Lifecycle Management";
|
|
1613
|
+
readonly subcategory: "Connections";
|
|
1614
|
+
readonly function: "Change connection state";
|
|
1615
|
+
readonly description: "Change connection state";
|
|
1616
|
+
};
|
|
1617
|
+
/**
|
|
1618
|
+
* Clearing the database by clicking on the `Flush MeshSync`
|
|
1619
|
+
*/
|
|
1620
|
+
readonly LifecycleManagementFlushMeshsyncData: {
|
|
1621
|
+
readonly id: PermissionKey;
|
|
1622
|
+
readonly category: "Lifecycle Management";
|
|
1623
|
+
readonly subcategory: "Connections";
|
|
1624
|
+
readonly function: "Flush Meshsync data";
|
|
1625
|
+
readonly description: "Clearing the database by clicking on the `Flush MeshSync`";
|
|
1626
|
+
};
|
|
1627
|
+
/**
|
|
1628
|
+
* Register discovered Meshsync resource to change state to connection
|
|
1629
|
+
*/
|
|
1630
|
+
readonly LifecycleManagementRegisterDiscoveredMeshsyncResource: {
|
|
1631
|
+
readonly id: PermissionKey;
|
|
1632
|
+
readonly category: "Lifecycle Management";
|
|
1633
|
+
readonly subcategory: "Connections";
|
|
1634
|
+
readonly function: "Register discovered Meshsync resource";
|
|
1635
|
+
readonly description: "Register discovered Meshsync resource to change state to connection";
|
|
1636
|
+
};
|
|
1637
|
+
/**
|
|
1638
|
+
* Delete a connection
|
|
1639
|
+
*/
|
|
1640
|
+
readonly LifecycleManagementDeleteAConnection: {
|
|
1641
|
+
readonly id: PermissionKey;
|
|
1642
|
+
readonly category: "Lifecycle Management";
|
|
1643
|
+
readonly subcategory: "Connections";
|
|
1644
|
+
readonly function: "Delete a connection";
|
|
1645
|
+
readonly description: "Delete a connection";
|
|
1646
|
+
};
|
|
1647
|
+
/**
|
|
1648
|
+
* Reconfigure the existing connection or edit the connection information
|
|
1649
|
+
*/
|
|
1650
|
+
readonly LifecycleManagementEditConnection: {
|
|
1651
|
+
readonly id: PermissionKey;
|
|
1652
|
+
readonly category: "Lifecycle Management";
|
|
1653
|
+
readonly subcategory: "Connections";
|
|
1654
|
+
readonly function: "Edit Connection";
|
|
1655
|
+
readonly description: "Reconfigure the existing connection or edit the connection information";
|
|
1656
|
+
};
|
|
1657
|
+
/**
|
|
1658
|
+
* No description available
|
|
1659
|
+
*/
|
|
1660
|
+
readonly MesherySystemStreamlinedCi: {
|
|
1661
|
+
readonly id: PermissionKey;
|
|
1662
|
+
readonly category: "Meshery System";
|
|
1663
|
+
readonly subcategory: "Build & Release";
|
|
1664
|
+
readonly function: "Streamlined CI";
|
|
1665
|
+
readonly description: "";
|
|
1666
|
+
};
|
|
1667
|
+
/**
|
|
1668
|
+
* No description available
|
|
1669
|
+
*/
|
|
1670
|
+
readonly MesherySystemIntegrationTests: {
|
|
1671
|
+
readonly id: PermissionKey;
|
|
1672
|
+
readonly category: "Meshery System";
|
|
1673
|
+
readonly subcategory: "Build & Release";
|
|
1674
|
+
readonly function: "Integration tests";
|
|
1675
|
+
readonly description: "";
|
|
1676
|
+
};
|
|
1677
|
+
/**
|
|
1678
|
+
* No description available
|
|
1679
|
+
*/
|
|
1680
|
+
readonly MesherySystemReleaseChannelsStableAndEdge: {
|
|
1681
|
+
readonly id: PermissionKey;
|
|
1682
|
+
readonly category: "Meshery System";
|
|
1683
|
+
readonly subcategory: "Build & Release";
|
|
1684
|
+
readonly function: "Release channels: stable and edge";
|
|
1685
|
+
readonly description: "";
|
|
1686
|
+
};
|
|
1687
|
+
/**
|
|
1688
|
+
* No description available
|
|
1689
|
+
*/
|
|
1690
|
+
readonly MesherySystemTimeToValueEasySetupOfMeshery: {
|
|
1691
|
+
readonly id: PermissionKey;
|
|
1692
|
+
readonly category: "Meshery System";
|
|
1693
|
+
readonly subcategory: "Configuration Wizard";
|
|
1694
|
+
readonly function: "Time to value; easy setup of Meshery";
|
|
1695
|
+
readonly description: "";
|
|
1696
|
+
};
|
|
1697
|
+
/**
|
|
1698
|
+
* Windows, Linux, MacOS
|
|
1699
|
+
*/
|
|
1700
|
+
readonly MesherySystemMesheryctl: {
|
|
1701
|
+
readonly id: PermissionKey;
|
|
1702
|
+
readonly category: "Meshery System";
|
|
1703
|
+
readonly subcategory: "Platform Support";
|
|
1704
|
+
readonly function: "mesheryctl";
|
|
1705
|
+
readonly description: "Windows, Linux, MacOS";
|
|
1706
|
+
};
|
|
1707
|
+
/**
|
|
1708
|
+
* Minikube, Docker, OpenShift
|
|
1709
|
+
*/
|
|
1710
|
+
readonly MesherySystemMesheryServer: {
|
|
1711
|
+
readonly id: PermissionKey;
|
|
1712
|
+
readonly category: "Meshery System";
|
|
1713
|
+
readonly subcategory: "Platform Support";
|
|
1714
|
+
readonly function: "Meshery Server";
|
|
1715
|
+
readonly description: "Minikube, Docker, OpenShift";
|
|
1716
|
+
};
|
|
1717
|
+
/**
|
|
1718
|
+
* No description available
|
|
1719
|
+
*/
|
|
1720
|
+
readonly MesherySystemMeshsync: {
|
|
1721
|
+
readonly id: PermissionKey;
|
|
1722
|
+
readonly category: "Meshery System";
|
|
1723
|
+
readonly subcategory: "Service Mesh Discovery";
|
|
1724
|
+
readonly function: "MeshSync";
|
|
1725
|
+
readonly description: "";
|
|
1726
|
+
};
|
|
1727
|
+
/**
|
|
1728
|
+
* No description available
|
|
1729
|
+
*/
|
|
1730
|
+
readonly MesherySystemScriptHomebrewScoop: {
|
|
1731
|
+
readonly id: PermissionKey;
|
|
1732
|
+
readonly category: "Meshery System";
|
|
1733
|
+
readonly subcategory: "Package managers";
|
|
1734
|
+
readonly function: "script, homebrew, scoop";
|
|
1735
|
+
readonly description: "";
|
|
1736
|
+
};
|
|
1737
|
+
/**
|
|
1738
|
+
* No description available
|
|
1739
|
+
*/
|
|
1740
|
+
readonly MesherySystemFacilitateCollectionOfDebugForEaseOfIssueReporting: {
|
|
1741
|
+
readonly id: PermissionKey;
|
|
1742
|
+
readonly category: "Meshery System";
|
|
1743
|
+
readonly subcategory: "Error Reporting";
|
|
1744
|
+
readonly function: "Facilitate collection of debug for ease of issue reporting.";
|
|
1745
|
+
readonly description: "";
|
|
1746
|
+
};
|
|
1747
|
+
/**
|
|
1748
|
+
* No description available
|
|
1749
|
+
*/
|
|
1750
|
+
readonly MesherySystemEachComponent: {
|
|
1751
|
+
readonly id: PermissionKey;
|
|
1752
|
+
readonly category: "Meshery System";
|
|
1753
|
+
readonly subcategory: "Upgrades";
|
|
1754
|
+
readonly function: "Each component";
|
|
1755
|
+
readonly description: "";
|
|
1756
|
+
};
|
|
1757
|
+
/**
|
|
1758
|
+
* Seamlessly manage your configurations, deployments, and interactions through our intuitive and powerful command-line interface: mesheryctl
|
|
1759
|
+
*/
|
|
1760
|
+
readonly MesherySystemCli: {
|
|
1761
|
+
readonly id: PermissionKey;
|
|
1762
|
+
readonly category: "Meshery System";
|
|
1763
|
+
readonly subcategory: "mesheryctl";
|
|
1764
|
+
readonly function: "CLI";
|
|
1765
|
+
readonly description: "Seamlessly manage your configurations, deployments, and interactions through our intuitive and powerful command-line interface: mesheryctl";
|
|
1766
|
+
};
|
|
1767
|
+
/**
|
|
1768
|
+
* View settings in Meshery
|
|
1769
|
+
*/
|
|
1770
|
+
readonly MesherySystemViewSettings: {
|
|
1771
|
+
readonly id: PermissionKey;
|
|
1772
|
+
readonly category: "Meshery System";
|
|
1773
|
+
readonly subcategory: "Settings";
|
|
1774
|
+
readonly function: "View Settings";
|
|
1775
|
+
readonly description: "View settings in Meshery";
|
|
1776
|
+
};
|
|
1777
|
+
/**
|
|
1778
|
+
* Configure and connect to Meshery adapters
|
|
1779
|
+
*/
|
|
1780
|
+
readonly MesherySystemConnectAdapter: {
|
|
1781
|
+
readonly id: PermissionKey;
|
|
1782
|
+
readonly category: "Meshery System";
|
|
1783
|
+
readonly subcategory: "Settings";
|
|
1784
|
+
readonly function: "Connect adapter";
|
|
1785
|
+
readonly description: "Configure and connect to Meshery adapters";
|
|
1786
|
+
};
|
|
1787
|
+
/**
|
|
1788
|
+
* Configure and connect to metrics like Grafana and Promethues
|
|
1789
|
+
*/
|
|
1790
|
+
readonly MesherySystemConnectMetrics: {
|
|
1791
|
+
readonly id: PermissionKey;
|
|
1792
|
+
readonly category: "Meshery System";
|
|
1793
|
+
readonly subcategory: "Settings";
|
|
1794
|
+
readonly function: "Connect Metrics";
|
|
1795
|
+
readonly description: "Configure and connect to metrics like Grafana and Promethues";
|
|
1796
|
+
};
|
|
1797
|
+
/**
|
|
1798
|
+
* View already configured metrics
|
|
1799
|
+
*/
|
|
1800
|
+
readonly MesherySystemViewMetrics: {
|
|
1801
|
+
readonly id: PermissionKey;
|
|
1802
|
+
readonly category: "Meshery System";
|
|
1803
|
+
readonly subcategory: "Settings";
|
|
1804
|
+
readonly function: "View Metrics";
|
|
1805
|
+
readonly description: "View already configured metrics";
|
|
1806
|
+
};
|
|
1807
|
+
/**
|
|
1808
|
+
* Explore entities within capabilities registry
|
|
1809
|
+
*/
|
|
1810
|
+
readonly MesherySystemViewRegistry: {
|
|
1811
|
+
readonly id: PermissionKey;
|
|
1812
|
+
readonly category: "Meshery System";
|
|
1813
|
+
readonly subcategory: "Settings";
|
|
1814
|
+
readonly function: "View Registry";
|
|
1815
|
+
readonly description: "Explore entities within capabilities registry";
|
|
1816
|
+
};
|
|
1817
|
+
/**
|
|
1818
|
+
* Reset Meshery database
|
|
1819
|
+
*/
|
|
1820
|
+
readonly MesherySystemResetDatabase: {
|
|
1821
|
+
readonly id: PermissionKey;
|
|
1822
|
+
readonly category: "Meshery System";
|
|
1823
|
+
readonly subcategory: "Settings";
|
|
1824
|
+
readonly function: "Reset Database";
|
|
1825
|
+
readonly description: "Reset Meshery database";
|
|
1826
|
+
};
|
|
1827
|
+
/**
|
|
1828
|
+
* No description available
|
|
1829
|
+
*/
|
|
1830
|
+
readonly KanvasPlaybackServiceTransactionsScrubOverTheHistoryOfChangesToYourDeployments: {
|
|
1831
|
+
readonly id: PermissionKey;
|
|
1832
|
+
readonly category: "Kanvas";
|
|
1833
|
+
readonly subcategory: "Timeline (DVR)";
|
|
1834
|
+
readonly function: "Playback service transactions. Scrub over the history of changes to your deployments.";
|
|
1835
|
+
readonly description: "";
|
|
1836
|
+
};
|
|
1837
|
+
/**
|
|
1838
|
+
* No description available
|
|
1839
|
+
*/
|
|
1840
|
+
readonly KanvasRepresentationOfInfrastructureConfigurationAndServices: {
|
|
1841
|
+
readonly id: PermissionKey;
|
|
1842
|
+
readonly category: "Kanvas";
|
|
1843
|
+
readonly subcategory: "Operator";
|
|
1844
|
+
readonly function: "Representation of infrastructure configuration and services";
|
|
1845
|
+
readonly description: "";
|
|
1846
|
+
};
|
|
1847
|
+
/**
|
|
1848
|
+
* Continuous visibility across all of your clusters and workloads.
|
|
1849
|
+
*/
|
|
1850
|
+
readonly KanvasServicePerformance: {
|
|
1851
|
+
readonly id: PermissionKey;
|
|
1852
|
+
readonly category: "Kanvas";
|
|
1853
|
+
readonly subcategory: "Service Performance";
|
|
1854
|
+
readonly function: "Service Performance";
|
|
1855
|
+
readonly description: "Continuous visibility across all of your clusters and workloads.";
|
|
1856
|
+
};
|
|
1857
|
+
/**
|
|
1858
|
+
* Like a Google Doc, Designs are a user's primary tool for collaborative authorship of their infrastructure and services. A Design describes all the resources and their properties that users wants for a single deployment based on Meshery’s declarative syntax. This permission grants the user the ability to drag and drop a design onto the canvas to merge with exisitng nodes on canvas.
|
|
1859
|
+
*/
|
|
1860
|
+
readonly KanvasDragNDropPatternMergeWithExistingNodesOnCanvas: {
|
|
1861
|
+
readonly id: PermissionKey;
|
|
1862
|
+
readonly category: "Kanvas";
|
|
1863
|
+
readonly subcategory: "Design Patterns";
|
|
1864
|
+
readonly function: "Drag-n-drop pattern (merge with existing nodes on canvas)";
|
|
1865
|
+
readonly description: "Like a Google Doc, Designs are a user's primary tool for collaborative authorship of their infrastructure and services. A Design describes all the resources and their properties that users wants for a single deployment based on Meshery’s declarative syntax. This permission grants the user the ability to drag and drop a design onto the canvas to merge with exisitng nodes on canvas.";
|
|
1866
|
+
};
|
|
1867
|
+
/**
|
|
1868
|
+
* Like a Google Doc, Designs are a user's primary tool for collaborative authorship of their infrastructure and services. A Design describes all the resources and their properties that users wants for a single deployment based on Meshery’s declarative syntax. This permission grants the user the ability to drag and drop a design onto the canvas to displace the exisitng nodes on canvas.
|
|
1869
|
+
*/
|
|
1870
|
+
readonly KanvasLoadDesignPatternDisplaceCurrentNodesOnCanvas: {
|
|
1871
|
+
readonly id: PermissionKey;
|
|
1872
|
+
readonly category: "Kanvas";
|
|
1873
|
+
readonly subcategory: "Design Patterns";
|
|
1874
|
+
readonly function: "Load design pattern (displace current nodes on canvas)";
|
|
1875
|
+
readonly description: "Like a Google Doc, Designs are a user's primary tool for collaborative authorship of their infrastructure and services. A Design describes all the resources and their properties that users wants for a single deployment based on Meshery’s declarative syntax. This permission grants the user the ability to drag and drop a design onto the canvas to displace the exisitng nodes on canvas.";
|
|
1876
|
+
};
|
|
1877
|
+
/**
|
|
1878
|
+
* In Meshery, a Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to configure a component currently present on canvas.
|
|
1879
|
+
*/
|
|
1880
|
+
readonly KanvasEditComponentConfugurationRjsfTooltips: {
|
|
1881
|
+
readonly id: PermissionKey;
|
|
1882
|
+
readonly category: "Kanvas";
|
|
1883
|
+
readonly subcategory: "Design Patterns";
|
|
1884
|
+
readonly function: "Edit Component confuguration (RJSF Tooltips)";
|
|
1885
|
+
readonly description: "In Meshery, a Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to configure a component currently present on canvas.";
|
|
1886
|
+
};
|
|
1887
|
+
/**
|
|
1888
|
+
* No description available
|
|
1889
|
+
*/
|
|
1890
|
+
readonly KanvasConfigureFieldrefs: {
|
|
1891
|
+
readonly id: PermissionKey;
|
|
1892
|
+
readonly category: "Kanvas";
|
|
1893
|
+
readonly subcategory: "Design Patterns";
|
|
1894
|
+
readonly function: "Configure fieldrefs";
|
|
1895
|
+
readonly description: "";
|
|
1896
|
+
};
|
|
1897
|
+
/**
|
|
1898
|
+
* A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to delete a component from canvas.
|
|
1899
|
+
*/
|
|
1900
|
+
readonly KanvasDeleteComponents: {
|
|
1901
|
+
readonly id: PermissionKey;
|
|
1902
|
+
readonly category: "Kanvas";
|
|
1903
|
+
readonly subcategory: "Components";
|
|
1904
|
+
readonly function: "Delete components";
|
|
1905
|
+
readonly description: "A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to delete a component from canvas.";
|
|
1906
|
+
};
|
|
1907
|
+
/**
|
|
1908
|
+
* A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to clone a component, along with it's configuration, on canvas.
|
|
1909
|
+
*/
|
|
1910
|
+
readonly KanvasCloneComponents: {
|
|
1911
|
+
readonly id: PermissionKey;
|
|
1912
|
+
readonly category: "Kanvas";
|
|
1913
|
+
readonly subcategory: "Components";
|
|
1914
|
+
readonly function: "Clone components";
|
|
1915
|
+
readonly description: "A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to clone a component, along with it's configuration, on canvas.";
|
|
1916
|
+
};
|
|
1917
|
+
/**
|
|
1918
|
+
* A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to clone a component, along with it's configuration, on canvas.
|
|
1919
|
+
*/
|
|
1920
|
+
readonly KanvasCopyComponents: {
|
|
1921
|
+
readonly id: PermissionKey;
|
|
1922
|
+
readonly category: "Kanvas";
|
|
1923
|
+
readonly subcategory: "Components";
|
|
1924
|
+
readonly function: "Copy components";
|
|
1925
|
+
readonly description: "A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to clone a component, along with it's configuration, on canvas.";
|
|
1926
|
+
};
|
|
1927
|
+
/**
|
|
1928
|
+
* A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to lock a component's state present on canvas.
|
|
1929
|
+
*/
|
|
1930
|
+
readonly KanvasLockComponents: {
|
|
1931
|
+
readonly id: PermissionKey;
|
|
1932
|
+
readonly category: "Kanvas";
|
|
1933
|
+
readonly subcategory: "Components";
|
|
1934
|
+
readonly function: "Lock components";
|
|
1935
|
+
readonly description: "A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to lock a component's state present on canvas.";
|
|
1936
|
+
};
|
|
1937
|
+
/**
|
|
1938
|
+
* A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to copy a component present on canvas. The canvas is where the design and all it's components are displayed and configured. This permission grants the user the ability to cofigure/edit/update a design by adding new components to the canvas.
|
|
1939
|
+
*/
|
|
1940
|
+
readonly KanvasAddComponents: {
|
|
1941
|
+
readonly id: PermissionKey;
|
|
1942
|
+
readonly category: "Kanvas";
|
|
1943
|
+
readonly subcategory: "Components";
|
|
1944
|
+
readonly function: "Add components";
|
|
1945
|
+
readonly description: "A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to copy a component present on canvas. The canvas is where the design and all it's components are displayed and configured. This permission grants the user the ability to cofigure/edit/update a design by adding new components to the canvas.";
|
|
1946
|
+
};
|
|
1947
|
+
/**
|
|
1948
|
+
* A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to configure the style of a component.
|
|
1949
|
+
*/
|
|
1950
|
+
readonly KanvasConfigureComponentStyles: {
|
|
1951
|
+
readonly id: PermissionKey;
|
|
1952
|
+
readonly category: "Kanvas";
|
|
1953
|
+
readonly subcategory: "Components";
|
|
1954
|
+
readonly function: "Configure component styles";
|
|
1955
|
+
readonly description: "A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to configure the style of a component.";
|
|
1956
|
+
};
|
|
1957
|
+
/**
|
|
1958
|
+
* A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to reset a component to it's initial style.
|
|
1959
|
+
*/
|
|
1960
|
+
readonly KanvasResetComponentStyles: {
|
|
1961
|
+
readonly id: PermissionKey;
|
|
1962
|
+
readonly category: "Kanvas";
|
|
1963
|
+
readonly subcategory: "Components";
|
|
1964
|
+
readonly function: "Reset component styles";
|
|
1965
|
+
readonly description: "A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to reset a component to it's initial style.";
|
|
1966
|
+
};
|
|
1967
|
+
/**
|
|
1968
|
+
* A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to reset a component to it's initial style.
|
|
1969
|
+
*/
|
|
1970
|
+
readonly KanvasResizeComponents: {
|
|
1971
|
+
readonly id: PermissionKey;
|
|
1972
|
+
readonly category: "Kanvas";
|
|
1973
|
+
readonly subcategory: "Components";
|
|
1974
|
+
readonly function: "Resize components";
|
|
1975
|
+
readonly description: "A Component is a fundamental building block used to represent and define the infrastructure under management. Each component provides granular and specific support for your infrastructure and applications. This permission grants the user the ability to reset a component to it's initial style.";
|
|
1976
|
+
};
|
|
1977
|
+
/**
|
|
1978
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to delete a shape from canvas.
|
|
1979
|
+
*/
|
|
1980
|
+
readonly KanvasDeleteShapes: {
|
|
1981
|
+
readonly id: PermissionKey;
|
|
1982
|
+
readonly category: "Kanvas";
|
|
1983
|
+
readonly subcategory: "Shapes";
|
|
1984
|
+
readonly function: "Delete shapes";
|
|
1985
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to delete a shape from canvas.";
|
|
1986
|
+
};
|
|
1987
|
+
/**
|
|
1988
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a shape on canvas.
|
|
1989
|
+
*/
|
|
1990
|
+
readonly KanvasCloneShapes: {
|
|
1991
|
+
readonly id: PermissionKey;
|
|
1992
|
+
readonly category: "Kanvas";
|
|
1993
|
+
readonly subcategory: "Shapes";
|
|
1994
|
+
readonly function: "Clone shapes";
|
|
1995
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a shape on canvas.";
|
|
1996
|
+
};
|
|
1997
|
+
/**
|
|
1998
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a shape on canvas.
|
|
1999
|
+
*/
|
|
2000
|
+
readonly KanvasCopyShapes: {
|
|
2001
|
+
readonly id: PermissionKey;
|
|
2002
|
+
readonly category: "Kanvas";
|
|
2003
|
+
readonly subcategory: "Shapes";
|
|
2004
|
+
readonly function: "Copy shapes";
|
|
2005
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a shape on canvas.";
|
|
2006
|
+
};
|
|
2007
|
+
/**
|
|
2008
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to lock a shape on canvas.
|
|
2009
|
+
*/
|
|
2010
|
+
readonly KanvasLockShapes: {
|
|
2011
|
+
readonly id: PermissionKey;
|
|
2012
|
+
readonly category: "Kanvas";
|
|
2013
|
+
readonly subcategory: "Shapes";
|
|
2014
|
+
readonly function: "Lock shapes";
|
|
2015
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to lock a shape on canvas.";
|
|
2016
|
+
};
|
|
2017
|
+
/**
|
|
2018
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to add new shapes on canvas.
|
|
2019
|
+
*/
|
|
2020
|
+
readonly KanvasAddShapes: {
|
|
2021
|
+
readonly id: PermissionKey;
|
|
2022
|
+
readonly category: "Kanvas";
|
|
2023
|
+
readonly subcategory: "Shapes";
|
|
2024
|
+
readonly function: "Add shapes";
|
|
2025
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to add new shapes on canvas.";
|
|
2026
|
+
};
|
|
2027
|
+
/**
|
|
2028
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to configure the styles of shapes present on canvas.
|
|
2029
|
+
*/
|
|
2030
|
+
readonly KanvasConfigureShapeStyles: {
|
|
2031
|
+
readonly id: PermissionKey;
|
|
2032
|
+
readonly category: "Kanvas";
|
|
2033
|
+
readonly subcategory: "Shapes";
|
|
2034
|
+
readonly function: "Configure shape styles";
|
|
2035
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to configure the styles of shapes present on canvas.";
|
|
2036
|
+
};
|
|
2037
|
+
/**
|
|
2038
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to reset the styles of shapes present on canvas.
|
|
2039
|
+
*/
|
|
2040
|
+
readonly KanvasResetShapeStyles: {
|
|
2041
|
+
readonly id: PermissionKey;
|
|
2042
|
+
readonly category: "Kanvas";
|
|
2043
|
+
readonly subcategory: "Shapes";
|
|
2044
|
+
readonly function: "Reset shape styles";
|
|
2045
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to reset the styles of shapes present on canvas.";
|
|
2046
|
+
};
|
|
2047
|
+
/**
|
|
2048
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to delete a textbox from canvas.
|
|
2049
|
+
*/
|
|
2050
|
+
readonly KanvasDeleteTextboxes: {
|
|
2051
|
+
readonly id: PermissionKey;
|
|
2052
|
+
readonly category: "Kanvas";
|
|
2053
|
+
readonly subcategory: "Textboxes";
|
|
2054
|
+
readonly function: "Delete textboxes";
|
|
2055
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to delete a textbox from canvas.";
|
|
2056
|
+
};
|
|
2057
|
+
/**
|
|
2058
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a textbox on canvas.
|
|
2059
|
+
*/
|
|
2060
|
+
readonly KanvasCloneTextboxes: {
|
|
2061
|
+
readonly id: PermissionKey;
|
|
2062
|
+
readonly category: "Kanvas";
|
|
2063
|
+
readonly subcategory: "Textboxes";
|
|
2064
|
+
readonly function: "Clone textboxes";
|
|
2065
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a textbox on canvas.";
|
|
2066
|
+
};
|
|
2067
|
+
/**
|
|
2068
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a textbox on canvas.
|
|
2069
|
+
*/
|
|
2070
|
+
readonly KanvasCopyTextboxes: {
|
|
2071
|
+
readonly id: PermissionKey;
|
|
2072
|
+
readonly category: "Kanvas";
|
|
2073
|
+
readonly subcategory: "Textboxes";
|
|
2074
|
+
readonly function: "Copy textboxes";
|
|
2075
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a textbox on canvas.";
|
|
2076
|
+
};
|
|
2077
|
+
/**
|
|
2078
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to lock a textbox on canvas.
|
|
2079
|
+
*/
|
|
2080
|
+
readonly KanvasLockTextboxes: {
|
|
2081
|
+
readonly id: PermissionKey;
|
|
2082
|
+
readonly category: "Kanvas";
|
|
2083
|
+
readonly subcategory: "Textboxes";
|
|
2084
|
+
readonly function: "Lock textboxes";
|
|
2085
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to lock a textbox on canvas.";
|
|
2086
|
+
};
|
|
2087
|
+
/**
|
|
2088
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to add new textboxes on canvas.
|
|
2089
|
+
*/
|
|
2090
|
+
readonly KanvasAddTextboxes: {
|
|
2091
|
+
readonly id: PermissionKey;
|
|
2092
|
+
readonly category: "Kanvas";
|
|
2093
|
+
readonly subcategory: "Textboxes";
|
|
2094
|
+
readonly function: "Add textboxes";
|
|
2095
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to add new textboxes on canvas.";
|
|
2096
|
+
};
|
|
2097
|
+
/**
|
|
2098
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to configure the styles of textboxes present on canvas.
|
|
2099
|
+
*/
|
|
2100
|
+
readonly KanvasConfigureTextboxStyles: {
|
|
2101
|
+
readonly id: PermissionKey;
|
|
2102
|
+
readonly category: "Kanvas";
|
|
2103
|
+
readonly subcategory: "Textboxes";
|
|
2104
|
+
readonly function: "Configure textbox styles";
|
|
2105
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to configure the styles of textboxes present on canvas.";
|
|
2106
|
+
};
|
|
2107
|
+
/**
|
|
2108
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to reset the styles of textboxes present on canvas.
|
|
2109
|
+
*/
|
|
2110
|
+
readonly KanvasResetTextboxStyles: {
|
|
2111
|
+
readonly id: PermissionKey;
|
|
2112
|
+
readonly category: "Kanvas";
|
|
2113
|
+
readonly subcategory: "Textboxes";
|
|
2114
|
+
readonly function: "Reset textbox styles";
|
|
2115
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to reset the styles of textboxes present on canvas.";
|
|
2116
|
+
};
|
|
2117
|
+
/**
|
|
2118
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to delete a section from canvas.
|
|
2119
|
+
*/
|
|
2120
|
+
readonly KanvasDeleteSections: {
|
|
2121
|
+
readonly id: PermissionKey;
|
|
2122
|
+
readonly category: "Kanvas";
|
|
2123
|
+
readonly subcategory: "Sections";
|
|
2124
|
+
readonly function: "Delete sections";
|
|
2125
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to delete a section from canvas.";
|
|
2126
|
+
};
|
|
2127
|
+
/**
|
|
2128
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a section on canvas.
|
|
2129
|
+
*/
|
|
2130
|
+
readonly KanvasCloneSections: {
|
|
2131
|
+
readonly id: PermissionKey;
|
|
2132
|
+
readonly category: "Kanvas";
|
|
2133
|
+
readonly subcategory: "Sections";
|
|
2134
|
+
readonly function: "Clone sections";
|
|
2135
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a section on canvas.";
|
|
2136
|
+
};
|
|
2137
|
+
/**
|
|
2138
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a section on canvas.
|
|
2139
|
+
*/
|
|
2140
|
+
readonly KanvasCopySections: {
|
|
2141
|
+
readonly id: PermissionKey;
|
|
2142
|
+
readonly category: "Kanvas";
|
|
2143
|
+
readonly subcategory: "Sections";
|
|
2144
|
+
readonly function: "Copy sections";
|
|
2145
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to clone a section on canvas.";
|
|
2146
|
+
};
|
|
2147
|
+
/**
|
|
2148
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to lock a section on canvas.
|
|
2149
|
+
*/
|
|
2150
|
+
readonly KanvasLockSections: {
|
|
2151
|
+
readonly id: PermissionKey;
|
|
2152
|
+
readonly category: "Kanvas";
|
|
2153
|
+
readonly subcategory: "Sections";
|
|
2154
|
+
readonly function: "Lock sections";
|
|
2155
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to lock a section on canvas.";
|
|
2156
|
+
};
|
|
2157
|
+
/**
|
|
2158
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to add new sections on canvas.
|
|
2159
|
+
*/
|
|
2160
|
+
readonly KanvasAddSections: {
|
|
2161
|
+
readonly id: PermissionKey;
|
|
2162
|
+
readonly category: "Kanvas";
|
|
2163
|
+
readonly subcategory: "Sections";
|
|
2164
|
+
readonly function: "Add sections";
|
|
2165
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to add new sections on canvas.";
|
|
2166
|
+
};
|
|
2167
|
+
/**
|
|
2168
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to configure the styles of sections present on canvas.
|
|
2169
|
+
*/
|
|
2170
|
+
readonly KanvasConfigureSectionStyles: {
|
|
2171
|
+
readonly id: PermissionKey;
|
|
2172
|
+
readonly category: "Kanvas";
|
|
2173
|
+
readonly subcategory: "Sections";
|
|
2174
|
+
readonly function: "Configure section styles";
|
|
2175
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to configure the styles of sections present on canvas.";
|
|
2176
|
+
};
|
|
2177
|
+
/**
|
|
2178
|
+
* Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to reset the styles of sections present on canvas.
|
|
2179
|
+
*/
|
|
2180
|
+
readonly KanvasResetSectionStyles: {
|
|
2181
|
+
readonly id: PermissionKey;
|
|
2182
|
+
readonly category: "Kanvas";
|
|
2183
|
+
readonly subcategory: "Sections";
|
|
2184
|
+
readonly function: "Reset section styles";
|
|
2185
|
+
readonly description: "Kanvas Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to reset the styles of sections present on canvas.";
|
|
2186
|
+
};
|
|
2187
|
+
/**
|
|
2188
|
+
* Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to add text to the textboxes currently on canvas.
|
|
2189
|
+
*/
|
|
2190
|
+
readonly KanvasAddTextToTextboxes: {
|
|
2191
|
+
readonly id: PermissionKey;
|
|
2192
|
+
readonly category: "Kanvas";
|
|
2193
|
+
readonly subcategory: "Design Patterns";
|
|
2194
|
+
readonly function: "Add text to textboxes";
|
|
2195
|
+
readonly description: "Designer allows users to draw shapes, lines, text, add custom styles, images and icons to represent the components and relationships of Kubernetes clusters as they see fit. This permission grants the user the ability to add text to the textboxes currently on canvas.";
|
|
2196
|
+
};
|
|
2197
|
+
/**
|
|
2198
|
+
* No description available
|
|
2199
|
+
*/
|
|
2200
|
+
readonly KanvasCreateDynamicFieldrefs: {
|
|
2201
|
+
readonly id: PermissionKey;
|
|
2202
|
+
readonly category: "Kanvas";
|
|
2203
|
+
readonly subcategory: "Design Patterns";
|
|
2204
|
+
readonly function: "Create dynamic fieldrefs";
|
|
2205
|
+
readonly description: "";
|
|
2206
|
+
};
|
|
2207
|
+
/**
|
|
2208
|
+
* No description available
|
|
2209
|
+
*/
|
|
2210
|
+
readonly KanvasConfigureEdgeHandles: {
|
|
2211
|
+
readonly id: PermissionKey;
|
|
2212
|
+
readonly category: "Kanvas";
|
|
2213
|
+
readonly subcategory: "Design Patterns";
|
|
2214
|
+
readonly function: "Configure edge handles";
|
|
2215
|
+
readonly description: "";
|
|
2216
|
+
};
|
|
2217
|
+
/**
|
|
2218
|
+
* No description available
|
|
2219
|
+
*/
|
|
2220
|
+
readonly KanvasDeleteEdgeHandles: {
|
|
2221
|
+
readonly id: PermissionKey;
|
|
2222
|
+
readonly category: "Kanvas";
|
|
2223
|
+
readonly subcategory: "Design Patterns";
|
|
2224
|
+
readonly function: "Delete edge handles";
|
|
2225
|
+
readonly description: "";
|
|
2226
|
+
};
|
|
2227
|
+
/**
|
|
2228
|
+
* No description available
|
|
2229
|
+
*/
|
|
2230
|
+
readonly KanvasUseHeirarchicalRelationships: {
|
|
2231
|
+
readonly id: PermissionKey;
|
|
2232
|
+
readonly category: "Kanvas";
|
|
2233
|
+
readonly subcategory: "Design Patterns";
|
|
2234
|
+
readonly function: "Use heirarchical relationships";
|
|
2235
|
+
readonly description: "";
|
|
2236
|
+
};
|
|
2237
|
+
/**
|
|
2238
|
+
* No description available
|
|
2239
|
+
*/
|
|
2240
|
+
readonly KanvasUseInventoryRelationships: {
|
|
2241
|
+
readonly id: PermissionKey;
|
|
2242
|
+
readonly category: "Kanvas";
|
|
2243
|
+
readonly subcategory: "Design Patterns";
|
|
2244
|
+
readonly function: "Use inventory relationships";
|
|
2245
|
+
readonly description: "";
|
|
2246
|
+
};
|
|
2247
|
+
/**
|
|
2248
|
+
* Like a Google Doc, Designs are a user's primary tool for collaborative authorship of their infrastructure and services. A Design describes all the resources and their properties that users wants for a single deployment based on Meshery’s declarative syntax. This permission grants the user the ability to change the layout of the components in the design.
|
|
2249
|
+
*/
|
|
2250
|
+
readonly KanvasChangeDesignLayout: {
|
|
2251
|
+
readonly id: PermissionKey;
|
|
2252
|
+
readonly category: "Kanvas";
|
|
2253
|
+
readonly subcategory: "Design Patterns";
|
|
2254
|
+
readonly function: "Change design layout";
|
|
2255
|
+
readonly description: "Like a Google Doc, Designs are a user's primary tool for collaborative authorship of their infrastructure and services. A Design describes all the resources and their properties that users wants for a single deployment based on Meshery’s declarative syntax. This permission grants the user the ability to change the layout of the components in the design.";
|
|
2256
|
+
};
|
|
2257
|
+
/**
|
|
2258
|
+
* This permission grants the user the ability to undo/redo any action in done in Kanvas
|
|
2259
|
+
*/
|
|
2260
|
+
readonly KanvasUndoOrRedo: {
|
|
2261
|
+
readonly id: PermissionKey;
|
|
2262
|
+
readonly category: "Kanvas";
|
|
2263
|
+
readonly subcategory: "Design Patterns";
|
|
2264
|
+
readonly function: "Undo or Redo";
|
|
2265
|
+
readonly description: "This permission grants the user the ability to undo/redo any action in done in Kanvas";
|
|
2266
|
+
};
|
|
2267
|
+
/**
|
|
2268
|
+
* Pencil is a tool mode that allows users to draw freehand shapes. This permission grants user the ability to use the pencil mode.
|
|
2269
|
+
*/
|
|
2270
|
+
readonly KanvasUsePencil: {
|
|
2271
|
+
readonly id: PermissionKey;
|
|
2272
|
+
readonly category: "Kanvas";
|
|
2273
|
+
readonly subcategory: "Design Patterns";
|
|
2274
|
+
readonly function: "Use Pencil";
|
|
2275
|
+
readonly description: "Pencil is a tool mode that allows users to draw freehand shapes. This permission grants user the ability to use the pencil mode.";
|
|
2276
|
+
};
|
|
2277
|
+
/**
|
|
2278
|
+
* Pen is a tool mode that allows users to draw edges (connections) from one component to another. This permission grants user the ability to use the pencil mode.
|
|
2279
|
+
*/
|
|
2280
|
+
readonly KanvasUsePen: {
|
|
2281
|
+
readonly id: PermissionKey;
|
|
2282
|
+
readonly category: "Kanvas";
|
|
2283
|
+
readonly subcategory: "Design Patterns";
|
|
2284
|
+
readonly function: "Use Pen";
|
|
2285
|
+
readonly description: "Pen is a tool mode that allows users to draw edges (connections) from one component to another. This permission grants user the ability to use the pencil mode.";
|
|
2286
|
+
};
|
|
2287
|
+
/**
|
|
2288
|
+
* Ability to freeform draw any shapes, draw edges
|
|
2289
|
+
*/
|
|
2290
|
+
readonly KanvasWhiteboarding: {
|
|
2291
|
+
readonly id: PermissionKey;
|
|
2292
|
+
readonly category: "Kanvas";
|
|
2293
|
+
readonly subcategory: "Design Patterns";
|
|
2294
|
+
readonly function: "Whiteboarding";
|
|
2295
|
+
readonly description: "Ability to freeform draw any shapes, draw edges";
|
|
2296
|
+
};
|
|
2297
|
+
/**
|
|
2298
|
+
* Drag-n-drop cloud native infrastructure designer to configure, model, and deploy your workloads
|
|
2299
|
+
*/
|
|
2300
|
+
readonly KanvasVisualDesign: {
|
|
2301
|
+
readonly id: PermissionKey;
|
|
2302
|
+
readonly category: "Kanvas";
|
|
2303
|
+
readonly subcategory: "Visual Design";
|
|
2304
|
+
readonly function: "Visual Design";
|
|
2305
|
+
readonly description: "Drag-n-drop cloud native infrastructure designer to configure, model, and deploy your workloads";
|
|
2306
|
+
};
|
|
2307
|
+
/**
|
|
2308
|
+
* Generator for GCP via K8s CRDs
|
|
2309
|
+
*/
|
|
2310
|
+
readonly KanvasModels: {
|
|
2311
|
+
readonly id: PermissionKey;
|
|
2312
|
+
readonly category: "Kanvas";
|
|
2313
|
+
readonly subcategory: "Meshery Model";
|
|
2314
|
+
readonly function: "Models";
|
|
2315
|
+
readonly description: "Generator for GCP via K8s CRDs";
|
|
2316
|
+
};
|
|
2317
|
+
/**
|
|
2318
|
+
* The Help Center contains various ways through which the users might try to learn more about the tooling and it's features or reach out through various channels for help. This permission grants the user the ability to view the help center and use it's features.
|
|
2319
|
+
*/
|
|
2320
|
+
readonly KanvasViewHelpCenter: {
|
|
2321
|
+
readonly id: PermissionKey;
|
|
2322
|
+
readonly category: "Kanvas";
|
|
2323
|
+
readonly subcategory: "Design Actions";
|
|
2324
|
+
readonly function: "View help center";
|
|
2325
|
+
readonly description: "The Help Center contains various ways through which the users might try to learn more about the tooling and it's features or reach out through various channels for help. This permission grants the user the ability to view the help center and use it's features.";
|
|
2326
|
+
};
|
|
2327
|
+
/**
|
|
2328
|
+
* The canvas is where the design and all it's components are displayed. This permission grants the user the ability to take a screenshot of the current state of canvas.
|
|
2329
|
+
*/
|
|
2330
|
+
readonly KanvasScreenshotCanvas: {
|
|
2331
|
+
readonly id: PermissionKey;
|
|
2332
|
+
readonly category: "Kanvas";
|
|
2333
|
+
readonly subcategory: "Design Actions";
|
|
2334
|
+
readonly function: "Screenshot Canvas";
|
|
2335
|
+
readonly description: "The canvas is where the design and all it's components are displayed. This permission grants the user the ability to take a screenshot of the current state of canvas.";
|
|
2336
|
+
};
|
|
2337
|
+
/**
|
|
2338
|
+
* Layers refer to the collection of various entities present on the canvas, for example, components, relationships, component badges, etc. This permission grants the user the ability to decide which entities to display/hide on the canvas.
|
|
2339
|
+
*/
|
|
2340
|
+
readonly KanvasConfigureVisibleLayers: {
|
|
2341
|
+
readonly id: PermissionKey;
|
|
2342
|
+
readonly category: "Kanvas";
|
|
2343
|
+
readonly subcategory: "Design Actions";
|
|
2344
|
+
readonly function: "Configure visible layers";
|
|
2345
|
+
readonly description: "Layers refer to the collection of various entities present on the canvas, for example, components, relationships, component badges, etc. This permission grants the user the ability to decide which entities to display/hide on the canvas.";
|
|
2346
|
+
};
|
|
2347
|
+
/**
|
|
2348
|
+
* The canvas is where the design and all it's components are displayed and configured. This permission grants the user the ability to remove all current entities from the canvas and create a new one to start from scratch
|
|
2349
|
+
*/
|
|
2350
|
+
readonly KanvasCreateBlankDesignInKanvas: {
|
|
2351
|
+
readonly id: PermissionKey;
|
|
2352
|
+
readonly category: "Kanvas";
|
|
2353
|
+
readonly subcategory: "Design Patterns";
|
|
2354
|
+
readonly function: "Create blank design in Kanvas";
|
|
2355
|
+
readonly description: "The canvas is where the design and all it's components are displayed and configured. This permission grants the user the ability to remove all current entities from the canvas and create a new one to start from scratch";
|
|
2356
|
+
};
|
|
2357
|
+
/**
|
|
2358
|
+
* Like a Google Doc, Designs are your primary tool for collaborative authorship of your infrastructure and services. A Design describes all the resources and their properties that you want for a single deployment based on Meshery’s declarative syntax. This permission grants the user the ability to save a design (while logged in)
|
|
2359
|
+
*/
|
|
2360
|
+
readonly KanvasSaveDesignInKanvas: {
|
|
2361
|
+
readonly id: PermissionKey;
|
|
2362
|
+
readonly category: "Kanvas";
|
|
2363
|
+
readonly subcategory: "Design Patterns";
|
|
2364
|
+
readonly function: "Save design in Kanvas";
|
|
2365
|
+
readonly description: "Like a Google Doc, Designs are your primary tool for collaborative authorship of your infrastructure and services. A Design describes all the resources and their properties that you want for a single deployment based on Meshery’s declarative syntax. This permission grants the user the ability to save a design (while logged in)";
|
|
2366
|
+
};
|
|
2367
|
+
/**
|
|
2368
|
+
* Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to view comments in a design on canvas.
|
|
2369
|
+
*/
|
|
2370
|
+
readonly KanvasViewComments: {
|
|
2371
|
+
readonly id: PermissionKey;
|
|
2372
|
+
readonly category: "Kanvas";
|
|
2373
|
+
readonly subcategory: "Design Review";
|
|
2374
|
+
readonly function: "View comments";
|
|
2375
|
+
readonly description: "Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to view comments in a design on canvas.";
|
|
2376
|
+
};
|
|
2377
|
+
/**
|
|
2378
|
+
* Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to resolve a comment thread in a design on canvas.
|
|
2379
|
+
*/
|
|
2380
|
+
readonly KanvasResolveAComment: {
|
|
2381
|
+
readonly id: PermissionKey;
|
|
2382
|
+
readonly category: "Kanvas";
|
|
2383
|
+
readonly subcategory: "Design Review";
|
|
2384
|
+
readonly function: "Resolve a comment";
|
|
2385
|
+
readonly description: "Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to resolve a comment thread in a design on canvas.";
|
|
2386
|
+
};
|
|
2387
|
+
/**
|
|
2388
|
+
* Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to delete a comment on canvas.
|
|
2389
|
+
*/
|
|
2390
|
+
readonly KanvasDeleteComments: {
|
|
2391
|
+
readonly id: PermissionKey;
|
|
2392
|
+
readonly category: "Kanvas";
|
|
2393
|
+
readonly subcategory: "Design Review";
|
|
2394
|
+
readonly function: "Delete comments";
|
|
2395
|
+
readonly description: "Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to delete a comment on canvas.";
|
|
2396
|
+
};
|
|
2397
|
+
/**
|
|
2398
|
+
* Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to clone a comment on canvas.
|
|
2399
|
+
*/
|
|
2400
|
+
readonly KanvasCloneComments: {
|
|
2401
|
+
readonly id: PermissionKey;
|
|
2402
|
+
readonly category: "Kanvas";
|
|
2403
|
+
readonly subcategory: "Design Review";
|
|
2404
|
+
readonly function: "Clone comments";
|
|
2405
|
+
readonly description: "Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to clone a comment on canvas.";
|
|
2406
|
+
};
|
|
2407
|
+
/**
|
|
2408
|
+
* Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to copy a comment on canvas.
|
|
2409
|
+
*/
|
|
2410
|
+
readonly KanvasCopyComments: {
|
|
2411
|
+
readonly id: PermissionKey;
|
|
2412
|
+
readonly category: "Kanvas";
|
|
2413
|
+
readonly subcategory: "Design Review";
|
|
2414
|
+
readonly function: "Copy comments";
|
|
2415
|
+
readonly description: "Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to copy a comment on canvas.";
|
|
2416
|
+
};
|
|
2417
|
+
/**
|
|
2418
|
+
* Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to lock a comment on canvas.
|
|
2419
|
+
*/
|
|
2420
|
+
readonly KanvasLockComments: {
|
|
2421
|
+
readonly id: PermissionKey;
|
|
2422
|
+
readonly category: "Kanvas";
|
|
2423
|
+
readonly subcategory: "Design Review";
|
|
2424
|
+
readonly function: "Lock comments";
|
|
2425
|
+
readonly description: "Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to lock a comment on canvas.";
|
|
2426
|
+
};
|
|
2427
|
+
/**
|
|
2428
|
+
* Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to add a comment on canvas.
|
|
2429
|
+
*/
|
|
2430
|
+
readonly KanvasAddComments: {
|
|
2431
|
+
readonly id: PermissionKey;
|
|
2432
|
+
readonly category: "Kanvas";
|
|
2433
|
+
readonly subcategory: "Design Review";
|
|
2434
|
+
readonly function: "Add comments";
|
|
2435
|
+
readonly description: "Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to add a comment on canvas.";
|
|
2436
|
+
};
|
|
2437
|
+
/**
|
|
2438
|
+
* Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to configure the styles of a comment on canvas.
|
|
2439
|
+
*/
|
|
2440
|
+
readonly KanvasConfigureCommentStyles: {
|
|
2441
|
+
readonly id: PermissionKey;
|
|
2442
|
+
readonly category: "Kanvas";
|
|
2443
|
+
readonly subcategory: "Design Review";
|
|
2444
|
+
readonly function: "Configure comment styles";
|
|
2445
|
+
readonly description: "Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to configure the styles of a comment on canvas.";
|
|
2446
|
+
};
|
|
2447
|
+
/**
|
|
2448
|
+
* Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to reset the styles of a comment on canvas.
|
|
2449
|
+
*/
|
|
2450
|
+
readonly KanvasResetCommentStyles: {
|
|
2451
|
+
readonly id: PermissionKey;
|
|
2452
|
+
readonly category: "Kanvas";
|
|
2453
|
+
readonly subcategory: "Design Review";
|
|
2454
|
+
readonly function: "Reset comment styles";
|
|
2455
|
+
readonly description: "Kanvas’s Designer enables users to place comments “inline” within designs. Comments can be used to offer feedback to team members, take detailed design notes, capture helpful tips for team members, and include justification as to infrastructure and application configuration decisions. This permission grants the user the ability to reset the styles of a comment on canvas.";
|
|
2456
|
+
};
|
|
2457
|
+
/**
|
|
2458
|
+
* See all views within a workspace
|
|
2459
|
+
*/
|
|
2460
|
+
readonly KanvasViewViews: {
|
|
2461
|
+
readonly id: PermissionKey;
|
|
2462
|
+
readonly category: "Kanvas";
|
|
2463
|
+
readonly subcategory: "Operator";
|
|
2464
|
+
readonly function: "View Views";
|
|
2465
|
+
readonly description: "See all views within a workspace";
|
|
2466
|
+
};
|
|
2467
|
+
/**
|
|
2468
|
+
* Create a new view
|
|
2469
|
+
*/
|
|
2470
|
+
readonly KanvasCreateView: {
|
|
2471
|
+
readonly id: PermissionKey;
|
|
2472
|
+
readonly category: "Kanvas";
|
|
2473
|
+
readonly subcategory: "Operator";
|
|
2474
|
+
readonly function: "Create View";
|
|
2475
|
+
readonly description: "Create a new view";
|
|
2476
|
+
};
|
|
2477
|
+
/**
|
|
2478
|
+
* Dissolve environment and all connection memberships. Leave associated resources intact.
|
|
2479
|
+
*/
|
|
2480
|
+
readonly KanvasDeleteView: {
|
|
2481
|
+
readonly id: PermissionKey;
|
|
2482
|
+
readonly category: "Kanvas";
|
|
2483
|
+
readonly subcategory: "Operator";
|
|
2484
|
+
readonly function: "Delete View";
|
|
2485
|
+
readonly description: "Dissolve environment and all connection memberships. Leave associated resources intact.";
|
|
2486
|
+
};
|
|
2487
|
+
/**
|
|
2488
|
+
* Edit environment and it connection membership
|
|
2489
|
+
*/
|
|
2490
|
+
readonly KanvasEditView: {
|
|
2491
|
+
readonly id: PermissionKey;
|
|
2492
|
+
readonly category: "Kanvas";
|
|
2493
|
+
readonly subcategory: "Operator";
|
|
2494
|
+
readonly function: "Edit View";
|
|
2495
|
+
readonly description: "Edit environment and it connection membership";
|
|
2496
|
+
};
|
|
2497
|
+
/**
|
|
2498
|
+
* Add new views to workspace
|
|
2499
|
+
*/
|
|
2500
|
+
readonly KanvasAssignViewsToWorkspace: {
|
|
2501
|
+
readonly id: PermissionKey;
|
|
2502
|
+
readonly category: "Kanvas";
|
|
2503
|
+
readonly subcategory: "Operator";
|
|
2504
|
+
readonly function: "Assign Views to Workspace";
|
|
2505
|
+
readonly description: "Add new views to workspace";
|
|
2506
|
+
};
|
|
2507
|
+
/**
|
|
2508
|
+
* Remove views from workspace
|
|
2509
|
+
*/
|
|
2510
|
+
readonly KanvasUnassignViewsFromWorkspace: {
|
|
2511
|
+
readonly id: PermissionKey;
|
|
2512
|
+
readonly category: "Kanvas";
|
|
2513
|
+
readonly subcategory: "Operator";
|
|
2514
|
+
readonly function: "Unassign Views from Workspace";
|
|
2515
|
+
readonly description: "Remove views from workspace";
|
|
2516
|
+
};
|
|
2517
|
+
/**
|
|
2518
|
+
* Export views to JSON format
|
|
2519
|
+
*/
|
|
2520
|
+
readonly KanvasExportViews: {
|
|
2521
|
+
readonly id: PermissionKey;
|
|
2522
|
+
readonly category: "Kanvas";
|
|
2523
|
+
readonly subcategory: "Operator";
|
|
2524
|
+
readonly function: "Export views";
|
|
2525
|
+
readonly description: "Export views to JSON format";
|
|
2526
|
+
};
|
|
2527
|
+
/**
|
|
2528
|
+
* View detailed information about a view and it's comopnent
|
|
2529
|
+
*/
|
|
2530
|
+
readonly KanvasViewViewComponentDetails: {
|
|
2531
|
+
readonly id: PermissionKey;
|
|
2532
|
+
readonly category: "Kanvas";
|
|
2533
|
+
readonly subcategory: "Operator";
|
|
2534
|
+
readonly function: "View view component details";
|
|
2535
|
+
readonly description: "View detailed information about a view and it's comopnent";
|
|
2536
|
+
};
|
|
2537
|
+
/**
|
|
2538
|
+
* Open a pre-existing view
|
|
2539
|
+
*/
|
|
2540
|
+
readonly KanvasOpenView: {
|
|
2541
|
+
readonly id: PermissionKey;
|
|
2542
|
+
readonly category: "Kanvas";
|
|
2543
|
+
readonly subcategory: "Operator";
|
|
2544
|
+
readonly function: "Open view";
|
|
2545
|
+
readonly description: "Open a pre-existing view";
|
|
2546
|
+
};
|
|
2547
|
+
/**
|
|
2548
|
+
* Saved view
|
|
2549
|
+
*/
|
|
2550
|
+
readonly KanvasSaveViews: {
|
|
2551
|
+
readonly id: PermissionKey;
|
|
2552
|
+
readonly category: "Kanvas";
|
|
2553
|
+
readonly subcategory: "Operator";
|
|
2554
|
+
readonly function: "Save Views";
|
|
2555
|
+
readonly description: "Saved view";
|
|
2556
|
+
};
|
|
2557
|
+
/**
|
|
2558
|
+
* Share Views
|
|
2559
|
+
*/
|
|
2560
|
+
readonly KanvasShareViews: {
|
|
2561
|
+
readonly id: PermissionKey;
|
|
2562
|
+
readonly category: "Kanvas";
|
|
2563
|
+
readonly subcategory: "Operator";
|
|
2564
|
+
readonly function: "Share Views";
|
|
2565
|
+
readonly description: "Share Views";
|
|
2566
|
+
};
|
|
2567
|
+
/**
|
|
2568
|
+
* Clone Views
|
|
2569
|
+
*/
|
|
2570
|
+
readonly KanvasCloneViews: {
|
|
2571
|
+
readonly id: PermissionKey;
|
|
2572
|
+
readonly category: "Kanvas";
|
|
2573
|
+
readonly subcategory: "Operator";
|
|
2574
|
+
readonly function: "Clone Views";
|
|
2575
|
+
readonly description: "Clone Views";
|
|
2576
|
+
};
|
|
2577
|
+
/**
|
|
2578
|
+
* Direct terminal access to one ore more pods/containers simultaneously. Integrated experience.
|
|
2579
|
+
*/
|
|
2580
|
+
readonly KanvasWebBasedTerminal: {
|
|
2581
|
+
readonly id: PermissionKey;
|
|
2582
|
+
readonly category: "Kanvas";
|
|
2583
|
+
readonly subcategory: "Operator";
|
|
2584
|
+
readonly function: "Web-based Terminal";
|
|
2585
|
+
readonly description: "Direct terminal access to one ore more pods/containers simultaneously. Integrated experience.";
|
|
2586
|
+
};
|
|
2587
|
+
/**
|
|
2588
|
+
* View Interactive Terminal
|
|
2589
|
+
*/
|
|
2590
|
+
readonly KanvasViewInteractiveTerminal: {
|
|
2591
|
+
readonly id: PermissionKey;
|
|
2592
|
+
readonly category: "Kanvas";
|
|
2593
|
+
readonly subcategory: "Operator";
|
|
2594
|
+
readonly function: "View Interactive Terminal";
|
|
2595
|
+
readonly description: "View Interactive Terminal";
|
|
2596
|
+
};
|
|
2597
|
+
/**
|
|
2598
|
+
* View managed infrastructure resources details in Kanvas Operator
|
|
2599
|
+
*/
|
|
2600
|
+
readonly KanvasViewComponentDetails: {
|
|
2601
|
+
readonly id: PermissionKey;
|
|
2602
|
+
readonly category: "Kanvas";
|
|
2603
|
+
readonly subcategory: "Operator";
|
|
2604
|
+
readonly function: "View Component Details";
|
|
2605
|
+
readonly description: "View managed infrastructure resources details in Kanvas Operator";
|
|
2606
|
+
};
|
|
2607
|
+
/**
|
|
2608
|
+
* View real-time resource metrics in Kanvas Operator
|
|
2609
|
+
*/
|
|
2610
|
+
readonly KanvasViewObservabilityMetrics: {
|
|
2611
|
+
readonly id: PermissionKey;
|
|
2612
|
+
readonly category: "Kanvas";
|
|
2613
|
+
readonly subcategory: "Operator";
|
|
2614
|
+
readonly function: "View Observability Metrics";
|
|
2615
|
+
readonly description: "View real-time resource metrics in Kanvas Operator";
|
|
2616
|
+
};
|
|
2617
|
+
/**
|
|
2618
|
+
* Perform a conformance test in Kanvas Operator
|
|
2619
|
+
*/
|
|
2620
|
+
readonly KanvasPerformConformanceTest: {
|
|
2621
|
+
readonly id: PermissionKey;
|
|
2622
|
+
readonly category: "Kanvas";
|
|
2623
|
+
readonly subcategory: "Operator";
|
|
2624
|
+
readonly function: "Perform conformance test";
|
|
2625
|
+
readonly description: "Perform a conformance test in Kanvas Operator";
|
|
2626
|
+
};
|
|
2627
|
+
/**
|
|
2628
|
+
* Stream container logs in Kanvas Operator
|
|
2629
|
+
*/
|
|
2630
|
+
readonly KanvasStreamContainerLogs: {
|
|
2631
|
+
readonly id: PermissionKey;
|
|
2632
|
+
readonly category: "Kanvas";
|
|
2633
|
+
readonly subcategory: "Operator";
|
|
2634
|
+
readonly function: "Stream container logs";
|
|
2635
|
+
readonly description: "Stream container logs in Kanvas Operator";
|
|
2636
|
+
};
|
|
2637
|
+
/**
|
|
2638
|
+
* Perform performance test in Kanvas Operator
|
|
2639
|
+
*/
|
|
2640
|
+
readonly KanvasPerformPerformanceTestInVisualizer: {
|
|
2641
|
+
readonly id: PermissionKey;
|
|
2642
|
+
readonly category: "Kanvas";
|
|
2643
|
+
readonly subcategory: "Operator";
|
|
2644
|
+
readonly function: "Perform performance test in visualizer";
|
|
2645
|
+
readonly description: "Perform performance test in Kanvas Operator";
|
|
2646
|
+
};
|
|
2647
|
+
/**
|
|
2648
|
+
* Select a performance profile to run tests using
|
|
2649
|
+
*/
|
|
2650
|
+
readonly KanvasSelectPerformanceProfileInVisualizer: {
|
|
2651
|
+
readonly id: PermissionKey;
|
|
2652
|
+
readonly category: "Kanvas";
|
|
2653
|
+
readonly subcategory: "Operator";
|
|
2654
|
+
readonly function: "Select performance profile in visualizer";
|
|
2655
|
+
readonly description: "Select a performance profile to run tests using";
|
|
2656
|
+
};
|
|
2657
|
+
/**
|
|
2658
|
+
* Meshery Cloud
|
|
2659
|
+
*/
|
|
2660
|
+
readonly OfferManagementHelmBased: {
|
|
2661
|
+
readonly id: PermissionKey;
|
|
2662
|
+
readonly category: "Offer Management";
|
|
2663
|
+
readonly subcategory: "On-premise Deployments";
|
|
2664
|
+
readonly function: "Helm-based";
|
|
2665
|
+
readonly description: "Meshery Cloud";
|
|
2666
|
+
};
|
|
2667
|
+
/**
|
|
2668
|
+
* No description available
|
|
2669
|
+
*/
|
|
2670
|
+
readonly PerformanceManagementSmpCompatibleImportExport: {
|
|
2671
|
+
readonly id: PermissionKey;
|
|
2672
|
+
readonly category: "Performance Management";
|
|
2673
|
+
readonly subcategory: "Performance Tests";
|
|
2674
|
+
readonly function: "SMP Compatible Import / Export";
|
|
2675
|
+
readonly description: "";
|
|
2676
|
+
};
|
|
2677
|
+
/**
|
|
2678
|
+
* Baseline and track your service mesh performance from release to release.
|
|
2679
|
+
*/
|
|
2680
|
+
readonly PerformanceManagementPersistenceOfTestResults: {
|
|
2681
|
+
readonly id: PermissionKey;
|
|
2682
|
+
readonly category: "Performance Management";
|
|
2683
|
+
readonly subcategory: "Performance Profiles";
|
|
2684
|
+
readonly function: "Persistence of test results";
|
|
2685
|
+
readonly description: "Baseline and track your service mesh performance from release to release.";
|
|
2686
|
+
};
|
|
2687
|
+
/**
|
|
2688
|
+
* No description available
|
|
2689
|
+
*/
|
|
2690
|
+
readonly PerformanceManagementLoadGeneratorInterfaceCommonInterfaceUsedAsAnExtensionPointForSupportingDifferentTypesOfLoadGenerators: {
|
|
2691
|
+
readonly id: PermissionKey;
|
|
2692
|
+
readonly category: "Performance Management";
|
|
2693
|
+
readonly subcategory: "Load Generation";
|
|
2694
|
+
readonly function: "Load Generator Interface: Common interface used as an extension point for supporting different types of load generators";
|
|
2695
|
+
readonly description: "";
|
|
2696
|
+
};
|
|
2697
|
+
/**
|
|
2698
|
+
* Single Load Generator: Support testing multiple endpoints simultaneously.
|
|
2699
|
+
*/
|
|
2700
|
+
readonly PerformanceManagementLoadGeneration: {
|
|
2701
|
+
readonly id: PermissionKey;
|
|
2702
|
+
readonly category: "Performance Management";
|
|
2703
|
+
readonly subcategory: "Load Generation";
|
|
2704
|
+
readonly function: "Load Generation";
|
|
2705
|
+
readonly description: "Single Load Generator: Support testing multiple endpoints simultaneously.";
|
|
2706
|
+
};
|
|
2707
|
+
/**
|
|
2708
|
+
* Multiple Meshery Servers or Meshery Adapters generating load, collecting and coalescing results into a single report.
|
|
2709
|
+
*/
|
|
2710
|
+
readonly PerformanceManagementDistributedLoadGenerator: {
|
|
2711
|
+
readonly id: PermissionKey;
|
|
2712
|
+
readonly category: "Performance Management";
|
|
2713
|
+
readonly subcategory: "Load Generation";
|
|
2714
|
+
readonly function: "Distributed Load Generator";
|
|
2715
|
+
readonly description: "Multiple Meshery Servers or Meshery Adapters generating load, collecting and coalescing results into a single report.";
|
|
2716
|
+
};
|
|
2717
|
+
/**
|
|
2718
|
+
* No description available
|
|
2719
|
+
*/
|
|
2720
|
+
readonly PerformanceManagementDefineNameAndSavePerformanceProfiles: {
|
|
2721
|
+
readonly id: PermissionKey;
|
|
2722
|
+
readonly category: "Performance Management";
|
|
2723
|
+
readonly subcategory: "Performance Profiles";
|
|
2724
|
+
readonly function: "Define, name, and save performance profiles.";
|
|
2725
|
+
readonly description: "";
|
|
2726
|
+
};
|
|
2727
|
+
/**
|
|
2728
|
+
* No description available
|
|
2729
|
+
*/
|
|
2730
|
+
readonly PerformanceManagementIntegratePerformanceAnalysisAsAGateInYourGitopsPipelineUsingPerformanceProfilesToRunRepeatableTestsAndAvoidRegressionIssuesBeforeTheyStartConfigureThisActionToTriggerWithEachOfYourReleasesOnEveryPullRequestOrAnyGithubWorkflowTriggerEvent: {
|
|
2731
|
+
readonly id: PermissionKey;
|
|
2732
|
+
readonly category: "Performance Management";
|
|
2733
|
+
readonly subcategory: "GitOps - Service Mesh performace Github action";
|
|
2734
|
+
readonly function: "Integrate performance analysis as a gate in your GitOps pipeline, using performance profiles to run repeatable tests and avoid regression issues before they start. Configure this action to trigger with each of your releases, on every pull request. or any GitHub workflow trigger event";
|
|
2735
|
+
readonly description: "";
|
|
2736
|
+
};
|
|
2737
|
+
/**
|
|
2738
|
+
* No description available
|
|
2739
|
+
*/
|
|
2740
|
+
readonly PerformanceManagementUsingMesheryAsTheOfficalSmiConformanceValidationToolConfigureThisActionToTriggerWithEachOfYourReleasesOnEveryPullRequestOrAnyGithubWorkflowTriggerEvent: {
|
|
2741
|
+
readonly id: PermissionKey;
|
|
2742
|
+
readonly category: "Performance Management";
|
|
2743
|
+
readonly subcategory: "Service Mesh Interface Conformance Github actions";
|
|
2744
|
+
readonly function: "Using Meshery as the offical SMI Conformance validation tool, configure this action to trigger with each of your releases, on every pull request. or any GitHub workflow trigger event.";
|
|
2745
|
+
readonly description: "";
|
|
2746
|
+
};
|
|
2747
|
+
/**
|
|
2748
|
+
* Share performance profiles and test results with individual users or teams.
|
|
2749
|
+
*/
|
|
2750
|
+
readonly PerformanceManagementPerformanceProfiles: {
|
|
2751
|
+
readonly id: PermissionKey;
|
|
2752
|
+
readonly category: "Performance Management";
|
|
2753
|
+
readonly subcategory: "Performance Profiles";
|
|
2754
|
+
readonly function: "Performance Profiles";
|
|
2755
|
+
readonly description: "Share performance profiles and test results with individual users or teams.";
|
|
2756
|
+
};
|
|
2757
|
+
/**
|
|
2758
|
+
* Historical views: Infrastructure-centric
|
|
2759
|
+
*/
|
|
2760
|
+
readonly PerformanceManagementComparativeTesting: {
|
|
2761
|
+
readonly id: PermissionKey;
|
|
2762
|
+
readonly category: "Performance Management";
|
|
2763
|
+
readonly subcategory: "Comparative Testing";
|
|
2764
|
+
readonly function: "Comparative Testing";
|
|
2765
|
+
readonly description: "Historical views: Infrastructure-centric";
|
|
2766
|
+
};
|
|
2767
|
+
/**
|
|
2768
|
+
* No description available
|
|
2769
|
+
*/
|
|
2770
|
+
readonly PerformanceManagementExportableReport: {
|
|
2771
|
+
readonly id: PermissionKey;
|
|
2772
|
+
readonly category: "Performance Management";
|
|
2773
|
+
readonly subcategory: "Performance Index";
|
|
2774
|
+
readonly function: "Exportable Report";
|
|
2775
|
+
readonly description: "";
|
|
2776
|
+
};
|
|
2777
|
+
/**
|
|
2778
|
+
* No description available
|
|
2779
|
+
*/
|
|
2780
|
+
readonly PerformanceManagementSocialShare: {
|
|
2781
|
+
readonly id: PermissionKey;
|
|
2782
|
+
readonly category: "Performance Management";
|
|
2783
|
+
readonly subcategory: "Performance Index";
|
|
2784
|
+
readonly function: "Social Share";
|
|
2785
|
+
readonly description: "";
|
|
2786
|
+
};
|
|
2787
|
+
/**
|
|
2788
|
+
* Experience uninterrupted oversight of your service quality with our Continuous Quality of Service Monitoring.
|
|
2789
|
+
*/
|
|
2790
|
+
readonly PerformanceManagementContinuousQualityOfServiceMonitoring: {
|
|
2791
|
+
readonly id: PermissionKey;
|
|
2792
|
+
readonly category: "Performance Management";
|
|
2793
|
+
readonly subcategory: "Continuous Quality of Service Monitoring";
|
|
2794
|
+
readonly function: "Continuous Quality of Service Monitoring";
|
|
2795
|
+
readonly description: "Experience uninterrupted oversight of your service quality with our Continuous Quality of Service Monitoring.";
|
|
2796
|
+
};
|
|
2797
|
+
/**
|
|
2798
|
+
* No description available
|
|
2799
|
+
*/
|
|
2800
|
+
readonly PerformanceManagementAdaptiveLoadControlOptimizeRps: {
|
|
2801
|
+
readonly id: PermissionKey;
|
|
2802
|
+
readonly category: "Performance Management";
|
|
2803
|
+
readonly subcategory: "Auto Tuning";
|
|
2804
|
+
readonly function: "Adaptive load control: optimize RPS";
|
|
2805
|
+
readonly description: "";
|
|
2806
|
+
};
|
|
2807
|
+
/**
|
|
2808
|
+
* Schedule one-time or reoccurring performance tests.
|
|
2809
|
+
*/
|
|
2810
|
+
readonly PerformanceManagementSchedulingOfTests: {
|
|
2811
|
+
readonly id: PermissionKey;
|
|
2812
|
+
readonly category: "Performance Management";
|
|
2813
|
+
readonly subcategory: "Scheduling";
|
|
2814
|
+
readonly function: "Scheduling of tests";
|
|
2815
|
+
readonly description: "Schedule one-time or reoccurring performance tests.";
|
|
2816
|
+
};
|
|
2817
|
+
/**
|
|
2818
|
+
* No description available
|
|
2819
|
+
*/
|
|
2820
|
+
readonly PerformanceManagementSophisticatedRecurringSchedulesOfPerformanceTestsOfConfigurationAnalyzers: {
|
|
2821
|
+
readonly id: PermissionKey;
|
|
2822
|
+
readonly category: "Performance Management";
|
|
2823
|
+
readonly subcategory: "Scheduling";
|
|
2824
|
+
readonly function: "Sophisticated, recurring schedules of performance tests, of configuration analyzers";
|
|
2825
|
+
readonly description: "";
|
|
2826
|
+
};
|
|
2827
|
+
/**
|
|
2828
|
+
* Schedule tests from your calendar
|
|
2829
|
+
*/
|
|
2830
|
+
readonly PerformanceManagementCalendarIntegration: {
|
|
2831
|
+
readonly id: PermissionKey;
|
|
2832
|
+
readonly category: "Performance Management";
|
|
2833
|
+
readonly subcategory: "Scheduling";
|
|
2834
|
+
readonly function: "Calendar Integration";
|
|
2835
|
+
readonly description: "Schedule tests from your calendar";
|
|
2836
|
+
};
|
|
2837
|
+
/**
|
|
2838
|
+
* No description available
|
|
2839
|
+
*/
|
|
2840
|
+
readonly PerformanceManagementListenAndLearnAverageRequestResponseTime: {
|
|
2841
|
+
readonly id: PermissionKey;
|
|
2842
|
+
readonly category: "Performance Management";
|
|
2843
|
+
readonly subcategory: "MeshMark";
|
|
2844
|
+
readonly function: "Listen and learn average request response time.";
|
|
2845
|
+
readonly description: "";
|
|
2846
|
+
};
|
|
2847
|
+
/**
|
|
2848
|
+
* No description available
|
|
2849
|
+
*/
|
|
2850
|
+
readonly PerformanceManagementFormulaAndMeasurementScaleUsedToGaugeServiceMeshPerformanceInContextOfTheValueItSProvidingTheEnvironmentAndWorkloadsItSRunning: {
|
|
2851
|
+
readonly id: PermissionKey;
|
|
2852
|
+
readonly category: "Performance Management";
|
|
2853
|
+
readonly subcategory: "MeshMark";
|
|
2854
|
+
readonly function: "Formula and measurement scale used to gauge service mesh performance in context of the value it’s providing, the environment and workloads it's running.";
|
|
2855
|
+
readonly description: "";
|
|
2856
|
+
};
|
|
2857
|
+
/**
|
|
2858
|
+
* No description available
|
|
2859
|
+
*/
|
|
2860
|
+
readonly PerformanceManagementAbilityToMonitorSignalsDefinedInSmpAndGenerateAMeshmarkInRealTime: {
|
|
2861
|
+
readonly id: PermissionKey;
|
|
2862
|
+
readonly category: "Performance Management";
|
|
2863
|
+
readonly subcategory: "MeshMark";
|
|
2864
|
+
readonly function: "Ability to monitor signals defined in SMP and generate a MeshMark in real-time.";
|
|
2865
|
+
readonly description: "";
|
|
2866
|
+
};
|
|
2867
|
+
/**
|
|
2868
|
+
* Identify the cost of a specific network function.
|
|
2869
|
+
*/
|
|
2870
|
+
readonly PerformanceManagementMeshmark: {
|
|
2871
|
+
readonly id: PermissionKey;
|
|
2872
|
+
readonly category: "Performance Management";
|
|
2873
|
+
readonly subcategory: "MeshMark";
|
|
2874
|
+
readonly function: "MeshMark";
|
|
2875
|
+
readonly description: "Identify the cost of a specific network function.";
|
|
2876
|
+
};
|
|
2877
|
+
/**
|
|
2878
|
+
* No description available
|
|
2879
|
+
*/
|
|
2880
|
+
readonly PerformanceManagementProtocolsHttp: {
|
|
2881
|
+
readonly id: PermissionKey;
|
|
2882
|
+
readonly category: "Performance Management";
|
|
2883
|
+
readonly subcategory: "Performance Test";
|
|
2884
|
+
readonly function: "Protocols: HTTP";
|
|
2885
|
+
readonly description: "";
|
|
2886
|
+
};
|
|
2887
|
+
/**
|
|
2888
|
+
* No description available
|
|
2889
|
+
*/
|
|
2890
|
+
readonly PerformanceManagementProtocolsGrpc: {
|
|
2891
|
+
readonly id: PermissionKey;
|
|
2892
|
+
readonly category: "Performance Management";
|
|
2893
|
+
readonly subcategory: "Performance Test";
|
|
2894
|
+
readonly function: "Protocols: gRPC";
|
|
2895
|
+
readonly description: "";
|
|
2896
|
+
};
|
|
2897
|
+
/**
|
|
2898
|
+
* No description available
|
|
2899
|
+
*/
|
|
2900
|
+
readonly PerformanceManagementProtocolsTcp: {
|
|
2901
|
+
readonly id: PermissionKey;
|
|
2902
|
+
readonly category: "Performance Management";
|
|
2903
|
+
readonly subcategory: "Performance Test";
|
|
2904
|
+
readonly function: "Protocols: TCP";
|
|
2905
|
+
readonly description: "";
|
|
2906
|
+
};
|
|
2907
|
+
/**
|
|
2908
|
+
* No description available
|
|
2909
|
+
*/
|
|
2910
|
+
readonly PerformanceManagementDuration: {
|
|
2911
|
+
readonly id: PermissionKey;
|
|
2912
|
+
readonly category: "Performance Management";
|
|
2913
|
+
readonly subcategory: "Performance Test";
|
|
2914
|
+
readonly function: "Duration";
|
|
2915
|
+
readonly description: "";
|
|
2916
|
+
};
|
|
2917
|
+
/**
|
|
2918
|
+
* No description available
|
|
2919
|
+
*/
|
|
2920
|
+
readonly PerformanceManagementMultipleThreads: {
|
|
2921
|
+
readonly id: PermissionKey;
|
|
2922
|
+
readonly category: "Performance Management";
|
|
2923
|
+
readonly subcategory: "Performance Test";
|
|
2924
|
+
readonly function: "Multiple threads";
|
|
2925
|
+
readonly description: "";
|
|
2926
|
+
};
|
|
2927
|
+
/**
|
|
2928
|
+
* No description available
|
|
2929
|
+
*/
|
|
2930
|
+
readonly PerformanceManagementDefaultProfilesToFacilitateCapacitySoakAndOtherTesting: {
|
|
2931
|
+
readonly id: PermissionKey;
|
|
2932
|
+
readonly category: "Performance Management";
|
|
2933
|
+
readonly subcategory: "Performance Test";
|
|
2934
|
+
readonly function: "Default profiles to facilitate capacity, soak and other testing.";
|
|
2935
|
+
readonly description: "";
|
|
2936
|
+
};
|
|
2937
|
+
/**
|
|
2938
|
+
* No description available
|
|
2939
|
+
*/
|
|
2940
|
+
readonly PerformanceManagementComparisonOfTwoOrMoreReports: {
|
|
2941
|
+
readonly id: PermissionKey;
|
|
2942
|
+
readonly category: "Performance Management";
|
|
2943
|
+
readonly subcategory: "Performance Test";
|
|
2944
|
+
readonly function: "Comparison of two or more reports.";
|
|
2945
|
+
readonly description: "";
|
|
2946
|
+
};
|
|
2947
|
+
/**
|
|
2948
|
+
* No description available
|
|
2949
|
+
*/
|
|
2950
|
+
readonly PerformanceManagementPersistInSmpFormat: {
|
|
2951
|
+
readonly id: PermissionKey;
|
|
2952
|
+
readonly category: "Performance Management";
|
|
2953
|
+
readonly subcategory: "Performance Test";
|
|
2954
|
+
readonly function: "Persist in SMP format.";
|
|
2955
|
+
readonly description: "";
|
|
2956
|
+
};
|
|
2957
|
+
/**
|
|
2958
|
+
* No description available
|
|
2959
|
+
*/
|
|
2960
|
+
readonly PerformanceManagementExportSingleOrMultipleResultsInSmpFormat: {
|
|
2961
|
+
readonly id: PermissionKey;
|
|
2962
|
+
readonly category: "Performance Management";
|
|
2963
|
+
readonly subcategory: "Performance Test";
|
|
2964
|
+
readonly function: "Export single or multiple results in SMP format.";
|
|
2965
|
+
readonly description: "";
|
|
2966
|
+
};
|
|
2967
|
+
/**
|
|
2968
|
+
* No description available
|
|
2969
|
+
*/
|
|
2970
|
+
readonly PerformanceManagementHistoricalView: {
|
|
2971
|
+
readonly id: PermissionKey;
|
|
2972
|
+
readonly category: "Performance Management";
|
|
2973
|
+
readonly subcategory: "Performance Test";
|
|
2974
|
+
readonly function: "Historical view.";
|
|
2975
|
+
readonly description: "";
|
|
2976
|
+
};
|
|
2977
|
+
/**
|
|
2978
|
+
* No description available
|
|
2979
|
+
*/
|
|
2980
|
+
readonly PerformanceManagementAnalysisLatencyThroughput: {
|
|
2981
|
+
readonly id: PermissionKey;
|
|
2982
|
+
readonly category: "Performance Management";
|
|
2983
|
+
readonly subcategory: "Performance Results";
|
|
2984
|
+
readonly function: "Analysis: latency, throughput.";
|
|
2985
|
+
readonly description: "";
|
|
2986
|
+
};
|
|
2987
|
+
/**
|
|
2988
|
+
* No description available
|
|
2989
|
+
*/
|
|
2990
|
+
readonly PerformanceManagementAnalysisThresholdSettingsForPassFailWhenIntegratedIntoCiPipelines: {
|
|
2991
|
+
readonly id: PermissionKey;
|
|
2992
|
+
readonly category: "Performance Management";
|
|
2993
|
+
readonly subcategory: "Performance Results";
|
|
2994
|
+
readonly function: "Analysis: Threshold Settings - for pass/fail when integrated into CI pipelines.";
|
|
2995
|
+
readonly description: "";
|
|
2996
|
+
};
|
|
2997
|
+
/**
|
|
2998
|
+
* No description available
|
|
2999
|
+
*/
|
|
3000
|
+
readonly PerformanceManagementAnalysisIdentificationOfOpportunitiesToImprove: {
|
|
3001
|
+
readonly id: PermissionKey;
|
|
3002
|
+
readonly category: "Performance Management";
|
|
3003
|
+
readonly subcategory: "Performance Results";
|
|
3004
|
+
readonly function: "Analysis: identification of opportunities to improve.";
|
|
3005
|
+
readonly description: "";
|
|
3006
|
+
};
|
|
3007
|
+
/**
|
|
3008
|
+
* No description available
|
|
3009
|
+
*/
|
|
3010
|
+
readonly PerformanceManagementAnalysisTrend: {
|
|
3011
|
+
readonly id: PermissionKey;
|
|
3012
|
+
readonly category: "Performance Management";
|
|
3013
|
+
readonly subcategory: "Performance Results";
|
|
3014
|
+
readonly function: "Analysis: Trend";
|
|
3015
|
+
readonly description: "";
|
|
3016
|
+
};
|
|
3017
|
+
/**
|
|
3018
|
+
* No description available
|
|
3019
|
+
*/
|
|
3020
|
+
readonly PerformanceManagementAnalysisAnomalyDetection: {
|
|
3021
|
+
readonly id: PermissionKey;
|
|
3022
|
+
readonly category: "Performance Management";
|
|
3023
|
+
readonly subcategory: "Performance Results";
|
|
3024
|
+
readonly function: "Analysis: Anomaly detection";
|
|
3025
|
+
readonly description: "";
|
|
3026
|
+
};
|
|
3027
|
+
/**
|
|
3028
|
+
* Automatically suggest timeout settings for a given service.
|
|
3029
|
+
*/
|
|
3030
|
+
readonly PerformanceManagementAnalysis: {
|
|
3031
|
+
readonly id: PermissionKey;
|
|
3032
|
+
readonly category: "Performance Management";
|
|
3033
|
+
readonly subcategory: "Distributed Performance Analysis";
|
|
3034
|
+
readonly function: "Analysis";
|
|
3035
|
+
readonly description: "Automatically suggest timeout settings for a given service.";
|
|
3036
|
+
};
|
|
3037
|
+
/**
|
|
3038
|
+
* Creation of Meshery Nighthawk Adapter. Refactoring of Nighhawk and decoupling it from Meshery container. Lifecycle management of adapter. Definition and registration of adapter capabilities.
|
|
3039
|
+
*/
|
|
3040
|
+
readonly PerformanceManagementMesheryAdapterForNighthawk: {
|
|
3041
|
+
readonly id: PermissionKey;
|
|
3042
|
+
readonly category: "Performance Management";
|
|
3043
|
+
readonly subcategory: "Distributed Performance Analysis";
|
|
3044
|
+
readonly function: "Meshery Adapter for Nighthawk";
|
|
3045
|
+
readonly description: "Creation of Meshery Nighthawk Adapter. Refactoring of Nighhawk and decoupling it from Meshery container. Lifecycle management of adapter. Definition and registration of adapter capabilities.";
|
|
3046
|
+
};
|
|
3047
|
+
/**
|
|
3048
|
+
* Allow users to identity Kubernetes clusters
|
|
3049
|
+
*/
|
|
3050
|
+
readonly PerformanceManagementDistributedTests: {
|
|
3051
|
+
readonly id: PermissionKey;
|
|
3052
|
+
readonly category: "Performance Management";
|
|
3053
|
+
readonly subcategory: "Distributed Performance Analysis";
|
|
3054
|
+
readonly function: "Distributed Tests";
|
|
3055
|
+
readonly description: "Allow users to identity Kubernetes clusters";
|
|
3056
|
+
};
|
|
3057
|
+
/**
|
|
3058
|
+
* Add a new performace profile
|
|
3059
|
+
*/
|
|
3060
|
+
readonly PerformanceManagementAddPerformaceProfile: {
|
|
3061
|
+
readonly id: PermissionKey;
|
|
3062
|
+
readonly category: "Performance Management";
|
|
3063
|
+
readonly subcategory: "Performance";
|
|
3064
|
+
readonly function: "Add performace profile";
|
|
3065
|
+
readonly description: "Add a new performace profile";
|
|
3066
|
+
};
|
|
3067
|
+
/**
|
|
3068
|
+
* Run a test on performance profile
|
|
3069
|
+
*/
|
|
3070
|
+
readonly PerformanceManagementRunTest: {
|
|
3071
|
+
readonly id: PermissionKey;
|
|
3072
|
+
readonly category: "Performance Management";
|
|
3073
|
+
readonly subcategory: "Performance";
|
|
3074
|
+
readonly function: "Run test";
|
|
3075
|
+
readonly description: "Run a test on performance profile";
|
|
3076
|
+
};
|
|
3077
|
+
/**
|
|
3078
|
+
* View results of performance tests
|
|
3079
|
+
*/
|
|
3080
|
+
readonly PerformanceManagementViewResults: {
|
|
3081
|
+
readonly id: PermissionKey;
|
|
3082
|
+
readonly category: "Performance Management";
|
|
3083
|
+
readonly subcategory: "Performance";
|
|
3084
|
+
readonly function: "View Results";
|
|
3085
|
+
readonly description: "View results of performance tests";
|
|
3086
|
+
};
|
|
3087
|
+
/**
|
|
3088
|
+
* Edit performance test
|
|
3089
|
+
*/
|
|
3090
|
+
readonly PerformanceManagementEditPerformanceTest: {
|
|
3091
|
+
readonly id: PermissionKey;
|
|
3092
|
+
readonly category: "Performance Management";
|
|
3093
|
+
readonly subcategory: "Performance";
|
|
3094
|
+
readonly function: "Edit performance test";
|
|
3095
|
+
readonly description: "Edit performance test";
|
|
3096
|
+
};
|
|
3097
|
+
/**
|
|
3098
|
+
* Delete performance test
|
|
3099
|
+
*/
|
|
3100
|
+
readonly PerformanceManagementDeletePerformanceTest: {
|
|
3101
|
+
readonly id: PermissionKey;
|
|
3102
|
+
readonly category: "Performance Management";
|
|
3103
|
+
readonly subcategory: "Performance";
|
|
3104
|
+
readonly function: "Delete performance test";
|
|
3105
|
+
readonly description: "Delete performance test";
|
|
3106
|
+
};
|
|
3107
|
+
/**
|
|
3108
|
+
* View all performance profiles
|
|
3109
|
+
*/
|
|
3110
|
+
readonly PerformanceManagementViewPerformanceProfiles: {
|
|
3111
|
+
readonly id: PermissionKey;
|
|
3112
|
+
readonly category: "Performance Management";
|
|
3113
|
+
readonly subcategory: "Performance";
|
|
3114
|
+
readonly function: "View performance profiles";
|
|
3115
|
+
readonly description: "View all performance profiles";
|
|
3116
|
+
};
|
|
3117
|
+
/**
|
|
3118
|
+
* No description available
|
|
3119
|
+
*/
|
|
3120
|
+
readonly PolicyNotificationSuppression: {
|
|
3121
|
+
readonly id: PermissionKey;
|
|
3122
|
+
readonly category: "Policy";
|
|
3123
|
+
readonly subcategory: "Alert Management";
|
|
3124
|
+
readonly function: "Notification Suppression";
|
|
3125
|
+
readonly description: "";
|
|
3126
|
+
};
|
|
3127
|
+
/**
|
|
3128
|
+
* No description available
|
|
3129
|
+
*/
|
|
3130
|
+
readonly PolicyNotificationCorrelation: {
|
|
3131
|
+
readonly id: PermissionKey;
|
|
3132
|
+
readonly category: "Policy";
|
|
3133
|
+
readonly subcategory: "Alert Management";
|
|
3134
|
+
readonly function: "Notification Correlation";
|
|
3135
|
+
readonly description: "";
|
|
3136
|
+
};
|
|
3137
|
+
/**
|
|
3138
|
+
* No description available
|
|
3139
|
+
*/
|
|
3140
|
+
readonly PolicyVersioned: {
|
|
3141
|
+
readonly id: PermissionKey;
|
|
3142
|
+
readonly category: "Policy";
|
|
3143
|
+
readonly subcategory: "Policies";
|
|
3144
|
+
readonly function: "Versioned";
|
|
3145
|
+
readonly description: "";
|
|
3146
|
+
};
|
|
3147
|
+
/**
|
|
3148
|
+
* No description available
|
|
3149
|
+
*/
|
|
3150
|
+
readonly PolicyLogOfAllActionsInvokedByUsers: {
|
|
3151
|
+
readonly id: PermissionKey;
|
|
3152
|
+
readonly category: "Policy";
|
|
3153
|
+
readonly subcategory: "Audit Trail";
|
|
3154
|
+
readonly function: "Log of all actions invoked by users";
|
|
3155
|
+
readonly description: "";
|
|
3156
|
+
};
|
|
3157
|
+
/**
|
|
3158
|
+
* No description available
|
|
3159
|
+
*/
|
|
3160
|
+
readonly PolicyNotificationOfAttemptsToInvokeUnauthorizedActions: {
|
|
3161
|
+
readonly id: PermissionKey;
|
|
3162
|
+
readonly category: "Policy";
|
|
3163
|
+
readonly subcategory: "RBAC Violations";
|
|
3164
|
+
readonly function: "Notification of attempts to invoke unauthorized actions";
|
|
3165
|
+
readonly description: "";
|
|
3166
|
+
};
|
|
3167
|
+
/**
|
|
3168
|
+
* No description available
|
|
3169
|
+
*/
|
|
3170
|
+
readonly PolicyAdmissionControlForSpecificWorkloadsOnTheMesh: {
|
|
3171
|
+
readonly id: PermissionKey;
|
|
3172
|
+
readonly category: "Policy";
|
|
3173
|
+
readonly subcategory: "Open Policy Agent integration";
|
|
3174
|
+
readonly function: "Admission control for specific workloads on the mesh";
|
|
3175
|
+
readonly description: "";
|
|
3176
|
+
};
|
|
3177
|
+
/**
|
|
3178
|
+
* No description available
|
|
3179
|
+
*/
|
|
3180
|
+
readonly PolicyServiceRequestAuthorizationWithJwt: {
|
|
3181
|
+
readonly id: PermissionKey;
|
|
3182
|
+
readonly category: "Policy";
|
|
3183
|
+
readonly subcategory: "Open Policy Agent integration";
|
|
3184
|
+
readonly function: "Service request authorization with JWT";
|
|
3185
|
+
readonly description: "";
|
|
3186
|
+
};
|
|
3187
|
+
/**
|
|
3188
|
+
* No description available
|
|
3189
|
+
*/
|
|
3190
|
+
readonly PolicyPerformanceBudgetSupportInPatterns: {
|
|
3191
|
+
readonly id: PermissionKey;
|
|
3192
|
+
readonly category: "Policy";
|
|
3193
|
+
readonly subcategory: "Open Policy Agent integration";
|
|
3194
|
+
readonly function: "Performance Budget support in Patterns";
|
|
3195
|
+
readonly description: "";
|
|
3196
|
+
};
|
|
3197
|
+
/**
|
|
3198
|
+
* No description available
|
|
3199
|
+
*/
|
|
3200
|
+
readonly SecurityManagementViewOverview: {
|
|
3201
|
+
readonly id: PermissionKey;
|
|
3202
|
+
readonly category: "Security Management";
|
|
3203
|
+
readonly subcategory: "Overview";
|
|
3204
|
+
readonly function: "View Overview";
|
|
3205
|
+
readonly description: "";
|
|
3206
|
+
};
|
|
3207
|
+
/**
|
|
3208
|
+
* No description available
|
|
3209
|
+
*/
|
|
3210
|
+
readonly SecurityManagementViewCredentials: {
|
|
3211
|
+
readonly id: PermissionKey;
|
|
3212
|
+
readonly category: "Security Management";
|
|
3213
|
+
readonly subcategory: "Credentials";
|
|
3214
|
+
readonly function: "View Credentials";
|
|
3215
|
+
readonly description: "";
|
|
3216
|
+
};
|
|
3217
|
+
/**
|
|
3218
|
+
* No description available
|
|
3219
|
+
*/
|
|
3220
|
+
readonly SecurityManagementCreateCredential: {
|
|
3221
|
+
readonly id: PermissionKey;
|
|
3222
|
+
readonly category: "Security Management";
|
|
3223
|
+
readonly subcategory: "Credentials";
|
|
3224
|
+
readonly function: "Create Credential";
|
|
3225
|
+
readonly description: "";
|
|
3226
|
+
};
|
|
3227
|
+
/**
|
|
3228
|
+
* No description available
|
|
3229
|
+
*/
|
|
3230
|
+
readonly SecurityManagementEditCredential: {
|
|
3231
|
+
readonly id: PermissionKey;
|
|
3232
|
+
readonly category: "Security Management";
|
|
3233
|
+
readonly subcategory: "Credentials";
|
|
3234
|
+
readonly function: "Edit Credential";
|
|
3235
|
+
readonly description: "";
|
|
3236
|
+
};
|
|
3237
|
+
/**
|
|
3238
|
+
* No description available
|
|
3239
|
+
*/
|
|
3240
|
+
readonly SecurityManagementDeleteCredential: {
|
|
3241
|
+
readonly id: PermissionKey;
|
|
3242
|
+
readonly category: "Security Management";
|
|
3243
|
+
readonly subcategory: "Credentials";
|
|
3244
|
+
readonly function: "Delete Credential";
|
|
3245
|
+
readonly description: "";
|
|
3246
|
+
};
|
|
3247
|
+
/**
|
|
3248
|
+
* No description available
|
|
3249
|
+
*/
|
|
3250
|
+
readonly SecurityManagementViewSessions: {
|
|
3251
|
+
readonly id: PermissionKey;
|
|
3252
|
+
readonly category: "Security Management";
|
|
3253
|
+
readonly subcategory: "Sessions";
|
|
3254
|
+
readonly function: "View Sessions";
|
|
3255
|
+
readonly description: "";
|
|
3256
|
+
};
|
|
3257
|
+
/**
|
|
3258
|
+
* No description available
|
|
3259
|
+
*/
|
|
3260
|
+
readonly SecurityManagementLogoutFromASession: {
|
|
3261
|
+
readonly id: PermissionKey;
|
|
3262
|
+
readonly category: "Security Management";
|
|
3263
|
+
readonly subcategory: "Sessions";
|
|
3264
|
+
readonly function: "Logout from a Session";
|
|
3265
|
+
readonly description: "";
|
|
3266
|
+
};
|
|
3267
|
+
/**
|
|
3268
|
+
* No description available
|
|
3269
|
+
*/
|
|
3270
|
+
readonly SecurityManagementViewTokens: {
|
|
3271
|
+
readonly id: PermissionKey;
|
|
3272
|
+
readonly category: "Security Management";
|
|
3273
|
+
readonly subcategory: "Tokens";
|
|
3274
|
+
readonly function: "View Tokens";
|
|
3275
|
+
readonly description: "";
|
|
3276
|
+
};
|
|
3277
|
+
/**
|
|
3278
|
+
* No description available
|
|
3279
|
+
*/
|
|
3280
|
+
readonly SecurityManagementDownloadToken: {
|
|
3281
|
+
readonly id: PermissionKey;
|
|
3282
|
+
readonly category: "Security Management";
|
|
3283
|
+
readonly subcategory: "Tokens";
|
|
3284
|
+
readonly function: "Download Token";
|
|
3285
|
+
readonly description: "";
|
|
3286
|
+
};
|
|
3287
|
+
/**
|
|
3288
|
+
* No description available
|
|
3289
|
+
*/
|
|
3290
|
+
readonly SecurityManagementCreateToken: {
|
|
3291
|
+
readonly id: PermissionKey;
|
|
3292
|
+
readonly category: "Security Management";
|
|
3293
|
+
readonly subcategory: "Tokens";
|
|
3294
|
+
readonly function: "Create Token";
|
|
3295
|
+
readonly description: "";
|
|
3296
|
+
};
|
|
3297
|
+
/**
|
|
3298
|
+
* Delete a Token
|
|
3299
|
+
*/
|
|
3300
|
+
readonly SecurityManagementDeleteToken: {
|
|
3301
|
+
readonly id: PermissionKey;
|
|
3302
|
+
readonly category: "Security Management";
|
|
3303
|
+
readonly subcategory: "Token";
|
|
3304
|
+
readonly function: "Delete Token";
|
|
3305
|
+
readonly description: "Delete a Token";
|
|
3306
|
+
};
|
|
3307
|
+
/**
|
|
3308
|
+
* No description available
|
|
3309
|
+
*/
|
|
3310
|
+
readonly SecurityManagementViewKeys: {
|
|
3311
|
+
readonly id: PermissionKey;
|
|
3312
|
+
readonly category: "Security Management";
|
|
3313
|
+
readonly subcategory: "Keys";
|
|
3314
|
+
readonly function: "View Keys";
|
|
3315
|
+
readonly description: "";
|
|
3316
|
+
};
|
|
3317
|
+
/**
|
|
3318
|
+
* No description available
|
|
3319
|
+
*/
|
|
3320
|
+
readonly SecurityManagementEditKey: {
|
|
3321
|
+
readonly id: PermissionKey;
|
|
3322
|
+
readonly category: "Security Management";
|
|
3323
|
+
readonly subcategory: "Keys";
|
|
3324
|
+
readonly function: "Edit Key";
|
|
3325
|
+
readonly description: "";
|
|
3326
|
+
};
|
|
3327
|
+
/**
|
|
3328
|
+
* No description available
|
|
3329
|
+
*/
|
|
3330
|
+
readonly SecurityManagementDeleteKey: {
|
|
3331
|
+
readonly id: PermissionKey;
|
|
3332
|
+
readonly category: "Security Management";
|
|
3333
|
+
readonly subcategory: "Keys";
|
|
3334
|
+
readonly function: "Delete Key";
|
|
3335
|
+
readonly description: "";
|
|
3336
|
+
};
|
|
3337
|
+
/**
|
|
3338
|
+
* No description available
|
|
3339
|
+
*/
|
|
3340
|
+
readonly SecurityManagementViewKeychains: {
|
|
3341
|
+
readonly id: PermissionKey;
|
|
3342
|
+
readonly category: "Security Management";
|
|
3343
|
+
readonly subcategory: "Keychains";
|
|
3344
|
+
readonly function: "View Keychains";
|
|
3345
|
+
readonly description: "";
|
|
3346
|
+
};
|
|
3347
|
+
/**
|
|
3348
|
+
* No description available
|
|
3349
|
+
*/
|
|
3350
|
+
readonly SecurityManagementCreateKeychain: {
|
|
3351
|
+
readonly id: PermissionKey;
|
|
3352
|
+
readonly category: "Security Management";
|
|
3353
|
+
readonly subcategory: "Keychains";
|
|
3354
|
+
readonly function: "Create Keychain";
|
|
3355
|
+
readonly description: "";
|
|
3356
|
+
};
|
|
3357
|
+
/**
|
|
3358
|
+
* No description available
|
|
3359
|
+
*/
|
|
3360
|
+
readonly SecurityManagementEditKeychain: {
|
|
3361
|
+
readonly id: PermissionKey;
|
|
3362
|
+
readonly category: "Security Management";
|
|
3363
|
+
readonly subcategory: "Keychains";
|
|
3364
|
+
readonly function: "Edit Keychain";
|
|
3365
|
+
readonly description: "";
|
|
3366
|
+
};
|
|
3367
|
+
/**
|
|
3368
|
+
* No description available
|
|
3369
|
+
*/
|
|
3370
|
+
readonly SecurityManagementDeleteKeychain: {
|
|
3371
|
+
readonly id: PermissionKey;
|
|
3372
|
+
readonly category: "Security Management";
|
|
3373
|
+
readonly subcategory: "Keychains";
|
|
3374
|
+
readonly function: "Delete Keychain";
|
|
3375
|
+
readonly description: "";
|
|
3376
|
+
};
|
|
3377
|
+
/**
|
|
3378
|
+
* This permission grants the user the ability to manage infrastructure life cycles within meshery. Meshery allows users to visualize, work on and manage various cloud native technologies.
|
|
3379
|
+
*/
|
|
3380
|
+
readonly InfrastructureManagementManageCloudNativeInfrastructureLifeCycle: {
|
|
3381
|
+
readonly id: PermissionKey;
|
|
3382
|
+
readonly category: "Infrastructure Management";
|
|
3383
|
+
readonly subcategory: "Cloud native infrastructure lifecycle";
|
|
3384
|
+
readonly function: "Manage cloud native infrastructure life cycle";
|
|
3385
|
+
readonly description: "This permission grants the user the ability to manage infrastructure life cycles within meshery. Meshery allows users to visualize, work on and manage various cloud native technologies.";
|
|
3386
|
+
};
|
|
3387
|
+
/**
|
|
3388
|
+
* Manage configuration for applications like EmojiVoto, HTTPBin, Image Hub, Istio Book Info
|
|
3389
|
+
*/
|
|
3390
|
+
readonly InfrastructureManagementManageCloudNativeInfrastructureConfiguration: {
|
|
3391
|
+
readonly id: PermissionKey;
|
|
3392
|
+
readonly category: "Infrastructure Management";
|
|
3393
|
+
readonly subcategory: "Cloud native infrastructure lifecycle";
|
|
3394
|
+
readonly function: "Manage cloud native infrastructure configuration";
|
|
3395
|
+
readonly description: "Manage configuration for applications like EmojiVoto, HTTPBin, Image Hub, Istio Book Info";
|
|
3396
|
+
};
|
|
3397
|
+
/**
|
|
3398
|
+
* Configure infrastructure with some predefined options like Automatic Sidecar injection, Envoy Filter, Policy
|
|
3399
|
+
*/
|
|
3400
|
+
readonly InfrastructureManagementApplyCloudNativeInfrastructureConfiguration: {
|
|
3401
|
+
readonly id: PermissionKey;
|
|
3402
|
+
readonly category: "Infrastructure Management";
|
|
3403
|
+
readonly subcategory: "Cloud native infrastructure lifecycle";
|
|
3404
|
+
readonly function: "Apply cloud native infrastructure configuration";
|
|
3405
|
+
readonly description: "Configure infrastructure with some predefined options like Automatic Sidecar injection, Envoy Filter, Policy";
|
|
3406
|
+
};
|
|
3407
|
+
/**
|
|
3408
|
+
* Validate cloud native infrastructure configuration against best practices like Analyze Running Configuration, SMI conformance
|
|
3409
|
+
*/
|
|
3410
|
+
readonly InfrastructureManagementValidateCloudNativeInfrastructureConfiguration: {
|
|
3411
|
+
readonly id: PermissionKey;
|
|
3412
|
+
readonly category: "Infrastructure Management";
|
|
3413
|
+
readonly subcategory: "Cloud native infrastructure lifecycle";
|
|
3414
|
+
readonly function: "Validate cloud native infrastructure configuration";
|
|
3415
|
+
readonly description: "Validate cloud native infrastructure configuration against best practices like Analyze Running Configuration, SMI conformance";
|
|
3416
|
+
};
|
|
3417
|
+
/**
|
|
3418
|
+
* This permission grants the user the ability to apply custom configuration and customize existing configuration of thier cloud native infrastructure
|
|
3419
|
+
*/
|
|
3420
|
+
readonly InfrastructureManagementApplyCustomCloudNativeConfiguration: {
|
|
3421
|
+
readonly id: PermissionKey;
|
|
3422
|
+
readonly category: "Infrastructure Management";
|
|
3423
|
+
readonly subcategory: "Cloud native infrastructure lifecycle";
|
|
3424
|
+
readonly function: "Apply custom cloud native configuration";
|
|
3425
|
+
readonly description: "This permission grants the user the ability to apply custom configuration and customize existing configuration of thier cloud native infrastructure";
|
|
3426
|
+
};
|
|
3427
|
+
/**
|
|
3428
|
+
* This permission grants the user the ability to deploy their infrastructure to a cluster through Meshery. Meshery allows users to visualize, work on and manage various cloud native technologies
|
|
3429
|
+
*/
|
|
3430
|
+
readonly InfrastructureManagementDeployCloudNativeInfrastructure: {
|
|
3431
|
+
readonly id: PermissionKey;
|
|
3432
|
+
readonly category: "Infrastructure Management";
|
|
3433
|
+
readonly subcategory: "Cloud native infrastructure lifecycle";
|
|
3434
|
+
readonly function: "Deploy cloud native infrastructure";
|
|
3435
|
+
readonly description: "This permission grants the user the ability to deploy their infrastructure to a cluster through Meshery. Meshery allows users to visualize, work on and manage various cloud native technologies";
|
|
3436
|
+
};
|
|
3437
|
+
/**
|
|
3438
|
+
* This permission grants the user the ability to undeploy their infrastructure from a cluster through Meshery. Meshery allows users to visualize, work on and manage various cloud native technologies
|
|
3439
|
+
*/
|
|
3440
|
+
readonly InfrastructureManagementUndeployCloudNativeInfrastructure: {
|
|
3441
|
+
readonly id: PermissionKey;
|
|
3442
|
+
readonly category: "Infrastructure Management";
|
|
3443
|
+
readonly subcategory: "Cloud native infrastructure lifecycle";
|
|
3444
|
+
readonly function: "Undeploy cloud native infrastructure";
|
|
3445
|
+
readonly description: "This permission grants the user the ability to undeploy their infrastructure from a cluster through Meshery. Meshery allows users to visualize, work on and manage various cloud native technologies";
|
|
3446
|
+
};
|
|
3447
|
+
/**
|
|
3448
|
+
* This permission grants the user the ability to view all cloud native infrastructure in Meshery. Meshery allows users to visualize, work on and manage various cloud native technologies.
|
|
3449
|
+
*/
|
|
3450
|
+
readonly InfrastructureManagementViewCloudNativeInfrastructure: {
|
|
3451
|
+
readonly id: PermissionKey;
|
|
3452
|
+
readonly category: "Infrastructure Management";
|
|
3453
|
+
readonly subcategory: "Cloud native infrastructure lifecycle";
|
|
3454
|
+
readonly function: "View cloud native infrastructure";
|
|
3455
|
+
readonly description: "This permission grants the user the ability to view all cloud native infrastructure in Meshery. Meshery allows users to visualize, work on and manage various cloud native technologies.";
|
|
3456
|
+
};
|
|
3457
|
+
/**
|
|
3458
|
+
* See all workspaces within an organization
|
|
3459
|
+
*/
|
|
3460
|
+
readonly WorkspaceManagementViewWorkspace: {
|
|
3461
|
+
readonly id: PermissionKey;
|
|
3462
|
+
readonly category: "Workspace Management";
|
|
3463
|
+
readonly subcategory: "Workspace";
|
|
3464
|
+
readonly function: "View Workspace";
|
|
3465
|
+
readonly description: "See all workspaces within an organization";
|
|
3466
|
+
};
|
|
3467
|
+
/**
|
|
3468
|
+
* Dissolve workspace and all team and environment memberships. Leave associated resources intact
|
|
3469
|
+
*/
|
|
3470
|
+
readonly WorkspaceManagementDeleteWorkspace: {
|
|
3471
|
+
readonly id: PermissionKey;
|
|
3472
|
+
readonly category: "Workspace Management";
|
|
3473
|
+
readonly subcategory: "Workspace";
|
|
3474
|
+
readonly function: "Delete Workspace";
|
|
3475
|
+
readonly description: "Dissolve workspace and all team and environment memberships. Leave associated resources intact";
|
|
3476
|
+
};
|
|
3477
|
+
/**
|
|
3478
|
+
* Edit workspace and it's team and environment membership
|
|
3479
|
+
*/
|
|
3480
|
+
readonly WorkspaceManagementEditWorkspace: {
|
|
3481
|
+
readonly id: PermissionKey;
|
|
3482
|
+
readonly category: "Workspace Management";
|
|
3483
|
+
readonly subcategory: "Workspace";
|
|
3484
|
+
readonly function: "Edit Workspace";
|
|
3485
|
+
readonly description: "Edit workspace and it's team and environment membership";
|
|
3486
|
+
};
|
|
3487
|
+
/**
|
|
3488
|
+
* Create new workspace
|
|
3489
|
+
*/
|
|
3490
|
+
readonly WorkspaceManagementCreateWorkspace: {
|
|
3491
|
+
readonly id: PermissionKey;
|
|
3492
|
+
readonly category: "Workspace Management";
|
|
3493
|
+
readonly subcategory: "Workspace";
|
|
3494
|
+
readonly function: "Create Workspace";
|
|
3495
|
+
readonly description: "Create new workspace";
|
|
3496
|
+
};
|
|
3497
|
+
/**
|
|
3498
|
+
* Add new team to workspace
|
|
3499
|
+
*/
|
|
3500
|
+
readonly WorkspaceManagementAssignTeamToWorkspace: {
|
|
3501
|
+
readonly id: PermissionKey;
|
|
3502
|
+
readonly category: "Workspace Management";
|
|
3503
|
+
readonly subcategory: "Workspace";
|
|
3504
|
+
readonly function: "Assign team to workspace";
|
|
3505
|
+
readonly description: "Add new team to workspace";
|
|
3506
|
+
};
|
|
3507
|
+
/**
|
|
3508
|
+
* Remove team from workspace
|
|
3509
|
+
*/
|
|
3510
|
+
readonly WorkspaceManagementRemoveTeamFromWorkspace: {
|
|
3511
|
+
readonly id: PermissionKey;
|
|
3512
|
+
readonly category: "Workspace Management";
|
|
3513
|
+
readonly subcategory: "Workspace";
|
|
3514
|
+
readonly function: "Remove team from workspace";
|
|
3515
|
+
readonly description: "Remove team from workspace";
|
|
3516
|
+
};
|
|
3517
|
+
/**
|
|
3518
|
+
* Add new environment to workspace
|
|
3519
|
+
*/
|
|
3520
|
+
readonly WorkspaceManagementAssignEnvironmentToWorkspace: {
|
|
3521
|
+
readonly id: PermissionKey;
|
|
3522
|
+
readonly category: "Workspace Management";
|
|
3523
|
+
readonly subcategory: "Workspace";
|
|
3524
|
+
readonly function: "Assign environment to workspace";
|
|
3525
|
+
readonly description: "Add new environment to workspace";
|
|
3526
|
+
};
|
|
3527
|
+
/**
|
|
3528
|
+
* Remove environment from workspace
|
|
3529
|
+
*/
|
|
3530
|
+
readonly WorkspaceManagementRemoveEnvironmentFromWorkspace: {
|
|
3531
|
+
readonly id: PermissionKey;
|
|
3532
|
+
readonly category: "Workspace Management";
|
|
3533
|
+
readonly subcategory: "Workspace";
|
|
3534
|
+
readonly function: "Remove environment from workspace";
|
|
3535
|
+
readonly description: "Remove environment from workspace";
|
|
3536
|
+
};
|
|
3537
|
+
/**
|
|
3538
|
+
* Assign designs to workspaces
|
|
3539
|
+
*/
|
|
3540
|
+
readonly WorkspaceManagementAssignDesignsToWorkspaces: {
|
|
3541
|
+
readonly id: PermissionKey;
|
|
3542
|
+
readonly category: "Workspace Management";
|
|
3543
|
+
readonly subcategory: "Workspace";
|
|
3544
|
+
readonly function: "Assign Designs to Workspaces";
|
|
3545
|
+
readonly description: "Assign designs to workspaces";
|
|
3546
|
+
};
|
|
3547
|
+
/**
|
|
3548
|
+
* Remove designs from workspaces
|
|
3549
|
+
*/
|
|
3550
|
+
readonly WorkspaceManagementRemoveDesignsFromWorkspaces: {
|
|
3551
|
+
readonly id: PermissionKey;
|
|
3552
|
+
readonly category: "Workspace Management";
|
|
3553
|
+
readonly subcategory: "Workspace";
|
|
3554
|
+
readonly function: "Remove Designs from Workspaces";
|
|
3555
|
+
readonly description: "Remove designs from workspaces";
|
|
3556
|
+
};
|
|
3557
|
+
/**
|
|
3558
|
+
* No description available
|
|
3559
|
+
*/
|
|
3560
|
+
readonly WorkspaceManagementConnectGithubAccountToWorkspace: {
|
|
3561
|
+
readonly id: PermissionKey;
|
|
3562
|
+
readonly category: "Workspace Management";
|
|
3563
|
+
readonly subcategory: "Workspace";
|
|
3564
|
+
readonly function: "Connect Github Account to Workspace";
|
|
3565
|
+
readonly description: "";
|
|
3566
|
+
};
|
|
3567
|
+
/**
|
|
3568
|
+
* Connect Google Account to Workspace
|
|
3569
|
+
*/
|
|
3570
|
+
readonly WorkspaceManagementConnectGoogleAccountToWorkspace: {
|
|
3571
|
+
readonly id: PermissionKey;
|
|
3572
|
+
readonly category: "Workspace Management";
|
|
3573
|
+
readonly subcategory: "Workspace";
|
|
3574
|
+
readonly function: "Connect Google Account to Workspace";
|
|
3575
|
+
readonly description: "Connect Google Account to Workspace";
|
|
3576
|
+
};
|
|
3577
|
+
/**
|
|
3578
|
+
* View all connections within an environment
|
|
3579
|
+
*/
|
|
3580
|
+
readonly WorkspaceManagementViewConnections: {
|
|
3581
|
+
readonly id: PermissionKey;
|
|
3582
|
+
readonly category: "Workspace Management";
|
|
3583
|
+
readonly subcategory: "Connections";
|
|
3584
|
+
readonly function: "View Connections";
|
|
3585
|
+
readonly description: "View all connections within an environment";
|
|
3586
|
+
};
|
|
3587
|
+
/**
|
|
3588
|
+
* See all environments within an workspace.
|
|
3589
|
+
*/
|
|
3590
|
+
readonly WorkspaceManagementViewEnvironment: {
|
|
3591
|
+
readonly id: PermissionKey;
|
|
3592
|
+
readonly category: "Workspace Management";
|
|
3593
|
+
readonly subcategory: "Environments";
|
|
3594
|
+
readonly function: "View Environment";
|
|
3595
|
+
readonly description: "See all environments within an workspace.";
|
|
3596
|
+
};
|
|
3597
|
+
/**
|
|
3598
|
+
* Create a new environment
|
|
3599
|
+
*/
|
|
3600
|
+
readonly WorkspaceManagementCreateEnvironment: {
|
|
3601
|
+
readonly id: PermissionKey;
|
|
3602
|
+
readonly category: "Workspace Management";
|
|
3603
|
+
readonly subcategory: "Environments";
|
|
3604
|
+
readonly function: "Create Environment";
|
|
3605
|
+
readonly description: "Create a new environment";
|
|
3606
|
+
};
|
|
3607
|
+
/**
|
|
3608
|
+
* Dissolve environment and all connection memberships. Leave associated resources intact.
|
|
3609
|
+
*/
|
|
3610
|
+
readonly WorkspaceManagementDeleteEnvironment: {
|
|
3611
|
+
readonly id: PermissionKey;
|
|
3612
|
+
readonly category: "Workspace Management";
|
|
3613
|
+
readonly subcategory: "Environments";
|
|
3614
|
+
readonly function: "Delete Environment";
|
|
3615
|
+
readonly description: "Dissolve environment and all connection memberships. Leave associated resources intact.";
|
|
3616
|
+
};
|
|
3617
|
+
/**
|
|
3618
|
+
* Edit environment and it connection membership
|
|
3619
|
+
*/
|
|
3620
|
+
readonly WorkspaceManagementEditEnvironment: {
|
|
3621
|
+
readonly id: PermissionKey;
|
|
3622
|
+
readonly category: "Workspace Management";
|
|
3623
|
+
readonly subcategory: "Environments";
|
|
3624
|
+
readonly function: "Edit Environment";
|
|
3625
|
+
readonly description: "Edit environment and it connection membership";
|
|
3626
|
+
};
|
|
3627
|
+
/**
|
|
3628
|
+
* Add new connections to environments
|
|
3629
|
+
*/
|
|
3630
|
+
readonly WorkspaceManagementAssignConnectionsToEnvironment: {
|
|
3631
|
+
readonly id: PermissionKey;
|
|
3632
|
+
readonly category: "Workspace Management";
|
|
3633
|
+
readonly subcategory: "Environments";
|
|
3634
|
+
readonly function: "Assign connections to environment";
|
|
3635
|
+
readonly description: "Add new connections to environments";
|
|
3636
|
+
};
|
|
3637
|
+
/**
|
|
3638
|
+
* Remove connections from environment,
|
|
3639
|
+
*/
|
|
3640
|
+
readonly WorkspaceManagementRemoveConnectionsFromEnvironments: {
|
|
3641
|
+
readonly id: PermissionKey;
|
|
3642
|
+
readonly category: "Workspace Management";
|
|
3643
|
+
readonly subcategory: "Environments";
|
|
3644
|
+
readonly function: "Remove connections from environments";
|
|
3645
|
+
readonly description: "Remove connections from environment, ";
|
|
3646
|
+
};
|
|
3647
|
+
/**
|
|
3648
|
+
* View all of your projects
|
|
3649
|
+
*/
|
|
3650
|
+
readonly WorkspaceManagementViewProjects: {
|
|
3651
|
+
readonly id: PermissionKey;
|
|
3652
|
+
readonly category: "Workspace Management";
|
|
3653
|
+
readonly subcategory: "Projects";
|
|
3654
|
+
readonly function: "View Projects";
|
|
3655
|
+
readonly description: "View all of your projects";
|
|
3656
|
+
};
|
|
3657
|
+
/**
|
|
3658
|
+
* View all items in catalog
|
|
3659
|
+
*/
|
|
3660
|
+
readonly CatalogManagementViewCatalog: {
|
|
3661
|
+
readonly id: PermissionKey;
|
|
3662
|
+
readonly category: "Catalog Management";
|
|
3663
|
+
readonly subcategory: "Catalog";
|
|
3664
|
+
readonly function: "View Catalog";
|
|
3665
|
+
readonly description: "View all items in catalog";
|
|
3666
|
+
};
|
|
3667
|
+
/**
|
|
3668
|
+
* Delete catalog items
|
|
3669
|
+
*/
|
|
3670
|
+
readonly CatalogManagementDeleteCatalogItems: {
|
|
3671
|
+
readonly id: PermissionKey;
|
|
3672
|
+
readonly category: "Catalog Management";
|
|
3673
|
+
readonly subcategory: "Catalog";
|
|
3674
|
+
readonly function: "Delete Catalog Items";
|
|
3675
|
+
readonly description: "Delete catalog items";
|
|
3676
|
+
};
|
|
3677
|
+
/**
|
|
3678
|
+
* Edit catalog items
|
|
3679
|
+
*/
|
|
3680
|
+
readonly CatalogManagementEditCatalogItems: {
|
|
3681
|
+
readonly id: PermissionKey;
|
|
3682
|
+
readonly category: "Catalog Management";
|
|
3683
|
+
readonly subcategory: "Catalog";
|
|
3684
|
+
readonly function: "Edit Catalog Items";
|
|
3685
|
+
readonly description: "Edit catalog items";
|
|
3686
|
+
};
|
|
3687
|
+
/**
|
|
3688
|
+
* Unpublish items from catalog
|
|
3689
|
+
*/
|
|
3690
|
+
readonly CatalogManagementUnpublishCatalogItems: {
|
|
3691
|
+
readonly id: PermissionKey;
|
|
3692
|
+
readonly category: "Catalog Management";
|
|
3693
|
+
readonly subcategory: "Catalog";
|
|
3694
|
+
readonly function: "Unpublish Catalog Items";
|
|
3695
|
+
readonly description: "Unpublish items from catalog";
|
|
3696
|
+
};
|
|
3697
|
+
/**
|
|
3698
|
+
* Set item information or details of a catalog item
|
|
3699
|
+
*/
|
|
3700
|
+
readonly CatalogManagementDetailsOfCatalogItem: {
|
|
3701
|
+
readonly id: PermissionKey;
|
|
3702
|
+
readonly category: "Catalog Management";
|
|
3703
|
+
readonly subcategory: "Catalog";
|
|
3704
|
+
readonly function: "Details of Catalog Item";
|
|
3705
|
+
readonly description: "Set item information or details of a catalog item";
|
|
3706
|
+
};
|
|
3707
|
+
/**
|
|
3708
|
+
* Download a catalog item
|
|
3709
|
+
*/
|
|
3710
|
+
readonly CatalogManagementDownloadCatalogItem: {
|
|
3711
|
+
readonly id: PermissionKey;
|
|
3712
|
+
readonly category: "Catalog Management";
|
|
3713
|
+
readonly subcategory: "Catalog";
|
|
3714
|
+
readonly function: "Download Catalog Item";
|
|
3715
|
+
readonly description: "Download a catalog item";
|
|
3716
|
+
};
|
|
3717
|
+
/**
|
|
3718
|
+
* Clone any item from catalog
|
|
3719
|
+
*/
|
|
3720
|
+
readonly CatalogManagementCloneCatalogItem: {
|
|
3721
|
+
readonly id: PermissionKey;
|
|
3722
|
+
readonly category: "Catalog Management";
|
|
3723
|
+
readonly subcategory: "Catalog";
|
|
3724
|
+
readonly function: "Clone Catalog Item";
|
|
3725
|
+
readonly description: "Clone any item from catalog";
|
|
3726
|
+
};
|
|
3727
|
+
/**
|
|
3728
|
+
* Browse the public catalog of learning paths, challenges, and certifications.
|
|
3729
|
+
*/
|
|
3730
|
+
readonly AcademyViewAcademyContent: {
|
|
3731
|
+
readonly id: PermissionKey;
|
|
3732
|
+
readonly category: "Academy";
|
|
3733
|
+
readonly subcategory: "Curricula";
|
|
3734
|
+
readonly function: "View Academy content";
|
|
3735
|
+
readonly description: "Browse the public catalog of learning paths, challenges, and certifications.";
|
|
3736
|
+
};
|
|
3737
|
+
/**
|
|
3738
|
+
* View and assess the performance of learners and of your organization's academy content.
|
|
3739
|
+
*/
|
|
3740
|
+
readonly AcademyAccessTheAcademyConsole: {
|
|
3741
|
+
readonly id: PermissionKey;
|
|
3742
|
+
readonly category: "Academy";
|
|
3743
|
+
readonly subcategory: "Administration";
|
|
3744
|
+
readonly function: "Access the Academy console";
|
|
3745
|
+
readonly description: "View and assess the performance of learners and of your organization's academy content.";
|
|
3746
|
+
};
|
|
3747
|
+
/**
|
|
3748
|
+
* No description available
|
|
3749
|
+
*/
|
|
3750
|
+
readonly AcademyAComprehensiveGuideToUsingTheInstructorConsoleLearnHowToTrackLearnerProgressAnalyzeTestPerformanceAndManageYourAcademySContentAndMetrics: {
|
|
3751
|
+
readonly id: PermissionKey;
|
|
3752
|
+
readonly category: "Academy";
|
|
3753
|
+
readonly subcategory: "Academy Instructor Console Guide";
|
|
3754
|
+
readonly function: "A comprehensive guide to using the Instructor Console. Learn how to track learner progress, analyze test performance, and manage your academy’s content and metrics.";
|
|
3755
|
+
readonly description: "";
|
|
3756
|
+
};
|
|
3757
|
+
/**
|
|
3758
|
+
* View all learning paths
|
|
3759
|
+
*/
|
|
3760
|
+
readonly LearningPathManagementViewLearningPaths: {
|
|
3761
|
+
readonly id: PermissionKey;
|
|
3762
|
+
readonly category: "Learning Path Management";
|
|
3763
|
+
readonly subcategory: "Learning Path";
|
|
3764
|
+
readonly function: "View Learning Paths";
|
|
3765
|
+
readonly description: "View all learning paths";
|
|
3766
|
+
};
|
|
3767
|
+
/**
|
|
3768
|
+
* View all challenges
|
|
3769
|
+
*/
|
|
3770
|
+
readonly AcademyViewChallenges: {
|
|
3771
|
+
readonly id: PermissionKey;
|
|
3772
|
+
readonly category: "Academy";
|
|
3773
|
+
readonly subcategory: "Challenges";
|
|
3774
|
+
readonly function: "View Challenges";
|
|
3775
|
+
readonly description: "View all challenges";
|
|
3776
|
+
};
|
|
3777
|
+
/**
|
|
3778
|
+
* No description available
|
|
3779
|
+
*/
|
|
3780
|
+
readonly AcademyCreateCertifications: {
|
|
3781
|
+
readonly id: PermissionKey;
|
|
3782
|
+
readonly category: "Academy";
|
|
3783
|
+
readonly subcategory: "Certification";
|
|
3784
|
+
readonly function: "Create Certifications";
|
|
3785
|
+
readonly description: "";
|
|
3786
|
+
};
|
|
3787
|
+
/**
|
|
3788
|
+
* Cloud uses webhooks to automate approval flows and email notifications. This guide will help you customize and add your own custom webhooks.
|
|
3789
|
+
*/
|
|
3790
|
+
readonly SupportAndDeploymentWebhooks: {
|
|
3791
|
+
readonly id: PermissionKey;
|
|
3792
|
+
readonly category: "Support and Deployment";
|
|
3793
|
+
readonly subcategory: "Enterprise API";
|
|
3794
|
+
readonly function: "Webhooks";
|
|
3795
|
+
readonly description: "Cloud uses webhooks to automate approval flows and email notifications. This guide will help you customize and add your own custom webhooks.";
|
|
3796
|
+
};
|
|
3797
|
+
/**
|
|
3798
|
+
* Provides a powerful and flexible way to interact with the platform, enabling automation, integration, and customization to optimize your cloud native development and management processes.
|
|
3799
|
+
*/
|
|
3800
|
+
readonly SupportAndDeploymentRestApiUserDocumentation: {
|
|
3801
|
+
readonly id: PermissionKey;
|
|
3802
|
+
readonly category: "Support and Deployment";
|
|
3803
|
+
readonly subcategory: "Cloud API";
|
|
3804
|
+
readonly function: "REST API User documentation";
|
|
3805
|
+
readonly description: "Provides a powerful and flexible way to interact with the platform, enabling automation, integration, and customization to optimize your cloud native development and management processes.";
|
|
3806
|
+
};
|
|
3807
|
+
/**
|
|
3808
|
+
* Provides a powerful and flexible way to interact with the platform, enabling automation, integration, and customization to optimize your cloud native development and management processes.
|
|
3809
|
+
*/
|
|
3810
|
+
readonly SupportAndDeploymentRestApiReference: {
|
|
3811
|
+
readonly id: PermissionKey;
|
|
3812
|
+
readonly category: "Support and Deployment";
|
|
3813
|
+
readonly subcategory: "Cloud API";
|
|
3814
|
+
readonly function: "REST API Reference";
|
|
3815
|
+
readonly description: "Provides a powerful and flexible way to interact with the platform, enabling automation, integration, and customization to optimize your cloud native development and management processes.";
|
|
3816
|
+
};
|
|
3817
|
+
/**
|
|
3818
|
+
* Customize the appearance and branding of your engineering platform powered by Cloud.
|
|
3819
|
+
*/
|
|
3820
|
+
readonly SupportAndDeploymentWhiteLabel: {
|
|
3821
|
+
readonly id: PermissionKey;
|
|
3822
|
+
readonly category: "Support and Deployment";
|
|
3823
|
+
readonly subcategory: "White Label";
|
|
3824
|
+
readonly function: "White Label";
|
|
3825
|
+
readonly description: "Customize the appearance and branding of your engineering platform powered by Cloud.";
|
|
3826
|
+
};
|
|
3827
|
+
/**
|
|
3828
|
+
* Get help with most of your Meshery questions and issues in our Community Forum.
|
|
3829
|
+
*/
|
|
3830
|
+
readonly SupportAndDeploymentCommunitySupport: {
|
|
3831
|
+
readonly id: PermissionKey;
|
|
3832
|
+
readonly category: "Support and Deployment";
|
|
3833
|
+
readonly subcategory: "Community Support";
|
|
3834
|
+
readonly function: "Community Support";
|
|
3835
|
+
readonly description: "Get help with most of your Meshery questions and issues in our Community Forum.";
|
|
3836
|
+
};
|
|
3837
|
+
/**
|
|
3838
|
+
* Support can help you troubleshoot issues you run into while using Meshery. Get support via the web.
|
|
3839
|
+
*/
|
|
3840
|
+
readonly SupportAndDeploymentStandardSupport: {
|
|
3841
|
+
readonly id: PermissionKey;
|
|
3842
|
+
readonly category: "Support and Deployment";
|
|
3843
|
+
readonly subcategory: "Standard Support";
|
|
3844
|
+
readonly function: "Standard Support";
|
|
3845
|
+
readonly description: "Support can help you troubleshoot issues you run into while using Meshery. Get support via the web.";
|
|
3846
|
+
};
|
|
3847
|
+
/**
|
|
3848
|
+
* With Premium, get a 30-minute SLA and 24/7 web and phone support. With Premium Plus, get everything in Premium plus your own Support Account Manager and more.
|
|
3849
|
+
*/
|
|
3850
|
+
readonly SupportAndDeploymentPremiumAndPremiumPlusSupport: {
|
|
3851
|
+
readonly id: PermissionKey;
|
|
3852
|
+
readonly category: "Support and Deployment";
|
|
3853
|
+
readonly subcategory: "Premium and Premium Plus Support";
|
|
3854
|
+
readonly function: "Premium and Premium Plus Support";
|
|
3855
|
+
readonly description: "With Premium, get a 30-minute SLA and 24/7 web and phone support. With Premium Plus, get everything in Premium plus your own Support Account Manager and more.";
|
|
3856
|
+
};
|
|
3857
|
+
/**
|
|
3858
|
+
* Self-hosted Cloud for on-prem appliances or self-managed cloud tenants. Keep your designs internal to your workplace. Get remote support when you need it.
|
|
3859
|
+
*/
|
|
3860
|
+
readonly SupportAndDeploymentSelfHostedDeployment: {
|
|
3861
|
+
readonly id: PermissionKey;
|
|
3862
|
+
readonly category: "Support and Deployment";
|
|
3863
|
+
readonly subcategory: "Self-hosted Deployment";
|
|
3864
|
+
readonly function: "Self-hosted Deployment";
|
|
3865
|
+
readonly description: "Self-hosted Cloud for on-prem appliances or self-managed cloud tenants. Keep your designs internal to your workplace. Get remote support when you need it.";
|
|
3866
|
+
};
|
|
3867
|
+
/**
|
|
3868
|
+
* Support can help you troubleshoot issues you run into while using Meshery. Get support via phone.
|
|
3869
|
+
*/
|
|
3870
|
+
readonly SupportAndDeploymentPhoneSupport: {
|
|
3871
|
+
readonly id: PermissionKey;
|
|
3872
|
+
readonly category: "Support and Deployment";
|
|
3873
|
+
readonly subcategory: "Phone Support";
|
|
3874
|
+
readonly function: "Phone Support";
|
|
3875
|
+
readonly description: "Support can help you troubleshoot issues you run into while using Meshery. Get support via phone.";
|
|
3876
|
+
};
|
|
3877
|
+
/**
|
|
3878
|
+
* No description available
|
|
3879
|
+
*/
|
|
3880
|
+
readonly SupportAndDeploymentPayBillsViaInvoiceRatherThanUsingYourCreditCard: {
|
|
3881
|
+
readonly id: PermissionKey;
|
|
3882
|
+
readonly category: "Support and Deployment";
|
|
3883
|
+
readonly subcategory: "Invoice Billing";
|
|
3884
|
+
readonly function: "Pay bills via invoice, rather than using your credit card.";
|
|
3885
|
+
readonly description: "";
|
|
3886
|
+
};
|
|
3887
|
+
/**
|
|
3888
|
+
* No description available
|
|
3889
|
+
*/
|
|
3890
|
+
readonly TrafficManagementFacilitateANetworkTapOfAnyRequestTraffic: {
|
|
3891
|
+
readonly id: PermissionKey;
|
|
3892
|
+
readonly category: "Traffic Management";
|
|
3893
|
+
readonly subcategory: "Traffic Capture";
|
|
3894
|
+
readonly function: "Facilitate a network tap of any request traffic.";
|
|
3895
|
+
readonly description: "";
|
|
3896
|
+
};
|
|
3897
|
+
/**
|
|
3898
|
+
* No description available
|
|
3899
|
+
*/
|
|
3900
|
+
readonly TrafficManagementVisualDefinitionsOfTrafficRules: {
|
|
3901
|
+
readonly id: PermissionKey;
|
|
3902
|
+
readonly category: "Traffic Management";
|
|
3903
|
+
readonly subcategory: "Traffic Configuration";
|
|
3904
|
+
readonly function: "Visual definitions of traffic rules";
|
|
3905
|
+
readonly description: "";
|
|
3906
|
+
};
|
|
3907
|
+
/**
|
|
3908
|
+
* No description available
|
|
3909
|
+
*/
|
|
3910
|
+
readonly TrafficManagementDynamicLoadUnloadOfWasmFilters: {
|
|
3911
|
+
readonly id: PermissionKey;
|
|
3912
|
+
readonly category: "Traffic Management";
|
|
3913
|
+
readonly subcategory: "Traffic Filters";
|
|
3914
|
+
readonly function: "Dynamic load / unload of wasm filters";
|
|
3915
|
+
readonly description: "";
|
|
3916
|
+
};
|
|
3917
|
+
/**
|
|
3918
|
+
* No description available
|
|
3919
|
+
*/
|
|
3920
|
+
readonly TrafficManagementConfigurationOfWasmFilters: {
|
|
3921
|
+
readonly id: PermissionKey;
|
|
3922
|
+
readonly category: "Traffic Management";
|
|
3923
|
+
readonly subcategory: "Traffic Filters";
|
|
3924
|
+
readonly function: "Configuration of wasm filters";
|
|
3925
|
+
readonly description: "";
|
|
3926
|
+
};
|
|
3927
|
+
/**
|
|
3928
|
+
* No description available
|
|
3929
|
+
*/
|
|
3930
|
+
readonly TrafficManagementViaWasmFilter: {
|
|
3931
|
+
readonly id: PermissionKey;
|
|
3932
|
+
readonly category: "Traffic Management";
|
|
3933
|
+
readonly subcategory: "Feature flagging";
|
|
3934
|
+
readonly function: "via wasm filter";
|
|
3935
|
+
readonly description: "";
|
|
3936
|
+
};
|
|
3937
|
+
/**
|
|
3938
|
+
* No description available
|
|
3939
|
+
*/
|
|
3940
|
+
readonly TrafficManagementFlaggerIntegration: {
|
|
3941
|
+
readonly id: PermissionKey;
|
|
3942
|
+
readonly category: "Traffic Management";
|
|
3943
|
+
readonly subcategory: "Canary Rollout";
|
|
3944
|
+
readonly function: "Flagger integration";
|
|
3945
|
+
readonly description: "";
|
|
3946
|
+
};
|
|
3947
|
+
/**
|
|
3948
|
+
* No description available
|
|
3949
|
+
*/
|
|
3950
|
+
readonly TrafficManagementArgoIntegration: {
|
|
3951
|
+
readonly id: PermissionKey;
|
|
3952
|
+
readonly category: "Traffic Management";
|
|
3953
|
+
readonly subcategory: "Canary Rollout";
|
|
3954
|
+
readonly function: "Argo integration";
|
|
3955
|
+
readonly description: "";
|
|
3956
|
+
};
|
|
3957
|
+
/**
|
|
3958
|
+
* No description available
|
|
3959
|
+
*/
|
|
3960
|
+
readonly ApplicationManagementGolangNativeExponentialBackoff: {
|
|
3961
|
+
readonly id: PermissionKey;
|
|
3962
|
+
readonly category: "Application Management";
|
|
3963
|
+
readonly subcategory: "Client Library Migration";
|
|
3964
|
+
readonly function: "Golang (native exponential backoff)";
|
|
3965
|
+
readonly description: "";
|
|
3966
|
+
};
|
|
3967
|
+
/**
|
|
3968
|
+
* No description available
|
|
3969
|
+
*/
|
|
3970
|
+
readonly ApplicationManagementGokit: {
|
|
3971
|
+
readonly id: PermissionKey;
|
|
3972
|
+
readonly category: "Application Management";
|
|
3973
|
+
readonly subcategory: "Client Library Migration";
|
|
3974
|
+
readonly function: "GoKit";
|
|
3975
|
+
readonly description: "";
|
|
3976
|
+
};
|
|
3977
|
+
/**
|
|
3978
|
+
* No description available
|
|
3979
|
+
*/
|
|
3980
|
+
readonly ApplicationManagementSpringBoot: {
|
|
3981
|
+
readonly id: PermissionKey;
|
|
3982
|
+
readonly category: "Application Management";
|
|
3983
|
+
readonly subcategory: "Client Library Migration";
|
|
3984
|
+
readonly function: "Spring Boot";
|
|
3985
|
+
readonly description: "";
|
|
3986
|
+
};
|
|
3987
|
+
/**
|
|
3988
|
+
* No description available
|
|
3989
|
+
*/
|
|
3990
|
+
readonly ApplicationManagementHystrix: {
|
|
3991
|
+
readonly id: PermissionKey;
|
|
3992
|
+
readonly category: "Application Management";
|
|
3993
|
+
readonly subcategory: "Client Library Migration";
|
|
3994
|
+
readonly function: "Hystrix";
|
|
3995
|
+
readonly description: "";
|
|
3996
|
+
};
|
|
3997
|
+
/**
|
|
3998
|
+
* Open list of best practices for Istio
|
|
3999
|
+
*/
|
|
4000
|
+
readonly ConfigurationManagementOpenListOfBestPracticesForIstio: {
|
|
4001
|
+
readonly id: PermissionKey;
|
|
4002
|
+
readonly category: "Configuration Management";
|
|
4003
|
+
readonly subcategory: "Best Practices Analyzer";
|
|
4004
|
+
readonly function: "Open list of best practices for Istio";
|
|
4005
|
+
readonly description: "Open list of best practices for Istio";
|
|
4006
|
+
};
|
|
4007
|
+
/**
|
|
4008
|
+
* Proprietary list of best practices for Istio
|
|
4009
|
+
*/
|
|
4010
|
+
readonly ConfigurationManagementProprietaryListOfBestPracticesForIstio: {
|
|
4011
|
+
readonly id: PermissionKey;
|
|
4012
|
+
readonly category: "Configuration Management";
|
|
4013
|
+
readonly subcategory: "Best Practices Analyzer";
|
|
4014
|
+
readonly function: "Proprietary list of best practices for Istio";
|
|
4015
|
+
readonly description: "Proprietary list of best practices for Istio";
|
|
4016
|
+
};
|
|
4017
|
+
/**
|
|
4018
|
+
* VirtualService
|
|
4019
|
+
*/
|
|
4020
|
+
readonly ConfigurationManagementVirtualservice: {
|
|
4021
|
+
readonly id: PermissionKey;
|
|
4022
|
+
readonly category: "Configuration Management";
|
|
4023
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4024
|
+
readonly function: "VirtualService";
|
|
4025
|
+
readonly description: "VirtualService";
|
|
4026
|
+
};
|
|
4027
|
+
/**
|
|
4028
|
+
* DestinationRule
|
|
4029
|
+
*/
|
|
4030
|
+
readonly ConfigurationManagementDestinationrule: {
|
|
4031
|
+
readonly id: PermissionKey;
|
|
4032
|
+
readonly category: "Configuration Management";
|
|
4033
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4034
|
+
readonly function: "DestinationRule";
|
|
4035
|
+
readonly description: "DestinationRule";
|
|
4036
|
+
};
|
|
4037
|
+
/**
|
|
4038
|
+
* mTLS (PeerAuthentication)
|
|
4039
|
+
*/
|
|
4040
|
+
readonly ConfigurationManagementMtlsPeerauthentication: {
|
|
4041
|
+
readonly id: PermissionKey;
|
|
4042
|
+
readonly category: "Configuration Management";
|
|
4043
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4044
|
+
readonly function: "mTLS (PeerAuthentication)";
|
|
4045
|
+
readonly description: "mTLS (PeerAuthentication)";
|
|
4046
|
+
};
|
|
4047
|
+
/**
|
|
4048
|
+
* Automatic Sidecar Injection on a Namespace
|
|
4049
|
+
*/
|
|
4050
|
+
readonly ConfigurationManagementAutomaticSidecarInjectionOnANamespace: {
|
|
4051
|
+
readonly id: PermissionKey;
|
|
4052
|
+
readonly category: "Configuration Management";
|
|
4053
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4054
|
+
readonly function: "Automatic Sidecar Injection on a Namespace";
|
|
4055
|
+
readonly description: "Automatic Sidecar Injection on a Namespace";
|
|
4056
|
+
};
|
|
4057
|
+
/**
|
|
4058
|
+
* Sidecars
|
|
4059
|
+
*/
|
|
4060
|
+
readonly ConfigurationManagementSidecars: {
|
|
4061
|
+
readonly id: PermissionKey;
|
|
4062
|
+
readonly category: "Configuration Management";
|
|
4063
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4064
|
+
readonly function: "Sidecars";
|
|
4065
|
+
readonly description: "Sidecars";
|
|
4066
|
+
};
|
|
4067
|
+
/**
|
|
4068
|
+
* AuthorizationPolicy
|
|
4069
|
+
*/
|
|
4070
|
+
readonly ConfigurationManagementAuthorizationpolicy: {
|
|
4071
|
+
readonly id: PermissionKey;
|
|
4072
|
+
readonly category: "Configuration Management";
|
|
4073
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4074
|
+
readonly function: "AuthorizationPolicy";
|
|
4075
|
+
readonly description: "AuthorizationPolicy";
|
|
4076
|
+
};
|
|
4077
|
+
/**
|
|
4078
|
+
* EnvoyFilters
|
|
4079
|
+
*/
|
|
4080
|
+
readonly ConfigurationManagementEnvoyfilters: {
|
|
4081
|
+
readonly id: PermissionKey;
|
|
4082
|
+
readonly category: "Configuration Management";
|
|
4083
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4084
|
+
readonly function: "EnvoyFilters";
|
|
4085
|
+
readonly description: "EnvoyFilters";
|
|
4086
|
+
};
|
|
4087
|
+
/**
|
|
4088
|
+
* PeerAuthentication
|
|
4089
|
+
*/
|
|
4090
|
+
readonly ConfigurationManagementPeerauthentication: {
|
|
4091
|
+
readonly id: PermissionKey;
|
|
4092
|
+
readonly category: "Configuration Management";
|
|
4093
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4094
|
+
readonly function: "PeerAuthentication";
|
|
4095
|
+
readonly description: "PeerAuthentication";
|
|
4096
|
+
};
|
|
4097
|
+
/**
|
|
4098
|
+
* Istio Operator
|
|
4099
|
+
*/
|
|
4100
|
+
readonly ConfigurationManagementIstioOperator: {
|
|
4101
|
+
readonly id: PermissionKey;
|
|
4102
|
+
readonly category: "Configuration Management";
|
|
4103
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4104
|
+
readonly function: "Istio Operator";
|
|
4105
|
+
readonly description: "Istio Operator";
|
|
4106
|
+
};
|
|
4107
|
+
/**
|
|
4108
|
+
* Ingress Gateway (Gateways)
|
|
4109
|
+
*/
|
|
4110
|
+
readonly ConfigurationManagementIngressGatewayGateways: {
|
|
4111
|
+
readonly id: PermissionKey;
|
|
4112
|
+
readonly category: "Configuration Management";
|
|
4113
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4114
|
+
readonly function: "Ingress Gateway (Gateways)";
|
|
4115
|
+
readonly description: "Ingress Gateway (Gateways)";
|
|
4116
|
+
};
|
|
4117
|
+
/**
|
|
4118
|
+
* Egress Gateway (Gateways)
|
|
4119
|
+
*/
|
|
4120
|
+
readonly ConfigurationManagementEgressGatewayGateways: {
|
|
4121
|
+
readonly id: PermissionKey;
|
|
4122
|
+
readonly category: "Configuration Management";
|
|
4123
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4124
|
+
readonly function: "Egress Gateway (Gateways)";
|
|
4125
|
+
readonly description: "Egress Gateway (Gateways)";
|
|
4126
|
+
};
|
|
4127
|
+
/**
|
|
4128
|
+
* Add-on: Prometheus
|
|
4129
|
+
*/
|
|
4130
|
+
readonly ConfigurationManagementAddOnPrometheus: {
|
|
4131
|
+
readonly id: PermissionKey;
|
|
4132
|
+
readonly category: "Configuration Management";
|
|
4133
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4134
|
+
readonly function: "Add-on: Prometheus";
|
|
4135
|
+
readonly description: "Add-on: Prometheus";
|
|
4136
|
+
};
|
|
4137
|
+
/**
|
|
4138
|
+
* Add-on: Kiali
|
|
4139
|
+
*/
|
|
4140
|
+
readonly ConfigurationManagementAddOnKiali: {
|
|
4141
|
+
readonly id: PermissionKey;
|
|
4142
|
+
readonly category: "Configuration Management";
|
|
4143
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4144
|
+
readonly function: "Add-on: Kiali";
|
|
4145
|
+
readonly description: "Add-on: Kiali";
|
|
4146
|
+
};
|
|
4147
|
+
/**
|
|
4148
|
+
* Add-on: Grafana
|
|
4149
|
+
*/
|
|
4150
|
+
readonly ConfigurationManagementAddOnGrafana: {
|
|
4151
|
+
readonly id: PermissionKey;
|
|
4152
|
+
readonly category: "Configuration Management";
|
|
4153
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4154
|
+
readonly function: "Add-on: Grafana";
|
|
4155
|
+
readonly description: "Add-on: Grafana";
|
|
4156
|
+
};
|
|
4157
|
+
/**
|
|
4158
|
+
* Add-on: Zipkin
|
|
4159
|
+
*/
|
|
4160
|
+
readonly ConfigurationManagementAddOnZipkin: {
|
|
4161
|
+
readonly id: PermissionKey;
|
|
4162
|
+
readonly category: "Configuration Management";
|
|
4163
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4164
|
+
readonly function: "Add-on: Zipkin";
|
|
4165
|
+
readonly description: "Add-on: Zipkin";
|
|
4166
|
+
};
|
|
4167
|
+
/**
|
|
4168
|
+
* Add-on: Jaeger
|
|
4169
|
+
*/
|
|
4170
|
+
readonly ConfigurationManagementAddOnJaeger: {
|
|
4171
|
+
readonly id: PermissionKey;
|
|
4172
|
+
readonly category: "Configuration Management";
|
|
4173
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4174
|
+
readonly function: "Add-on: Jaeger";
|
|
4175
|
+
readonly description: "Add-on: Jaeger";
|
|
4176
|
+
};
|
|
4177
|
+
/**
|
|
4178
|
+
* Custom Configuration
|
|
4179
|
+
*/
|
|
4180
|
+
readonly ConfigurationManagementCustomConfiguration: {
|
|
4181
|
+
readonly id: PermissionKey;
|
|
4182
|
+
readonly category: "Configuration Management";
|
|
4183
|
+
readonly subcategory: "Pattern Support: Istio";
|
|
4184
|
+
readonly function: "Custom Configuration";
|
|
4185
|
+
readonly description: "Custom Configuration";
|
|
4186
|
+
};
|
|
4187
|
+
/**
|
|
4188
|
+
* Ingress
|
|
4189
|
+
*/
|
|
4190
|
+
readonly ConfigurationManagementIngress: {
|
|
4191
|
+
readonly id: PermissionKey;
|
|
4192
|
+
readonly category: "Configuration Management";
|
|
4193
|
+
readonly subcategory: "Pattern Support: Kubernetes";
|
|
4194
|
+
readonly function: "Ingress";
|
|
4195
|
+
readonly description: "Ingress";
|
|
4196
|
+
};
|
|
4197
|
+
/**
|
|
4198
|
+
* Canary Rollout
|
|
4199
|
+
*/
|
|
4200
|
+
readonly ConfigurationManagementCanaryRollout: {
|
|
4201
|
+
readonly id: PermissionKey;
|
|
4202
|
+
readonly category: "Configuration Management";
|
|
4203
|
+
readonly subcategory: "Multi-Mesh";
|
|
4204
|
+
readonly function: "Canary Rollout";
|
|
4205
|
+
readonly description: "Canary Rollout";
|
|
4206
|
+
};
|
|
4207
|
+
/**
|
|
4208
|
+
* No description available
|
|
4209
|
+
*/
|
|
4210
|
+
readonly WorkflowManagementSingleAndMultipleApprovers: {
|
|
4211
|
+
readonly id: PermissionKey;
|
|
4212
|
+
readonly category: "Workflow Management";
|
|
4213
|
+
readonly subcategory: "Change Management";
|
|
4214
|
+
readonly function: "Single and multiple approvers";
|
|
4215
|
+
readonly description: "";
|
|
4216
|
+
};
|
|
4217
|
+
/**
|
|
4218
|
+
* No description available
|
|
4219
|
+
*/
|
|
4220
|
+
readonly BusinessPerformanceShoppingCartBasedRealTimeDiscount: {
|
|
4221
|
+
readonly id: PermissionKey;
|
|
4222
|
+
readonly category: "Business Performance";
|
|
4223
|
+
readonly subcategory: "In-Product Insight";
|
|
4224
|
+
readonly function: "Shopping cart-based; real-time discount";
|
|
4225
|
+
readonly description: "";
|
|
4226
|
+
};
|
|
4227
|
+
/**
|
|
4228
|
+
* Subscription plan management. Transformation of workflow pricing model.
|
|
4229
|
+
*/
|
|
4230
|
+
readonly BusinessPerformanceServerlessPricing: {
|
|
4231
|
+
readonly id: PermissionKey;
|
|
4232
|
+
readonly category: "Business Performance";
|
|
4233
|
+
readonly subcategory: "Serverless Pricing";
|
|
4234
|
+
readonly function: "Serverless Pricing";
|
|
4235
|
+
readonly description: "Subscription plan management. Transformation of workflow pricing model.";
|
|
4236
|
+
};
|
|
4237
|
+
/**
|
|
4238
|
+
* No description available
|
|
4239
|
+
*/
|
|
4240
|
+
readonly DigitalExperienceManagementFullstoryLikeCapabilities: {
|
|
4241
|
+
readonly id: PermissionKey;
|
|
4242
|
+
readonly category: "Digital Experience Management";
|
|
4243
|
+
readonly subcategory: "";
|
|
4244
|
+
readonly function: "FullStory-like capabilities";
|
|
4245
|
+
readonly description: "";
|
|
4246
|
+
};
|
|
4247
|
+
/**
|
|
4248
|
+
* No description available
|
|
4249
|
+
*/
|
|
4250
|
+
readonly DigitalExperienceManagementLikePendoTellingUsersWhatTheyAreMissingHowToUseTheProduct: {
|
|
4251
|
+
readonly id: PermissionKey;
|
|
4252
|
+
readonly category: "Digital Experience Management";
|
|
4253
|
+
readonly subcategory: "In-product insight";
|
|
4254
|
+
readonly function: "Like Pendo; telling users what they are missing; how to use the product.";
|
|
4255
|
+
readonly description: "";
|
|
4256
|
+
};
|
|
4257
|
+
/**
|
|
4258
|
+
* No description available
|
|
4259
|
+
*/
|
|
4260
|
+
readonly DigitalExperienceManagementSimple: {
|
|
4261
|
+
readonly id: PermissionKey;
|
|
4262
|
+
readonly category: "Digital Experience Management";
|
|
4263
|
+
readonly subcategory: "Synthetics";
|
|
4264
|
+
readonly function: "Simple";
|
|
4265
|
+
readonly description: "";
|
|
4266
|
+
};
|
|
4267
|
+
/**
|
|
4268
|
+
* No description available
|
|
4269
|
+
*/
|
|
4270
|
+
readonly DigitalExperienceManagementAdvanced: {
|
|
4271
|
+
readonly id: PermissionKey;
|
|
4272
|
+
readonly category: "Digital Experience Management";
|
|
4273
|
+
readonly subcategory: "Synthetics";
|
|
4274
|
+
readonly function: "Advanced";
|
|
4275
|
+
readonly description: "";
|
|
4276
|
+
};
|
|
4277
|
+
/**
|
|
4278
|
+
* Capture and share visual snapshots of your work with ease using our Screenshots feature.
|
|
4279
|
+
*/
|
|
4280
|
+
readonly DigitalExperienceManagementScreenshots: {
|
|
4281
|
+
readonly id: PermissionKey;
|
|
4282
|
+
readonly category: "Digital Experience Management";
|
|
4283
|
+
readonly subcategory: "Screenshots";
|
|
4284
|
+
readonly function: "Screenshots";
|
|
4285
|
+
readonly description: "Capture and share visual snapshots of your work with ease using our Screenshots feature.";
|
|
4286
|
+
};
|
|
4287
|
+
/**
|
|
4288
|
+
* No description available
|
|
4289
|
+
*/
|
|
4290
|
+
readonly IncidentManagementEventsReportingOfAsynchronousEvents: {
|
|
4291
|
+
readonly id: PermissionKey;
|
|
4292
|
+
readonly category: "Incident Management";
|
|
4293
|
+
readonly subcategory: "Notification Center";
|
|
4294
|
+
readonly function: "Events: Reporting of asynchronous events.";
|
|
4295
|
+
readonly description: "";
|
|
4296
|
+
};
|
|
4297
|
+
/**
|
|
4298
|
+
* Detailed accounting of user activity. Historical record or each action taken.
|
|
4299
|
+
*/
|
|
4300
|
+
readonly IncidentManagementAuditTrail: {
|
|
4301
|
+
readonly id: PermissionKey;
|
|
4302
|
+
readonly category: "Incident Management";
|
|
4303
|
+
readonly subcategory: "Audit Trail";
|
|
4304
|
+
readonly function: "Audit Trail";
|
|
4305
|
+
readonly description: "Detailed accounting of user activity. Historical record or each action taken.";
|
|
4306
|
+
};
|
|
4307
|
+
/**
|
|
4308
|
+
* Dismiss individual; Dismiss bulk.
|
|
4309
|
+
*/
|
|
4310
|
+
readonly IncidentManagementAlertGeneration: {
|
|
4311
|
+
readonly id: PermissionKey;
|
|
4312
|
+
readonly category: "Incident Management";
|
|
4313
|
+
readonly subcategory: "Alert Generation";
|
|
4314
|
+
readonly function: "Alert Generation";
|
|
4315
|
+
readonly description: "Dismiss individual; Dismiss bulk.";
|
|
4316
|
+
};
|
|
4317
|
+
/**
|
|
4318
|
+
* No description available
|
|
4319
|
+
*/
|
|
4320
|
+
readonly IncidentManagementPolicyBased: {
|
|
4321
|
+
readonly id: PermissionKey;
|
|
4322
|
+
readonly category: "Incident Management";
|
|
4323
|
+
readonly subcategory: "Alert Generation";
|
|
4324
|
+
readonly function: "Policy-based";
|
|
4325
|
+
readonly description: "";
|
|
4326
|
+
};
|
|
4327
|
+
/**
|
|
4328
|
+
* Threaded Slack Notifications
|
|
4329
|
+
*/
|
|
4330
|
+
readonly IncidentManagementSlackNotifications: {
|
|
4331
|
+
readonly id: PermissionKey;
|
|
4332
|
+
readonly category: "Incident Management";
|
|
4333
|
+
readonly subcategory: "Alert Generation";
|
|
4334
|
+
readonly function: "Slack Notifications";
|
|
4335
|
+
readonly description: "Threaded Slack Notifications";
|
|
4336
|
+
};
|
|
4337
|
+
/**
|
|
4338
|
+
* No description available
|
|
4339
|
+
*/
|
|
4340
|
+
readonly IncidentManagementMesheryCloudNative: {
|
|
4341
|
+
readonly id: PermissionKey;
|
|
4342
|
+
readonly category: "Incident Management";
|
|
4343
|
+
readonly subcategory: "Calendaring";
|
|
4344
|
+
readonly function: "Meshery Cloud Native";
|
|
4345
|
+
readonly description: "";
|
|
4346
|
+
};
|
|
4347
|
+
/**
|
|
4348
|
+
* No description available
|
|
4349
|
+
*/
|
|
4350
|
+
readonly IncidentManagementIntegrationWGsuite: {
|
|
4351
|
+
readonly id: PermissionKey;
|
|
4352
|
+
readonly category: "Incident Management";
|
|
4353
|
+
readonly subcategory: "Calendaring";
|
|
4354
|
+
readonly function: "Integration w/GSuite";
|
|
4355
|
+
readonly description: "";
|
|
4356
|
+
};
|
|
4357
|
+
/**
|
|
4358
|
+
* No description available
|
|
4359
|
+
*/
|
|
4360
|
+
readonly IncidentManagementIntegrationWMicrosoftOutlook: {
|
|
4361
|
+
readonly id: PermissionKey;
|
|
4362
|
+
readonly category: "Incident Management";
|
|
4363
|
+
readonly subcategory: "Calendaring";
|
|
4364
|
+
readonly function: "Integration w/Microsoft Outlook";
|
|
4365
|
+
readonly description: "";
|
|
4366
|
+
};
|
|
4367
|
+
/**
|
|
4368
|
+
* No description available
|
|
4369
|
+
*/
|
|
4370
|
+
readonly IncidentManagementDatadog: {
|
|
4371
|
+
readonly id: PermissionKey;
|
|
4372
|
+
readonly category: "Incident Management";
|
|
4373
|
+
readonly subcategory: "Alert Integration";
|
|
4374
|
+
readonly function: "DataDog";
|
|
4375
|
+
readonly description: "";
|
|
4376
|
+
};
|
|
4377
|
+
/**
|
|
4378
|
+
* No description available
|
|
4379
|
+
*/
|
|
4380
|
+
readonly IncidentManagementEventRecording: {
|
|
4381
|
+
readonly id: PermissionKey;
|
|
4382
|
+
readonly category: "Incident Management";
|
|
4383
|
+
readonly subcategory: "Traffic Capture";
|
|
4384
|
+
readonly function: "Event recording";
|
|
4385
|
+
readonly description: "";
|
|
4386
|
+
};
|
|
4387
|
+
/**
|
|
4388
|
+
* No description available
|
|
4389
|
+
*/
|
|
4390
|
+
readonly IncidentManagementEventReplay: {
|
|
4391
|
+
readonly id: PermissionKey;
|
|
4392
|
+
readonly category: "Incident Management";
|
|
4393
|
+
readonly subcategory: "Traffic Replay";
|
|
4394
|
+
readonly function: "Event replay";
|
|
4395
|
+
readonly description: "";
|
|
4396
|
+
};
|
|
4397
|
+
/**
|
|
4398
|
+
* Visual event replay in Kanvas
|
|
4399
|
+
*/
|
|
4400
|
+
readonly IncidentManagementTrafficReplay: {
|
|
4401
|
+
readonly id: PermissionKey;
|
|
4402
|
+
readonly category: "Incident Management";
|
|
4403
|
+
readonly subcategory: "Traffic Replay";
|
|
4404
|
+
readonly function: "Traffic Replay";
|
|
4405
|
+
readonly description: "Visual event replay in Kanvas";
|
|
4406
|
+
};
|
|
4407
|
+
/**
|
|
4408
|
+
* No description available
|
|
4409
|
+
*/
|
|
4410
|
+
readonly IncidentManagementComponentLogging: {
|
|
4411
|
+
readonly id: PermissionKey;
|
|
4412
|
+
readonly category: "Incident Management";
|
|
4413
|
+
readonly subcategory: "Diagnostics";
|
|
4414
|
+
readonly function: "Component Logging";
|
|
4415
|
+
readonly description: "";
|
|
4416
|
+
};
|
|
4417
|
+
/**
|
|
4418
|
+
* No description available
|
|
4419
|
+
*/
|
|
4420
|
+
readonly ChaosManagementLibraryOfExperiments: {
|
|
4421
|
+
readonly id: PermissionKey;
|
|
4422
|
+
readonly category: "Chaos Management";
|
|
4423
|
+
readonly subcategory: "MeshMonkey";
|
|
4424
|
+
readonly function: "Library of experiments";
|
|
4425
|
+
readonly description: "";
|
|
4426
|
+
};
|
|
4427
|
+
/**
|
|
4428
|
+
* No description available
|
|
4429
|
+
*/
|
|
4430
|
+
readonly ChaosManagementAsWasmFilters: {
|
|
4431
|
+
readonly id: PermissionKey;
|
|
4432
|
+
readonly category: "Chaos Management";
|
|
4433
|
+
readonly subcategory: "MeshMonkey";
|
|
4434
|
+
readonly function: "As WASM filters";
|
|
4435
|
+
readonly description: "";
|
|
4436
|
+
};
|
|
4437
|
+
/**
|
|
4438
|
+
* No description available
|
|
4439
|
+
*/
|
|
4440
|
+
readonly ChaosManagementAsSidecars: {
|
|
4441
|
+
readonly id: PermissionKey;
|
|
4442
|
+
readonly category: "Chaos Management";
|
|
4443
|
+
readonly subcategory: "MeshMonkey";
|
|
4444
|
+
readonly function: "As sidecars";
|
|
4445
|
+
readonly description: "";
|
|
4446
|
+
};
|
|
4447
|
+
/**
|
|
4448
|
+
* No description available
|
|
4449
|
+
*/
|
|
4450
|
+
readonly ChaosManagementAsDaemonsets: {
|
|
4451
|
+
readonly id: PermissionKey;
|
|
4452
|
+
readonly category: "Chaos Management";
|
|
4453
|
+
readonly subcategory: "MeshMonkey";
|
|
4454
|
+
readonly function: "As daemonsets";
|
|
4455
|
+
readonly description: "";
|
|
4456
|
+
};
|
|
4457
|
+
};
|
|
23
4458
|
/**
|
|
24
4459
|
* Permission key constants.
|
|
25
4460
|
* Each key represents a unique permission identified by its UUID.
|
|
@@ -994,7 +5429,7 @@ declare const PermissionKeys: {
|
|
|
994
5429
|
*/
|
|
995
5430
|
readonly KanvasResetCommentStyles: PermissionKey;
|
|
996
5431
|
/**
|
|
997
|
-
* See all views
|
|
5432
|
+
* See all views within a workspace
|
|
998
5433
|
*/
|
|
999
5434
|
readonly KanvasViewViews: PermissionKey;
|
|
1000
5435
|
/**
|
|
@@ -1811,4 +6246,4 @@ declare const AllPermissionKeys: PermissionKey[];
|
|
|
1811
6246
|
*/
|
|
1812
6247
|
declare const AllPermissionKeyNames: PermissionKeyName[];
|
|
1813
6248
|
|
|
1814
|
-
export { AllPermissionKeyNames, AllPermissionKeys, PERMISSIONS_INDEX_ID, type PermissionKey, type PermissionKeyName, type PermissionKeyValue, PermissionKeys, createPermissionKey };
|
|
6249
|
+
export { AllPermissionKeyNames, AllPermissionKeys, type Key, Keys, PERMISSIONS_INDEX_ID, type PermissionKey, type PermissionKeyName, type PermissionKeyValue, PermissionKeys, createPermissionKey };
|