1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
|
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'date'
require 'google/apis/core/base_service'
require 'google/apis/core/json_representation'
require 'google/apis/core/hashable'
require 'google/apis/errors'
module Google
module Apis
module VaultV1
# Accounts to search
class AccountInfo
include Google::Apis::Core::Hashable
# A set of accounts to search.
# Corresponds to the JSON property `emails`
# @return [Array<String>]
attr_accessor :emails
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@emails = args[:emails] if args.key?(:emails)
end
end
# A status detailing the status of each account creation, and the
# HeldAccount, if successful.
class AddHeldAccountResult
include Google::Apis::Core::Hashable
# An account being held in a particular hold. This structure is immutable.
# This can be either a single user or a google group, depending on the corpus.
# Corresponds to the JSON property `account`
# @return [Google::Apis::VaultV1::HeldAccount]
attr_accessor :account
# The `Status` type defines a logical error model that is suitable for
# different programming environments, including REST APIs and RPC APIs. It is
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
# three pieces of data: error code, error message, and error details.
# You can find out more about this error model and how to work with it in the
# [API Design Guide](https://cloud.google.com/apis/design/errors).
# Corresponds to the JSON property `status`
# @return [Google::Apis::VaultV1::Status]
attr_accessor :status
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@account = args[:account] if args.key?(:account)
@status = args[:status] if args.key?(:status)
end
end
# Add a list of accounts to a hold.
class AddHeldAccountsRequest
include Google::Apis::Core::Hashable
# Account ids to identify which accounts to add. Only account_ids or only
# emails should be specified, but not both.
# Corresponds to the JSON property `accountIds`
# @return [Array<String>]
attr_accessor :account_ids
# Emails to identify which accounts to add. Only emails or only account_ids
# should be specified, but not both.
# Corresponds to the JSON property `emails`
# @return [Array<String>]
attr_accessor :emails
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@account_ids = args[:account_ids] if args.key?(:account_ids)
@emails = args[:emails] if args.key?(:emails)
end
end
# Response for batch create held accounts.
class AddHeldAccountsResponse
include Google::Apis::Core::Hashable
# The list of responses, in the same order as the batch request.
# Corresponds to the JSON property `responses`
# @return [Array<Google::Apis::VaultV1::AddHeldAccountResult>]
attr_accessor :responses
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@responses = args[:responses] if args.key?(:responses)
end
end
# Add an account with the permission specified. The role cannot be owner.
# If an account already has a role in the matter, it will be
# overwritten.
class AddMatterPermissionsRequest
include Google::Apis::Core::Hashable
# Only relevant if send_emails is true.
# True to CC requestor in the email message.
# False to not CC requestor.
# Corresponds to the JSON property `ccMe`
# @return [Boolean]
attr_accessor :cc_me
alias_method :cc_me?, :cc_me
# Currently each matter only has one owner, and all others are collaborators.
# When an account is purged, its corresponding MatterPermission resources
# cease to exist.
# Corresponds to the JSON property `matterPermission`
# @return [Google::Apis::VaultV1::MatterPermission]
attr_accessor :matter_permission
# True to send notification email to the added account.
# False to not send notification email.
# Corresponds to the JSON property `sendEmails`
# @return [Boolean]
attr_accessor :send_emails
alias_method :send_emails?, :send_emails
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@cc_me = args[:cc_me] if args.key?(:cc_me)
@matter_permission = args[:matter_permission] if args.key?(:matter_permission)
@send_emails = args[:send_emails] if args.key?(:send_emails)
end
end
# Close a matter by ID.
class CloseMatterRequest
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Response to a CloseMatterRequest.
class CloseMatterResponse
include Google::Apis::Core::Hashable
# Represents a matter.
# Corresponds to the JSON property `matter`
# @return [Google::Apis::VaultV1::Matter]
attr_accessor :matter
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@matter = args[:matter] if args.key?(:matter)
end
end
# An export file on cloud storage
class CloudStorageFile
include Google::Apis::Core::Hashable
# The cloud storage bucket name of this export file.
# Can be used in cloud storage JSON/XML API.
# Corresponds to the JSON property `bucketName`
# @return [String]
attr_accessor :bucket_name
# The md5 hash of the file.
# Corresponds to the JSON property `md5Hash`
# @return [String]
attr_accessor :md5_hash
# The cloud storage object name of this export file.
# Can be used in cloud storage JSON/XML API.
# Corresponds to the JSON property `objectName`
# @return [String]
attr_accessor :object_name
# The size of the export file.
# Corresponds to the JSON property `size`
# @return [Fixnum]
attr_accessor :size
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bucket_name = args[:bucket_name] if args.key?(:bucket_name)
@md5_hash = args[:md5_hash] if args.key?(:md5_hash)
@object_name = args[:object_name] if args.key?(:object_name)
@size = args[:size] if args.key?(:size)
end
end
# Export sink for cloud storage files.
class CloudStorageSink
include Google::Apis::Core::Hashable
# Output only. The exported files on cloud storage.
# Corresponds to the JSON property `files`
# @return [Array<Google::Apis::VaultV1::CloudStorageFile>]
attr_accessor :files
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@files = args[:files] if args.key?(:files)
end
end
# Corpus specific queries.
class CorpusQuery
include Google::Apis::Core::Hashable
# Query options for Drive holds.
# Corresponds to the JSON property `driveQuery`
# @return [Google::Apis::VaultV1::HeldDriveQuery]
attr_accessor :drive_query
# Query options for group holds.
# Corresponds to the JSON property `groupsQuery`
# @return [Google::Apis::VaultV1::HeldGroupsQuery]
attr_accessor :groups_query
# Query options for hangouts chat holds.
# Corresponds to the JSON property `hangoutsChatQuery`
# @return [Google::Apis::VaultV1::HeldHangoutsChatQuery]
attr_accessor :hangouts_chat_query
# Query options for mail holds.
# Corresponds to the JSON property `mailQuery`
# @return [Google::Apis::VaultV1::HeldMailQuery]
attr_accessor :mail_query
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@drive_query = args[:drive_query] if args.key?(:drive_query)
@groups_query = args[:groups_query] if args.key?(:groups_query)
@hangouts_chat_query = args[:hangouts_chat_query] if args.key?(:hangouts_chat_query)
@mail_query = args[:mail_query] if args.key?(:mail_query)
end
end
# The options for Drive export.
class DriveExportOptions
include Google::Apis::Core::Hashable
# Set to true to include access level information for users
# with <a
# href="https://support.google.com/vault/answer/6099459#metadata">indirect
# access</a> to files.
# Corresponds to the JSON property `includeAccessInfo`
# @return [Boolean]
attr_accessor :include_access_info
alias_method :include_access_info?, :include_access_info
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@include_access_info = args[:include_access_info] if args.key?(:include_access_info)
end
end
# Drive search advanced options
class DriveOptions
include Google::Apis::Core::Hashable
# Set to true to include shared drive.
# Corresponds to the JSON property `includeSharedDrives`
# @return [Boolean]
attr_accessor :include_shared_drives
alias_method :include_shared_drives?, :include_shared_drives
# Set to true to include Team Drive.
# Corresponds to the JSON property `includeTeamDrives`
# @return [Boolean]
attr_accessor :include_team_drives
alias_method :include_team_drives?, :include_team_drives
# Search the versions of the Drive file
# as of the reference date. These timestamps are in GMT and
# rounded down to the given date.
# Corresponds to the JSON property `versionDate`
# @return [String]
attr_accessor :version_date
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@include_shared_drives = args[:include_shared_drives] if args.key?(:include_shared_drives)
@include_team_drives = args[:include_team_drives] if args.key?(:include_team_drives)
@version_date = args[:version_date] if args.key?(:version_date)
end
end
# A generic empty message that you can re-use to avoid defining duplicated
# empty messages in your APIs. A typical example is to use it as the request
# or the response type of an API method. For instance:
# service Foo `
# rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
# `
# The JSON representation for `Empty` is empty JSON object ````.
class Empty
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# An export
class Export
include Google::Apis::Core::Hashable
# Export sink for cloud storage files.
# Corresponds to the JSON property `cloudStorageSink`
# @return [Google::Apis::VaultV1::CloudStorageSink]
attr_accessor :cloud_storage_sink
# Output only. The time when the export was created.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# Export advanced options
# Corresponds to the JSON property `exportOptions`
# @return [Google::Apis::VaultV1::ExportOptions]
attr_accessor :export_options
# Output only. The generated export ID.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Output only. The matter ID.
# Corresponds to the JSON property `matterId`
# @return [String]
attr_accessor :matter_id
# The export name.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# A query definition relevant for search & export.
# Corresponds to the JSON property `query`
# @return [Google::Apis::VaultV1::Query]
attr_accessor :query
# User's information.
# Corresponds to the JSON property `requester`
# @return [Google::Apis::VaultV1::UserInfo]
attr_accessor :requester
# Stats of an export.
# Corresponds to the JSON property `stats`
# @return [Google::Apis::VaultV1::ExportStats]
attr_accessor :stats
# Output only. The export status.
# Corresponds to the JSON property `status`
# @return [String]
attr_accessor :status
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@cloud_storage_sink = args[:cloud_storage_sink] if args.key?(:cloud_storage_sink)
@create_time = args[:create_time] if args.key?(:create_time)
@export_options = args[:export_options] if args.key?(:export_options)
@id = args[:id] if args.key?(:id)
@matter_id = args[:matter_id] if args.key?(:matter_id)
@name = args[:name] if args.key?(:name)
@query = args[:query] if args.key?(:query)
@requester = args[:requester] if args.key?(:requester)
@stats = args[:stats] if args.key?(:stats)
@status = args[:status] if args.key?(:status)
end
end
# Export advanced options
class ExportOptions
include Google::Apis::Core::Hashable
# The options for Drive export.
# Corresponds to the JSON property `driveOptions`
# @return [Google::Apis::VaultV1::DriveExportOptions]
attr_accessor :drive_options
# The options for groups export.
# Corresponds to the JSON property `groupsOptions`
# @return [Google::Apis::VaultV1::GroupsExportOptions]
attr_accessor :groups_options
# The options for hangouts chat export.
# Corresponds to the JSON property `hangoutsChatOptions`
# @return [Google::Apis::VaultV1::HangoutsChatExportOptions]
attr_accessor :hangouts_chat_options
# The options for mail export.
# Corresponds to the JSON property `mailOptions`
# @return [Google::Apis::VaultV1::MailExportOptions]
attr_accessor :mail_options
# The requested export location.
# Corresponds to the JSON property `region`
# @return [String]
attr_accessor :region
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@drive_options = args[:drive_options] if args.key?(:drive_options)
@groups_options = args[:groups_options] if args.key?(:groups_options)
@hangouts_chat_options = args[:hangouts_chat_options] if args.key?(:hangouts_chat_options)
@mail_options = args[:mail_options] if args.key?(:mail_options)
@region = args[:region] if args.key?(:region)
end
end
# Stats of an export.
class ExportStats
include Google::Apis::Core::Hashable
# The number of documents already processed by the export.
# Corresponds to the JSON property `exportedArtifactCount`
# @return [Fixnum]
attr_accessor :exported_artifact_count
# The size of export in bytes.
# Corresponds to the JSON property `sizeInBytes`
# @return [Fixnum]
attr_accessor :size_in_bytes
# The number of documents to be exported.
# Corresponds to the JSON property `totalArtifactCount`
# @return [Fixnum]
attr_accessor :total_artifact_count
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@exported_artifact_count = args[:exported_artifact_count] if args.key?(:exported_artifact_count)
@size_in_bytes = args[:size_in_bytes] if args.key?(:size_in_bytes)
@total_artifact_count = args[:total_artifact_count] if args.key?(:total_artifact_count)
end
end
# The options for groups export.
class GroupsExportOptions
include Google::Apis::Core::Hashable
# The export format for groups export.
# Corresponds to the JSON property `exportFormat`
# @return [String]
attr_accessor :export_format
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@export_format = args[:export_format] if args.key?(:export_format)
end
end
# The options for hangouts chat export.
class HangoutsChatExportOptions
include Google::Apis::Core::Hashable
# The export format for hangouts chat export.
# Corresponds to the JSON property `exportFormat`
# @return [String]
attr_accessor :export_format
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@export_format = args[:export_format] if args.key?(:export_format)
end
end
# Accounts to search
class HangoutsChatInfo
include Google::Apis::Core::Hashable
# A set of rooms to search.
# Corresponds to the JSON property `roomId`
# @return [Array<String>]
attr_accessor :room_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@room_id = args[:room_id] if args.key?(:room_id)
end
end
# Hangouts chat search advanced options
class HangoutsChatOptions
include Google::Apis::Core::Hashable
# Set to true to include rooms.
# Corresponds to the JSON property `includeRooms`
# @return [Boolean]
attr_accessor :include_rooms
alias_method :include_rooms?, :include_rooms
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@include_rooms = args[:include_rooms] if args.key?(:include_rooms)
end
end
# An account being held in a particular hold. This structure is immutable.
# This can be either a single user or a google group, depending on the corpus.
class HeldAccount
include Google::Apis::Core::Hashable
# The account's ID as provided by the
# <a href="https://developers.google.com/admin-sdk/">Admin SDK</a>.
# Corresponds to the JSON property `accountId`
# @return [String]
attr_accessor :account_id
# The primary email address of the account. If used as an input, this takes
# precedence over account ID.
# Corresponds to the JSON property `email`
# @return [String]
attr_accessor :email
# Output only. The first name of the account holder.
# Corresponds to the JSON property `firstName`
# @return [String]
attr_accessor :first_name
# Output only. When the account was put on hold.
# Corresponds to the JSON property `holdTime`
# @return [String]
attr_accessor :hold_time
# Output only. The last name of the account holder.
# Corresponds to the JSON property `lastName`
# @return [String]
attr_accessor :last_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@account_id = args[:account_id] if args.key?(:account_id)
@email = args[:email] if args.key?(:email)
@first_name = args[:first_name] if args.key?(:first_name)
@hold_time = args[:hold_time] if args.key?(:hold_time)
@last_name = args[:last_name] if args.key?(:last_name)
end
end
# Query options for Drive holds.
class HeldDriveQuery
include Google::Apis::Core::Hashable
# If true, include files in shared drives in the hold.
# Corresponds to the JSON property `includeSharedDriveFiles`
# @return [Boolean]
attr_accessor :include_shared_drive_files
alias_method :include_shared_drive_files?, :include_shared_drive_files
# If true, include files in Team Drives in the hold.
# Corresponds to the JSON property `includeTeamDriveFiles`
# @return [Boolean]
attr_accessor :include_team_drive_files
alias_method :include_team_drive_files?, :include_team_drive_files
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@include_shared_drive_files = args[:include_shared_drive_files] if args.key?(:include_shared_drive_files)
@include_team_drive_files = args[:include_team_drive_files] if args.key?(:include_team_drive_files)
end
end
# Query options for group holds.
class HeldGroupsQuery
include Google::Apis::Core::Hashable
# The end time range for the search query. These timestamps are in GMT and
# rounded down to the start of the given date.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time
# The start time range for the search query. These timestamps are in GMT and
# rounded down to the start of the given date.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# The search terms for the hold.
# Corresponds to the JSON property `terms`
# @return [String]
attr_accessor :terms
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@end_time = args[:end_time] if args.key?(:end_time)
@start_time = args[:start_time] if args.key?(:start_time)
@terms = args[:terms] if args.key?(:terms)
end
end
# Query options for hangouts chat holds.
class HeldHangoutsChatQuery
include Google::Apis::Core::Hashable
# If true, include rooms the user has participated in.
# Corresponds to the JSON property `includeRooms`
# @return [Boolean]
attr_accessor :include_rooms
alias_method :include_rooms?, :include_rooms
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@include_rooms = args[:include_rooms] if args.key?(:include_rooms)
end
end
# Query options for mail holds.
class HeldMailQuery
include Google::Apis::Core::Hashable
# The end time range for the search query. These timestamps are in GMT and
# rounded down to the start of the given date.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time
# The start time range for the search query. These timestamps are in GMT and
# rounded down to the start of the given date.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# The search terms for the hold.
# Corresponds to the JSON property `terms`
# @return [String]
attr_accessor :terms
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@end_time = args[:end_time] if args.key?(:end_time)
@start_time = args[:start_time] if args.key?(:start_time)
@terms = args[:terms] if args.key?(:terms)
end
end
# A organizational unit being held in a particular hold.
# This structure is immutable.
class HeldOrgUnit
include Google::Apis::Core::Hashable
# When the org unit was put on hold. This property is immutable.
# Corresponds to the JSON property `holdTime`
# @return [String]
attr_accessor :hold_time
# The org unit's immutable ID as provided by the Admin SDK.
# Corresponds to the JSON property `orgUnitId`
# @return [String]
attr_accessor :org_unit_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@hold_time = args[:hold_time] if args.key?(:hold_time)
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
end
end
# Represents a hold within Vault. A hold restricts purging of
# artifacts based on the combination of the query and accounts restrictions.
# A hold can be configured to either apply to an explicitly configured set
# of accounts, or can be applied to all members of an organizational unit.
class Hold
include Google::Apis::Core::Hashable
# If set, the hold applies to the enumerated accounts and org_unit must be
# empty.
# Corresponds to the JSON property `accounts`
# @return [Array<Google::Apis::VaultV1::HeldAccount>]
attr_accessor :accounts
# The corpus to be searched.
# Corresponds to the JSON property `corpus`
# @return [String]
attr_accessor :corpus
# The unique immutable ID of the hold. Assigned during creation.
# Corresponds to the JSON property `holdId`
# @return [String]
attr_accessor :hold_id
# The name of the hold.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# A organizational unit being held in a particular hold.
# This structure is immutable.
# Corresponds to the JSON property `orgUnit`
# @return [Google::Apis::VaultV1::HeldOrgUnit]
attr_accessor :org_unit
# Corpus specific queries.
# Corresponds to the JSON property `query`
# @return [Google::Apis::VaultV1::CorpusQuery]
attr_accessor :query
# The last time this hold was modified.
# Corresponds to the JSON property `updateTime`
# @return [String]
attr_accessor :update_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@accounts = args[:accounts] if args.key?(:accounts)
@corpus = args[:corpus] if args.key?(:corpus)
@hold_id = args[:hold_id] if args.key?(:hold_id)
@name = args[:name] if args.key?(:name)
@org_unit = args[:org_unit] if args.key?(:org_unit)
@query = args[:query] if args.key?(:query)
@update_time = args[:update_time] if args.key?(:update_time)
end
end
# The holds for a matter.
class ListExportsResponse
include Google::Apis::Core::Hashable
# The list of exports.
# Corresponds to the JSON property `exports`
# @return [Array<Google::Apis::VaultV1::Export>]
attr_accessor :exports
# Page token to retrieve the next page of results in the list.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@exports = args[:exports] if args.key?(:exports)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# Returns a list of held accounts for a hold.
class ListHeldAccountsResponse
include Google::Apis::Core::Hashable
# The held accounts on a hold.
# Corresponds to the JSON property `accounts`
# @return [Array<Google::Apis::VaultV1::HeldAccount>]
attr_accessor :accounts
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@accounts = args[:accounts] if args.key?(:accounts)
end
end
# The holds for a matter.
class ListHoldsResponse
include Google::Apis::Core::Hashable
# The list of holds.
# Corresponds to the JSON property `holds`
# @return [Array<Google::Apis::VaultV1::Hold>]
attr_accessor :holds
# Page token to retrieve the next page of results in the list.
# If this is empty, then there are no more holds to list.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@holds = args[:holds] if args.key?(:holds)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# Provides the list of matters.
class ListMattersResponse
include Google::Apis::Core::Hashable
# List of matters.
# Corresponds to the JSON property `matters`
# @return [Array<Google::Apis::VaultV1::Matter>]
attr_accessor :matters
# Page token to retrieve the next page of results in the list.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@matters = args[:matters] if args.key?(:matters)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# Definition of the response for method ListSaveQuery.
class ListSavedQueriesResponse
include Google::Apis::Core::Hashable
# Page token to retrieve the next page of results in the list.
# If this is empty, then there are no more saved queries to list.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
# List of output saved queries.
# Corresponds to the JSON property `savedQueries`
# @return [Array<Google::Apis::VaultV1::SavedQuery>]
attr_accessor :saved_queries
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
@saved_queries = args[:saved_queries] if args.key?(:saved_queries)
end
end
# The options for mail export.
class MailExportOptions
include Google::Apis::Core::Hashable
# The export file format.
# Corresponds to the JSON property `exportFormat`
# @return [String]
attr_accessor :export_format
# Set to true to export confidential mode content.
# Corresponds to the JSON property `showConfidentialModeContent`
# @return [Boolean]
attr_accessor :show_confidential_mode_content
alias_method :show_confidential_mode_content?, :show_confidential_mode_content
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@export_format = args[:export_format] if args.key?(:export_format)
@show_confidential_mode_content = args[:show_confidential_mode_content] if args.key?(:show_confidential_mode_content)
end
end
# Mail search advanced options
class MailOptions
include Google::Apis::Core::Hashable
# Set to true to exclude drafts.
# Corresponds to the JSON property `excludeDrafts`
# @return [Boolean]
attr_accessor :exclude_drafts
alias_method :exclude_drafts?, :exclude_drafts
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@exclude_drafts = args[:exclude_drafts] if args.key?(:exclude_drafts)
end
end
# Represents a matter.
class Matter
include Google::Apis::Core::Hashable
# The description of the matter.
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
# The matter ID which is generated by the server.
# Should be blank when creating a new matter.
# Corresponds to the JSON property `matterId`
# @return [String]
attr_accessor :matter_id
# List of users and access to the matter. Currently there is no programmer
# defined limit on the number of permissions a matter can have.
# Corresponds to the JSON property `matterPermissions`
# @return [Array<Google::Apis::VaultV1::MatterPermission>]
attr_accessor :matter_permissions
# The name of the matter.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The state of the matter.
# Corresponds to the JSON property `state`
# @return [String]
attr_accessor :state
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@description = args[:description] if args.key?(:description)
@matter_id = args[:matter_id] if args.key?(:matter_id)
@matter_permissions = args[:matter_permissions] if args.key?(:matter_permissions)
@name = args[:name] if args.key?(:name)
@state = args[:state] if args.key?(:state)
end
end
# Currently each matter only has one owner, and all others are collaborators.
# When an account is purged, its corresponding MatterPermission resources
# cease to exist.
class MatterPermission
include Google::Apis::Core::Hashable
# The account id, as provided by <a
# href="https://developers.google.com/admin-sdk/">Admin SDK</a>.
# Corresponds to the JSON property `accountId`
# @return [String]
attr_accessor :account_id
# The user's role in this matter.
# Corresponds to the JSON property `role`
# @return [String]
attr_accessor :role
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@account_id = args[:account_id] if args.key?(:account_id)
@role = args[:role] if args.key?(:role)
end
end
# Org Unit to search
class OrgUnitInfo
include Google::Apis::Core::Hashable
# Org unit to search, as provided by the
# <a href="https://developers.google.com/admin-sdk/directory/">Admin SDK
# Directory API</a>.
# Corresponds to the JSON property `orgUnitId`
# @return [String]
attr_accessor :org_unit_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
end
end
# A query definition relevant for search & export.
class Query
include Google::Apis::Core::Hashable
# Accounts to search
# Corresponds to the JSON property `accountInfo`
# @return [Google::Apis::VaultV1::AccountInfo]
attr_accessor :account_info
# The corpus to search.
# Corresponds to the JSON property `corpus`
# @return [String]
attr_accessor :corpus
# The data source to search from.
# Corresponds to the JSON property `dataScope`
# @return [String]
attr_accessor :data_scope
# Drive search advanced options
# Corresponds to the JSON property `driveOptions`
# @return [Google::Apis::VaultV1::DriveOptions]
attr_accessor :drive_options
# The end time range for the search query. These timestamps are in GMT and
# rounded down to the start of the given date.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time
# Accounts to search
# Corresponds to the JSON property `hangoutsChatInfo`
# @return [Google::Apis::VaultV1::HangoutsChatInfo]
attr_accessor :hangouts_chat_info
# Hangouts chat search advanced options
# Corresponds to the JSON property `hangoutsChatOptions`
# @return [Google::Apis::VaultV1::HangoutsChatOptions]
attr_accessor :hangouts_chat_options
# Mail search advanced options
# Corresponds to the JSON property `mailOptions`
# @return [Google::Apis::VaultV1::MailOptions]
attr_accessor :mail_options
# The search method to use. This field is similar to the search_method field
# but is introduced to support shared drives. It supports all
# search method types. In case the search_method is TEAM_DRIVE the response
# of this field will be SHARED_DRIVE only.
# Corresponds to the JSON property `method`
# @return [String]
attr_accessor :method_prop
# Org Unit to search
# Corresponds to the JSON property `orgUnitInfo`
# @return [Google::Apis::VaultV1::OrgUnitInfo]
attr_accessor :org_unit_info
# The search method to use.
# Corresponds to the JSON property `searchMethod`
# @return [String]
attr_accessor :search_method
# Shared drives to search
# Corresponds to the JSON property `sharedDriveInfo`
# @return [Google::Apis::VaultV1::SharedDriveInfo]
attr_accessor :shared_drive_info
# The start time range for the search query. These timestamps are in GMT and
# rounded down to the start of the given date.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# Team Drives to search
# Corresponds to the JSON property `teamDriveInfo`
# @return [Google::Apis::VaultV1::TeamDriveInfo]
attr_accessor :team_drive_info
# The corpus-specific
# <a href="https://support.google.com/vault/answer/2474474">search
# operators</a> used to generate search results.
# Corresponds to the JSON property `terms`
# @return [String]
attr_accessor :terms
# The time zone name.
# It should be an IANA TZ name, such as "America/Los_Angeles".
# For more information, see
# <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">Time
# Zone</a>.
# Corresponds to the JSON property `timeZone`
# @return [String]
attr_accessor :time_zone
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@account_info = args[:account_info] if args.key?(:account_info)
@corpus = args[:corpus] if args.key?(:corpus)
@data_scope = args[:data_scope] if args.key?(:data_scope)
@drive_options = args[:drive_options] if args.key?(:drive_options)
@end_time = args[:end_time] if args.key?(:end_time)
@hangouts_chat_info = args[:hangouts_chat_info] if args.key?(:hangouts_chat_info)
@hangouts_chat_options = args[:hangouts_chat_options] if args.key?(:hangouts_chat_options)
@mail_options = args[:mail_options] if args.key?(:mail_options)
@method_prop = args[:method_prop] if args.key?(:method_prop)
@org_unit_info = args[:org_unit_info] if args.key?(:org_unit_info)
@search_method = args[:search_method] if args.key?(:search_method)
@shared_drive_info = args[:shared_drive_info] if args.key?(:shared_drive_info)
@start_time = args[:start_time] if args.key?(:start_time)
@team_drive_info = args[:team_drive_info] if args.key?(:team_drive_info)
@terms = args[:terms] if args.key?(:terms)
@time_zone = args[:time_zone] if args.key?(:time_zone)
end
end
# Remove a list of accounts from a hold.
class RemoveHeldAccountsRequest
include Google::Apis::Core::Hashable
# Account ids to identify HeldAccounts to remove.
# Corresponds to the JSON property `accountIds`
# @return [Array<String>]
attr_accessor :account_ids
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@account_ids = args[:account_ids] if args.key?(:account_ids)
end
end
# Response for batch delete held accounts.
class RemoveHeldAccountsResponse
include Google::Apis::Core::Hashable
# A list of statuses for deleted accounts. Results have the
# same order as the request.
# Corresponds to the JSON property `statuses`
# @return [Array<Google::Apis::VaultV1::Status>]
attr_accessor :statuses
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@statuses = args[:statuses] if args.key?(:statuses)
end
end
# Remove an account as a matter collaborator.
class RemoveMatterPermissionsRequest
include Google::Apis::Core::Hashable
# The account ID.
# Corresponds to the JSON property `accountId`
# @return [String]
attr_accessor :account_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@account_id = args[:account_id] if args.key?(:account_id)
end
end
# Reopen a matter by ID.
class ReopenMatterRequest
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Response to a ReopenMatterRequest.
class ReopenMatterResponse
include Google::Apis::Core::Hashable
# Represents a matter.
# Corresponds to the JSON property `matter`
# @return [Google::Apis::VaultV1::Matter]
attr_accessor :matter
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@matter = args[:matter] if args.key?(:matter)
end
end
# Definition of the saved query.
class SavedQuery
include Google::Apis::Core::Hashable
# Output only. The server generated timestamp at which saved query was
# created.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# Name of the saved query.
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# Output only. The matter id of the associated matter.
# The server does not look at this field during create and always uses matter
# id in the URL.
# Corresponds to the JSON property `matterId`
# @return [String]
attr_accessor :matter_id
# A query definition relevant for search & export.
# Corresponds to the JSON property `query`
# @return [Google::Apis::VaultV1::Query]
attr_accessor :query
# A unique identifier for the saved query.
# Corresponds to the JSON property `savedQueryId`
# @return [String]
attr_accessor :saved_query_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@create_time = args[:create_time] if args.key?(:create_time)
@display_name = args[:display_name] if args.key?(:display_name)
@matter_id = args[:matter_id] if args.key?(:matter_id)
@query = args[:query] if args.key?(:query)
@saved_query_id = args[:saved_query_id] if args.key?(:saved_query_id)
end
end
# Shared drives to search
class SharedDriveInfo
include Google::Apis::Core::Hashable
# List of Shared drive ids, as provided by <a
# href="https://developers.google.com/drive">Drive API</a>.
# Corresponds to the JSON property `sharedDriveIds`
# @return [Array<String>]
attr_accessor :shared_drive_ids
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@shared_drive_ids = args[:shared_drive_ids] if args.key?(:shared_drive_ids)
end
end
# The `Status` type defines a logical error model that is suitable for
# different programming environments, including REST APIs and RPC APIs. It is
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
# three pieces of data: error code, error message, and error details.
# You can find out more about this error model and how to work with it in the
# [API Design Guide](https://cloud.google.com/apis/design/errors).
class Status
include Google::Apis::Core::Hashable
# The status code, which should be an enum value of google.rpc.Code.
# Corresponds to the JSON property `code`
# @return [Fixnum]
attr_accessor :code
# A list of messages that carry the error details. There is a common set of
# message types for APIs to use.
# Corresponds to the JSON property `details`
# @return [Array<Hash<String,Object>>]
attr_accessor :details
# A developer-facing error message, which should be in English. Any
# user-facing error message should be localized and sent in the
# google.rpc.Status.details field, or localized by the client.
# Corresponds to the JSON property `message`
# @return [String]
attr_accessor :message
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@code = args[:code] if args.key?(:code)
@details = args[:details] if args.key?(:details)
@message = args[:message] if args.key?(:message)
end
end
# Team Drives to search
class TeamDriveInfo
include Google::Apis::Core::Hashable
# List of Team Drive ids, as provided by <a
# href="https://developers.google.com/drive">Drive API</a>.
# Corresponds to the JSON property `teamDriveIds`
# @return [Array<String>]
attr_accessor :team_drive_ids
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@team_drive_ids = args[:team_drive_ids] if args.key?(:team_drive_ids)
end
end
# Undelete a matter by ID.
class UndeleteMatterRequest
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# User's information.
class UserInfo
include Google::Apis::Core::Hashable
# The displayed name of the user.
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# The email address of the user.
# Corresponds to the JSON property `email`
# @return [String]
attr_accessor :email
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@display_name = args[:display_name] if args.key?(:display_name)
@email = args[:email] if args.key?(:email)
end
end
end
end
end
|