Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ProcessAttach

Type: object

Attach selects the process and output resume point.
name · required

Type: string

name is the complete resource name, in the form processes/{process}.
All schema constraints and annotations
{
  "description": "name is the complete resource name, in the form processes/{process}.",
  "pattern": "^processes/[^/]+$",
  "type": "string"
}
resumeFrom

Type: integer | string

resume_from resumes after a received or published stream_sequence; 0 means from the start. Missing output after this point fails with FAILED_PRECONDITION.
All schema constraints and annotations
{
  "description": "resume_from resumes after a received or published stream_sequence; 0 means from the start. Missing output after this point fails with FAILED_PRECONDITION.",
  "format": "int64",
  "type": [
    "integer",
    "string"
  ]
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "Attach selects the process and output resume point.",
  "properties": {
    "name": {
      "description": "name is the complete resource name, in the form processes/{process}.",
      "pattern": "^processes/[^/]+$",
      "type": "string"
    },
    "resumeFrom": {
      "description": "resume_from resumes after a received or published stream_sequence; 0 means from the start. Missing output after this point fails with FAILED_PRECONDITION.",
      "format": "int64",
      "type": [
        "integer",
        "string"
      ]
    }
  },
  "required": [
    "name"
  ],
  "title": "Attach",
  "type": "object"
}