blob: 768147d0e930be38b84ee40582c647c3df501665 [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001<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="vault_v1.html">G Suite Vault API</a> . <a href="vault_v1.matters.html">matters</a> . <a href="vault_v1.matters.savedQueries.html">savedQueries</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#create">create(matterId, body=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070079<p class="firstline">Creates a saved query.</p>
80<p class="toc_element">
81 <code><a href="#delete">delete(matterId, savedQueryId, x__xgafv=None)</a></code></p>
82<p class="firstline">Deletes a saved query by Id.</p>
83<p class="toc_element">
84 <code><a href="#get">get(matterId, savedQueryId, x__xgafv=None)</a></code></p>
85<p class="firstline">Retrieves a saved query by Id.</p>
86<p class="toc_element">
87 <code><a href="#list">list(matterId, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Lists saved queries within a matter. An empty page token in</p>
89<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<h3>Method Details</h3>
93<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070094 <code class="details" id="create">create(matterId, body=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070095 <pre>Creates a saved query.
96
97Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070098 matterId: string, The matter ID of the parent matter for which the saved query is to be
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070099created. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700100 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700101 The object takes the form of:
102
103{ # Definition of the saved query.
Dan O'Mearadd494642020-05-01 07:42:23 -0700104 "matterId": "A String", # Output only. The matter ID of the associated matter.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700105 # The server does not look at this field during create and always uses matter
106 # id in the URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700107 "query": { # A query definition relevant for search &amp; export. # The underlying Query object which contains all the information of the saved
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700108 # query.
109 "terms": "A String", # The corpus-specific
Dan O'Mearadd494642020-05-01 07:42:23 -0700110 # &lt;a href="https://support.google.com/vault/answer/2474474"&gt;search
111 # operators&lt;/a&gt; used to generate search results.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700112 "sharedDriveInfo": { # Shared drives to search # When 'SHARED_DRIVE' is chosen as search method, shared_drive_info needs
113 # to be specified.
Dan O'Mearadd494642020-05-01 07:42:23 -0700114 "sharedDriveIds": [ # List of Shared drive IDs, as provided by &lt;a
115 # href="https://developers.google.com/drive"&gt;Drive API&lt;/a&gt;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700116 "A String",
117 ],
118 },
119 "teamDriveInfo": { # Team Drives to search # When 'TEAM_DRIVE' is chosen as search method, team_drive_info needs to be
120 # specified.
Dan O'Mearadd494642020-05-01 07:42:23 -0700121 "teamDriveIds": [ # List of Team Drive IDs, as provided by &lt;a
122 # href="https://developers.google.com/drive"&gt;Drive API&lt;/a&gt;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700123 "A String",
124 ],
125 },
126 "mailOptions": { # Mail search advanced options # For mail search, specify more options in this field.
127 "excludeDrafts": True or False, # Set to true to exclude drafts.
128 },
129 "searchMethod": "A String", # The search method to use.
130 "hangoutsChatInfo": { # Accounts to search # When 'ROOM' is chosen as search method, hangout_chats_info needs to be
131 # specified. (read-only)
132 "roomId": [ # A set of rooms to search.
133 "A String",
134 ],
135 },
136 "method": "A String", # The search method to use. This field is similar to the search_method field
137 # but is introduced to support shared drives. It supports all
138 # search method types. In case the search_method is TEAM_DRIVE the response
139 # of this field will be SHARED_DRIVE only.
140 "accountInfo": { # Accounts to search # When 'ACCOUNT' is chosen as search method,
141 # account_info needs to be specified.
142 "emails": [ # A set of accounts to search.
143 "A String",
144 ],
145 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700146 "driveOptions": { # Drive search advanced options # For Drive search, specify more options in this field.
147 "includeSharedDrives": True or False, # Set to true to include shared drive.
148 "versionDate": "A String", # Search the versions of the Drive file
149 # as of the reference date. These timestamps are in GMT and
150 # rounded down to the given date.
151 "includeTeamDrives": True or False, # Set to true to include Team Drive.
152 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700153 "startTime": "A String", # The start time range for the search query. These timestamps are in GMT and
154 # rounded down to the start of the given date.
155 "orgUnitInfo": { # Org Unit to search # When 'ORG_UNIT' is chosen as as search method, org_unit_info needs
156 # to be specified.
157 "orgUnitId": "A String", # Org unit to search, as provided by the
158 # &lt;a href="https://developers.google.com/admin-sdk/directory/"&gt;Admin SDK
159 # Directory API&lt;/a&gt;.
160 },
161 "timeZone": "A String", # The time zone name.
162 # It should be an IANA TZ name, such as "America/Los_Angeles".
163 # For more information, see
164 # &lt;a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones"&gt;Time
165 # Zone&lt;/a&gt;.
166 "corpus": "A String", # The corpus to search.
167 "endTime": "A String", # The end time range for the search query. These timestamps are in GMT and
168 # rounded down to the start of the given date.
169 "dataScope": "A String", # The data source to search from.
170 "hangoutsChatOptions": { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only)
171 "includeRooms": True or False, # Set to true to include rooms.
172 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700173 },
174 "savedQueryId": "A String", # A unique identifier for the saved query.
175 "displayName": "A String", # Name of the saved query.
176 "createTime": "A String", # Output only. The server generated timestamp at which saved query was
177 # created.
178 }
179
180 x__xgafv: string, V1 error format.
181 Allowed values
182 1 - v1 error format
183 2 - v2 error format
184
185Returns:
186 An object of the form:
187
188 { # Definition of the saved query.
Dan O'Mearadd494642020-05-01 07:42:23 -0700189 "matterId": "A String", # Output only. The matter ID of the associated matter.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700190 # The server does not look at this field during create and always uses matter
191 # id in the URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700192 "query": { # A query definition relevant for search &amp; export. # The underlying Query object which contains all the information of the saved
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700193 # query.
194 "terms": "A String", # The corpus-specific
Dan O'Mearadd494642020-05-01 07:42:23 -0700195 # &lt;a href="https://support.google.com/vault/answer/2474474"&gt;search
196 # operators&lt;/a&gt; used to generate search results.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700197 "sharedDriveInfo": { # Shared drives to search # When 'SHARED_DRIVE' is chosen as search method, shared_drive_info needs
198 # to be specified.
Dan O'Mearadd494642020-05-01 07:42:23 -0700199 "sharedDriveIds": [ # List of Shared drive IDs, as provided by &lt;a
200 # href="https://developers.google.com/drive"&gt;Drive API&lt;/a&gt;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700201 "A String",
202 ],
203 },
204 "teamDriveInfo": { # Team Drives to search # When 'TEAM_DRIVE' is chosen as search method, team_drive_info needs to be
205 # specified.
Dan O'Mearadd494642020-05-01 07:42:23 -0700206 "teamDriveIds": [ # List of Team Drive IDs, as provided by &lt;a
207 # href="https://developers.google.com/drive"&gt;Drive API&lt;/a&gt;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700208 "A String",
209 ],
210 },
211 "mailOptions": { # Mail search advanced options # For mail search, specify more options in this field.
212 "excludeDrafts": True or False, # Set to true to exclude drafts.
213 },
214 "searchMethod": "A String", # The search method to use.
215 "hangoutsChatInfo": { # Accounts to search # When 'ROOM' is chosen as search method, hangout_chats_info needs to be
216 # specified. (read-only)
217 "roomId": [ # A set of rooms to search.
218 "A String",
219 ],
220 },
221 "method": "A String", # The search method to use. This field is similar to the search_method field
222 # but is introduced to support shared drives. It supports all
223 # search method types. In case the search_method is TEAM_DRIVE the response
224 # of this field will be SHARED_DRIVE only.
225 "accountInfo": { # Accounts to search # When 'ACCOUNT' is chosen as search method,
226 # account_info needs to be specified.
227 "emails": [ # A set of accounts to search.
228 "A String",
229 ],
230 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700231 "driveOptions": { # Drive search advanced options # For Drive search, specify more options in this field.
232 "includeSharedDrives": True or False, # Set to true to include shared drive.
233 "versionDate": "A String", # Search the versions of the Drive file
234 # as of the reference date. These timestamps are in GMT and
235 # rounded down to the given date.
236 "includeTeamDrives": True or False, # Set to true to include Team Drive.
237 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700238 "startTime": "A String", # The start time range for the search query. These timestamps are in GMT and
239 # rounded down to the start of the given date.
240 "orgUnitInfo": { # Org Unit to search # When 'ORG_UNIT' is chosen as as search method, org_unit_info needs
241 # to be specified.
242 "orgUnitId": "A String", # Org unit to search, as provided by the
243 # &lt;a href="https://developers.google.com/admin-sdk/directory/"&gt;Admin SDK
244 # Directory API&lt;/a&gt;.
245 },
246 "timeZone": "A String", # The time zone name.
247 # It should be an IANA TZ name, such as "America/Los_Angeles".
248 # For more information, see
249 # &lt;a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones"&gt;Time
250 # Zone&lt;/a&gt;.
251 "corpus": "A String", # The corpus to search.
252 "endTime": "A String", # The end time range for the search query. These timestamps are in GMT and
253 # rounded down to the start of the given date.
254 "dataScope": "A String", # The data source to search from.
255 "hangoutsChatOptions": { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only)
256 "includeRooms": True or False, # Set to true to include rooms.
257 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700258 },
259 "savedQueryId": "A String", # A unique identifier for the saved query.
260 "displayName": "A String", # Name of the saved query.
261 "createTime": "A String", # Output only. The server generated timestamp at which saved query was
262 # created.
263 }</pre>
264</div>
265
266<div class="method">
267 <code class="details" id="delete">delete(matterId, savedQueryId, x__xgafv=None)</code>
268 <pre>Deletes a saved query by Id.
269
270Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700271 matterId: string, The matter ID of the parent matter for which the saved query is to be
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700272deleted. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700273 savedQueryId: string, ID of the saved query to be deleted. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700274 x__xgafv: string, V1 error format.
275 Allowed values
276 1 - v1 error format
277 2 - v2 error format
278
279Returns:
280 An object of the form:
281
282 { # A generic empty message that you can re-use to avoid defining duplicated
283 # empty messages in your APIs. A typical example is to use it as the request
284 # or the response type of an API method. For instance:
285 #
286 # service Foo {
287 # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
288 # }
289 #
290 # The JSON representation for `Empty` is empty JSON object `{}`.
291 }</pre>
292</div>
293
294<div class="method">
295 <code class="details" id="get">get(matterId, savedQueryId, x__xgafv=None)</code>
296 <pre>Retrieves a saved query by Id.
297
298Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700299 matterId: string, The matter ID of the parent matter for which the saved query is to be
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700300retrieved. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700301 savedQueryId: string, ID of the saved query to be retrieved. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700302 x__xgafv: string, V1 error format.
303 Allowed values
304 1 - v1 error format
305 2 - v2 error format
306
307Returns:
308 An object of the form:
309
310 { # Definition of the saved query.
Dan O'Mearadd494642020-05-01 07:42:23 -0700311 "matterId": "A String", # Output only. The matter ID of the associated matter.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700312 # The server does not look at this field during create and always uses matter
313 # id in the URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700314 "query": { # A query definition relevant for search &amp; export. # The underlying Query object which contains all the information of the saved
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700315 # query.
316 "terms": "A String", # The corpus-specific
Dan O'Mearadd494642020-05-01 07:42:23 -0700317 # &lt;a href="https://support.google.com/vault/answer/2474474"&gt;search
318 # operators&lt;/a&gt; used to generate search results.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700319 "sharedDriveInfo": { # Shared drives to search # When 'SHARED_DRIVE' is chosen as search method, shared_drive_info needs
320 # to be specified.
Dan O'Mearadd494642020-05-01 07:42:23 -0700321 "sharedDriveIds": [ # List of Shared drive IDs, as provided by &lt;a
322 # href="https://developers.google.com/drive"&gt;Drive API&lt;/a&gt;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700323 "A String",
324 ],
325 },
326 "teamDriveInfo": { # Team Drives to search # When 'TEAM_DRIVE' is chosen as search method, team_drive_info needs to be
327 # specified.
Dan O'Mearadd494642020-05-01 07:42:23 -0700328 "teamDriveIds": [ # List of Team Drive IDs, as provided by &lt;a
329 # href="https://developers.google.com/drive"&gt;Drive API&lt;/a&gt;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700330 "A String",
331 ],
332 },
333 "mailOptions": { # Mail search advanced options # For mail search, specify more options in this field.
334 "excludeDrafts": True or False, # Set to true to exclude drafts.
335 },
336 "searchMethod": "A String", # The search method to use.
337 "hangoutsChatInfo": { # Accounts to search # When 'ROOM' is chosen as search method, hangout_chats_info needs to be
338 # specified. (read-only)
339 "roomId": [ # A set of rooms to search.
340 "A String",
341 ],
342 },
343 "method": "A String", # The search method to use. This field is similar to the search_method field
344 # but is introduced to support shared drives. It supports all
345 # search method types. In case the search_method is TEAM_DRIVE the response
346 # of this field will be SHARED_DRIVE only.
347 "accountInfo": { # Accounts to search # When 'ACCOUNT' is chosen as search method,
348 # account_info needs to be specified.
349 "emails": [ # A set of accounts to search.
350 "A String",
351 ],
352 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700353 "driveOptions": { # Drive search advanced options # For Drive search, specify more options in this field.
354 "includeSharedDrives": True or False, # Set to true to include shared drive.
355 "versionDate": "A String", # Search the versions of the Drive file
356 # as of the reference date. These timestamps are in GMT and
357 # rounded down to the given date.
358 "includeTeamDrives": True or False, # Set to true to include Team Drive.
359 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700360 "startTime": "A String", # The start time range for the search query. These timestamps are in GMT and
361 # rounded down to the start of the given date.
362 "orgUnitInfo": { # Org Unit to search # When 'ORG_UNIT' is chosen as as search method, org_unit_info needs
363 # to be specified.
364 "orgUnitId": "A String", # Org unit to search, as provided by the
365 # &lt;a href="https://developers.google.com/admin-sdk/directory/"&gt;Admin SDK
366 # Directory API&lt;/a&gt;.
367 },
368 "timeZone": "A String", # The time zone name.
369 # It should be an IANA TZ name, such as "America/Los_Angeles".
370 # For more information, see
371 # &lt;a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones"&gt;Time
372 # Zone&lt;/a&gt;.
373 "corpus": "A String", # The corpus to search.
374 "endTime": "A String", # The end time range for the search query. These timestamps are in GMT and
375 # rounded down to the start of the given date.
376 "dataScope": "A String", # The data source to search from.
377 "hangoutsChatOptions": { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only)
378 "includeRooms": True or False, # Set to true to include rooms.
379 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700380 },
381 "savedQueryId": "A String", # A unique identifier for the saved query.
382 "displayName": "A String", # Name of the saved query.
383 "createTime": "A String", # Output only. The server generated timestamp at which saved query was
384 # created.
385 }</pre>
386</div>
387
388<div class="method">
389 <code class="details" id="list">list(matterId, pageSize=None, pageToken=None, x__xgafv=None)</code>
390 <pre>Lists saved queries within a matter. An empty page token in
391ListSavedQueriesResponse denotes no more saved queries to list.
392
393Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700394 matterId: string, The matter ID of the parent matter for which the saved queries are to be
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700395retrieved. (required)
396 pageSize: integer, The maximum number of saved queries to return.
397 pageToken: string, The pagination token as returned in the previous response.
398An empty token means start from the beginning.
399 x__xgafv: string, V1 error format.
400 Allowed values
401 1 - v1 error format
402 2 - v2 error format
403
404Returns:
405 An object of the form:
406
407 { # Definition of the response for method ListSaveQuery.
408 "nextPageToken": "A String", # Page token to retrieve the next page of results in the list.
409 # If this is empty, then there are no more saved queries to list.
410 "savedQueries": [ # List of output saved queries.
411 { # Definition of the saved query.
Dan O'Mearadd494642020-05-01 07:42:23 -0700412 "matterId": "A String", # Output only. The matter ID of the associated matter.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700413 # The server does not look at this field during create and always uses matter
414 # id in the URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700415 "query": { # A query definition relevant for search &amp; export. # The underlying Query object which contains all the information of the saved
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700416 # query.
417 "terms": "A String", # The corpus-specific
Dan O'Mearadd494642020-05-01 07:42:23 -0700418 # &lt;a href="https://support.google.com/vault/answer/2474474"&gt;search
419 # operators&lt;/a&gt; used to generate search results.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700420 "sharedDriveInfo": { # Shared drives to search # When 'SHARED_DRIVE' is chosen as search method, shared_drive_info needs
421 # to be specified.
Dan O'Mearadd494642020-05-01 07:42:23 -0700422 "sharedDriveIds": [ # List of Shared drive IDs, as provided by &lt;a
423 # href="https://developers.google.com/drive"&gt;Drive API&lt;/a&gt;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700424 "A String",
425 ],
426 },
427 "teamDriveInfo": { # Team Drives to search # When 'TEAM_DRIVE' is chosen as search method, team_drive_info needs to be
428 # specified.
Dan O'Mearadd494642020-05-01 07:42:23 -0700429 "teamDriveIds": [ # List of Team Drive IDs, as provided by &lt;a
430 # href="https://developers.google.com/drive"&gt;Drive API&lt;/a&gt;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700431 "A String",
432 ],
433 },
434 "mailOptions": { # Mail search advanced options # For mail search, specify more options in this field.
435 "excludeDrafts": True or False, # Set to true to exclude drafts.
436 },
437 "searchMethod": "A String", # The search method to use.
438 "hangoutsChatInfo": { # Accounts to search # When 'ROOM' is chosen as search method, hangout_chats_info needs to be
439 # specified. (read-only)
440 "roomId": [ # A set of rooms to search.
441 "A String",
442 ],
443 },
444 "method": "A String", # The search method to use. This field is similar to the search_method field
445 # but is introduced to support shared drives. It supports all
446 # search method types. In case the search_method is TEAM_DRIVE the response
447 # of this field will be SHARED_DRIVE only.
448 "accountInfo": { # Accounts to search # When 'ACCOUNT' is chosen as search method,
449 # account_info needs to be specified.
450 "emails": [ # A set of accounts to search.
451 "A String",
452 ],
453 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700454 "driveOptions": { # Drive search advanced options # For Drive search, specify more options in this field.
455 "includeSharedDrives": True or False, # Set to true to include shared drive.
456 "versionDate": "A String", # Search the versions of the Drive file
457 # as of the reference date. These timestamps are in GMT and
458 # rounded down to the given date.
459 "includeTeamDrives": True or False, # Set to true to include Team Drive.
460 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700461 "startTime": "A String", # The start time range for the search query. These timestamps are in GMT and
462 # rounded down to the start of the given date.
463 "orgUnitInfo": { # Org Unit to search # When 'ORG_UNIT' is chosen as as search method, org_unit_info needs
464 # to be specified.
465 "orgUnitId": "A String", # Org unit to search, as provided by the
466 # &lt;a href="https://developers.google.com/admin-sdk/directory/"&gt;Admin SDK
467 # Directory API&lt;/a&gt;.
468 },
469 "timeZone": "A String", # The time zone name.
470 # It should be an IANA TZ name, such as "America/Los_Angeles".
471 # For more information, see
472 # &lt;a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones"&gt;Time
473 # Zone&lt;/a&gt;.
474 "corpus": "A String", # The corpus to search.
475 "endTime": "A String", # The end time range for the search query. These timestamps are in GMT and
476 # rounded down to the start of the given date.
477 "dataScope": "A String", # The data source to search from.
478 "hangoutsChatOptions": { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only)
479 "includeRooms": True or False, # Set to true to include rooms.
480 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700481 },
482 "savedQueryId": "A String", # A unique identifier for the saved query.
483 "displayName": "A String", # Name of the saved query.
484 "createTime": "A String", # Output only. The server generated timestamp at which saved query was
485 # created.
486 },
487 ],
488 }</pre>
489</div>
490
491<div class="method">
492 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
493 <pre>Retrieves the next page of results.
494
495Args:
496 previous_request: The request for the previous page. (required)
497 previous_response: The response from the request for the previous page. (required)
498
499Returns:
500 A request object that you can call 'execute()' on to request the next
501 page. Returns None if there are no more items in the collection.
502 </pre>
503</div>
504
505</body></html>