OBJECT

ClusterCollaborator

A source ACL grants a single organization limited rights to a private clusters

link GraphQL Schema definition

1type ClusterCollaborator {
2
3# The permission granted.
4permission: ClusterPermission!
5
6# Organization ID the cluster was shared with
7organizationId: ID!
8
9# The organization the cluster was shared with
10organization: Organization
11
12}