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