Skip to content

setPrivateContainerRegistry

Sets the Private Container Registry (PCR) details for an Exocompute cloud account. Updates the details if the registry already exists and creates a new entry if it does not exist.

Arguments

Argument Type Description
input (required) SetPrivateContainerRegistryInput! Input to set PCR details.

Returns

Void

Sample

mutation SetPrivateContainerRegistry($input: SetPrivateContainerRegistryInput!) {
  setPrivateContainerRegistry(input: $input)
}
{
  "input": {
    "exocomputeAccountId": "00000000-0000-0000-0000-000000000000",
    "registryUrl": "example-string"
  }
}
{
  "data": {
    "setPrivateContainerRegistry": "example-string"
  }
}