Skip to content

createK8sNamespaceSnapshots

Snapshot Kubernetes namespace.

Arguments

Argument Type Description
input (required) CreateK8sNamespaceSnapshotsInput! Request for snapshot of Kubernetes Namespaces.

Returns

[CreateOnDemandJobReply!]!

Sample

mutation CreateK8sNamespaceSnapshots($input: CreateK8sNamespaceSnapshotsInput!) {
  createK8sNamespaceSnapshots(input: $input) {
    jobId
    taskchainId
  }
}
{
  "input": {
    "snapshotInput": [
      {
        "namespaceId": "00000000-0000-0000-0000-000000000000"
      }
    ]
  }
}
{
  "data": {
    "createK8sNamespaceSnapshots": [
      {
        "jobId": 0,
        "taskchainId": "example-string"
      }
    ]
  }
}