messages
Creates, updates, deletes, gets or lists a messages
resource.
Overview
Name | messages |
Type | Resource |
Id | google.dataflow.messages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Deprecated. |
messageImportance | string | Importance level of the message. |
messageText | string | The text of the message. |
time | string | The timestamp of the message. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_jobs_messages_list | SELECT | jobId, projectId | Request the job status. To request the status of a job, we recommend using projects.locations.jobs.messages.list with a [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using projects.jobs.messages.list is not recommended, as you can only request the status of jobs that are running in us-central1 . |
projects_locations_jobs_messages_list | SELECT | jobId, location, projectId | Request the job status. To request the status of a job, we recommend using projects.locations.jobs.messages.list with a [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using projects.jobs.messages.list is not recommended, as you can only request the status of jobs that are running in us-central1 . |
SELECT
examples
Request the job status. To request the status of a job, we recommend using projects.locations.jobs.messages.list
with a [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). Using projects.jobs.messages.list
is not recommended, as you can only request the status of jobs that are running in us-central1
.
SELECT
id,
messageImportance,
messageText,
time
FROM google.dataflow.messages
WHERE jobId = '{{ jobId }}'
AND projectId = '{{ projectId }}';