INPUT_OBJECT
CreateClusterCollaborator
link GraphQL Schema definition
1 input CreateClusterCollaborator { 4 2 # ID of the organization to share 3 ID! : 8 5 # Permission to grant cluster. Can be `viewer`. 6 # Set to `none` to revoke permissions for this organization. 7 SetClusterPermission! : 9 }
link Required by
- CreateClusterThis API creates an edge cluster for this core Example: mutation createCluster { createCluster (input: { name: "YOUR_CLUSTER_NAME", allowedEngines: ["all"], dockerCredentials: {}, type: RT, containerTag: "YOUR_CONTAINER_TAG", paused: false, memorySize: "20gb", storageSize: "10gb", bypassAllowedEngines: true, collaborators: [], subscriptions: [], tags: ["aiware-agent"], status: active, mediaStorage: core, mediaStoragePath: "", serviceToken: "fake-token", edgeVersion: 3, } ) { id } }
- UpdateCluster