blob: 86bed2f37719f7264ef381eebb1f5d30c1d50151 [file] [log] [blame]
Nathaniel Manista4f877e52015-06-15 16:44:50 +00001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="dataflow_v1b3.html">Google Dataflow API</a> . <a href="dataflow_v1b3.projects.html">projects</a> . <a href="dataflow_v1b3.projects.jobs.html">jobs</a> . <a href="dataflow_v1b3.projects.jobs.messages.html">messages</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Jon Wayne Parrott692617a2017-01-06 09:58:29 -080078 <code><a href="#list">list(projectId, jobId, startTime=None, pageSize=None, x__xgafv=None, pageToken=None, location=None, minimumImportance=None, endTime=None)</a></code></p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000079<p class="firstline">Request the job status.</p>
80<p class="toc_element">
81 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
82<p class="firstline">Retrieves the next page of results.</p>
83<h3>Method Details</h3>
84<div class="method">
Jon Wayne Parrott692617a2017-01-06 09:58:29 -080085 <code class="details" id="list">list(projectId, jobId, startTime=None, pageSize=None, x__xgafv=None, pageToken=None, location=None, minimumImportance=None, endTime=None)</code>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000086 <pre>Request the job status.
87
88Args:
Takashi Matsuo06694102015-09-11 13:55:40 -070089 projectId: string, A project id. (required)
90 jobId: string, The job to get messages about. (required)
91 startTime: string, If specified, return only messages with timestamps >= start_time. The default is the job creation time (i.e. beginning of messages).
92 pageSize: integer, If specified, determines the maximum number of messages to return. If unspecified, the service may choose an appropriate default, or may return an arbitrarily large number of results.
93 x__xgafv: string, V1 error format.
94 pageToken: string, If supplied, this should be the value of next_page_token returned by an earlier call. This will cause the next page of results to be returned.
Jon Wayne Parrott692617a2017-01-06 09:58:29 -080095 location: string, The location which contains the job specified by job_id.
Takashi Matsuo06694102015-09-11 13:55:40 -070096 minimumImportance: string, Filter to only get messages with importance >= level
97 endTime: string, Return only messages with timestamps < end_time. The default is now (i.e. return up to the latest messages available).
Nathaniel Manista4f877e52015-06-15 16:44:50 +000098
99Returns:
100 An object of the form:
101
Takashi Matsuo06694102015-09-11 13:55:40 -0700102 { # Response to a request to list job messages.
103 "nextPageToken": "A String", # The token to obtain the next page of results if there are more.
104 "jobMessages": [ # Messages in ascending timestamp order.
105 { # A particular message pertaining to a Dataflow job.
106 "messageImportance": "A String", # Importance level of the message.
107 "messageText": "A String", # The text of the message.
108 "id": "A String", # Identifies the message. This is automatically generated by the service; the caller should treat it as an opaque string.
109 "time": "A String", # The timestamp of the message.
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000110 },
111 ],
112 }</pre>
113</div>
114
115<div class="method">
116 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
117 <pre>Retrieves the next page of results.
118
119Args:
120 previous_request: The request for the previous page. (required)
121 previous_response: The response from the request for the previous page. (required)
122
123Returns:
124 A request object that you can call 'execute()' on to request the next
125 page. Returns None if there are no more items in the collection.
126 </pre>
127</div>
128
129</body></html>