1<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.exports.html">exports</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#create">create(matterId, body, x__xgafv=None)</a></code></p> 79<p class="firstline">Creates an Export.</p> 80<p class="toc_element"> 81 <code><a href="#delete">delete(matterId, exportId, x__xgafv=None)</a></code></p> 82<p class="firstline">Deletes an Export.</p> 83<p class="toc_element"> 84 <code><a href="#get">get(matterId, exportId, x__xgafv=None)</a></code></p> 85<p class="firstline">Gets an Export.</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 Exports.</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"> 94 <code class="details" id="create">create(matterId, body, x__xgafv=None)</code> 95 <pre>Creates an Export. 96 97Args: 98 matterId: string, The matter ID. (required) 99 body: object, The request body. (required) 100 The object takes the form of: 101 102{ # An export 103 "status": "A String", # Output only. The export status. 104 "cloudStorageSink": { # Export sink for cloud storage files. # Output only. Export sink for cloud storage files. 105 "files": [ # Output only. The exported files on cloud storage. 106 { # An export file on cloud storage 107 "md5Hash": "A String", # The md5 hash of the file. 108 "bucketName": "A String", # The cloud storage bucket name of this export file. 109 # Can be used in cloud storage JSON/XML API. 110 "objectName": "A String", # The cloud storage object name of this export file. 111 # Can be used in cloud storage JSON/XML API. 112 "size": "A String", # The size of the export file. 113 }, 114 ], 115 }, 116 "stats": { # Stats of an export. # Output only. Export statistics. 117 "sizeInBytes": "A String", # The size of export in bytes. 118 "exportedArtifactCount": "A String", # The number of documents already processed by the export. 119 "totalArtifactCount": "A String", # The number of documents to be exported. 120 }, 121 "name": "A String", # The export name. 122 "matterId": "A String", # Output only. The matter ID. 123 "id": "A String", # Output only. The generated export ID. 124 "exportOptions": { # Export advanced options # Advanced options of the export. 125 "mailOptions": { # The options for mail export. # Option available for mail export. 126 "showConfidentialModeContent": True or False, # Set to true to export confidential mode content. 127 "exportFormat": "A String", # The export file format. 128 }, 129 "hangoutsChatOptions": { # The options for hangouts chat export. # Option available for hangouts chat export. 130 "exportFormat": "A String", # The export format for hangouts chat export. 131 }, 132 "region": "A String", # The requested export location. 133 "driveOptions": { # The options for Drive export. # Option available for Drive export. 134 "includeAccessInfo": True or False, # Set to true to include access level information for users 135 # with <a 136 # href="https://support.google.com/vault/answer/6099459#metadata">indirect 137 # access</a> to files. 138 }, 139 "groupsOptions": { # The options for groups export. # Option available for groups export. 140 "exportFormat": "A String", # The export format for groups export. 141 }, 142 }, 143 "requester": { # User's information. # Output only. The requester of the export. 144 "displayName": "A String", # The displayed name of the user. 145 "email": "A String", # The email address of the user. 146 }, 147 "query": { # A query definition relevant for search & export. # The search query being exported. 148 "terms": "A String", # The corpus-specific 149 # <a href="https://support.google.com/vault/answer/2474474">search 150 # operators</a> used to generate search results. 151 "sharedDriveInfo": { # Shared drives to search # When 'SHARED_DRIVE' is chosen as search method, shared_drive_info needs 152 # to be specified. 153 "sharedDriveIds": [ # List of Shared drive ids, as provided by <a 154 # href="https://developers.google.com/drive">Drive API</a>. 155 "A String", 156 ], 157 }, 158 "teamDriveInfo": { # Team Drives to search # When 'TEAM_DRIVE' is chosen as search method, team_drive_info needs to be 159 # specified. 160 "teamDriveIds": [ # List of Team Drive ids, as provided by <a 161 # href="https://developers.google.com/drive">Drive API</a>. 162 "A String", 163 ], 164 }, 165 "mailOptions": { # Mail search advanced options # For mail search, specify more options in this field. 166 "excludeDrafts": True or False, # Set to true to exclude drafts. 167 }, 168 "searchMethod": "A String", # The search method to use. 169 "hangoutsChatInfo": { # Accounts to search # When 'ROOM' is chosen as search method, hangout_chats_info needs to be 170 # specified. (read-only) 171 "roomId": [ # A set of rooms to search. 172 "A String", 173 ], 174 }, 175 "method": "A String", # The search method to use. This field is similar to the search_method field 176 # but is introduced to support shared drives. It supports all 177 # search method types. In case the search_method is TEAM_DRIVE the response 178 # of this field will be SHARED_DRIVE only. 179 "accountInfo": { # Accounts to search # When 'ACCOUNT' is chosen as search method, 180 # account_info needs to be specified. 181 "emails": [ # A set of accounts to search. 182 "A String", 183 ], 184 }, 185 "hangoutsChatOptions": { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only) 186 "includeRooms": True or False, # Set to true to include rooms. 187 }, 188 "startTime": "A String", # The start time range for the search query. These timestamps are in GMT and 189 # rounded down to the start of the given date. 190 "orgUnitInfo": { # Org Unit to search # When 'ORG_UNIT' is chosen as as search method, org_unit_info needs 191 # to be specified. 192 "orgUnitId": "A String", # Org unit to search, as provided by the 193 # <a href="https://developers.google.com/admin-sdk/directory/">Admin SDK 194 # Directory API</a>. 195 }, 196 "timeZone": "A String", # The time zone name. 197 # It should be an IANA TZ name, such as "America/Los_Angeles". 198 # For more information, see 199 # <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">Time 200 # Zone</a>. 201 "corpus": "A String", # The corpus to search. 202 "endTime": "A String", # The end time range for the search query. These timestamps are in GMT and 203 # rounded down to the start of the given date. 204 "dataScope": "A String", # The data source to search from. 205 "driveOptions": { # Drive search advanced options # For Drive search, specify more options in this field. 206 "includeSharedDrives": True or False, # Set to true to include shared drive. 207 "versionDate": "A String", # Search the versions of the Drive file 208 # as of the reference date. These timestamps are in GMT and 209 # rounded down to the given date. 210 "includeTeamDrives": True or False, # Set to true to include Team Drive. 211 }, 212 }, 213 "createTime": "A String", # Output only. The time when the export was created. 214 } 215 216 x__xgafv: string, V1 error format. 217 Allowed values 218 1 - v1 error format 219 2 - v2 error format 220 221Returns: 222 An object of the form: 223 224 { # An export 225 "status": "A String", # Output only. The export status. 226 "cloudStorageSink": { # Export sink for cloud storage files. # Output only. Export sink for cloud storage files. 227 "files": [ # Output only. The exported files on cloud storage. 228 { # An export file on cloud storage 229 "md5Hash": "A String", # The md5 hash of the file. 230 "bucketName": "A String", # The cloud storage bucket name of this export file. 231 # Can be used in cloud storage JSON/XML API. 232 "objectName": "A String", # The cloud storage object name of this export file. 233 # Can be used in cloud storage JSON/XML API. 234 "size": "A String", # The size of the export file. 235 }, 236 ], 237 }, 238 "stats": { # Stats of an export. # Output only. Export statistics. 239 "sizeInBytes": "A String", # The size of export in bytes. 240 "exportedArtifactCount": "A String", # The number of documents already processed by the export. 241 "totalArtifactCount": "A String", # The number of documents to be exported. 242 }, 243 "name": "A String", # The export name. 244 "matterId": "A String", # Output only. The matter ID. 245 "id": "A String", # Output only. The generated export ID. 246 "exportOptions": { # Export advanced options # Advanced options of the export. 247 "mailOptions": { # The options for mail export. # Option available for mail export. 248 "showConfidentialModeContent": True or False, # Set to true to export confidential mode content. 249 "exportFormat": "A String", # The export file format. 250 }, 251 "hangoutsChatOptions": { # The options for hangouts chat export. # Option available for hangouts chat export. 252 "exportFormat": "A String", # The export format for hangouts chat export. 253 }, 254 "region": "A String", # The requested export location. 255 "driveOptions": { # The options for Drive export. # Option available for Drive export. 256 "includeAccessInfo": True or False, # Set to true to include access level information for users 257 # with <a 258 # href="https://support.google.com/vault/answer/6099459#metadata">indirect 259 # access</a> to files. 260 }, 261 "groupsOptions": { # The options for groups export. # Option available for groups export. 262 "exportFormat": "A String", # The export format for groups export. 263 }, 264 }, 265 "requester": { # User's information. # Output only. The requester of the export. 266 "displayName": "A String", # The displayed name of the user. 267 "email": "A String", # The email address of the user. 268 }, 269 "query": { # A query definition relevant for search & export. # The search query being exported. 270 "terms": "A String", # The corpus-specific 271 # <a href="https://support.google.com/vault/answer/2474474">search 272 # operators</a> used to generate search results. 273 "sharedDriveInfo": { # Shared drives to search # When 'SHARED_DRIVE' is chosen as search method, shared_drive_info needs 274 # to be specified. 275 "sharedDriveIds": [ # List of Shared drive ids, as provided by <a 276 # href="https://developers.google.com/drive">Drive API</a>. 277 "A String", 278 ], 279 }, 280 "teamDriveInfo": { # Team Drives to search # When 'TEAM_DRIVE' is chosen as search method, team_drive_info needs to be 281 # specified. 282 "teamDriveIds": [ # List of Team Drive ids, as provided by <a 283 # href="https://developers.google.com/drive">Drive API</a>. 284 "A String", 285 ], 286 }, 287 "mailOptions": { # Mail search advanced options # For mail search, specify more options in this field. 288 "excludeDrafts": True or False, # Set to true to exclude drafts. 289 }, 290 "searchMethod": "A String", # The search method to use. 291 "hangoutsChatInfo": { # Accounts to search # When 'ROOM' is chosen as search method, hangout_chats_info needs to be 292 # specified. (read-only) 293 "roomId": [ # A set of rooms to search. 294 "A String", 295 ], 296 }, 297 "method": "A String", # The search method to use. This field is similar to the search_method field 298 # but is introduced to support shared drives. It supports all 299 # search method types. In case the search_method is TEAM_DRIVE the response 300 # of this field will be SHARED_DRIVE only. 301 "accountInfo": { # Accounts to search # When 'ACCOUNT' is chosen as search method, 302 # account_info needs to be specified. 303 "emails": [ # A set of accounts to search. 304 "A String", 305 ], 306 }, 307 "hangoutsChatOptions": { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only) 308 "includeRooms": True or False, # Set to true to include rooms. 309 }, 310 "startTime": "A String", # The start time range for the search query. These timestamps are in GMT and 311 # rounded down to the start of the given date. 312 "orgUnitInfo": { # Org Unit to search # When 'ORG_UNIT' is chosen as as search method, org_unit_info needs 313 # to be specified. 314 "orgUnitId": "A String", # Org unit to search, as provided by the 315 # <a href="https://developers.google.com/admin-sdk/directory/">Admin SDK 316 # Directory API</a>. 317 }, 318 "timeZone": "A String", # The time zone name. 319 # It should be an IANA TZ name, such as "America/Los_Angeles". 320 # For more information, see 321 # <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">Time 322 # Zone</a>. 323 "corpus": "A String", # The corpus to search. 324 "endTime": "A String", # The end time range for the search query. These timestamps are in GMT and 325 # rounded down to the start of the given date. 326 "dataScope": "A String", # The data source to search from. 327 "driveOptions": { # Drive search advanced options # For Drive search, specify more options in this field. 328 "includeSharedDrives": True or False, # Set to true to include shared drive. 329 "versionDate": "A String", # Search the versions of the Drive file 330 # as of the reference date. These timestamps are in GMT and 331 # rounded down to the given date. 332 "includeTeamDrives": True or False, # Set to true to include Team Drive. 333 }, 334 }, 335 "createTime": "A String", # Output only. The time when the export was created. 336 }</pre> 337</div> 338 339<div class="method"> 340 <code class="details" id="delete">delete(matterId, exportId, x__xgafv=None)</code> 341 <pre>Deletes an Export. 342 343Args: 344 matterId: string, The matter ID. (required) 345 exportId: string, The export ID. (required) 346 x__xgafv: string, V1 error format. 347 Allowed values 348 1 - v1 error format 349 2 - v2 error format 350 351Returns: 352 An object of the form: 353 354 { # A generic empty message that you can re-use to avoid defining duplicated 355 # empty messages in your APIs. A typical example is to use it as the request 356 # or the response type of an API method. For instance: 357 # 358 # service Foo { 359 # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); 360 # } 361 # 362 # The JSON representation for `Empty` is empty JSON object `{}`. 363 }</pre> 364</div> 365 366<div class="method"> 367 <code class="details" id="get">get(matterId, exportId, x__xgafv=None)</code> 368 <pre>Gets an Export. 369 370Args: 371 matterId: string, The matter ID. (required) 372 exportId: string, The export ID. (required) 373 x__xgafv: string, V1 error format. 374 Allowed values 375 1 - v1 error format 376 2 - v2 error format 377 378Returns: 379 An object of the form: 380 381 { # An export 382 "status": "A String", # Output only. The export status. 383 "cloudStorageSink": { # Export sink for cloud storage files. # Output only. Export sink for cloud storage files. 384 "files": [ # Output only. The exported files on cloud storage. 385 { # An export file on cloud storage 386 "md5Hash": "A String", # The md5 hash of the file. 387 "bucketName": "A String", # The cloud storage bucket name of this export file. 388 # Can be used in cloud storage JSON/XML API. 389 "objectName": "A String", # The cloud storage object name of this export file. 390 # Can be used in cloud storage JSON/XML API. 391 "size": "A String", # The size of the export file. 392 }, 393 ], 394 }, 395 "stats": { # Stats of an export. # Output only. Export statistics. 396 "sizeInBytes": "A String", # The size of export in bytes. 397 "exportedArtifactCount": "A String", # The number of documents already processed by the export. 398 "totalArtifactCount": "A String", # The number of documents to be exported. 399 }, 400 "name": "A String", # The export name. 401 "matterId": "A String", # Output only. The matter ID. 402 "id": "A String", # Output only. The generated export ID. 403 "exportOptions": { # Export advanced options # Advanced options of the export. 404 "mailOptions": { # The options for mail export. # Option available for mail export. 405 "showConfidentialModeContent": True or False, # Set to true to export confidential mode content. 406 "exportFormat": "A String", # The export file format. 407 }, 408 "hangoutsChatOptions": { # The options for hangouts chat export. # Option available for hangouts chat export. 409 "exportFormat": "A String", # The export format for hangouts chat export. 410 }, 411 "region": "A String", # The requested export location. 412 "driveOptions": { # The options for Drive export. # Option available for Drive export. 413 "includeAccessInfo": True or False, # Set to true to include access level information for users 414 # with <a 415 # href="https://support.google.com/vault/answer/6099459#metadata">indirect 416 # access</a> to files. 417 }, 418 "groupsOptions": { # The options for groups export. # Option available for groups export. 419 "exportFormat": "A String", # The export format for groups export. 420 }, 421 }, 422 "requester": { # User's information. # Output only. The requester of the export. 423 "displayName": "A String", # The displayed name of the user. 424 "email": "A String", # The email address of the user. 425 }, 426 "query": { # A query definition relevant for search & export. # The search query being exported. 427 "terms": "A String", # The corpus-specific 428 # <a href="https://support.google.com/vault/answer/2474474">search 429 # operators</a> used to generate search results. 430 "sharedDriveInfo": { # Shared drives to search # When 'SHARED_DRIVE' is chosen as search method, shared_drive_info needs 431 # to be specified. 432 "sharedDriveIds": [ # List of Shared drive ids, as provided by <a 433 # href="https://developers.google.com/drive">Drive API</a>. 434 "A String", 435 ], 436 }, 437 "teamDriveInfo": { # Team Drives to search # When 'TEAM_DRIVE' is chosen as search method, team_drive_info needs to be 438 # specified. 439 "teamDriveIds": [ # List of Team Drive ids, as provided by <a 440 # href="https://developers.google.com/drive">Drive API</a>. 441 "A String", 442 ], 443 }, 444 "mailOptions": { # Mail search advanced options # For mail search, specify more options in this field. 445 "excludeDrafts": True or False, # Set to true to exclude drafts. 446 }, 447 "searchMethod": "A String", # The search method to use. 448 "hangoutsChatInfo": { # Accounts to search # When 'ROOM' is chosen as search method, hangout_chats_info needs to be 449 # specified. (read-only) 450 "roomId": [ # A set of rooms to search. 451 "A String", 452 ], 453 }, 454 "method": "A String", # The search method to use. This field is similar to the search_method field 455 # but is introduced to support shared drives. It supports all 456 # search method types. In case the search_method is TEAM_DRIVE the response 457 # of this field will be SHARED_DRIVE only. 458 "accountInfo": { # Accounts to search # When 'ACCOUNT' is chosen as search method, 459 # account_info needs to be specified. 460 "emails": [ # A set of accounts to search. 461 "A String", 462 ], 463 }, 464 "hangoutsChatOptions": { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only) 465 "includeRooms": True or False, # Set to true to include rooms. 466 }, 467 "startTime": "A String", # The start time range for the search query. These timestamps are in GMT and 468 # rounded down to the start of the given date. 469 "orgUnitInfo": { # Org Unit to search # When 'ORG_UNIT' is chosen as as search method, org_unit_info needs 470 # to be specified. 471 "orgUnitId": "A String", # Org unit to search, as provided by the 472 # <a href="https://developers.google.com/admin-sdk/directory/">Admin SDK 473 # Directory API</a>. 474 }, 475 "timeZone": "A String", # The time zone name. 476 # It should be an IANA TZ name, such as "America/Los_Angeles". 477 # For more information, see 478 # <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">Time 479 # Zone</a>. 480 "corpus": "A String", # The corpus to search. 481 "endTime": "A String", # The end time range for the search query. These timestamps are in GMT and 482 # rounded down to the start of the given date. 483 "dataScope": "A String", # The data source to search from. 484 "driveOptions": { # Drive search advanced options # For Drive search, specify more options in this field. 485 "includeSharedDrives": True or False, # Set to true to include shared drive. 486 "versionDate": "A String", # Search the versions of the Drive file 487 # as of the reference date. These timestamps are in GMT and 488 # rounded down to the given date. 489 "includeTeamDrives": True or False, # Set to true to include Team Drive. 490 }, 491 }, 492 "createTime": "A String", # Output only. The time when the export was created. 493 }</pre> 494</div> 495 496<div class="method"> 497 <code class="details" id="list">list(matterId, pageSize=None, pageToken=None, x__xgafv=None)</code> 498 <pre>Lists Exports. 499 500Args: 501 matterId: string, The matter ID. (required) 502 pageSize: integer, The number of exports to return in the response. 503 pageToken: string, The pagination token as returned in the response. 504 x__xgafv: string, V1 error format. 505 Allowed values 506 1 - v1 error format 507 2 - v2 error format 508 509Returns: 510 An object of the form: 511 512 { # The holds for a matter. 513 "nextPageToken": "A String", # Page token to retrieve the next page of results in the list. 514 "exports": [ # The list of exports. 515 { # An export 516 "status": "A String", # Output only. The export status. 517 "cloudStorageSink": { # Export sink for cloud storage files. # Output only. Export sink for cloud storage files. 518 "files": [ # Output only. The exported files on cloud storage. 519 { # An export file on cloud storage 520 "md5Hash": "A String", # The md5 hash of the file. 521 "bucketName": "A String", # The cloud storage bucket name of this export file. 522 # Can be used in cloud storage JSON/XML API. 523 "objectName": "A String", # The cloud storage object name of this export file. 524 # Can be used in cloud storage JSON/XML API. 525 "size": "A String", # The size of the export file. 526 }, 527 ], 528 }, 529 "stats": { # Stats of an export. # Output only. Export statistics. 530 "sizeInBytes": "A String", # The size of export in bytes. 531 "exportedArtifactCount": "A String", # The number of documents already processed by the export. 532 "totalArtifactCount": "A String", # The number of documents to be exported. 533 }, 534 "name": "A String", # The export name. 535 "matterId": "A String", # Output only. The matter ID. 536 "id": "A String", # Output only. The generated export ID. 537 "exportOptions": { # Export advanced options # Advanced options of the export. 538 "mailOptions": { # The options for mail export. # Option available for mail export. 539 "showConfidentialModeContent": True or False, # Set to true to export confidential mode content. 540 "exportFormat": "A String", # The export file format. 541 }, 542 "hangoutsChatOptions": { # The options for hangouts chat export. # Option available for hangouts chat export. 543 "exportFormat": "A String", # The export format for hangouts chat export. 544 }, 545 "region": "A String", # The requested export location. 546 "driveOptions": { # The options for Drive export. # Option available for Drive export. 547 "includeAccessInfo": True or False, # Set to true to include access level information for users 548 # with <a 549 # href="https://support.google.com/vault/answer/6099459#metadata">indirect 550 # access</a> to files. 551 }, 552 "groupsOptions": { # The options for groups export. # Option available for groups export. 553 "exportFormat": "A String", # The export format for groups export. 554 }, 555 }, 556 "requester": { # User's information. # Output only. The requester of the export. 557 "displayName": "A String", # The displayed name of the user. 558 "email": "A String", # The email address of the user. 559 }, 560 "query": { # A query definition relevant for search & export. # The search query being exported. 561 "terms": "A String", # The corpus-specific 562 # <a href="https://support.google.com/vault/answer/2474474">search 563 # operators</a> used to generate search results. 564 "sharedDriveInfo": { # Shared drives to search # When 'SHARED_DRIVE' is chosen as search method, shared_drive_info needs 565 # to be specified. 566 "sharedDriveIds": [ # List of Shared drive ids, as provided by <a 567 # href="https://developers.google.com/drive">Drive API</a>. 568 "A String", 569 ], 570 }, 571 "teamDriveInfo": { # Team Drives to search # When 'TEAM_DRIVE' is chosen as search method, team_drive_info needs to be 572 # specified. 573 "teamDriveIds": [ # List of Team Drive ids, as provided by <a 574 # href="https://developers.google.com/drive">Drive API</a>. 575 "A String", 576 ], 577 }, 578 "mailOptions": { # Mail search advanced options # For mail search, specify more options in this field. 579 "excludeDrafts": True or False, # Set to true to exclude drafts. 580 }, 581 "searchMethod": "A String", # The search method to use. 582 "hangoutsChatInfo": { # Accounts to search # When 'ROOM' is chosen as search method, hangout_chats_info needs to be 583 # specified. (read-only) 584 "roomId": [ # A set of rooms to search. 585 "A String", 586 ], 587 }, 588 "method": "A String", # The search method to use. This field is similar to the search_method field 589 # but is introduced to support shared drives. It supports all 590 # search method types. In case the search_method is TEAM_DRIVE the response 591 # of this field will be SHARED_DRIVE only. 592 "accountInfo": { # Accounts to search # When 'ACCOUNT' is chosen as search method, 593 # account_info needs to be specified. 594 "emails": [ # A set of accounts to search. 595 "A String", 596 ], 597 }, 598 "hangoutsChatOptions": { # Hangouts chat search advanced options # For hangouts chat search, specify more options in this field. (read-only) 599 "includeRooms": True or False, # Set to true to include rooms. 600 }, 601 "startTime": "A String", # The start time range for the search query. These timestamps are in GMT and 602 # rounded down to the start of the given date. 603 "orgUnitInfo": { # Org Unit to search # When 'ORG_UNIT' is chosen as as search method, org_unit_info needs 604 # to be specified. 605 "orgUnitId": "A String", # Org unit to search, as provided by the 606 # <a href="https://developers.google.com/admin-sdk/directory/">Admin SDK 607 # Directory API</a>. 608 }, 609 "timeZone": "A String", # The time zone name. 610 # It should be an IANA TZ name, such as "America/Los_Angeles". 611 # For more information, see 612 # <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">Time 613 # Zone</a>. 614 "corpus": "A String", # The corpus to search. 615 "endTime": "A String", # The end time range for the search query. These timestamps are in GMT and 616 # rounded down to the start of the given date. 617 "dataScope": "A String", # The data source to search from. 618 "driveOptions": { # Drive search advanced options # For Drive search, specify more options in this field. 619 "includeSharedDrives": True or False, # Set to true to include shared drive. 620 "versionDate": "A String", # Search the versions of the Drive file 621 # as of the reference date. These timestamps are in GMT and 622 # rounded down to the given date. 623 "includeTeamDrives": True or False, # Set to true to include Team Drive. 624 }, 625 }, 626 "createTime": "A String", # Output only. The time when the export was created. 627 }, 628 ], 629 }</pre> 630</div> 631 632<div class="method"> 633 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 634 <pre>Retrieves the next page of results. 635 636Args: 637 previous_request: The request for the previous page. (required) 638 previous_response: The response from the request for the previous page. (required) 639 640Returns: 641 A request object that you can call 'execute()' on to request the next 642 page. Returns None if there are no more items in the collection. 643 </pre> 644</div> 645 646</body></html>