@meshery/schemas 0.8.111 → 0.8.113

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.
Files changed (44) hide show
  1. package/README.md +1 -2
  2. package/dist/cloudApi.d.mts +3307 -762
  3. package/dist/cloudApi.d.ts +3307 -762
  4. package/dist/cloudApi.js +1 -1
  5. package/dist/cloudApi.mjs +1 -1
  6. package/dist/constructs/v1beta1/component/Component.d.mts +8 -6
  7. package/dist/constructs/v1beta1/component/Component.d.ts +8 -6
  8. package/dist/constructs/v1beta1/component/ComponentSchema.d.mts +18 -7
  9. package/dist/constructs/v1beta1/component/ComponentSchema.d.ts +18 -7
  10. package/dist/constructs/v1beta1/component/ComponentSchema.js +1 -1
  11. package/dist/constructs/v1beta1/component/ComponentSchema.mjs +1 -1
  12. package/dist/constructs/v1beta1/connection/Connection.d.mts +1088 -14
  13. package/dist/constructs/v1beta1/connection/Connection.d.ts +1088 -14
  14. package/dist/constructs/v1beta1/connection/ConnectionSchema.d.mts +3308 -21
  15. package/dist/constructs/v1beta1/connection/ConnectionSchema.d.ts +3308 -21
  16. package/dist/constructs/v1beta1/connection/ConnectionSchema.js +1 -1
  17. package/dist/constructs/v1beta1/connection/ConnectionSchema.mjs +1 -1
  18. package/dist/constructs/v1beta1/evaluation/Evaluation.d.mts +20 -12
  19. package/dist/constructs/v1beta1/evaluation/Evaluation.d.ts +20 -12
  20. package/dist/constructs/v1beta1/evaluation/EvaluationSchema.d.mts +68 -20
  21. package/dist/constructs/v1beta1/evaluation/EvaluationSchema.d.ts +68 -20
  22. package/dist/constructs/v1beta1/evaluation/EvaluationSchema.js +8 -8
  23. package/dist/constructs/v1beta1/evaluation/EvaluationSchema.mjs +8 -8
  24. package/dist/constructs/v1beta1/model/Model.d.mts +8 -6
  25. package/dist/constructs/v1beta1/model/Model.d.ts +8 -6
  26. package/dist/constructs/v1beta1/model/ModelSchema.d.mts +18 -7
  27. package/dist/constructs/v1beta1/model/ModelSchema.d.ts +18 -7
  28. package/dist/constructs/v1beta1/model/ModelSchema.js +1 -1
  29. package/dist/constructs/v1beta1/model/ModelSchema.mjs +1 -1
  30. package/dist/constructs/v1beta1/pattern/Pattern.d.mts +20 -12
  31. package/dist/constructs/v1beta1/pattern/Pattern.d.ts +20 -12
  32. package/dist/constructs/v1beta1/pattern/PatternSchema.d.mts +68 -20
  33. package/dist/constructs/v1beta1/pattern/PatternSchema.d.ts +68 -20
  34. package/dist/constructs/v1beta1/pattern/PatternSchema.js +8 -8
  35. package/dist/constructs/v1beta1/pattern/PatternSchema.mjs +8 -8
  36. package/dist/index.js +10 -10
  37. package/dist/index.mjs +10 -10
  38. package/dist/mesheryApi.d.mts +378 -398
  39. package/dist/mesheryApi.d.ts +378 -398
  40. package/dist/permissions.d.mts +1514 -146
  41. package/dist/permissions.d.ts +1514 -146
  42. package/dist/permissions.js +1 -1
  43. package/dist/permissions.mjs +1 -1
  44. package/package.json +1 -1
@@ -10,6 +10,10 @@
10
10
  type PermissionKey = string & {
11
11
  readonly __brand: 'PermissionKey';
12
12
  };
13
+ /**
14
+ * Permissions Index ID used for this generated file.
15
+ */
16
+ declare const PERMISSIONS_INDEX_ID: "5f793c7ea40d5f3b0aa28a0ba30b509e64c8fbe44241c2bd46fb67c38b2663be";
13
17
  /**
14
18
  * Creates a PermissionKey from a UUID string.
15
19
  * @param uuid - The UUID string to convert
@@ -21,386 +25,1750 @@ declare function createPermissionKey(uuid: string): PermissionKey;
21
25
  * Each key represents a unique permission identified by its UUID.
22
26
  */
23
27
  declare const PermissionKeys: {
28
+ /**
29
+ * View your profile.
30
+ */
31
+ readonly AccountManagementViewProfile: PermissionKey;
32
+ /**
33
+ * Update details of your user account.
34
+ */
35
+ readonly AccountManagementEditAccount: PermissionKey;
36
+ /**
37
+ * Perform a password reset for your user account.
38
+ */
39
+ readonly AccountManagementResetPasword: PermissionKey;
40
+ /**
41
+ * Delete your user account.
42
+ */
43
+ readonly AccountManagementDeleteAccount: PermissionKey;
44
+ /**
45
+ * Link your social sign-in with GitHub to your existing user account.
46
+ */
47
+ readonly AccountManagementConnectYourGithubAccount: PermissionKey;
48
+ /**
49
+ * Link your social sign-in with Google to your existing user account.
50
+ */
51
+ readonly AccountManagementConnectYourGoogleAccount: PermissionKey;
52
+ /**
53
+ * List and see details of active and inactive subscriptions.
54
+ */
55
+ readonly AccountManagementViewSubcription: PermissionKey;
56
+ /**
57
+ * Create new subscriptions and update existing subscriptions
58
+ */
59
+ readonly AccountManagementManageSubcriptions: PermissionKey;
60
+ /**
61
+ * Explore subscription plans and compare their features.
62
+ */
63
+ readonly AccountManagementViewPlans: PermissionKey;
64
+ /**
65
+ * Export a copy of a design to your local system.
66
+ */
67
+ readonly CatalogManagementDeployDesign: PermissionKey;
24
68
  /**
25
69
  * Share design with anyone within your organization, and make your design easily accessible to all relevant team members.
26
70
  */
27
- readonly CatalogShareDesign: PermissionKey;
71
+ readonly CatalogManagementShareDesign: PermissionKey;
28
72
  /**
29
73
  * Clone any published design to customise it according to your use cases
30
74
  */
31
- readonly CatalogCloneDesign: PermissionKey;
75
+ readonly CatalogManagementCloneDesign: PermissionKey;
76
+ /**
77
+ * Opens design in a Kanvas (currently, specifically in the playground.meshery.io Kanvas)
78
+ */
79
+ readonly CatalogManagementOpenInPlayground: PermissionKey;
80
+ /**
81
+ * No description available
82
+ */
83
+ readonly CatalogManagementViewApplications: PermissionKey;
32
84
  /**
33
85
  * View all public and published designs of other team members and private of signed-in user
34
86
  */
35
- readonly DesignsViewDesigns: PermissionKey;
87
+ readonly CatalogManagementViewDesigns: PermissionKey;
36
88
  /**
37
89
  * View all public and published filters of other team members and private of signed-in user
38
90
  */
39
- readonly FiltersViewFilters: PermissionKey;
91
+ readonly CatalogManagementViewFilters: PermissionKey;
40
92
  /**
41
93
  * View the catalog publication request queue
42
94
  */
43
- readonly CatalogRequestsViewCatalogRequests: PermissionKey;
95
+ readonly CatalogManagementViewCatalogRequests: PermissionKey;
44
96
  /**
45
97
  * Approve catalog publication requests
46
98
  */
47
- readonly CatalogRequestsApproveCatalogRequest: PermissionKey;
99
+ readonly CatalogManagementApproveCatalogRequest: PermissionKey;
48
100
  /**
49
101
  * Deny catalog publication requests
50
102
  */
51
- readonly CatalogRequestsDenyCatalogRequest: PermissionKey;
103
+ readonly CatalogManagementDenyCatalogRequest: PermissionKey;
104
+ /**
105
+ * View private designs of the org
106
+ */
107
+ readonly CatalogManagementViewPrivateDesigns: PermissionKey;
108
+ /**
109
+ * View public designs of the org
110
+ */
111
+ readonly CatalogManagementViewPublicDesigns: PermissionKey;
112
+ /**
113
+ * View published designs of the org
114
+ */
115
+ readonly CatalogManagementViewPublishedDesigns: PermissionKey;
52
116
  /**
53
117
  * Create new Meshery design
54
118
  */
55
- readonly DesignsCreateNewDesign: PermissionKey;
119
+ readonly CatalogManagementCreateNewDesign: PermissionKey;
56
120
  /**
57
121
  * Import a design
58
122
  */
59
- readonly DesignsImportDesign: PermissionKey;
123
+ readonly CatalogManagementImportDesign: PermissionKey;
124
+ /**
125
+ * Export a design in source type format (Kubernetes Manifest, Helm Chart, Docker Compose)
126
+ */
127
+ readonly CatalogManagementExportDesign: PermissionKey;
60
128
  /**
61
129
  * Publish a design
62
130
  */
63
- readonly DesignsPublishDesign: PermissionKey;
131
+ readonly CatalogManagementPublishDesign: PermissionKey;
64
132
  /**
65
133
  * Unpublish a design
66
134
  */
67
- readonly DesignsUnpublishDesign: PermissionKey;
135
+ readonly CatalogManagementUnpublishDesign: PermissionKey;
68
136
  /**
69
137
  * Validate a design
70
138
  */
71
- readonly DesignsValidateDesign: PermissionKey;
72
- /**
73
- * Deploy a design
74
- */
75
- readonly DesignsDeployDesign: PermissionKey;
139
+ readonly CatalogManagementValidateDesign: PermissionKey;
76
140
  /**
77
141
  * Retract all resources used in a Meshery design from the cluster
78
142
  */
79
- readonly DesignsUndeployDesign: PermissionKey;
143
+ readonly CatalogManagementUndeployDesign: PermissionKey;
80
144
  /**
81
145
  * Set design information or details of a design
82
146
  */
83
- readonly DesignsDetailsOfDesign: PermissionKey;
147
+ readonly CatalogManagementDetailsOfDesign: PermissionKey;
84
148
  /**
85
149
  * Edit a design
86
150
  */
87
- readonly DesignsEditDesign: PermissionKey;
151
+ readonly CatalogManagementEditDesign: PermissionKey;
88
152
  /**
89
153
  * Delete a design
90
154
  */
91
- readonly DesignsDeleteADesign: PermissionKey;
155
+ readonly CatalogManagementDeleteADesign: PermissionKey;
92
156
  /**
93
157
  * Download a Meshery design in OCI or YAML format
94
158
  */
95
- readonly DesignsDownloadADesign: PermissionKey;
159
+ readonly CatalogManagementDownloadADesign: PermissionKey;
96
160
  /**
97
161
  * Import a filter
98
162
  */
99
- readonly FiltersImportFilter: PermissionKey;
163
+ readonly CatalogManagementImportFilter: PermissionKey;
164
+ /**
165
+ * Publish WASM Filter
166
+ */
167
+ readonly CatalogManagementPublishWasmFilter: PermissionKey;
168
+ /**
169
+ * Unpublish WASM Filter
170
+ */
171
+ readonly CatalogManagementUnpublishWasmFilter: PermissionKey;
100
172
  /**
101
173
  * Download a WASM filter
102
174
  */
103
- readonly FiltersDownloadAWasmFilter: PermissionKey;
175
+ readonly CatalogManagementDownloadAWasmFilter: PermissionKey;
104
176
  /**
105
177
  * Check information or details of a WASM filter
106
178
  */
107
- readonly FiltersDetailsOfWasmFilter: PermissionKey;
179
+ readonly CatalogManagementDetailsOfWasmFilter: PermissionKey;
108
180
  /**
109
181
  * Edit WASM filter
110
182
  */
111
- readonly FiltersEditWasmFilter: PermissionKey;
183
+ readonly CatalogManagementEditWasmFilter: PermissionKey;
112
184
  /**
113
185
  * Clone WASM filter from catalog, which allows customizing filter and use it in design
114
186
  */
115
- readonly FiltersCloneWasmFilter: PermissionKey;
187
+ readonly CatalogManagementCloneWasmFilter: PermissionKey;
116
188
  /**
117
189
  * Delete WASM filter permanently from catalog.
118
190
  */
119
- readonly FiltersDeleteWasmFilter: PermissionKey;
191
+ readonly CatalogManagementDeleteWasmFilter: PermissionKey;
192
+ /**
193
+ * Import, Unpublish, Publish, Download, Edit, Clone, Delete, Details of WASM Filter
194
+ */
195
+ readonly CatalogManagementWasmFilterAndFilter: PermissionKey;
196
+ /**
197
+ * 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.
198
+ */
199
+ readonly CollaborationInviteAnyMesheryCloudUserOrAllMesheryUsers: PermissionKey;
200
+ /**
201
+ * Invite any Meshery Cloud user to work with you on a private design that control – including making changes and releasing new versions.
202
+ */
203
+ readonly CollaborationInviteAnyMesheryCloudUserToOnAPrivateDesign: PermissionKey;
204
+ /**
205
+ * Message in real-time, unattached to a specific design. Control who can pariticpate in the discussion.
206
+ */
207
+ readonly CollaborationMessageInRealTime: PermissionKey;
208
+ /**
209
+ * 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.
210
+ */
211
+ readonly CollaborationDiscussAnyDesignByLeavingReviewComments: PermissionKey;
212
+ /**
213
+ * Manage access to designs on a team-by-team, or individual user, basis.
214
+ */
215
+ readonly CollaborationManageAccessToDesigns: PermissionKey;
216
+ /**
217
+ * Create and collaborate in online designs in real-time.
218
+ */
219
+ readonly CollaborationCreateAndCollaborateInOnlineDesignsInRealTime: PermissionKey;
220
+ /**
221
+ * No description available
222
+ */
223
+ readonly ContentCatalogIstioVirtualServiceDestinationRules: PermissionKey;
224
+ /**
225
+ * No description available
226
+ */
227
+ readonly ContentCatalogConsul: PermissionKey;
228
+ /**
229
+ * No description available
230
+ */
231
+ readonly ContentCatalogKuma: PermissionKey;
232
+ /**
233
+ * No description available
234
+ */
235
+ readonly EventManagementViewStatistics: PermissionKey;
236
+ /**
237
+ * No description available
238
+ */
239
+ readonly EventsManagementViewEvents: PermissionKey;
240
+ /**
241
+ * No description available
242
+ */
243
+ readonly EventsManagementViewSummary: PermissionKey;
244
+ /**
245
+ * No description available
246
+ */
247
+ readonly EventsManagementViewAudit: PermissionKey;
248
+ /**
249
+ * No description available
250
+ */
251
+ readonly ExtensibilityDynamicInjectionViaRemoteProvider: PermissionKey;
252
+ /**
253
+ * No description available
254
+ */
255
+ readonly ExtensibilityNamespacedCustomEndpoints: PermissionKey;
256
+ /**
257
+ * No description available
258
+ */
259
+ readonly ExtensibilitySwaggerIntegration: PermissionKey;
260
+ /**
261
+ * No description available
262
+ */
263
+ readonly ExtensibilityNamespacedCustomResolvers: PermissionKey;
264
+ /**
265
+ * Extend Meshery's capabilities behind a gRPC interface for Model registration and operation invocation
266
+ */
267
+ readonly ExtensibilityAdapters: PermissionKey;
268
+ /**
269
+ * No description available
270
+ */
271
+ readonly ExtensibilityLoadGenerators: PermissionKey;
272
+ /**
273
+ * No description available
274
+ */
275
+ readonly ExtensibilityAuthentication: PermissionKey;
276
+ /**
277
+ * No description available
278
+ */
279
+ readonly ExtensibilityAuthorization: PermissionKey;
280
+ /**
281
+ * No description available
282
+ */
283
+ readonly ExtensibilityRemoteProviders: PermissionKey;
284
+ /**
285
+ * No description available
286
+ */
287
+ readonly ExtensibilityUserPreferences: PermissionKey;
288
+ /**
289
+ * Propagate document updates peer-to-peer using WebRTC.
290
+ */
291
+ readonly ExtensibilityPeerToPeer: PermissionKey;
120
292
  /**
121
293
  * Install or enable or disabble extensions in Meshery
122
294
  */
123
- readonly ExtensionsInstallExtension: PermissionKey;
295
+ readonly ExtensibilityInstallExtension: PermissionKey;
124
296
  /**
125
297
  * View all user preferences in Meshery UI
126
298
  */
127
- readonly ExtensionsViewMesheryUserPreferences: PermissionKey;
299
+ readonly ExtensibilityViewMesheryUserPreferences: PermissionKey;
128
300
  /**
129
301
  * View all extensions on the extension page
130
302
  */
131
- readonly ExtensionsViewExtensions: PermissionKey;
303
+ readonly ExtensibilityViewExtensions: PermissionKey;
132
304
  /**
133
- * View all configured Kubernetes clusters
305
+ * No description available
134
306
  */
135
- readonly UsersViewAllKubernetesClusters: PermissionKey;
307
+ readonly FinancialManagementShowback: PermissionKey;
136
308
  /**
137
- * See only teams to which you are a member. See all other members within those teams.
309
+ * Per service, per authenticated user
138
310
  */
139
- readonly TeamsViewTeam: PermissionKey;
311
+ readonly FinancialManagementChargeback: PermissionKey;
140
312
  /**
141
- * See all teams of which you are an administrator. See all members of those teams.
313
+ * Visual insights in your pull requests in GitLab
314
+ */
315
+ readonly GitopsSnapshots: PermissionKey;
316
+ /**
317
+ * Initiate deployment with creation of pull request
318
+ */
319
+ readonly GitopsBitbucket: PermissionKey;
320
+ /**
321
+ * Initiate deployment with creation of pull request
322
+ */
323
+ readonly GitopsGithub: PermissionKey;
324
+ /**
325
+ * Initiate deployment with creation of pull request
326
+ */
327
+ readonly GitopsGitlab: PermissionKey;
328
+ /**
329
+ * Initiate deployment with creation of pull request
330
+ */
331
+ readonly GitopsArgoevents: PermissionKey;
332
+ /**
333
+ * Signal pass or fail: to proceed or rollback a deployment
334
+ */
335
+ readonly GitopsWebhook: PermissionKey;
336
+ /**
337
+ * Signal pass or fail: to proceed or rollback a deployment
338
+ */
339
+ readonly GitopsAssessAndCharacterizeServicePerformance: PermissionKey;
340
+ /**
341
+ * No description available
342
+ */
343
+ readonly GitopsVerifyConformanceReturnResultsAndGreenRedLight: PermissionKey;
344
+ /**
345
+ * No description available
346
+ */
347
+ readonly IdentityAccessManagementImplicitUserImplicitRoleAdmin: PermissionKey;
348
+ /**
349
+ * No description available
350
+ */
351
+ readonly IdentityAccessManagementMultiTenancy: PermissionKey;
352
+ /**
353
+ * No description available
354
+ */
355
+ readonly IdentityAccessManagementAllowsPreferencesToBeSetPerUser: PermissionKey;
356
+ /**
357
+ * Static - out of the box
358
+ */
359
+ readonly IdentityAccessManagementBuiltInRoles: PermissionKey;
360
+ /**
361
+ * Customizable roles for specific permission assignments
362
+ */
363
+ readonly IdentityAccessManagementUserDefinedRoles: PermissionKey;
364
+ /**
365
+ * No description available
366
+ */
367
+ readonly IdentityAccessManagementEnforcementOfTenancy: PermissionKey;
368
+ /**
369
+ * No description available
370
+ */
371
+ readonly IdentityAccessManagementHierarchicalPermissioning: PermissionKey;
372
+ /**
373
+ * No description available
374
+ */
375
+ readonly IdentityAccessManagementAuthenticationOauth: PermissionKey;
376
+ /**
377
+ * Access Meshery Server using your existing accounts and centrally manage repository access.
378
+ */
379
+ readonly IdentityAccessManagementAuthenticationLdap: PermissionKey;
380
+ /**
381
+ * Use an identity provider to manage the identities of GitHub users and applications.
382
+ */
383
+ readonly IdentityAccessManagementAuthenticationSaml: PermissionKey;
384
+ /**
385
+ * No description available
386
+ */
387
+ readonly IdentityAccessManagementAzureActiveDirectory: PermissionKey;
388
+ /**
389
+ * Own and control the user accounts of your enterprise members through your identity provider (IdP).
390
+ */
391
+ readonly IdentityAccessManagementMesheryAsAnIdp: PermissionKey;
392
+ /**
393
+ * See public user profile details, public activities and public resources.
394
+ */
395
+ readonly IdentityAccessManagementViewUserPublicProfile: PermissionKey;
396
+ /**
397
+ * See private user profile details, private activities and private resources.
142
398
  */
143
- readonly TeamsViewTeams: PermissionKey;
399
+ readonly IdentityAccessManagementViewUserSettings: PermissionKey;
144
400
  /**
145
401
  * See all teams within an organization. See all members of all teams.
146
402
  */
147
- readonly TeamsViewAllTeams: PermissionKey;
403
+ readonly IdentityAccessManagementViewAllUsers: PermissionKey;
148
404
  /**
149
405
  * Directly create a new user account within a team.
150
406
  */
151
- readonly TeamsAddUserToTeam: PermissionKey;
407
+ readonly IdentityAccessManagementUpdateUserProfile: PermissionKey;
152
408
  /**
153
409
  * Send a request for a user to join a team.
154
410
  */
155
- readonly TeamsInviteUserToTeam: PermissionKey;
411
+ readonly IdentityAccessManagementInviteUserToTeam: PermissionKey;
156
412
  /**
157
413
  * Discontinue user membership of a team and team resources.
158
414
  */
159
- readonly TeamsRemoveUserFromTeam: PermissionKey;
415
+ readonly IdentityAccessManagementRemoveUserFromTeam: PermissionKey;
160
416
  /**
161
417
  * Establish new team for organizing groups of users and resource access.
162
418
  */
163
- readonly TeamsCreateTeam: PermissionKey;
419
+ readonly IdentityAccessManagementCreateTeam: PermissionKey;
164
420
  /**
165
421
  * Dissolve a team and all user memberships. Leave associated resources intact.
166
422
  */
167
- readonly TeamsDeleteTeam: PermissionKey;
423
+ readonly IdentityAccessManagementDeleteTeam: PermissionKey;
424
+ /**
425
+ * Delete a user account
426
+ */
427
+ readonly IdentityAccessManagementDeleteUser: PermissionKey;
428
+ /**
429
+ * Edit user role, name, email etc
430
+ */
431
+ readonly IdentityAccessManagementEditUser: PermissionKey;
432
+ /**
433
+ * Create a new user
434
+ */
435
+ readonly IdentityAccessManagementCreateUser: PermissionKey;
436
+ /**
437
+ * Leave a team
438
+ */
439
+ readonly IdentityAccessManagementLeaveTeam: PermissionKey;
440
+ /**
441
+ * View all configured Kubernetes clusters
442
+ */
443
+ readonly IdentityAccessManagementViewAllKubernetesClusters: PermissionKey;
444
+ /**
445
+ * See only teams to which you are a member. See all other members within those teams.
446
+ */
447
+ readonly IdentityAccessManagementViewTeam: PermissionKey;
448
+ /**
449
+ * See all teams of which you are an administrator. See all members of those teams.
450
+ */
451
+ readonly IdentityAccessManagementViewTeams: PermissionKey;
452
+ /**
453
+ * See all teams within an organization. See all members of all teams.
454
+ */
455
+ readonly IdentityAccessManagementViewAllTeams: PermissionKey;
456
+ /**
457
+ * Directly create a new user account within a team.
458
+ */
459
+ readonly IdentityAccessManagementAddUserToTeam: PermissionKey;
168
460
  /**
169
461
  * Edit a team and add new members to it.
170
462
  */
171
- readonly TeamsEditTeam: PermissionKey;
463
+ readonly IdentityAccessManagementEditTeam: PermissionKey;
172
464
  /**
173
465
  * Remove roles from users in a team.
174
466
  */
175
- readonly TeamsRemoveRolesFromTeamMembers: PermissionKey;
467
+ readonly IdentityAccessManagementRemoveRolesFromTeamMembers: PermissionKey;
176
468
  /**
177
469
  * Assign roles to users in a team
178
470
  */
179
- readonly TeamsAssignRolesToTeamMembers: PermissionKey;
471
+ readonly IdentityAccessManagementAssignRolesToTeamMembers: PermissionKey;
180
472
  /**
181
473
  * 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.
182
474
  */
183
- readonly TeamsOpenTeamInvite: PermissionKey;
475
+ readonly IdentityAccessManagementOpenTeamInvite: PermissionKey;
184
476
  /**
185
477
  * Establish new organization for organizing teams, users, and resource access.
186
478
  */
187
- readonly OrganizationsCreateOrganization: PermissionKey;
479
+ readonly IdentityAccessManagementCreateOrganization: PermissionKey;
188
480
  /**
189
481
  * Edit organiaztions and add teams to it
190
482
  */
191
- readonly OrganizationsEditOrganization: PermissionKey;
483
+ readonly IdentityAccessManagementEditOrganization: PermissionKey;
192
484
  /**
193
485
  * Directly create a new user account within an organization.
194
486
  */
195
- readonly OrganizationsAddUserToOrganization: PermissionKey;
487
+ readonly IdentityAccessManagementAddUserToOrganization: PermissionKey;
196
488
  /**
197
489
  * Send a request for a user to join an organization.
198
490
  */
199
- readonly OrganizationsInviteUserToOrganization: PermissionKey;
491
+ readonly IdentityAccessManagementInviteUserToOrganization: PermissionKey;
200
492
  /**
201
493
  * Discontinue user access to organization, teams and resources; cease billing accrual.
202
494
  */
203
- readonly OrganizationsRemoveUserFromOrganization: PermissionKey;
495
+ readonly IdentityAccessManagementRemoveUserFromOrganization: PermissionKey;
204
496
  /**
205
497
  * Elevate or remove organization level administrative privileges.
206
498
  */
207
- readonly OrganizationsPromoteOrDemoteUserToOrgAdmin: PermissionKey;
499
+ readonly IdentityAccessManagementPromoteOrDemoteUserToOrgAdmin: PermissionKey;
208
500
  /**
209
501
  * See only organizations to which you are a member. See all other members within your membership teams.
210
502
  */
211
- readonly OrganizationsViewOrg: PermissionKey;
503
+ readonly IdentityAccessManagementViewOrg: PermissionKey;
212
504
  /**
213
505
  * See all organizations of which you are an administrator. See all members of those organizations.
214
506
  */
215
- readonly OrganizationsViewOrganizations: PermissionKey;
507
+ readonly IdentityAccessManagementViewOrganizations: PermissionKey;
216
508
  /**
217
509
  * See all organizations within a Layer5 Cloud deployment. See all organizations, teams, and users.
218
510
  */
219
- readonly OrganizationsViewAllOrganizations: PermissionKey;
511
+ readonly IdentityAccessManagementViewAllOrganizations: PermissionKey;
220
512
  /**
221
513
  * Remove roles from users in an organization
222
514
  */
223
- readonly OrganizationsRemoveRolesFromOrganizationMembers: PermissionKey;
515
+ readonly IdentityAccessManagementRemoveRolesFromOrganizationMembers: PermissionKey;
224
516
  /**
225
517
  * Assign roles to users in an organization
226
518
  */
227
- readonly OrganizationsAssignRolesToOrganizationMembers: PermissionKey;
519
+ readonly IdentityAccessManagementAssignRolesToOrganizationMembers: PermissionKey;
228
520
  /**
229
- * Add Kubernetes cluster
521
+ * Transfer organization ownership to another member of the organization.
230
522
  */
231
- readonly ConnectionsAddCluster: PermissionKey;
523
+ readonly IdentityAccessManagementTransferOrganizationOwnership: PermissionKey;
232
524
  /**
233
- * Change connection state
525
+ * Decommission organization and suspend account from additional accruals.
234
526
  */
235
- readonly ConnectionsChangeConnectionState: PermissionKey;
527
+ readonly IdentityAccessManagementDeleteOrganization: PermissionKey;
236
528
  /**
237
- * Clearing the database by clicking on the `Flush MeshSync`
529
+ * Leave an organization
238
530
  */
239
- readonly ConnectionsFlushMeshsyncData: PermissionKey;
531
+ readonly IdentityAccessManagementLeaveOrganization: PermissionKey;
240
532
  /**
241
- * Register discovered Meshsync resource to change state to connection
533
+ * Organizations can be assigned unique, validated custom domains through settings.
242
534
  */
243
- readonly ConnectionsRegisterDiscoveredMeshsyncResource: PermissionKey;
535
+ readonly IdentityAccessManagementCustomDomain: PermissionKey;
244
536
  /**
245
- * Delete a connection
537
+ * Assigned domains direct user traffic to organizations; clearing the field removes the assignment.
246
538
  */
247
- readonly ConnectionsDeleteAConnection: PermissionKey;
539
+ readonly IdentityAccessManagementDomainRoutingAndRemoval: PermissionKey;
248
540
  /**
249
- * View settings in Meshery
541
+ * Create, update , delete and manage recogntions awarded by your organization
250
542
  */
251
- readonly SettingsViewSettings: PermissionKey;
543
+ readonly IdentityAccessManagementManageRecognitions: PermissionKey;
252
544
  /**
253
- * Configure and connect to Meshery adapters
545
+ * Create, update , delete and manage invitations to your organization
254
546
  */
255
- readonly SettingsConnectAdapter: PermissionKey;
547
+ readonly IdentityAccessManagementManageInvitations: PermissionKey;
256
548
  /**
257
- * Configure and connect to metrics like Grafana and Promethues
549
+ * No description available
258
550
  */
259
- readonly SettingsConnectMetrics: PermissionKey;
551
+ readonly IdentityAccessManagementRoles: PermissionKey;
260
552
  /**
261
- * View already configured metrics
553
+ * No description available
262
554
  */
263
- readonly SettingsViewMetrics: PermissionKey;
555
+ readonly IdentityAccessManagementAssignUserRoles: PermissionKey;
264
556
  /**
265
- * Explore entities within capabilities registry
557
+ * No description available
266
558
  */
267
- readonly SettingsViewRegistry: PermissionKey;
559
+ readonly IdentityAccessManagementAssignKeychainsToRoles: PermissionKey;
268
560
  /**
269
- * Add a new performace profile
561
+ * No description available
270
562
  */
271
- readonly PerformanceAddPerformaceProfile: PermissionKey;
563
+ readonly IdentityAccessManagementCreateCustomRoles: PermissionKey;
272
564
  /**
273
- * Run a test on performance profile
565
+ * No description available
274
566
  */
275
- readonly PerformanceRunTest: PermissionKey;
567
+ readonly IdentityAccessManagementUpdateCustomRoles: PermissionKey;
276
568
  /**
277
- * View results of performance tests
569
+ * Delete a user's role permanently
278
570
  */
279
- readonly PerformanceViewResults: PermissionKey;
571
+ readonly IdentityAccessManagementDeleteCustomRoles: PermissionKey;
280
572
  /**
281
- * Edit performance test
573
+ * No description available
282
574
  */
283
- readonly PerformanceEditPerformanceTest: PermissionKey;
575
+ readonly IdentityAccessManagementExportCustomRoles: PermissionKey;
284
576
  /**
285
- * Delete performance test
577
+ * Browse the list of open entitlement requests
286
578
  */
287
- readonly PerformanceDeletePerformanceTest: PermissionKey;
579
+ readonly IdentityAccessManagementViewAllAccessRequests: PermissionKey;
288
580
  /**
289
- * View all performance profiles
581
+ * Entitle user. Approve access request.
290
582
  */
291
- readonly PerformanceViewPerformanceProfiles: PermissionKey;
583
+ readonly IdentityAccessManagementAcceptAccessRequest: PermissionKey;
292
584
  /**
293
- * 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.
585
+ * Restrict user access to requested resource.
294
586
  */
295
- readonly CloudNativeInfrastructureLifecycleManageCloudNativeInfrastructureLifeCycle: PermissionKey;
587
+ readonly IdentityAccessManagementDenyAccessRequest: PermissionKey;
296
588
  /**
297
- * Manage configuration for applications like EmojiVoto, HTTPBin, Image Hub, Istio Book Info
589
+ * Test and verify configuration changes in a separate environment.
298
590
  */
299
- readonly CloudNativeInfrastructureLifecycleManageCloudNativeInfrastructureConfiguration: PermissionKey;
591
+ readonly LifecycleManagementDryRun: PermissionKey;
300
592
  /**
301
- * Configure infrastructure with some predefined options like Automatic Sidecar injection, Envoy Filter, Policy
593
+ * Istio, Linkerd, Consul, Kuma, Traefik Mesh, AWS App Mesh, NGINX Service Mesh, Network Service Mesh, Cilium Service Mesh, VMware Tanzu Service Mesh
302
594
  */
303
- readonly CloudNativeInfrastructureLifecycleApplyCloudNativeInfrastructureConfiguration: PermissionKey;
595
+ readonly LifecycleManagementMesheryAdaptersProvisionConfigureAndManage10DifferentServiceMeshes: PermissionKey;
304
596
  /**
305
- * Validate cloud native infrastructure configuration against best practices like Analyze Running Configuration, SMI conformance
597
+ * No description available
306
598
  */
307
- readonly CloudNativeInfrastructureLifecycleValidateCloudNativeInfrastructureConfiguration: PermissionKey;
599
+ readonly LifecycleManagementProvisioningDeprovisioning: PermissionKey;
308
600
  /**
309
- * This permission grants the user the ability to apply custom configuration and customize existing configuration of thier cloud native infrastructure
601
+ * MeshOpsv1
310
602
  */
311
- readonly CloudNativeInfrastructureLifecycleApplyCustomCloudNativeConfiguration: PermissionKey;
603
+ readonly LifecycleManagementSimpleConfiguration: PermissionKey;
312
604
  /**
313
- * 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
605
+ * MeshOpsv2
314
606
  */
315
- readonly CloudNativeInfrastructureLifecycleDeployCloudNativeInfrastructure: PermissionKey;
607
+ readonly LifecycleManagementAdvancedConfiguration: PermissionKey;
316
608
  /**
317
- * 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
609
+ * No description available
318
610
  */
319
- readonly CloudNativeInfrastructureLifecycleUndeployCloudNativeInfrastructure: PermissionKey;
611
+ readonly LifecycleManagementManagedUpgrades: PermissionKey;
320
612
  /**
321
- * 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.
613
+ * No description available
322
614
  */
323
- readonly CloudNativeInfrastructureLifecycleViewCloudNativeInfrastructure: PermissionKey;
615
+ readonly LifecycleManagementAdHocAddOrRemove: PermissionKey;
324
616
  /**
325
- * View all connections within an environment
617
+ * No description available
326
618
  */
327
- readonly ConnectionsViewConnections: PermissionKey;
619
+ readonly LifecycleManagementParseLogs: PermissionKey;
328
620
  /**
329
- * See all environments within an workspace.
621
+ * No description available
330
622
  */
331
- readonly EnvironmentsViewEnvironment: PermissionKey;
623
+ readonly LifecycleManagementExecShell: PermissionKey;
332
624
  /**
333
- * Create a new environment
625
+ * No description available
334
626
  */
335
- readonly EnvironmentsCreateEnvironment: PermissionKey;
627
+ readonly LifecycleManagementDynamicLoadUnload: PermissionKey;
336
628
  /**
337
- * Dissolve environment and all connection memberships. Leave associated resources intact.
629
+ * Day 2 support for ongoing synchronization of Kubernetes configuration, workloads and service mesh changes.
338
630
  */
339
- readonly EnvironmentsDeleteEnvironment: PermissionKey;
631
+ readonly LifecycleManagementClusterDiscovery: PermissionKey;
340
632
  /**
341
- * Edit environment and it connection membership
633
+ * Ongoing synchronization of Kubernetes configuration, workloads and service mesh changes across any number of Kubernetes clusters.
342
634
  */
343
- readonly EnvironmentsEditEnvironment: PermissionKey;
635
+ readonly LifecycleManagementMultipleKubernetesClusters: PermissionKey;
344
636
  /**
345
- * Add new connections to environments
637
+ * No description available
346
638
  */
347
- readonly EnvironmentsAssignConnectionsToEnvironment: PermissionKey;
639
+ readonly LifecycleManagementEnvironments: PermissionKey;
348
640
  /**
349
- * Remove connections from environment,
641
+ * No description available
350
642
  */
351
- readonly EnvironmentsRemoveConnectionsFromEnvironments: PermissionKey;
643
+ readonly LifecycleManagementAnnouncementAndSynchronization: PermissionKey;
352
644
  /**
353
- * View all items in catalog
645
+ * No description available
354
646
  */
355
- readonly CatalogViewCatalog: PermissionKey;
647
+ readonly LifecycleManagementOrganizationalPermissioning: PermissionKey;
356
648
  /**
357
- * See all workspaces within an organization
649
+ * Add Kubernetes cluster
358
650
  */
359
- readonly WorkspaceViewWorkspace: PermissionKey;
651
+ readonly LifecycleManagementAddCluster: PermissionKey;
360
652
  /**
361
- * Dissolve workspace and all team and environment memberships. Leave associated resources intact
653
+ * Change connection state
362
654
  */
363
- readonly WorkspaceDeleteWorkspace: PermissionKey;
655
+ readonly LifecycleManagementChangeConnectionState: PermissionKey;
364
656
  /**
365
- * Edit workspace and it's team and environment membership
657
+ * Clearing the database by clicking on the `Flush MeshSync`
366
658
  */
367
- readonly WorkspaceEditWorkspace: PermissionKey;
659
+ readonly LifecycleManagementFlushMeshsyncData: PermissionKey;
368
660
  /**
369
- * Create new workspace
661
+ * Register discovered Meshsync resource to change state to connection
370
662
  */
371
- readonly WorkspaceCreateWorkspace: PermissionKey;
663
+ readonly LifecycleManagementRegisterDiscoveredMeshsyncResource: PermissionKey;
372
664
  /**
373
- * Add new team to workspace
665
+ * Delete a connection
374
666
  */
375
- readonly WorkspaceAssignTeamToWorkspace: PermissionKey;
667
+ readonly LifecycleManagementDeleteAConnection: PermissionKey;
376
668
  /**
377
- * Remove team from workspace
669
+ * No description available
378
670
  */
379
- readonly WorkspaceRemoveTeamFromWorkspace: PermissionKey;
671
+ readonly MesherySystemStreamlinedCi: PermissionKey;
380
672
  /**
381
- * Add new environment to workspace
673
+ * No description available
382
674
  */
383
- readonly WorkspaceAssignEnvironmentToWorkspace: PermissionKey;
675
+ readonly MesherySystemIntegrationTests: PermissionKey;
384
676
  /**
385
- * Remove environment from workspace
677
+ * No description available
386
678
  */
387
- readonly WorkspaceRemoveEnvironmentFromWorkspace: PermissionKey;
679
+ readonly MesherySystemReleaseChannelsStableAndEdge: PermissionKey;
388
680
  /**
389
- * Assign designs to workspaces
681
+ * No description available
390
682
  */
391
- readonly WorkspaceAssignDesignsToWorkspaces: PermissionKey;
683
+ readonly MesherySystemTimeToValueEasySetupOfMeshery: PermissionKey;
392
684
  /**
393
- * Remove designs from workspaces
685
+ * Windows, Linux, MacOS
686
+ */
687
+ readonly MesherySystemMesheryctl: PermissionKey;
688
+ /**
689
+ * Minikube, Docker, OpenShift
690
+ */
691
+ readonly MesherySystemMesheryServer: PermissionKey;
692
+ /**
693
+ * No description available
694
+ */
695
+ readonly MesherySystemMeshsync: PermissionKey;
696
+ /**
697
+ * No description available
698
+ */
699
+ readonly MesherySystemScriptHomebrewScoop: PermissionKey;
700
+ /**
701
+ * No description available
702
+ */
703
+ readonly MesherySystemFacilitateCollectionOfDebugForEaseOfIssueReporting: PermissionKey;
704
+ /**
705
+ * No description available
706
+ */
707
+ readonly MesherySystemEachComponent: PermissionKey;
708
+ /**
709
+ * Seamlessly manage your configurations, deployments, and interactions through our intuitive and powerful command-line interface: mesheryctl
710
+ */
711
+ readonly MesherySystemCli: PermissionKey;
712
+ /**
713
+ * View settings in Meshery
714
+ */
715
+ readonly MesherySystemViewSettings: PermissionKey;
716
+ /**
717
+ * Configure and connect to Meshery adapters
718
+ */
719
+ readonly MesherySystemConnectAdapter: PermissionKey;
720
+ /**
721
+ * Configure and connect to metrics like Grafana and Promethues
722
+ */
723
+ readonly MesherySystemConnectMetrics: PermissionKey;
724
+ /**
725
+ * View already configured metrics
726
+ */
727
+ readonly MesherySystemViewMetrics: PermissionKey;
728
+ /**
729
+ * Explore entities within capabilities registry
394
730
  */
395
- readonly WorkspaceRemoveDesignsFromWorkspaces: PermissionKey;
731
+ readonly MesherySystemViewRegistry: PermissionKey;
396
732
  /**
397
733
  * Reset Meshery database
398
734
  */
399
- readonly SettingsResetDatabase: PermissionKey;
735
+ readonly MesherySystemResetDatabase: PermissionKey;
400
736
  /**
401
- * View and assess the performance of learners and of your organization's academy content.
737
+ * No description available
738
+ */
739
+ readonly KanvasPlaybackServiceTransactionsScrubOverTheHistoryOfChangesToYourDeployments: PermissionKey;
740
+ /**
741
+ * No description available
742
+ */
743
+ readonly KanvasRepresentationOfInfrastructureConfigurationAndServices: PermissionKey;
744
+ /**
745
+ * Continuous visibility across all of your clusters and workloads.
746
+ */
747
+ readonly KanvasServicePerformance: PermissionKey;
748
+ /**
749
+ * 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.
750
+ */
751
+ readonly KanvasDragNDropPatternMergeWithExistingNodesOnCanvas: PermissionKey;
752
+ /**
753
+ * 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.
754
+ */
755
+ readonly KanvasLoadDesignPatternDisplaceCurrentNodesOnCanvas: PermissionKey;
756
+ /**
757
+ * 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.
758
+ */
759
+ readonly KanvasEditComponentConfugurationRjsfTooltips: PermissionKey;
760
+ /**
761
+ * No description available
762
+ */
763
+ readonly KanvasConfigureFieldrefs: PermissionKey;
764
+ /**
765
+ * In Kanvas, 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.
766
+ */
767
+ readonly KanvasDeleteComponents: PermissionKey;
768
+ /**
769
+ * In Kanvas, 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.
770
+ */
771
+ readonly KanvasCloneComponents: PermissionKey;
772
+ /**
773
+ * In Kanvas, 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.
774
+ */
775
+ readonly KanvasCopyComponents: PermissionKey;
776
+ /**
777
+ * In Kanvas, 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.
778
+ */
779
+ readonly KanvasLockComponents: PermissionKey;
780
+ /**
781
+ * In Kanvas, 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.
782
+ */
783
+ readonly KanvasAddComponents: PermissionKey;
784
+ /**
785
+ * In Kanvas, 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.
786
+ */
787
+ readonly KanvasConfigureComponentStyles: PermissionKey;
788
+ /**
789
+ * In Kanvas, 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.
790
+ */
791
+ readonly KanvasResetComponentStyles: PermissionKey;
792
+ /**
793
+ * In Kanvas, 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.
794
+ */
795
+ readonly KanvasResizeComponents: PermissionKey;
796
+ /**
797
+ * 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.
798
+ */
799
+ readonly KanvasDeleteShapes: PermissionKey;
800
+ /**
801
+ * 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.
802
+ */
803
+ readonly KanvasCloneShapes: PermissionKey;
804
+ /**
805
+ * 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.
806
+ */
807
+ readonly KanvasCopyShapes: PermissionKey;
808
+ /**
809
+ * 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.
810
+ */
811
+ readonly KanvasLockShapes: PermissionKey;
812
+ /**
813
+ * 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.
814
+ */
815
+ readonly KanvasAddShapes: PermissionKey;
816
+ /**
817
+ * 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.
818
+ */
819
+ readonly KanvasConfigureShapeStyles: PermissionKey;
820
+ /**
821
+ * 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.
822
+ */
823
+ readonly KanvasResetShapeStyles: PermissionKey;
824
+ /**
825
+ * 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.
826
+ */
827
+ readonly KanvasDeleteTextboxes: PermissionKey;
828
+ /**
829
+ * 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.
830
+ */
831
+ readonly KanvasCloneTextboxes: PermissionKey;
832
+ /**
833
+ * 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.
834
+ */
835
+ readonly KanvasCopyTextboxes: PermissionKey;
836
+ /**
837
+ * 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.
838
+ */
839
+ readonly KanvasLockTextboxes: PermissionKey;
840
+ /**
841
+ * 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.
842
+ */
843
+ readonly KanvasAddTextboxes: PermissionKey;
844
+ /**
845
+ * 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.
846
+ */
847
+ readonly KanvasConfigureTextboxStyles: PermissionKey;
848
+ /**
849
+ * 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.
850
+ */
851
+ readonly KanvasResetTextboxStyles: PermissionKey;
852
+ /**
853
+ * 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.
854
+ */
855
+ readonly KanvasDeleteSections: PermissionKey;
856
+ /**
857
+ * 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.
858
+ */
859
+ readonly KanvasCloneSections: PermissionKey;
860
+ /**
861
+ * 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.
862
+ */
863
+ readonly KanvasCopySections: PermissionKey;
864
+ /**
865
+ * 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.
866
+ */
867
+ readonly KanvasLockSections: PermissionKey;
868
+ /**
869
+ * 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.
870
+ */
871
+ readonly KanvasAddSections: PermissionKey;
872
+ /**
873
+ * 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.
874
+ */
875
+ readonly KanvasConfigureSectionStyles: PermissionKey;
876
+ /**
877
+ * 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.
878
+ */
879
+ readonly KanvasResetSectionStyles: PermissionKey;
880
+ /**
881
+ * 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 text to the textboxes currently on canvas.
882
+ */
883
+ readonly KanvasAddTextToTextboxes: PermissionKey;
884
+ /**
885
+ * No description available
886
+ */
887
+ readonly KanvasCreateDynamicFieldrefs: PermissionKey;
888
+ /**
889
+ * No description available
890
+ */
891
+ readonly KanvasConfigureEdgeHandles: PermissionKey;
892
+ /**
893
+ * No description available
894
+ */
895
+ readonly KanvasDeleteEdgeHandles: PermissionKey;
896
+ /**
897
+ * No description available
898
+ */
899
+ readonly KanvasUseHeirarchicalRelationships: PermissionKey;
900
+ /**
901
+ * No description available
902
+ */
903
+ readonly KanvasUseInventoryRelationships: PermissionKey;
904
+ /**
905
+ * 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.
906
+ */
907
+ readonly KanvasChangeDesignLayout: PermissionKey;
908
+ /**
909
+ * This permission grants the user the ability to undo/redo any action in done in Kanvas
910
+ */
911
+ readonly KanvasUndoOrRedo: PermissionKey;
912
+ /**
913
+ * Pencil is mouse/tool mode available in Kanvas that allows users to draw freehand shapes. This permission grants user the ability to use the pencil mode in Kanvas.
914
+ */
915
+ readonly KanvasUsePencil: PermissionKey;
916
+ /**
917
+ * Pen is a mouse/tool mode available in Kanvas that allows users to draw edges from one component to another. This permission grants user the ability to use the pencil mode in Kanvas.
918
+ */
919
+ readonly KanvasUsePen: PermissionKey;
920
+ /**
921
+ * Ability to freeform draw any shapes, draw edges
922
+ */
923
+ readonly KanvasWhiteboarding: PermissionKey;
924
+ /**
925
+ * Drag-n-drop cloud native infrastructure designer to configure, model, and deploy your workloads
926
+ */
927
+ readonly KanvasVisualDesign: PermissionKey;
928
+ /**
929
+ * Generator for GCP via K8s CRDs
930
+ */
931
+ readonly KanvasModels: PermissionKey;
932
+ /**
933
+ * Help center houses various ways through which the users might try to learn more about the Kanvas 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
934
+ */
935
+ readonly KanvasViewHelpCenter: PermissionKey;
936
+ /**
937
+ * 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
938
+ */
939
+ readonly KanvasScreenshotCanvas: PermissionKey;
940
+ /**
941
+ * 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.
942
+ */
943
+ readonly KanvasConfigureVisibleLayers: PermissionKey;
944
+ /**
945
+ * 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
946
+ */
947
+ readonly KanvasCreateBlankDesignInKanvas: PermissionKey;
948
+ /**
949
+ * 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)
950
+ */
951
+ readonly KanvasSaveDesignInKanvas: PermissionKey;
952
+ /**
953
+ * 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.
954
+ */
955
+ readonly KanvasViewComments: PermissionKey;
956
+ /**
957
+ * 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.
958
+ */
959
+ readonly KanvasResolveAComment: PermissionKey;
960
+ /**
961
+ * 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.
962
+ */
963
+ readonly KanvasDeleteComments: PermissionKey;
964
+ /**
965
+ * 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.
966
+ */
967
+ readonly KanvasCloneComments: PermissionKey;
968
+ /**
969
+ * 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.
970
+ */
971
+ readonly KanvasCopyComments: PermissionKey;
972
+ /**
973
+ * 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.
974
+ */
975
+ readonly KanvasLockComments: PermissionKey;
976
+ /**
977
+ * 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.
978
+ */
979
+ readonly KanvasAddComments: PermissionKey;
980
+ /**
981
+ * 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.
982
+ */
983
+ readonly KanvasConfigureCommentStyles: PermissionKey;
984
+ /**
985
+ * 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.
986
+ */
987
+ readonly KanvasResetCommentStyles: PermissionKey;
988
+ /**
989
+ * See all views withing a workspace
990
+ */
991
+ readonly KanvasViewViews: PermissionKey;
992
+ /**
993
+ * Create a new view
994
+ */
995
+ readonly KanvasCreateView: PermissionKey;
996
+ /**
997
+ * Dissolve environment and all connection memberships. Leave associated resources intact.
998
+ */
999
+ readonly KanvasDeleteView: PermissionKey;
1000
+ /**
1001
+ * Edit environment and it connection membership
1002
+ */
1003
+ readonly KanvasEditView: PermissionKey;
1004
+ /**
1005
+ * Add new views to workspace
1006
+ */
1007
+ readonly KanvasAssignViewsToWorkspace: PermissionKey;
1008
+ /**
1009
+ * Remove views from workspace
1010
+ */
1011
+ readonly KanvasUnassignViewsFromWorkspace: PermissionKey;
1012
+ /**
1013
+ * Export views to JSON format
1014
+ */
1015
+ readonly KanvasExportViews: PermissionKey;
1016
+ /**
1017
+ * View detailed information about a view and it's comopnent
1018
+ */
1019
+ readonly KanvasViewViewComponentDetails: PermissionKey;
1020
+ /**
1021
+ * Open a pre-existing view
1022
+ */
1023
+ readonly KanvasOpenView: PermissionKey;
1024
+ /**
1025
+ * Saved view
1026
+ */
1027
+ readonly KanvasSaveViews: PermissionKey;
1028
+ /**
1029
+ * Share Views
1030
+ */
1031
+ readonly KanvasShareViews: PermissionKey;
1032
+ /**
1033
+ * Clone Views
1034
+ */
1035
+ readonly KanvasCloneViews: PermissionKey;
1036
+ /**
1037
+ * Direct terminal access to one ore more pods/containers simultaneously. Integrated experience.
1038
+ */
1039
+ readonly KanvasWebBasedTerminal: PermissionKey;
1040
+ /**
1041
+ * View Interactive Terminal
1042
+ */
1043
+ readonly KanvasViewInteractiveTerminal: PermissionKey;
1044
+ /**
1045
+ * View managed infrastructure resources details in Kanvas Operator
1046
+ */
1047
+ readonly KanvasViewComponentDetails: PermissionKey;
1048
+ /**
1049
+ * View real-time resource metrics in Kanvas Operator
1050
+ */
1051
+ readonly KanvasViewObservabilityMetrics: PermissionKey;
1052
+ /**
1053
+ * Perform a conformance test in Kanvas Operator
1054
+ */
1055
+ readonly KanvasPerformConformanceTest: PermissionKey;
1056
+ /**
1057
+ * Stream container logs in Kanvas Operator
1058
+ */
1059
+ readonly KanvasStreamContainerLogs: PermissionKey;
1060
+ /**
1061
+ * Perform performance test in Kanvas Operator
1062
+ */
1063
+ readonly KanvasPerformPerformanceTestInVisualizer: PermissionKey;
1064
+ /**
1065
+ * Select a performance profile to run tests using
1066
+ */
1067
+ readonly KanvasSelectPerformanceProfileInVisualizer: PermissionKey;
1068
+ /**
1069
+ * Meshery Cloud
1070
+ */
1071
+ readonly OfferManagementHelmBased: PermissionKey;
1072
+ /**
1073
+ * No description available
1074
+ */
1075
+ readonly PerformanceManagementSmpCompatibleImportExport: PermissionKey;
1076
+ /**
1077
+ * Baseline and track your service mesh performance from release to release.
1078
+ */
1079
+ readonly PerformanceManagementPersistenceOfTestResults: PermissionKey;
1080
+ /**
1081
+ * No description available
1082
+ */
1083
+ readonly PerformanceManagementLoadGeneratorInterfaceCommonInterfaceUsedAsAnExtensionPointForSupportingDifferentTypesOfLoadGenerators: PermissionKey;
1084
+ /**
1085
+ * Single Load Generator: Support testing multiple endpoints simultaneously.
1086
+ */
1087
+ readonly PerformanceManagementLoadGeneration: PermissionKey;
1088
+ /**
1089
+ * Multiple Meshery Servers or Meshery Adapters generating load, collecting and coalescing results into a single report.
1090
+ */
1091
+ readonly PerformanceManagementDistributedLoadGenerator: PermissionKey;
1092
+ /**
1093
+ * No description available
1094
+ */
1095
+ readonly PerformanceManagementDefineNameAndSavePerformanceProfiles: PermissionKey;
1096
+ /**
1097
+ * No description available
1098
+ */
1099
+ readonly PerformanceManagementIntegratePerformanceAnalysisAsAGateInYourGitopsPipelineUsingPerformanceProfilesToRunRepeatableTestsAndAvoidRegressionIssuesBeforeTheyStartConfigureThisActionToTriggerWithEachOfYourReleasesOnEveryPullRequestOrAnyGithubWorkflowTriggerEvent: PermissionKey;
1100
+ /**
1101
+ * No description available
1102
+ */
1103
+ readonly PerformanceManagementUsingMesheryAsTheOfficalSmiConformanceValidationToolConfigureThisActionToTriggerWithEachOfYourReleasesOnEveryPullRequestOrAnyGithubWorkflowTriggerEvent: PermissionKey;
1104
+ /**
1105
+ * Share performance profiles and test results with individual users or teams.
1106
+ */
1107
+ readonly PerformanceManagementPerformanceProfiles: PermissionKey;
1108
+ /**
1109
+ * Historical views: Infrastructure-centric
1110
+ */
1111
+ readonly PerformanceManagementComparativeTesting: PermissionKey;
1112
+ /**
1113
+ * No description available
1114
+ */
1115
+ readonly PerformanceManagementExportableReport: PermissionKey;
1116
+ /**
1117
+ * No description available
1118
+ */
1119
+ readonly PerformanceManagementSocialShare: PermissionKey;
1120
+ /**
1121
+ * Experience uninterrupted oversight of your service quality with our Continuous Quality of Service Monitoring.
1122
+ */
1123
+ readonly PerformanceManagementContinuousQualityOfServiceMonitoring: PermissionKey;
1124
+ /**
1125
+ * No description available
1126
+ */
1127
+ readonly PerformanceManagementAdaptiveLoadControlOptimizeRps: PermissionKey;
1128
+ /**
1129
+ * Schedule one-time or reoccurring performance tests.
1130
+ */
1131
+ readonly PerformanceManagementSchedulingOfTests: PermissionKey;
1132
+ /**
1133
+ * No description available
1134
+ */
1135
+ readonly PerformanceManagementSophisticatedRecurringSchedulesOfPerformanceTestsOfConfigurationAnalyzers: PermissionKey;
1136
+ /**
1137
+ * Schedule tests from your calendar
1138
+ */
1139
+ readonly PerformanceManagementCalendarIntegration: PermissionKey;
1140
+ /**
1141
+ * No description available
1142
+ */
1143
+ readonly PerformanceManagementListenAndLearnAverageRequestResponseTime: PermissionKey;
1144
+ /**
1145
+ * No description available
1146
+ */
1147
+ readonly PerformanceManagementFormulaAndMeasurementScaleUsedToGaugeServiceMeshPerformanceInContextOfTheValueItSProvidingTheEnvironmentAndWorkloadsItSRunning: PermissionKey;
1148
+ /**
1149
+ * No description available
1150
+ */
1151
+ readonly PerformanceManagementAbilityToMonitorSignalsDefinedInSmpAndGenerateAMeshmarkInRealTime: PermissionKey;
1152
+ /**
1153
+ * Identify the cost of a specific network function.
1154
+ */
1155
+ readonly PerformanceManagementMeshmark: PermissionKey;
1156
+ /**
1157
+ * No description available
1158
+ */
1159
+ readonly PerformanceManagementProtocolsHttp: PermissionKey;
1160
+ /**
1161
+ * No description available
1162
+ */
1163
+ readonly PerformanceManagementProtocolsGrpc: PermissionKey;
1164
+ /**
1165
+ * No description available
1166
+ */
1167
+ readonly PerformanceManagementProtocolsTcp: PermissionKey;
1168
+ /**
1169
+ * No description available
1170
+ */
1171
+ readonly PerformanceManagementDuration: PermissionKey;
1172
+ /**
1173
+ * No description available
1174
+ */
1175
+ readonly PerformanceManagementMultipleThreads: PermissionKey;
1176
+ /**
1177
+ * No description available
1178
+ */
1179
+ readonly PerformanceManagementDefaultProfilesToFacilitateCapacitySoakAndOtherTesting: PermissionKey;
1180
+ /**
1181
+ * No description available
1182
+ */
1183
+ readonly PerformanceManagementComparisonOfTwoOrMoreReports: PermissionKey;
1184
+ /**
1185
+ * No description available
1186
+ */
1187
+ readonly PerformanceManagementPersistInSmpFormat: PermissionKey;
1188
+ /**
1189
+ * No description available
1190
+ */
1191
+ readonly PerformanceManagementExportSingleOrMultipleResultsInSmpFormat: PermissionKey;
1192
+ /**
1193
+ * No description available
1194
+ */
1195
+ readonly PerformanceManagementHistoricalView: PermissionKey;
1196
+ /**
1197
+ * No description available
1198
+ */
1199
+ readonly PerformanceManagementAnalysisLatencyThroughput: PermissionKey;
1200
+ /**
1201
+ * No description available
1202
+ */
1203
+ readonly PerformanceManagementAnalysisThresholdSettingsForPassFailWhenIntegratedIntoCiPipelines: PermissionKey;
1204
+ /**
1205
+ * No description available
1206
+ */
1207
+ readonly PerformanceManagementAnalysisIdentificationOfOpportunitiesToImprove: PermissionKey;
1208
+ /**
1209
+ * No description available
1210
+ */
1211
+ readonly PerformanceManagementAnalysisTrend: PermissionKey;
1212
+ /**
1213
+ * No description available
1214
+ */
1215
+ readonly PerformanceManagementAnalysisAnomalyDetection: PermissionKey;
1216
+ /**
1217
+ * Automatically suggest timeout settings for a given service.
1218
+ */
1219
+ readonly PerformanceManagementAnalysis: PermissionKey;
1220
+ /**
1221
+ * Creation of Meshery Nighthawk Adapter. Refactoring of Nighhawk and decoupling it from Meshery container. Lifecycle management of adapter. Definition and registration of adapter capabilities.
1222
+ */
1223
+ readonly PerformanceManagementMesheryAdapterForNighthawk: PermissionKey;
1224
+ /**
1225
+ * Allow users to identity Kubernetes clusters
1226
+ */
1227
+ readonly PerformanceManagementDistributedTests: PermissionKey;
1228
+ /**
1229
+ * Add a new performace profile
1230
+ */
1231
+ readonly PerformanceManagementAddPerformaceProfile: PermissionKey;
1232
+ /**
1233
+ * Run a test on performance profile
1234
+ */
1235
+ readonly PerformanceManagementRunTest: PermissionKey;
1236
+ /**
1237
+ * View results of performance tests
1238
+ */
1239
+ readonly PerformanceManagementViewResults: PermissionKey;
1240
+ /**
1241
+ * Edit performance test
1242
+ */
1243
+ readonly PerformanceManagementEditPerformanceTest: PermissionKey;
1244
+ /**
1245
+ * Delete performance test
1246
+ */
1247
+ readonly PerformanceManagementDeletePerformanceTest: PermissionKey;
1248
+ /**
1249
+ * View all performance profiles
1250
+ */
1251
+ readonly PerformanceManagementViewPerformanceProfiles: PermissionKey;
1252
+ /**
1253
+ * No description available
1254
+ */
1255
+ readonly PolicyNotificationSuppression: PermissionKey;
1256
+ /**
1257
+ * No description available
1258
+ */
1259
+ readonly PolicyNotificationCorrelation: PermissionKey;
1260
+ /**
1261
+ * No description available
1262
+ */
1263
+ readonly PolicyVersioned: PermissionKey;
1264
+ /**
1265
+ * No description available
1266
+ */
1267
+ readonly PolicyLogOfAllActionsInvokedByUsers: PermissionKey;
1268
+ /**
1269
+ * No description available
1270
+ */
1271
+ readonly PolicyNotificationOfAttemptsToInvokeUnauthorizedActions: PermissionKey;
1272
+ /**
1273
+ * No description available
1274
+ */
1275
+ readonly PolicyAdmissionControlForSpecificWorkloadsOnTheMesh: PermissionKey;
1276
+ /**
1277
+ * No description available
1278
+ */
1279
+ readonly PolicyServiceRequestAuthorizationWithJwt: PermissionKey;
1280
+ /**
1281
+ * No description available
1282
+ */
1283
+ readonly PolicyPerformanceBudgetSupportInPatterns: PermissionKey;
1284
+ /**
1285
+ * No description available
1286
+ */
1287
+ readonly SecurityManagementViewOverview: PermissionKey;
1288
+ /**
1289
+ * No description available
1290
+ */
1291
+ readonly SecurityManagementViewCredentials: PermissionKey;
1292
+ /**
1293
+ * No description available
1294
+ */
1295
+ readonly SecurityManagementCreateCredential: PermissionKey;
1296
+ /**
1297
+ * No description available
1298
+ */
1299
+ readonly SecurityManagementEditCredential: PermissionKey;
1300
+ /**
1301
+ * No description available
1302
+ */
1303
+ readonly SecurityManagementDeleteCredential: PermissionKey;
1304
+ /**
1305
+ * No description available
1306
+ */
1307
+ readonly SecurityManagementViewSessions: PermissionKey;
1308
+ /**
1309
+ * No description available
1310
+ */
1311
+ readonly SecurityManagementLogoutFromASession: PermissionKey;
1312
+ /**
1313
+ * No description available
1314
+ */
1315
+ readonly SecurityManagementViewTokens: PermissionKey;
1316
+ /**
1317
+ * No description available
1318
+ */
1319
+ readonly SecurityManagementDownloadToken: PermissionKey;
1320
+ /**
1321
+ * No description available
1322
+ */
1323
+ readonly SecurityManagementCreateToken: PermissionKey;
1324
+ /**
1325
+ * No description available
1326
+ */
1327
+ readonly SecurityManagementViewKeys: PermissionKey;
1328
+ /**
1329
+ * No description available
1330
+ */
1331
+ readonly SecurityManagementEditKey: PermissionKey;
1332
+ /**
1333
+ * No description available
1334
+ */
1335
+ readonly SecurityManagementDeleteKey: PermissionKey;
1336
+ /**
1337
+ * No description available
1338
+ */
1339
+ readonly SecurityManagementViewKeychains: PermissionKey;
1340
+ /**
1341
+ * No description available
1342
+ */
1343
+ readonly SecurityManagementCreateKeychain: PermissionKey;
1344
+ /**
1345
+ * No description available
1346
+ */
1347
+ readonly SecurityManagementEditKeychain: PermissionKey;
1348
+ /**
1349
+ * No description available
1350
+ */
1351
+ readonly SecurityManagementDeleteKeychain: PermissionKey;
1352
+ /**
1353
+ * 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.
1354
+ */
1355
+ readonly InfrastructureManagementManageCloudNativeInfrastructureLifeCycle: PermissionKey;
1356
+ /**
1357
+ * Manage configuration for applications like EmojiVoto, HTTPBin, Image Hub, Istio Book Info
1358
+ */
1359
+ readonly InfrastructureManagementManageCloudNativeInfrastructureConfiguration: PermissionKey;
1360
+ /**
1361
+ * Configure infrastructure with some predefined options like Automatic Sidecar injection, Envoy Filter, Policy
1362
+ */
1363
+ readonly InfrastructureManagementApplyCloudNativeInfrastructureConfiguration: PermissionKey;
1364
+ /**
1365
+ * Validate cloud native infrastructure configuration against best practices like Analyze Running Configuration, SMI conformance
1366
+ */
1367
+ readonly InfrastructureManagementValidateCloudNativeInfrastructureConfiguration: PermissionKey;
1368
+ /**
1369
+ * This permission grants the user the ability to apply custom configuration and customize existing configuration of thier cloud native infrastructure
1370
+ */
1371
+ readonly InfrastructureManagementApplyCustomCloudNativeConfiguration: PermissionKey;
1372
+ /**
1373
+ * 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
1374
+ */
1375
+ readonly InfrastructureManagementDeployCloudNativeInfrastructure: PermissionKey;
1376
+ /**
1377
+ * 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
1378
+ */
1379
+ readonly InfrastructureManagementUndeployCloudNativeInfrastructure: PermissionKey;
1380
+ /**
1381
+ * 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.
1382
+ */
1383
+ readonly InfrastructureManagementViewCloudNativeInfrastructure: PermissionKey;
1384
+ /**
1385
+ * See all workspaces within an organization
1386
+ */
1387
+ readonly WorkspaceManagementViewWorkspace: PermissionKey;
1388
+ /**
1389
+ * Dissolve workspace and all team and environment memberships. Leave associated resources intact
1390
+ */
1391
+ readonly WorkspaceManagementDeleteWorkspace: PermissionKey;
1392
+ /**
1393
+ * Edit workspace and it's team and environment membership
1394
+ */
1395
+ readonly WorkspaceManagementEditWorkspace: PermissionKey;
1396
+ /**
1397
+ * Create new workspace
1398
+ */
1399
+ readonly WorkspaceManagementCreateWorkspace: PermissionKey;
1400
+ /**
1401
+ * Add new team to workspace
1402
+ */
1403
+ readonly WorkspaceManagementAssignTeamToWorkspace: PermissionKey;
1404
+ /**
1405
+ * Remove team from workspace
1406
+ */
1407
+ readonly WorkspaceManagementRemoveTeamFromWorkspace: PermissionKey;
1408
+ /**
1409
+ * Add new environment to workspace
1410
+ */
1411
+ readonly WorkspaceManagementAssignEnvironmentToWorkspace: PermissionKey;
1412
+ /**
1413
+ * Remove environment from workspace
1414
+ */
1415
+ readonly WorkspaceManagementRemoveEnvironmentFromWorkspace: PermissionKey;
1416
+ /**
1417
+ * Assign designs to workspaces
1418
+ */
1419
+ readonly WorkspaceManagementAssignDesignsToWorkspaces: PermissionKey;
1420
+ /**
1421
+ * Remove designs from workspaces
1422
+ */
1423
+ readonly WorkspaceManagementRemoveDesignsFromWorkspaces: PermissionKey;
1424
+ /**
1425
+ * No description available
1426
+ */
1427
+ readonly WorkspaceManagementConnectGithubAccountToWorkspace: PermissionKey;
1428
+ /**
1429
+ * View all connections within an environment
1430
+ */
1431
+ readonly WorkspaceManagementViewConnections: PermissionKey;
1432
+ /**
1433
+ * See all environments within an workspace.
1434
+ */
1435
+ readonly WorkspaceManagementViewEnvironment: PermissionKey;
1436
+ /**
1437
+ * Create a new environment
1438
+ */
1439
+ readonly WorkspaceManagementCreateEnvironment: PermissionKey;
1440
+ /**
1441
+ * Dissolve environment and all connection memberships. Leave associated resources intact.
1442
+ */
1443
+ readonly WorkspaceManagementDeleteEnvironment: PermissionKey;
1444
+ /**
1445
+ * Edit environment and it connection membership
1446
+ */
1447
+ readonly WorkspaceManagementEditEnvironment: PermissionKey;
1448
+ /**
1449
+ * Add new connections to environments
1450
+ */
1451
+ readonly WorkspaceManagementAssignConnectionsToEnvironment: PermissionKey;
1452
+ /**
1453
+ * Remove connections from environment,
1454
+ */
1455
+ readonly WorkspaceManagementRemoveConnectionsFromEnvironments: PermissionKey;
1456
+ /**
1457
+ * View all items in catalog
1458
+ */
1459
+ readonly CatalogManagementViewCatalog: PermissionKey;
1460
+ /**
1461
+ * Delete catalog items
1462
+ */
1463
+ readonly CatalogManagementDeleteCatalogItems: PermissionKey;
1464
+ /**
1465
+ * Edit catalog items
1466
+ */
1467
+ readonly CatalogManagementEditCatalogItems: PermissionKey;
1468
+ /**
1469
+ * Unpublish items from catalog
1470
+ */
1471
+ readonly CatalogManagementUnpublishCatalogItems: PermissionKey;
1472
+ /**
1473
+ * Set item information or details of a catalog item
1474
+ */
1475
+ readonly CatalogManagementDetailsOfCatalogItem: PermissionKey;
1476
+ /**
1477
+ * Download a catalog item
1478
+ */
1479
+ readonly CatalogManagementDownloadCatalogItem: PermissionKey;
1480
+ /**
1481
+ * Clone any item from catalog
1482
+ */
1483
+ readonly CatalogManagementCloneCatalogItem: PermissionKey;
1484
+ /**
1485
+ * Browse the public catalog of learning paths, challenges, and certifications.
1486
+ */
1487
+ readonly AcademyViewAcademyContent: PermissionKey;
1488
+ /**
1489
+ * View and assess the performance of learners and of your organization's academy content.
1490
+ */
1491
+ readonly AcademyAccessTheAcademyConsole: PermissionKey;
1492
+ /**
1493
+ * No description available
1494
+ */
1495
+ readonly AcademyAComprehensiveGuideToUsingTheInstructorConsoleLearnHowToTrackLearnerProgressAnalyzeTestPerformanceAndManageYourAcademySContentAndMetrics: PermissionKey;
1496
+ /**
1497
+ * View all challenges
1498
+ */
1499
+ readonly AcademyViewChallenges: PermissionKey;
1500
+ /**
1501
+ * No description available
1502
+ */
1503
+ readonly AcademyCreateCertifications: PermissionKey;
1504
+ /**
1505
+ * Layer5 Cloud uses webhooks to automate approval flows and email notifications. This guide will help you customize and add your own custom webhooks.
1506
+ */
1507
+ readonly SupportAndDeploymentWebhooks: PermissionKey;
1508
+ /**
1509
+ * 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.
1510
+ */
1511
+ readonly SupportAndDeploymentRestApiUserDocumentation: PermissionKey;
1512
+ /**
1513
+ * 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.
1514
+ */
1515
+ readonly SupportAndDeploymentRestApiReference: PermissionKey;
1516
+ /**
1517
+ * Customize the appearance and branding of your engineering platform powered by Layer5 Cloud.
1518
+ */
1519
+ readonly SupportAndDeploymentWhiteLabel: PermissionKey;
1520
+ /**
1521
+ * Get help with most of your Meshery questions and issues in our Community Forum.
1522
+ */
1523
+ readonly SupportAndDeploymentCommunitySupport: PermissionKey;
1524
+ /**
1525
+ * Layer5 Support can help you troubleshoot issues you run into while using Meshery. Get support via the web.
1526
+ */
1527
+ readonly SupportAndDeploymentStandardSupport: PermissionKey;
1528
+ /**
1529
+ * 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.
1530
+ */
1531
+ readonly SupportAndDeploymentPremiumAndPremiumPlusSupport: PermissionKey;
1532
+ /**
1533
+ * Self-hosted Layer5 Cloud for on-prem appliances or self-managed cloud tenants. Keep your Kanvas designs internal to your workplace. Get remote support from Layer5 when you need it.
1534
+ */
1535
+ readonly SupportAndDeploymentSelfHostedDeployment: PermissionKey;
1536
+ /**
1537
+ * Layer5 Support can help you troubleshoot issues you run into while using Meshery. Get support via phone.
1538
+ */
1539
+ readonly SupportAndDeploymentPhoneSupport: PermissionKey;
1540
+ /**
1541
+ * No description available
1542
+ */
1543
+ readonly SupportAndDeploymentPayBillsViaInvoiceRatherThanUsingYourCreditCard: PermissionKey;
1544
+ /**
1545
+ * No description available
1546
+ */
1547
+ readonly TrafficManagementFacilitateANetworkTapOfAnyRequestTraffic: PermissionKey;
1548
+ /**
1549
+ * No description available
1550
+ */
1551
+ readonly TrafficManagementVisualDefinitionsOfTrafficRules: PermissionKey;
1552
+ /**
1553
+ * No description available
1554
+ */
1555
+ readonly TrafficManagementDynamicLoadUnloadOfWasmFilters: PermissionKey;
1556
+ /**
1557
+ * No description available
1558
+ */
1559
+ readonly TrafficManagementConfigurationOfWasmFilters: PermissionKey;
1560
+ /**
1561
+ * No description available
1562
+ */
1563
+ readonly TrafficManagementViaWasmFilter: PermissionKey;
1564
+ /**
1565
+ * No description available
1566
+ */
1567
+ readonly TrafficManagementFlaggerIntegration: PermissionKey;
1568
+ /**
1569
+ * No description available
1570
+ */
1571
+ readonly TrafficManagementArgoIntegration: PermissionKey;
1572
+ /**
1573
+ * No description available
1574
+ */
1575
+ readonly ApplicationManagementGolangNativeExponentialBackoff: PermissionKey;
1576
+ /**
1577
+ * No description available
1578
+ */
1579
+ readonly ApplicationManagementGokit: PermissionKey;
1580
+ /**
1581
+ * No description available
1582
+ */
1583
+ readonly ApplicationManagementSpringBoot: PermissionKey;
1584
+ /**
1585
+ * No description available
1586
+ */
1587
+ readonly ApplicationManagementHystrix: PermissionKey;
1588
+ /**
1589
+ * Open list of best practices for Istio
1590
+ */
1591
+ readonly ConfigurationManagementOpenListOfBestPracticesForIstio: PermissionKey;
1592
+ /**
1593
+ * Proprietary list of best practices for Istio
1594
+ */
1595
+ readonly ConfigurationManagementProprietaryListOfBestPracticesForIstio: PermissionKey;
1596
+ /**
1597
+ * VirtualService
1598
+ */
1599
+ readonly ConfigurationManagementVirtualservice: PermissionKey;
1600
+ /**
1601
+ * DestinationRule
1602
+ */
1603
+ readonly ConfigurationManagementDestinationrule: PermissionKey;
1604
+ /**
1605
+ * mTLS (PeerAuthentication)
1606
+ */
1607
+ readonly ConfigurationManagementMtlsPeerauthentication: PermissionKey;
1608
+ /**
1609
+ * Automatic Sidecar Injection on a Namespace
1610
+ */
1611
+ readonly ConfigurationManagementAutomaticSidecarInjectionOnANamespace: PermissionKey;
1612
+ /**
1613
+ * Sidecars
1614
+ */
1615
+ readonly ConfigurationManagementSidecars: PermissionKey;
1616
+ /**
1617
+ * AuthorizationPolicy
1618
+ */
1619
+ readonly ConfigurationManagementAuthorizationpolicy: PermissionKey;
1620
+ /**
1621
+ * EnvoyFilters
1622
+ */
1623
+ readonly ConfigurationManagementEnvoyfilters: PermissionKey;
1624
+ /**
1625
+ * PeerAuthentication
1626
+ */
1627
+ readonly ConfigurationManagementPeerauthentication: PermissionKey;
1628
+ /**
1629
+ * Istio Operator
1630
+ */
1631
+ readonly ConfigurationManagementIstioOperator: PermissionKey;
1632
+ /**
1633
+ * Ingress Gateway (Gateways)
1634
+ */
1635
+ readonly ConfigurationManagementIngressGatewayGateways: PermissionKey;
1636
+ /**
1637
+ * Egress Gateway (Gateways)
1638
+ */
1639
+ readonly ConfigurationManagementEgressGatewayGateways: PermissionKey;
1640
+ /**
1641
+ * Add-on: Prometheus
1642
+ */
1643
+ readonly ConfigurationManagementAddOnPrometheus: PermissionKey;
1644
+ /**
1645
+ * Add-on: Kiali
1646
+ */
1647
+ readonly ConfigurationManagementAddOnKiali: PermissionKey;
1648
+ /**
1649
+ * Add-on: Grafana
1650
+ */
1651
+ readonly ConfigurationManagementAddOnGrafana: PermissionKey;
1652
+ /**
1653
+ * Add-on: Zipkin
1654
+ */
1655
+ readonly ConfigurationManagementAddOnZipkin: PermissionKey;
1656
+ /**
1657
+ * Add-on: Jaeger
1658
+ */
1659
+ readonly ConfigurationManagementAddOnJaeger: PermissionKey;
1660
+ /**
1661
+ * Custom Configuration
1662
+ */
1663
+ readonly ConfigurationManagementCustomConfiguration: PermissionKey;
1664
+ /**
1665
+ * Ingress
1666
+ */
1667
+ readonly ConfigurationManagementIngress: PermissionKey;
1668
+ /**
1669
+ * Canary Rollout
1670
+ */
1671
+ readonly ConfigurationManagementCanaryRollout: PermissionKey;
1672
+ /**
1673
+ * No description available
1674
+ */
1675
+ readonly WorkflowManagementSingleAndMultipleApprovers: PermissionKey;
1676
+ /**
1677
+ * No description available
1678
+ */
1679
+ readonly BusinessPerformanceShoppingCartBasedRealTimeDiscount: PermissionKey;
1680
+ /**
1681
+ * Subscription plan management. Transformation of workflow pricing model.
1682
+ */
1683
+ readonly BusinessPerformanceServerlessPricing: PermissionKey;
1684
+ /**
1685
+ * No description available
1686
+ */
1687
+ readonly DigitalExperienceManagementFullstoryLikeCapabilities: PermissionKey;
1688
+ /**
1689
+ * No description available
1690
+ */
1691
+ readonly DigitalExperienceManagementLikePendoTellingUsersWhatTheyAreMissingHowToUseTheProduct: PermissionKey;
1692
+ /**
1693
+ * No description available
1694
+ */
1695
+ readonly DigitalExperienceManagementSimple: PermissionKey;
1696
+ /**
1697
+ * No description available
1698
+ */
1699
+ readonly DigitalExperienceManagementAdvanced: PermissionKey;
1700
+ /**
1701
+ * Capture and share visual snapshots of your work with ease using our Screenshots feature.
1702
+ */
1703
+ readonly DigitalExperienceManagementScreenshots: PermissionKey;
1704
+ /**
1705
+ * No description available
1706
+ */
1707
+ readonly IncidentManagementEventsReportingOfAsynchronousEvents: PermissionKey;
1708
+ /**
1709
+ * Detailed accounting of user activity. Historical record or each action taken.
1710
+ */
1711
+ readonly IncidentManagementAuditTrail: PermissionKey;
1712
+ /**
1713
+ * Dismiss individual; Dismiss bulk.
1714
+ */
1715
+ readonly IncidentManagementAlertGeneration: PermissionKey;
1716
+ /**
1717
+ * No description available
1718
+ */
1719
+ readonly IncidentManagementPolicyBased: PermissionKey;
1720
+ /**
1721
+ * Threaded Slack Notifications
1722
+ */
1723
+ readonly IncidentManagementSlackNotifications: PermissionKey;
1724
+ /**
1725
+ * No description available
1726
+ */
1727
+ readonly IncidentManagementMesheryCloudNative: PermissionKey;
1728
+ /**
1729
+ * No description available
1730
+ */
1731
+ readonly IncidentManagementIntegrationWGsuite: PermissionKey;
1732
+ /**
1733
+ * No description available
1734
+ */
1735
+ readonly IncidentManagementIntegrationWMicrosoftOutlook: PermissionKey;
1736
+ /**
1737
+ * No description available
1738
+ */
1739
+ readonly IncidentManagementDatadog: PermissionKey;
1740
+ /**
1741
+ * No description available
1742
+ */
1743
+ readonly IncidentManagementEventRecording: PermissionKey;
1744
+ /**
1745
+ * No description available
1746
+ */
1747
+ readonly IncidentManagementEventReplay: PermissionKey;
1748
+ /**
1749
+ * Visual event replay in Kanvas
1750
+ */
1751
+ readonly IncidentManagementTrafficReplay: PermissionKey;
1752
+ /**
1753
+ * No description available
1754
+ */
1755
+ readonly IncidentManagementComponentLogging: PermissionKey;
1756
+ /**
1757
+ * No description available
1758
+ */
1759
+ readonly ChaosManagementLibraryOfExperiments: PermissionKey;
1760
+ /**
1761
+ * No description available
1762
+ */
1763
+ readonly ChaosManagementAsWasmFilters: PermissionKey;
1764
+ /**
1765
+ * No description available
1766
+ */
1767
+ readonly ChaosManagementAsSidecars: PermissionKey;
1768
+ /**
1769
+ * No description available
402
1770
  */
403
- readonly AdministrationAccessTheAcademyConsole: PermissionKey;
1771
+ readonly ChaosManagementAsDaemonsets: PermissionKey;
404
1772
  };
405
1773
  /**
406
1774
  * Type representing all valid permission key names.
@@ -417,6 +1785,6 @@ declare const AllPermissionKeys: PermissionKey[];
417
1785
  /**
418
1786
  * Array of all permission key names for iteration.
419
1787
  */
420
- declare const AllPermissionKeyNames: ("CatalogShareDesign" | "CatalogCloneDesign" | "DesignsViewDesigns" | "FiltersViewFilters" | "CatalogRequestsViewCatalogRequests" | "CatalogRequestsApproveCatalogRequest" | "CatalogRequestsDenyCatalogRequest" | "DesignsCreateNewDesign" | "DesignsImportDesign" | "DesignsPublishDesign" | "DesignsUnpublishDesign" | "DesignsValidateDesign" | "DesignsDeployDesign" | "DesignsUndeployDesign" | "DesignsDetailsOfDesign" | "DesignsEditDesign" | "DesignsDeleteADesign" | "DesignsDownloadADesign" | "FiltersImportFilter" | "FiltersDownloadAWasmFilter" | "FiltersDetailsOfWasmFilter" | "FiltersEditWasmFilter" | "FiltersCloneWasmFilter" | "FiltersDeleteWasmFilter" | "ExtensionsInstallExtension" | "ExtensionsViewMesheryUserPreferences" | "ExtensionsViewExtensions" | "UsersViewAllKubernetesClusters" | "TeamsViewTeam" | "TeamsViewTeams" | "TeamsViewAllTeams" | "TeamsAddUserToTeam" | "TeamsInviteUserToTeam" | "TeamsRemoveUserFromTeam" | "TeamsCreateTeam" | "TeamsDeleteTeam" | "TeamsEditTeam" | "TeamsRemoveRolesFromTeamMembers" | "TeamsAssignRolesToTeamMembers" | "TeamsOpenTeamInvite" | "OrganizationsCreateOrganization" | "OrganizationsEditOrganization" | "OrganizationsAddUserToOrganization" | "OrganizationsInviteUserToOrganization" | "OrganizationsRemoveUserFromOrganization" | "OrganizationsPromoteOrDemoteUserToOrgAdmin" | "OrganizationsViewOrg" | "OrganizationsViewOrganizations" | "OrganizationsViewAllOrganizations" | "OrganizationsRemoveRolesFromOrganizationMembers" | "OrganizationsAssignRolesToOrganizationMembers" | "ConnectionsAddCluster" | "ConnectionsChangeConnectionState" | "ConnectionsFlushMeshsyncData" | "ConnectionsRegisterDiscoveredMeshsyncResource" | "ConnectionsDeleteAConnection" | "SettingsViewSettings" | "SettingsConnectAdapter" | "SettingsConnectMetrics" | "SettingsViewMetrics" | "SettingsViewRegistry" | "PerformanceAddPerformaceProfile" | "PerformanceRunTest" | "PerformanceViewResults" | "PerformanceEditPerformanceTest" | "PerformanceDeletePerformanceTest" | "PerformanceViewPerformanceProfiles" | "CloudNativeInfrastructureLifecycleManageCloudNativeInfrastructureLifeCycle" | "CloudNativeInfrastructureLifecycleManageCloudNativeInfrastructureConfiguration" | "CloudNativeInfrastructureLifecycleApplyCloudNativeInfrastructureConfiguration" | "CloudNativeInfrastructureLifecycleValidateCloudNativeInfrastructureConfiguration" | "CloudNativeInfrastructureLifecycleApplyCustomCloudNativeConfiguration" | "CloudNativeInfrastructureLifecycleDeployCloudNativeInfrastructure" | "CloudNativeInfrastructureLifecycleUndeployCloudNativeInfrastructure" | "CloudNativeInfrastructureLifecycleViewCloudNativeInfrastructure" | "ConnectionsViewConnections" | "EnvironmentsViewEnvironment" | "EnvironmentsCreateEnvironment" | "EnvironmentsDeleteEnvironment" | "EnvironmentsEditEnvironment" | "EnvironmentsAssignConnectionsToEnvironment" | "EnvironmentsRemoveConnectionsFromEnvironments" | "CatalogViewCatalog" | "WorkspaceViewWorkspace" | "WorkspaceDeleteWorkspace" | "WorkspaceEditWorkspace" | "WorkspaceCreateWorkspace" | "WorkspaceAssignTeamToWorkspace" | "WorkspaceRemoveTeamFromWorkspace" | "WorkspaceAssignEnvironmentToWorkspace" | "WorkspaceRemoveEnvironmentFromWorkspace" | "WorkspaceAssignDesignsToWorkspaces" | "WorkspaceRemoveDesignsFromWorkspaces" | "SettingsResetDatabase" | "AdministrationAccessTheAcademyConsole")[];
1788
+ declare const AllPermissionKeyNames: ("AccountManagementViewProfile" | "AccountManagementEditAccount" | "AccountManagementResetPasword" | "AccountManagementDeleteAccount" | "AccountManagementConnectYourGithubAccount" | "AccountManagementConnectYourGoogleAccount" | "AccountManagementViewSubcription" | "AccountManagementManageSubcriptions" | "AccountManagementViewPlans" | "CatalogManagementDeployDesign" | "CatalogManagementShareDesign" | "CatalogManagementCloneDesign" | "CatalogManagementOpenInPlayground" | "CatalogManagementViewApplications" | "CatalogManagementViewDesigns" | "CatalogManagementViewFilters" | "CatalogManagementViewCatalogRequests" | "CatalogManagementApproveCatalogRequest" | "CatalogManagementDenyCatalogRequest" | "CatalogManagementViewPrivateDesigns" | "CatalogManagementViewPublicDesigns" | "CatalogManagementViewPublishedDesigns" | "CatalogManagementCreateNewDesign" | "CatalogManagementImportDesign" | "CatalogManagementExportDesign" | "CatalogManagementPublishDesign" | "CatalogManagementUnpublishDesign" | "CatalogManagementValidateDesign" | "CatalogManagementUndeployDesign" | "CatalogManagementDetailsOfDesign" | "CatalogManagementEditDesign" | "CatalogManagementDeleteADesign" | "CatalogManagementDownloadADesign" | "CatalogManagementImportFilter" | "CatalogManagementPublishWasmFilter" | "CatalogManagementUnpublishWasmFilter" | "CatalogManagementDownloadAWasmFilter" | "CatalogManagementDetailsOfWasmFilter" | "CatalogManagementEditWasmFilter" | "CatalogManagementCloneWasmFilter" | "CatalogManagementDeleteWasmFilter" | "CatalogManagementWasmFilterAndFilter" | "CollaborationInviteAnyMesheryCloudUserOrAllMesheryUsers" | "CollaborationInviteAnyMesheryCloudUserToOnAPrivateDesign" | "CollaborationMessageInRealTime" | "CollaborationDiscussAnyDesignByLeavingReviewComments" | "CollaborationManageAccessToDesigns" | "CollaborationCreateAndCollaborateInOnlineDesignsInRealTime" | "ContentCatalogIstioVirtualServiceDestinationRules" | "ContentCatalogConsul" | "ContentCatalogKuma" | "EventManagementViewStatistics" | "EventsManagementViewEvents" | "EventsManagementViewSummary" | "EventsManagementViewAudit" | "ExtensibilityDynamicInjectionViaRemoteProvider" | "ExtensibilityNamespacedCustomEndpoints" | "ExtensibilitySwaggerIntegration" | "ExtensibilityNamespacedCustomResolvers" | "ExtensibilityAdapters" | "ExtensibilityLoadGenerators" | "ExtensibilityAuthentication" | "ExtensibilityAuthorization" | "ExtensibilityRemoteProviders" | "ExtensibilityUserPreferences" | "ExtensibilityPeerToPeer" | "ExtensibilityInstallExtension" | "ExtensibilityViewMesheryUserPreferences" | "ExtensibilityViewExtensions" | "FinancialManagementShowback" | "FinancialManagementChargeback" | "GitopsSnapshots" | "GitopsBitbucket" | "GitopsGithub" | "GitopsGitlab" | "GitopsArgoevents" | "GitopsWebhook" | "GitopsAssessAndCharacterizeServicePerformance" | "GitopsVerifyConformanceReturnResultsAndGreenRedLight" | "IdentityAccessManagementImplicitUserImplicitRoleAdmin" | "IdentityAccessManagementMultiTenancy" | "IdentityAccessManagementAllowsPreferencesToBeSetPerUser" | "IdentityAccessManagementBuiltInRoles" | "IdentityAccessManagementUserDefinedRoles" | "IdentityAccessManagementEnforcementOfTenancy" | "IdentityAccessManagementHierarchicalPermissioning" | "IdentityAccessManagementAuthenticationOauth" | "IdentityAccessManagementAuthenticationLdap" | "IdentityAccessManagementAuthenticationSaml" | "IdentityAccessManagementAzureActiveDirectory" | "IdentityAccessManagementMesheryAsAnIdp" | "IdentityAccessManagementViewUserPublicProfile" | "IdentityAccessManagementViewUserSettings" | "IdentityAccessManagementViewAllUsers" | "IdentityAccessManagementUpdateUserProfile" | "IdentityAccessManagementInviteUserToTeam" | "IdentityAccessManagementRemoveUserFromTeam" | "IdentityAccessManagementCreateTeam" | "IdentityAccessManagementDeleteTeam" | "IdentityAccessManagementDeleteUser" | "IdentityAccessManagementEditUser" | "IdentityAccessManagementCreateUser" | "IdentityAccessManagementLeaveTeam" | "IdentityAccessManagementViewAllKubernetesClusters" | "IdentityAccessManagementViewTeam" | "IdentityAccessManagementViewTeams" | "IdentityAccessManagementViewAllTeams" | "IdentityAccessManagementAddUserToTeam" | "IdentityAccessManagementEditTeam" | "IdentityAccessManagementRemoveRolesFromTeamMembers" | "IdentityAccessManagementAssignRolesToTeamMembers" | "IdentityAccessManagementOpenTeamInvite" | "IdentityAccessManagementCreateOrganization" | "IdentityAccessManagementEditOrganization" | "IdentityAccessManagementAddUserToOrganization" | "IdentityAccessManagementInviteUserToOrganization" | "IdentityAccessManagementRemoveUserFromOrganization" | "IdentityAccessManagementPromoteOrDemoteUserToOrgAdmin" | "IdentityAccessManagementViewOrg" | "IdentityAccessManagementViewOrganizations" | "IdentityAccessManagementViewAllOrganizations" | "IdentityAccessManagementRemoveRolesFromOrganizationMembers" | "IdentityAccessManagementAssignRolesToOrganizationMembers" | "IdentityAccessManagementTransferOrganizationOwnership" | "IdentityAccessManagementDeleteOrganization" | "IdentityAccessManagementLeaveOrganization" | "IdentityAccessManagementCustomDomain" | "IdentityAccessManagementDomainRoutingAndRemoval" | "IdentityAccessManagementManageRecognitions" | "IdentityAccessManagementManageInvitations" | "IdentityAccessManagementRoles" | "IdentityAccessManagementAssignUserRoles" | "IdentityAccessManagementAssignKeychainsToRoles" | "IdentityAccessManagementCreateCustomRoles" | "IdentityAccessManagementUpdateCustomRoles" | "IdentityAccessManagementDeleteCustomRoles" | "IdentityAccessManagementExportCustomRoles" | "IdentityAccessManagementViewAllAccessRequests" | "IdentityAccessManagementAcceptAccessRequest" | "IdentityAccessManagementDenyAccessRequest" | "LifecycleManagementDryRun" | "LifecycleManagementMesheryAdaptersProvisionConfigureAndManage10DifferentServiceMeshes" | "LifecycleManagementProvisioningDeprovisioning" | "LifecycleManagementSimpleConfiguration" | "LifecycleManagementAdvancedConfiguration" | "LifecycleManagementManagedUpgrades" | "LifecycleManagementAdHocAddOrRemove" | "LifecycleManagementParseLogs" | "LifecycleManagementExecShell" | "LifecycleManagementDynamicLoadUnload" | "LifecycleManagementClusterDiscovery" | "LifecycleManagementMultipleKubernetesClusters" | "LifecycleManagementEnvironments" | "LifecycleManagementAnnouncementAndSynchronization" | "LifecycleManagementOrganizationalPermissioning" | "LifecycleManagementAddCluster" | "LifecycleManagementChangeConnectionState" | "LifecycleManagementFlushMeshsyncData" | "LifecycleManagementRegisterDiscoveredMeshsyncResource" | "LifecycleManagementDeleteAConnection" | "MesherySystemStreamlinedCi" | "MesherySystemIntegrationTests" | "MesherySystemReleaseChannelsStableAndEdge" | "MesherySystemTimeToValueEasySetupOfMeshery" | "MesherySystemMesheryctl" | "MesherySystemMesheryServer" | "MesherySystemMeshsync" | "MesherySystemScriptHomebrewScoop" | "MesherySystemFacilitateCollectionOfDebugForEaseOfIssueReporting" | "MesherySystemEachComponent" | "MesherySystemCli" | "MesherySystemViewSettings" | "MesherySystemConnectAdapter" | "MesherySystemConnectMetrics" | "MesherySystemViewMetrics" | "MesherySystemViewRegistry" | "MesherySystemResetDatabase" | "KanvasPlaybackServiceTransactionsScrubOverTheHistoryOfChangesToYourDeployments" | "KanvasRepresentationOfInfrastructureConfigurationAndServices" | "KanvasServicePerformance" | "KanvasDragNDropPatternMergeWithExistingNodesOnCanvas" | "KanvasLoadDesignPatternDisplaceCurrentNodesOnCanvas" | "KanvasEditComponentConfugurationRjsfTooltips" | "KanvasConfigureFieldrefs" | "KanvasDeleteComponents" | "KanvasCloneComponents" | "KanvasCopyComponents" | "KanvasLockComponents" | "KanvasAddComponents" | "KanvasConfigureComponentStyles" | "KanvasResetComponentStyles" | "KanvasResizeComponents" | "KanvasDeleteShapes" | "KanvasCloneShapes" | "KanvasCopyShapes" | "KanvasLockShapes" | "KanvasAddShapes" | "KanvasConfigureShapeStyles" | "KanvasResetShapeStyles" | "KanvasDeleteTextboxes" | "KanvasCloneTextboxes" | "KanvasCopyTextboxes" | "KanvasLockTextboxes" | "KanvasAddTextboxes" | "KanvasConfigureTextboxStyles" | "KanvasResetTextboxStyles" | "KanvasDeleteSections" | "KanvasCloneSections" | "KanvasCopySections" | "KanvasLockSections" | "KanvasAddSections" | "KanvasConfigureSectionStyles" | "KanvasResetSectionStyles" | "KanvasAddTextToTextboxes" | "KanvasCreateDynamicFieldrefs" | "KanvasConfigureEdgeHandles" | "KanvasDeleteEdgeHandles" | "KanvasUseHeirarchicalRelationships" | "KanvasUseInventoryRelationships" | "KanvasChangeDesignLayout" | "KanvasUndoOrRedo" | "KanvasUsePencil" | "KanvasUsePen" | "KanvasWhiteboarding" | "KanvasVisualDesign" | "KanvasModels" | "KanvasViewHelpCenter" | "KanvasScreenshotCanvas" | "KanvasConfigureVisibleLayers" | "KanvasCreateBlankDesignInKanvas" | "KanvasSaveDesignInKanvas" | "KanvasViewComments" | "KanvasResolveAComment" | "KanvasDeleteComments" | "KanvasCloneComments" | "KanvasCopyComments" | "KanvasLockComments" | "KanvasAddComments" | "KanvasConfigureCommentStyles" | "KanvasResetCommentStyles" | "KanvasViewViews" | "KanvasCreateView" | "KanvasDeleteView" | "KanvasEditView" | "KanvasAssignViewsToWorkspace" | "KanvasUnassignViewsFromWorkspace" | "KanvasExportViews" | "KanvasViewViewComponentDetails" | "KanvasOpenView" | "KanvasSaveViews" | "KanvasShareViews" | "KanvasCloneViews" | "KanvasWebBasedTerminal" | "KanvasViewInteractiveTerminal" | "KanvasViewComponentDetails" | "KanvasViewObservabilityMetrics" | "KanvasPerformConformanceTest" | "KanvasStreamContainerLogs" | "KanvasPerformPerformanceTestInVisualizer" | "KanvasSelectPerformanceProfileInVisualizer" | "OfferManagementHelmBased" | "PerformanceManagementSmpCompatibleImportExport" | "PerformanceManagementPersistenceOfTestResults" | "PerformanceManagementLoadGeneratorInterfaceCommonInterfaceUsedAsAnExtensionPointForSupportingDifferentTypesOfLoadGenerators" | "PerformanceManagementLoadGeneration" | "PerformanceManagementDistributedLoadGenerator" | "PerformanceManagementDefineNameAndSavePerformanceProfiles" | "PerformanceManagementIntegratePerformanceAnalysisAsAGateInYourGitopsPipelineUsingPerformanceProfilesToRunRepeatableTestsAndAvoidRegressionIssuesBeforeTheyStartConfigureThisActionToTriggerWithEachOfYourReleasesOnEveryPullRequestOrAnyGithubWorkflowTriggerEvent" | "PerformanceManagementUsingMesheryAsTheOfficalSmiConformanceValidationToolConfigureThisActionToTriggerWithEachOfYourReleasesOnEveryPullRequestOrAnyGithubWorkflowTriggerEvent" | "PerformanceManagementPerformanceProfiles" | "PerformanceManagementComparativeTesting" | "PerformanceManagementExportableReport" | "PerformanceManagementSocialShare" | "PerformanceManagementContinuousQualityOfServiceMonitoring" | "PerformanceManagementAdaptiveLoadControlOptimizeRps" | "PerformanceManagementSchedulingOfTests" | "PerformanceManagementSophisticatedRecurringSchedulesOfPerformanceTestsOfConfigurationAnalyzers" | "PerformanceManagementCalendarIntegration" | "PerformanceManagementListenAndLearnAverageRequestResponseTime" | "PerformanceManagementFormulaAndMeasurementScaleUsedToGaugeServiceMeshPerformanceInContextOfTheValueItSProvidingTheEnvironmentAndWorkloadsItSRunning" | "PerformanceManagementAbilityToMonitorSignalsDefinedInSmpAndGenerateAMeshmarkInRealTime" | "PerformanceManagementMeshmark" | "PerformanceManagementProtocolsHttp" | "PerformanceManagementProtocolsGrpc" | "PerformanceManagementProtocolsTcp" | "PerformanceManagementDuration" | "PerformanceManagementMultipleThreads" | "PerformanceManagementDefaultProfilesToFacilitateCapacitySoakAndOtherTesting" | "PerformanceManagementComparisonOfTwoOrMoreReports" | "PerformanceManagementPersistInSmpFormat" | "PerformanceManagementExportSingleOrMultipleResultsInSmpFormat" | "PerformanceManagementHistoricalView" | "PerformanceManagementAnalysisLatencyThroughput" | "PerformanceManagementAnalysisThresholdSettingsForPassFailWhenIntegratedIntoCiPipelines" | "PerformanceManagementAnalysisIdentificationOfOpportunitiesToImprove" | "PerformanceManagementAnalysisTrend" | "PerformanceManagementAnalysisAnomalyDetection" | "PerformanceManagementAnalysis" | "PerformanceManagementMesheryAdapterForNighthawk" | "PerformanceManagementDistributedTests" | "PerformanceManagementAddPerformaceProfile" | "PerformanceManagementRunTest" | "PerformanceManagementViewResults" | "PerformanceManagementEditPerformanceTest" | "PerformanceManagementDeletePerformanceTest" | "PerformanceManagementViewPerformanceProfiles" | "PolicyNotificationSuppression" | "PolicyNotificationCorrelation" | "PolicyVersioned" | "PolicyLogOfAllActionsInvokedByUsers" | "PolicyNotificationOfAttemptsToInvokeUnauthorizedActions" | "PolicyAdmissionControlForSpecificWorkloadsOnTheMesh" | "PolicyServiceRequestAuthorizationWithJwt" | "PolicyPerformanceBudgetSupportInPatterns" | "SecurityManagementViewOverview" | "SecurityManagementViewCredentials" | "SecurityManagementCreateCredential" | "SecurityManagementEditCredential" | "SecurityManagementDeleteCredential" | "SecurityManagementViewSessions" | "SecurityManagementLogoutFromASession" | "SecurityManagementViewTokens" | "SecurityManagementDownloadToken" | "SecurityManagementCreateToken" | "SecurityManagementViewKeys" | "SecurityManagementEditKey" | "SecurityManagementDeleteKey" | "SecurityManagementViewKeychains" | "SecurityManagementCreateKeychain" | "SecurityManagementEditKeychain" | "SecurityManagementDeleteKeychain" | "InfrastructureManagementManageCloudNativeInfrastructureLifeCycle" | "InfrastructureManagementManageCloudNativeInfrastructureConfiguration" | "InfrastructureManagementApplyCloudNativeInfrastructureConfiguration" | "InfrastructureManagementValidateCloudNativeInfrastructureConfiguration" | "InfrastructureManagementApplyCustomCloudNativeConfiguration" | "InfrastructureManagementDeployCloudNativeInfrastructure" | "InfrastructureManagementUndeployCloudNativeInfrastructure" | "InfrastructureManagementViewCloudNativeInfrastructure" | "WorkspaceManagementViewWorkspace" | "WorkspaceManagementDeleteWorkspace" | "WorkspaceManagementEditWorkspace" | "WorkspaceManagementCreateWorkspace" | "WorkspaceManagementAssignTeamToWorkspace" | "WorkspaceManagementRemoveTeamFromWorkspace" | "WorkspaceManagementAssignEnvironmentToWorkspace" | "WorkspaceManagementRemoveEnvironmentFromWorkspace" | "WorkspaceManagementAssignDesignsToWorkspaces" | "WorkspaceManagementRemoveDesignsFromWorkspaces" | "WorkspaceManagementConnectGithubAccountToWorkspace" | "WorkspaceManagementViewConnections" | "WorkspaceManagementViewEnvironment" | "WorkspaceManagementCreateEnvironment" | "WorkspaceManagementDeleteEnvironment" | "WorkspaceManagementEditEnvironment" | "WorkspaceManagementAssignConnectionsToEnvironment" | "WorkspaceManagementRemoveConnectionsFromEnvironments" | "CatalogManagementViewCatalog" | "CatalogManagementDeleteCatalogItems" | "CatalogManagementEditCatalogItems" | "CatalogManagementUnpublishCatalogItems" | "CatalogManagementDetailsOfCatalogItem" | "CatalogManagementDownloadCatalogItem" | "CatalogManagementCloneCatalogItem" | "AcademyViewAcademyContent" | "AcademyAccessTheAcademyConsole" | "AcademyAComprehensiveGuideToUsingTheInstructorConsoleLearnHowToTrackLearnerProgressAnalyzeTestPerformanceAndManageYourAcademySContentAndMetrics" | "AcademyViewChallenges" | "AcademyCreateCertifications" | "SupportAndDeploymentWebhooks" | "SupportAndDeploymentRestApiUserDocumentation" | "SupportAndDeploymentRestApiReference" | "SupportAndDeploymentWhiteLabel" | "SupportAndDeploymentCommunitySupport" | "SupportAndDeploymentStandardSupport" | "SupportAndDeploymentPremiumAndPremiumPlusSupport" | "SupportAndDeploymentSelfHostedDeployment" | "SupportAndDeploymentPhoneSupport" | "SupportAndDeploymentPayBillsViaInvoiceRatherThanUsingYourCreditCard" | "TrafficManagementFacilitateANetworkTapOfAnyRequestTraffic" | "TrafficManagementVisualDefinitionsOfTrafficRules" | "TrafficManagementDynamicLoadUnloadOfWasmFilters" | "TrafficManagementConfigurationOfWasmFilters" | "TrafficManagementViaWasmFilter" | "TrafficManagementFlaggerIntegration" | "TrafficManagementArgoIntegration" | "ApplicationManagementGolangNativeExponentialBackoff" | "ApplicationManagementGokit" | "ApplicationManagementSpringBoot" | "ApplicationManagementHystrix" | "ConfigurationManagementOpenListOfBestPracticesForIstio" | "ConfigurationManagementProprietaryListOfBestPracticesForIstio" | "ConfigurationManagementVirtualservice" | "ConfigurationManagementDestinationrule" | "ConfigurationManagementMtlsPeerauthentication" | "ConfigurationManagementAutomaticSidecarInjectionOnANamespace" | "ConfigurationManagementSidecars" | "ConfigurationManagementAuthorizationpolicy" | "ConfigurationManagementEnvoyfilters" | "ConfigurationManagementPeerauthentication" | "ConfigurationManagementIstioOperator" | "ConfigurationManagementIngressGatewayGateways" | "ConfigurationManagementEgressGatewayGateways" | "ConfigurationManagementAddOnPrometheus" | "ConfigurationManagementAddOnKiali" | "ConfigurationManagementAddOnGrafana" | "ConfigurationManagementAddOnZipkin" | "ConfigurationManagementAddOnJaeger" | "ConfigurationManagementCustomConfiguration" | "ConfigurationManagementIngress" | "ConfigurationManagementCanaryRollout" | "WorkflowManagementSingleAndMultipleApprovers" | "BusinessPerformanceShoppingCartBasedRealTimeDiscount" | "BusinessPerformanceServerlessPricing" | "DigitalExperienceManagementFullstoryLikeCapabilities" | "DigitalExperienceManagementLikePendoTellingUsersWhatTheyAreMissingHowToUseTheProduct" | "DigitalExperienceManagementSimple" | "DigitalExperienceManagementAdvanced" | "DigitalExperienceManagementScreenshots" | "IncidentManagementEventsReportingOfAsynchronousEvents" | "IncidentManagementAuditTrail" | "IncidentManagementAlertGeneration" | "IncidentManagementPolicyBased" | "IncidentManagementSlackNotifications" | "IncidentManagementMesheryCloudNative" | "IncidentManagementIntegrationWGsuite" | "IncidentManagementIntegrationWMicrosoftOutlook" | "IncidentManagementDatadog" | "IncidentManagementEventRecording" | "IncidentManagementEventReplay" | "IncidentManagementTrafficReplay" | "IncidentManagementComponentLogging" | "ChaosManagementLibraryOfExperiments" | "ChaosManagementAsWasmFilters" | "ChaosManagementAsSidecars" | "ChaosManagementAsDaemonsets")[];
421
1789
 
422
- export { AllPermissionKeyNames, AllPermissionKeys, type PermissionKey, type PermissionKeyName, type PermissionKeyValue, PermissionKeys, createPermissionKey };
1790
+ export { AllPermissionKeyNames, AllPermissionKeys, PERMISSIONS_INDEX_ID, type PermissionKey, type PermissionKeyName, type PermissionKeyValue, PermissionKeys, createPermissionKey };