Dataflow API . projects . locations . jobs . snapshots

Instance Methods

list(projectId, location, jobId, x__xgafv=None)

Lists snapshots.

Method Details

list(projectId, location, jobId, x__xgafv=None)
Lists snapshots.

Args:
  projectId: string, The project ID to list snapshots for. (required)
  location: string, The location to list snapshots in. (required)
  jobId: string, If specified, list snapshots created from this job. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # List of snapshots.
    "snapshots": [ # Returned snapshots.
      { # Represents a snapshot of a job.
        "sourceJobId": "A String", # The job this snapshot was created from.
        "projectId": "A String", # The project this snapshot belongs to.
        "creationTime": "A String", # The time this snapshot was created.
        "state": "A String", # State of the snapshot.
        "ttl": "A String", # The time after which this snapshot will be automatically deleted.
        "id": "A String", # The unique ID of this snapshot.
      },
    ],
  }