blob: bb375cc9a2ebd709db590656a8f3549a9e277593 [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">
Bu Sun Kim65020912020-05-20 12:08:20 -070087 <code><a href="#list">list(matterId, pageToken=None, pageSize=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070088<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.
Bu Sun Kim65020912020-05-20 12:08:20 -0700104 &quot;savedQueryId&quot;: &quot;A String&quot;, # A unique identifier for the saved query.
105 &quot;displayName&quot;: &quot;A String&quot;, # Name of the saved query.
106 &quot;query&quot;: { # A query definition relevant for search &amp; export. # The underlying Query object which contains all the information of the saved
107 # query.
108 &quot;sharedDriveInfo&quot;: { # Shared drives to search # When &#x27;SHARED_DRIVE&#x27; is chosen as search method, shared_drive_info needs
109 # to be specified.
110 &quot;sharedDriveIds&quot;: [ # List of Shared drive IDs, as provided by &lt;a
111 # href=&quot;https://developers.google.com/drive&quot;&gt;Drive API&lt;/a&gt;.
112 &quot;A String&quot;,
113 ],
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700114 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700115 &quot;driveOptions&quot;: { # Drive search advanced options # For Drive search, specify more options in this field.
116 &quot;versionDate&quot;: &quot;A String&quot;, # Search the versions of the Drive file
117 # as of the reference date. These timestamps are in GMT and
118 # rounded down to the given date.
119 &quot;includeTeamDrives&quot;: True or False, # Set to true to include Team Drive.
120 &quot;includeSharedDrives&quot;: True or False, # Set to true to include shared drive.
121 },
122 &quot;endTime&quot;: &quot;A String&quot;, # The end time range for the search query. These timestamps are in GMT and
123 # rounded down to the start of the given date.
124 &quot;dataScope&quot;: &quot;A String&quot;, # The data source to search from.
125 &quot;startTime&quot;: &quot;A String&quot;, # The start time range for the search query. These timestamps are in GMT and
126 # rounded down to the start of the given date.
127 &quot;searchMethod&quot;: &quot;A String&quot;, # The search method to use.
128 &quot;corpus&quot;: &quot;A String&quot;, # The corpus to search.
129 &quot;hangoutsChatInfo&quot;: { # Accounts to search # When &#x27;ROOM&#x27; is chosen as search method, hangout_chats_info needs to be
130 # specified. (read-only)
131 &quot;roomId&quot;: [ # A set of rooms to search.
132 &quot;A String&quot;,
133 ],
134 },
135 &quot;hangoutsChatOptions&quot;: { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only)
136 &quot;includeRooms&quot;: True or False, # Set to true to include rooms.
137 },
138 &quot;orgUnitInfo&quot;: { # Org Unit to search # When &#x27;ORG_UNIT&#x27; is chosen as as search method, org_unit_info needs
139 # to be specified.
140 &quot;orgUnitId&quot;: &quot;A String&quot;, # Org unit to search, as provided by the
141 # &lt;a href=&quot;https://developers.google.com/admin-sdk/directory/&quot;&gt;Admin SDK
142 # Directory API&lt;/a&gt;.
143 },
144 &quot;terms&quot;: &quot;A String&quot;, # The corpus-specific
145 # &lt;a href=&quot;https://support.google.com/vault/answer/2474474&quot;&gt;search
146 # operators&lt;/a&gt; used to generate search results.
147 &quot;method&quot;: &quot;A String&quot;, # The search method to use. This field is similar to the search_method field
148 # but is introduced to support shared drives. It supports all
149 # search method types. In case the search_method is TEAM_DRIVE the response
150 # of this field will be SHARED_DRIVE only.
151 &quot;mailOptions&quot;: { # Mail search advanced options # For mail search, specify more options in this field.
152 &quot;excludeDrafts&quot;: True or False, # Set to true to exclude drafts.
153 },
154 &quot;timeZone&quot;: &quot;A String&quot;, # The time zone name.
155 # It should be an IANA TZ name, such as &quot;America/Los_Angeles&quot;.
156 # For more information, see
157 # &lt;a href=&quot;https://en.wikipedia.org/wiki/List_of_tz_database_time_zones&quot;&gt;Time
158 # Zone&lt;/a&gt;.
159 &quot;teamDriveInfo&quot;: { # Team Drives to search # When &#x27;TEAM_DRIVE&#x27; is chosen as search method, team_drive_info needs to be
160 # specified.
161 &quot;teamDriveIds&quot;: [ # List of Team Drive IDs, as provided by &lt;a
162 # href=&quot;https://developers.google.com/drive&quot;&gt;Drive API&lt;/a&gt;.
163 &quot;A String&quot;,
164 ],
165 },
166 &quot;accountInfo&quot;: { # Accounts to search # When &#x27;ACCOUNT&#x27; is chosen as search method,
167 # account_info needs to be specified.
168 &quot;emails&quot;: [ # A set of accounts to search.
169 &quot;A String&quot;,
170 ],
171 },
172 },
173 &quot;matterId&quot;: &quot;A String&quot;, # Output only. The matter ID of the associated matter.
174 # The server does not look at this field during create and always uses matter
175 # id in the URL.
176 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The server generated timestamp at which saved query was
177 # created.
178}
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700179
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.
Bu Sun Kim65020912020-05-20 12:08:20 -0700189 &quot;savedQueryId&quot;: &quot;A String&quot;, # A unique identifier for the saved query.
190 &quot;displayName&quot;: &quot;A String&quot;, # Name of the saved query.
191 &quot;query&quot;: { # A query definition relevant for search &amp; export. # The underlying Query object which contains all the information of the saved
192 # query.
193 &quot;sharedDriveInfo&quot;: { # Shared drives to search # When &#x27;SHARED_DRIVE&#x27; is chosen as search method, shared_drive_info needs
194 # to be specified.
195 &quot;sharedDriveIds&quot;: [ # List of Shared drive IDs, as provided by &lt;a
196 # href=&quot;https://developers.google.com/drive&quot;&gt;Drive API&lt;/a&gt;.
197 &quot;A String&quot;,
198 ],
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700199 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700200 &quot;driveOptions&quot;: { # Drive search advanced options # For Drive search, specify more options in this field.
201 &quot;versionDate&quot;: &quot;A String&quot;, # Search the versions of the Drive file
202 # as of the reference date. These timestamps are in GMT and
203 # rounded down to the given date.
204 &quot;includeTeamDrives&quot;: True or False, # Set to true to include Team Drive.
205 &quot;includeSharedDrives&quot;: True or False, # Set to true to include shared drive.
206 },
207 &quot;endTime&quot;: &quot;A String&quot;, # The end time range for the search query. These timestamps are in GMT and
208 # rounded down to the start of the given date.
209 &quot;dataScope&quot;: &quot;A String&quot;, # The data source to search from.
210 &quot;startTime&quot;: &quot;A String&quot;, # The start time range for the search query. These timestamps are in GMT and
211 # rounded down to the start of the given date.
212 &quot;searchMethod&quot;: &quot;A String&quot;, # The search method to use.
213 &quot;corpus&quot;: &quot;A String&quot;, # The corpus to search.
214 &quot;hangoutsChatInfo&quot;: { # Accounts to search # When &#x27;ROOM&#x27; is chosen as search method, hangout_chats_info needs to be
215 # specified. (read-only)
216 &quot;roomId&quot;: [ # A set of rooms to search.
217 &quot;A String&quot;,
218 ],
219 },
220 &quot;hangoutsChatOptions&quot;: { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only)
221 &quot;includeRooms&quot;: True or False, # Set to true to include rooms.
222 },
223 &quot;orgUnitInfo&quot;: { # Org Unit to search # When &#x27;ORG_UNIT&#x27; is chosen as as search method, org_unit_info needs
224 # to be specified.
225 &quot;orgUnitId&quot;: &quot;A String&quot;, # Org unit to search, as provided by the
226 # &lt;a href=&quot;https://developers.google.com/admin-sdk/directory/&quot;&gt;Admin SDK
227 # Directory API&lt;/a&gt;.
228 },
229 &quot;terms&quot;: &quot;A String&quot;, # The corpus-specific
230 # &lt;a href=&quot;https://support.google.com/vault/answer/2474474&quot;&gt;search
231 # operators&lt;/a&gt; used to generate search results.
232 &quot;method&quot;: &quot;A String&quot;, # The search method to use. This field is similar to the search_method field
233 # but is introduced to support shared drives. It supports all
234 # search method types. In case the search_method is TEAM_DRIVE the response
235 # of this field will be SHARED_DRIVE only.
236 &quot;mailOptions&quot;: { # Mail search advanced options # For mail search, specify more options in this field.
237 &quot;excludeDrafts&quot;: True or False, # Set to true to exclude drafts.
238 },
239 &quot;timeZone&quot;: &quot;A String&quot;, # The time zone name.
240 # It should be an IANA TZ name, such as &quot;America/Los_Angeles&quot;.
241 # For more information, see
242 # &lt;a href=&quot;https://en.wikipedia.org/wiki/List_of_tz_database_time_zones&quot;&gt;Time
243 # Zone&lt;/a&gt;.
244 &quot;teamDriveInfo&quot;: { # Team Drives to search # When &#x27;TEAM_DRIVE&#x27; is chosen as search method, team_drive_info needs to be
245 # specified.
246 &quot;teamDriveIds&quot;: [ # List of Team Drive IDs, as provided by &lt;a
247 # href=&quot;https://developers.google.com/drive&quot;&gt;Drive API&lt;/a&gt;.
248 &quot;A String&quot;,
249 ],
250 },
251 &quot;accountInfo&quot;: { # Accounts to search # When &#x27;ACCOUNT&#x27; is chosen as search method,
252 # account_info needs to be specified.
253 &quot;emails&quot;: [ # A set of accounts to search.
254 &quot;A String&quot;,
255 ],
256 },
257 },
258 &quot;matterId&quot;: &quot;A String&quot;, # Output only. The matter ID of the associated matter.
259 # The server does not look at this field during create and always uses matter
260 # id in the URL.
261 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The server generated timestamp at which saved query was
262 # created.
263 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700264</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.
Bu Sun Kim65020912020-05-20 12:08:20 -0700311 &quot;savedQueryId&quot;: &quot;A String&quot;, # A unique identifier for the saved query.
312 &quot;displayName&quot;: &quot;A String&quot;, # Name of the saved query.
313 &quot;query&quot;: { # A query definition relevant for search &amp; export. # The underlying Query object which contains all the information of the saved
314 # query.
315 &quot;sharedDriveInfo&quot;: { # Shared drives to search # When &#x27;SHARED_DRIVE&#x27; is chosen as search method, shared_drive_info needs
316 # to be specified.
317 &quot;sharedDriveIds&quot;: [ # List of Shared drive IDs, as provided by &lt;a
318 # href=&quot;https://developers.google.com/drive&quot;&gt;Drive API&lt;/a&gt;.
319 &quot;A String&quot;,
320 ],
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700321 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700322 &quot;driveOptions&quot;: { # Drive search advanced options # For Drive search, specify more options in this field.
323 &quot;versionDate&quot;: &quot;A String&quot;, # Search the versions of the Drive file
324 # as of the reference date. These timestamps are in GMT and
325 # rounded down to the given date.
326 &quot;includeTeamDrives&quot;: True or False, # Set to true to include Team Drive.
327 &quot;includeSharedDrives&quot;: True or False, # Set to true to include shared drive.
328 },
329 &quot;endTime&quot;: &quot;A String&quot;, # The end time range for the search query. These timestamps are in GMT and
330 # rounded down to the start of the given date.
331 &quot;dataScope&quot;: &quot;A String&quot;, # The data source to search from.
332 &quot;startTime&quot;: &quot;A String&quot;, # The start time range for the search query. These timestamps are in GMT and
333 # rounded down to the start of the given date.
334 &quot;searchMethod&quot;: &quot;A String&quot;, # The search method to use.
335 &quot;corpus&quot;: &quot;A String&quot;, # The corpus to search.
336 &quot;hangoutsChatInfo&quot;: { # Accounts to search # When &#x27;ROOM&#x27; is chosen as search method, hangout_chats_info needs to be
337 # specified. (read-only)
338 &quot;roomId&quot;: [ # A set of rooms to search.
339 &quot;A String&quot;,
340 ],
341 },
342 &quot;hangoutsChatOptions&quot;: { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only)
343 &quot;includeRooms&quot;: True or False, # Set to true to include rooms.
344 },
345 &quot;orgUnitInfo&quot;: { # Org Unit to search # When &#x27;ORG_UNIT&#x27; is chosen as as search method, org_unit_info needs
346 # to be specified.
347 &quot;orgUnitId&quot;: &quot;A String&quot;, # Org unit to search, as provided by the
348 # &lt;a href=&quot;https://developers.google.com/admin-sdk/directory/&quot;&gt;Admin SDK
349 # Directory API&lt;/a&gt;.
350 },
351 &quot;terms&quot;: &quot;A String&quot;, # The corpus-specific
352 # &lt;a href=&quot;https://support.google.com/vault/answer/2474474&quot;&gt;search
353 # operators&lt;/a&gt; used to generate search results.
354 &quot;method&quot;: &quot;A String&quot;, # The search method to use. This field is similar to the search_method field
355 # but is introduced to support shared drives. It supports all
356 # search method types. In case the search_method is TEAM_DRIVE the response
357 # of this field will be SHARED_DRIVE only.
358 &quot;mailOptions&quot;: { # Mail search advanced options # For mail search, specify more options in this field.
359 &quot;excludeDrafts&quot;: True or False, # Set to true to exclude drafts.
360 },
361 &quot;timeZone&quot;: &quot;A String&quot;, # The time zone name.
362 # It should be an IANA TZ name, such as &quot;America/Los_Angeles&quot;.
363 # For more information, see
364 # &lt;a href=&quot;https://en.wikipedia.org/wiki/List_of_tz_database_time_zones&quot;&gt;Time
365 # Zone&lt;/a&gt;.
366 &quot;teamDriveInfo&quot;: { # Team Drives to search # When &#x27;TEAM_DRIVE&#x27; is chosen as search method, team_drive_info needs to be
367 # specified.
368 &quot;teamDriveIds&quot;: [ # List of Team Drive IDs, as provided by &lt;a
369 # href=&quot;https://developers.google.com/drive&quot;&gt;Drive API&lt;/a&gt;.
370 &quot;A String&quot;,
371 ],
372 },
373 &quot;accountInfo&quot;: { # Accounts to search # When &#x27;ACCOUNT&#x27; is chosen as search method,
374 # account_info needs to be specified.
375 &quot;emails&quot;: [ # A set of accounts to search.
376 &quot;A String&quot;,
377 ],
378 },
379 },
380 &quot;matterId&quot;: &quot;A String&quot;, # Output only. The matter ID of the associated matter.
381 # The server does not look at this field during create and always uses matter
382 # id in the URL.
383 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The server generated timestamp at which saved query was
384 # created.
385 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700386</div>
387
388<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700389 <code class="details" id="list">list(matterId, pageToken=None, pageSize=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700390 <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)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700396 pageToken: string, The pagination token as returned in the previous response.
397An empty token means start from the beginning.
Bu Sun Kim65020912020-05-20 12:08:20 -0700398 pageSize: integer, The maximum number of saved queries to return.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700399 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.
Bu Sun Kim65020912020-05-20 12:08:20 -0700408 &quot;savedQueries&quot;: [ # List of output saved queries.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700409 { # Definition of the saved query.
Bu Sun Kim65020912020-05-20 12:08:20 -0700410 &quot;savedQueryId&quot;: &quot;A String&quot;, # A unique identifier for the saved query.
411 &quot;displayName&quot;: &quot;A String&quot;, # Name of the saved query.
412 &quot;query&quot;: { # A query definition relevant for search &amp; export. # The underlying Query object which contains all the information of the saved
413 # query.
414 &quot;sharedDriveInfo&quot;: { # Shared drives to search # When &#x27;SHARED_DRIVE&#x27; is chosen as search method, shared_drive_info needs
415 # to be specified.
416 &quot;sharedDriveIds&quot;: [ # List of Shared drive IDs, as provided by &lt;a
417 # href=&quot;https://developers.google.com/drive&quot;&gt;Drive API&lt;/a&gt;.
418 &quot;A String&quot;,
419 ],
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700420 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700421 &quot;driveOptions&quot;: { # Drive search advanced options # For Drive search, specify more options in this field.
422 &quot;versionDate&quot;: &quot;A String&quot;, # Search the versions of the Drive file
423 # as of the reference date. These timestamps are in GMT and
424 # rounded down to the given date.
425 &quot;includeTeamDrives&quot;: True or False, # Set to true to include Team Drive.
426 &quot;includeSharedDrives&quot;: True or False, # Set to true to include shared drive.
427 },
428 &quot;endTime&quot;: &quot;A String&quot;, # The end time range for the search query. These timestamps are in GMT and
429 # rounded down to the start of the given date.
430 &quot;dataScope&quot;: &quot;A String&quot;, # The data source to search from.
431 &quot;startTime&quot;: &quot;A String&quot;, # The start time range for the search query. These timestamps are in GMT and
432 # rounded down to the start of the given date.
433 &quot;searchMethod&quot;: &quot;A String&quot;, # The search method to use.
434 &quot;corpus&quot;: &quot;A String&quot;, # The corpus to search.
435 &quot;hangoutsChatInfo&quot;: { # Accounts to search # When &#x27;ROOM&#x27; is chosen as search method, hangout_chats_info needs to be
436 # specified. (read-only)
437 &quot;roomId&quot;: [ # A set of rooms to search.
438 &quot;A String&quot;,
439 ],
440 },
441 &quot;hangoutsChatOptions&quot;: { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only)
442 &quot;includeRooms&quot;: True or False, # Set to true to include rooms.
443 },
444 &quot;orgUnitInfo&quot;: { # Org Unit to search # When &#x27;ORG_UNIT&#x27; is chosen as as search method, org_unit_info needs
445 # to be specified.
446 &quot;orgUnitId&quot;: &quot;A String&quot;, # Org unit to search, as provided by the
447 # &lt;a href=&quot;https://developers.google.com/admin-sdk/directory/&quot;&gt;Admin SDK
448 # Directory API&lt;/a&gt;.
449 },
450 &quot;terms&quot;: &quot;A String&quot;, # The corpus-specific
451 # &lt;a href=&quot;https://support.google.com/vault/answer/2474474&quot;&gt;search
452 # operators&lt;/a&gt; used to generate search results.
453 &quot;method&quot;: &quot;A String&quot;, # The search method to use. This field is similar to the search_method field
454 # but is introduced to support shared drives. It supports all
455 # search method types. In case the search_method is TEAM_DRIVE the response
456 # of this field will be SHARED_DRIVE only.
457 &quot;mailOptions&quot;: { # Mail search advanced options # For mail search, specify more options in this field.
458 &quot;excludeDrafts&quot;: True or False, # Set to true to exclude drafts.
459 },
460 &quot;timeZone&quot;: &quot;A String&quot;, # The time zone name.
461 # It should be an IANA TZ name, such as &quot;America/Los_Angeles&quot;.
462 # For more information, see
463 # &lt;a href=&quot;https://en.wikipedia.org/wiki/List_of_tz_database_time_zones&quot;&gt;Time
464 # Zone&lt;/a&gt;.
465 &quot;teamDriveInfo&quot;: { # Team Drives to search # When &#x27;TEAM_DRIVE&#x27; is chosen as search method, team_drive_info needs to be
466 # specified.
467 &quot;teamDriveIds&quot;: [ # List of Team Drive IDs, as provided by &lt;a
468 # href=&quot;https://developers.google.com/drive&quot;&gt;Drive API&lt;/a&gt;.
469 &quot;A String&quot;,
470 ],
471 },
472 &quot;accountInfo&quot;: { # Accounts to search # When &#x27;ACCOUNT&#x27; is chosen as search method,
473 # account_info needs to be specified.
474 &quot;emails&quot;: [ # A set of accounts to search.
475 &quot;A String&quot;,
476 ],
477 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700478 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700479 &quot;matterId&quot;: &quot;A String&quot;, # Output only. The matter ID of the associated matter.
480 # The server does not look at this field during create and always uses matter
481 # id in the URL.
482 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The server generated timestamp at which saved query was
483 # created.
484 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700485 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700486 &quot;nextPageToken&quot;: &quot;A String&quot;, # Page token to retrieve the next page of results in the list.
487 # If this is empty, then there are no more saved queries to list.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700488 }</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:
Bu Sun Kim65020912020-05-20 12:08:20 -0700500 A request object that you can call &#x27;execute()&#x27; on to request the next
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700501 page. Returns None if there are no more items in the collection.
502 </pre>
503</div>
504
505</body></html>