google-apis-vault_v1 0.25.0 → 0.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4719fed8943989c30f40c8c930ec9f46d30c8da4e4248e8f0f802e00f1207c1e
4
- data.tar.gz: 0ccadf12f6d077d8ead1d435e828f33306ccbcf20b8d1740ac227f36ae8192f4
3
+ metadata.gz: 55f6a699cd9a6310fd58eed2112266b0cceabfa317aecb07a3d665caa7a03c54
4
+ data.tar.gz: 5d0f9e765a709764f1f3574fad6691fb3c37aceb5b6eb6bb09622379908a7e5f
5
5
  SHA512:
6
- metadata.gz: d7c227e34c40591d1a49dd42b9a0993747846647151e45667b1465fbf4db955c6d700d90bc98ba1f231e41e4bf83aca1b32fd98557e10f6fd280a643c590dc31
7
- data.tar.gz: fd9089d1ad29c45914cf1e6a84aeea5200c65749ee8148214574e5ee6de1f46d121b96f593fd30efc0b8700795de367ca253a7a451c3af90c87de379b53ff6d9
6
+ metadata.gz: 86b82fd3713f651d5f5161571d81c04f4eaf589b02ced96d81bdc944fd74facfb1814b14643128f7d176d747041a997001443c3ade04e235572bbb9b4e040e58
7
+ data.tar.gz: 2e35d7095410a6e1382bacfd8b6c494bdd79d984c51e337dbfee7a843439fa41ac6656fc05cd0111fe0ea6a6774883b2399bd735494760507a36cc2d2f2d4766
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vault_v1
2
2
 
3
+ ### v0.26.0 (2023-12-24)
4
+
5
+ * Regenerated from discovery document revision 20231213
6
+
3
7
  ### v0.25.0 (2023-08-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20230807
@@ -210,6 +210,80 @@ module Google
210
210
  end
211
211
  end
212
212
 
213
+ # The options for Calendar exports.
214
+ class CalendarExportOptions
215
+ include Google::Apis::Core::Hashable
216
+
217
+ # The file format for exported text messages.
218
+ # Corresponds to the JSON property `exportFormat`
219
+ # @return [String]
220
+ attr_accessor :export_format
221
+
222
+ def initialize(**args)
223
+ update!(**args)
224
+ end
225
+
226
+ # Update properties of this object
227
+ def update!(**args)
228
+ @export_format = args[:export_format] if args.key?(:export_format)
229
+ end
230
+ end
231
+
232
+ # Additional options for Calendar search
233
+ class CalendarOptions
234
+ include Google::Apis::Core::Hashable
235
+
236
+ # Matches only those events whose location contains all of the words in the
237
+ # given set. If the string contains quoted phrases, this method only matches
238
+ # those events whose location contain the exact phrase. Entries in the set are
239
+ # considered in "and". Word splitting example: ["New Zealand"] vs ["New","
240
+ # Zealand"] "New Zealand": matched by both "New and better Zealand": only
241
+ # matched by the later
242
+ # Corresponds to the JSON property `locationQuery`
243
+ # @return [Array<String>]
244
+ attr_accessor :location_query
245
+
246
+ # Matches only those events that do not contain any of the words in the given
247
+ # set in title, description, location, or attendees. Entries in the set are
248
+ # considered in "or".
249
+ # Corresponds to the JSON property `minusWords`
250
+ # @return [Array<String>]
251
+ attr_accessor :minus_words
252
+
253
+ # Matches only those events whose attendees contain all of the words in the
254
+ # given set. Entries in the set are considered in "and".
255
+ # Corresponds to the JSON property `peopleQuery`
256
+ # @return [Array<String>]
257
+ attr_accessor :people_query
258
+
259
+ # Matches only events for which the custodian gave one of these responses. If
260
+ # the set is empty or contains ATTENDEE_RESPONSE_UNSPECIFIED there will be no
261
+ # filtering on responses.
262
+ # Corresponds to the JSON property `responseStatuses`
263
+ # @return [Array<String>]
264
+ attr_accessor :response_statuses
265
+
266
+ # Search the current version of the Calendar event, but export the contents of
267
+ # the last version saved before 12:00 AM UTC on the specified date. Enter the
268
+ # date in UTC.
269
+ # Corresponds to the JSON property `versionDate`
270
+ # @return [String]
271
+ attr_accessor :version_date
272
+
273
+ def initialize(**args)
274
+ update!(**args)
275
+ end
276
+
277
+ # Update properties of this object
278
+ def update!(**args)
279
+ @location_query = args[:location_query] if args.key?(:location_query)
280
+ @minus_words = args[:minus_words] if args.key?(:minus_words)
281
+ @people_query = args[:people_query] if args.key?(:people_query)
282
+ @response_statuses = args[:response_statuses] if args.key?(:response_statuses)
283
+ @version_date = args[:version_date] if args.key?(:version_date)
284
+ end
285
+ end
286
+
213
287
  # The request message for Operations.CancelOperation.
214
288
  class CancelOperationRequest
215
289
  include Google::Apis::Core::Hashable
@@ -575,6 +649,12 @@ module Google
575
649
  # @return [String]
576
650
  attr_accessor :name
577
651
 
652
+ # Output only. Identifies the parent export that spawned this child export. This
653
+ # is only set on child exports.
654
+ # Corresponds to the JSON property `parentExportId`
655
+ # @return [String]
656
+ attr_accessor :parent_export_id
657
+
578
658
  # The query definition used for search and export.
579
659
  # Corresponds to the JSON property `query`
580
660
  # @return [Google::Apis::VaultV1::Query]
@@ -607,6 +687,7 @@ module Google
607
687
  @id = args[:id] if args.key?(:id)
608
688
  @matter_id = args[:matter_id] if args.key?(:matter_id)
609
689
  @name = args[:name] if args.key?(:name)
690
+ @parent_export_id = args[:parent_export_id] if args.key?(:parent_export_id)
610
691
  @query = args[:query] if args.key?(:query)
611
692
  @requester = args[:requester] if args.key?(:requester)
612
693
  @stats = args[:stats] if args.key?(:stats)
@@ -618,6 +699,11 @@ module Google
618
699
  class ExportOptions
619
700
  include Google::Apis::Core::Hashable
620
701
 
702
+ # The options for Calendar exports.
703
+ # Corresponds to the JSON property `calendarOptions`
704
+ # @return [Google::Apis::VaultV1::CalendarExportOptions]
705
+ attr_accessor :calendar_options
706
+
621
707
  # Options for Drive exports.
622
708
  # Corresponds to the JSON property `driveOptions`
623
709
  # @return [Google::Apis::VaultV1::DriveExportOptions]
@@ -654,6 +740,7 @@ module Google
654
740
 
655
741
  # Update properties of this object
656
742
  def update!(**args)
743
+ @calendar_options = args[:calendar_options] if args.key?(:calendar_options)
657
744
  @drive_options = args[:drive_options] if args.key?(:drive_options)
658
745
  @groups_options = args[:groups_options] if args.key?(:groups_options)
659
746
  @hangouts_chat_options = args[:hangouts_chat_options] if args.key?(:hangouts_chat_options)
@@ -1292,6 +1379,12 @@ module Google
1292
1379
  # @return [String]
1293
1380
  attr_accessor :export_format
1294
1381
 
1382
+ # Optional. To enable exporting linked Drive files, set to **true**.
1383
+ # Corresponds to the JSON property `exportLinkedDriveFiles`
1384
+ # @return [Boolean]
1385
+ attr_accessor :export_linked_drive_files
1386
+ alias_method :export_linked_drive_files?, :export_linked_drive_files
1387
+
1295
1388
  # To export confidential mode content, set to **true**.
1296
1389
  # Corresponds to the JSON property `showConfidentialModeContent`
1297
1390
  # @return [Boolean]
@@ -1311,6 +1404,7 @@ module Google
1311
1404
  # Update properties of this object
1312
1405
  def update!(**args)
1313
1406
  @export_format = args[:export_format] if args.key?(:export_format)
1407
+ @export_linked_drive_files = args[:export_linked_drive_files] if args.key?(:export_linked_drive_files)
1314
1408
  @show_confidential_mode_content = args[:show_confidential_mode_content] if args.key?(:show_confidential_mode_content)
1315
1409
  @use_new_export = args[:use_new_export] if args.key?(:use_new_export)
1316
1410
  end
@@ -1511,6 +1605,11 @@ module Google
1511
1605
  # @return [Google::Apis::VaultV1::AccountInfo]
1512
1606
  attr_accessor :account_info
1513
1607
 
1608
+ # Additional options for Calendar search
1609
+ # Corresponds to the JSON property `calendarOptions`
1610
+ # @return [Google::Apis::VaultV1::CalendarOptions]
1611
+ attr_accessor :calendar_options
1612
+
1514
1613
  # The Google Workspace service to search.
1515
1614
  # Corresponds to the JSON property `corpus`
1516
1615
  # @return [String]
@@ -1612,6 +1711,7 @@ module Google
1612
1711
  # Update properties of this object
1613
1712
  def update!(**args)
1614
1713
  @account_info = args[:account_info] if args.key?(:account_info)
1714
+ @calendar_options = args[:calendar_options] if args.key?(:calendar_options)
1615
1715
  @corpus = args[:corpus] if args.key?(:corpus)
1616
1716
  @data_scope = args[:data_scope] if args.key?(:data_scope)
1617
1717
  @drive_options = args[:drive_options] if args.key?(:drive_options)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VaultV1
18
18
  # Version of the google-apis-vault_v1 gem
19
- GEM_VERSION = "0.25.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230807"
25
+ REVISION = "20231213"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,18 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class CalendarExportOptions
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class CalendarOptions
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
67
79
  class CancelOperationRequest
68
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
81
 
@@ -461,6 +473,24 @@ module Google
461
473
  end
462
474
  end
463
475
 
476
+ class CalendarExportOptions
477
+ # @private
478
+ class Representation < Google::Apis::Core::JsonRepresentation
479
+ property :export_format, as: 'exportFormat'
480
+ end
481
+ end
482
+
483
+ class CalendarOptions
484
+ # @private
485
+ class Representation < Google::Apis::Core::JsonRepresentation
486
+ collection :location_query, as: 'locationQuery'
487
+ collection :minus_words, as: 'minusWords'
488
+ collection :people_query, as: 'peopleQuery'
489
+ collection :response_statuses, as: 'responseStatuses'
490
+ property :version_date, as: 'versionDate'
491
+ end
492
+ end
493
+
464
494
  class CancelOperationRequest
465
495
  # @private
466
496
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -580,6 +610,7 @@ module Google
580
610
  property :id, as: 'id'
581
611
  property :matter_id, as: 'matterId'
582
612
  property :name, as: 'name'
613
+ property :parent_export_id, as: 'parentExportId'
583
614
  property :query, as: 'query', class: Google::Apis::VaultV1::Query, decorator: Google::Apis::VaultV1::Query::Representation
584
615
 
585
616
  property :requester, as: 'requester', class: Google::Apis::VaultV1::UserInfo, decorator: Google::Apis::VaultV1::UserInfo::Representation
@@ -593,6 +624,8 @@ module Google
593
624
  class ExportOptions
594
625
  # @private
595
626
  class Representation < Google::Apis::Core::JsonRepresentation
627
+ property :calendar_options, as: 'calendarOptions', class: Google::Apis::VaultV1::CalendarExportOptions, decorator: Google::Apis::VaultV1::CalendarExportOptions::Representation
628
+
596
629
  property :drive_options, as: 'driveOptions', class: Google::Apis::VaultV1::DriveExportOptions, decorator: Google::Apis::VaultV1::DriveExportOptions::Representation
597
630
 
598
631
  property :groups_options, as: 'groupsOptions', class: Google::Apis::VaultV1::GroupsExportOptions, decorator: Google::Apis::VaultV1::GroupsExportOptions::Representation
@@ -802,6 +835,7 @@ module Google
802
835
  # @private
803
836
  class Representation < Google::Apis::Core::JsonRepresentation
804
837
  property :export_format, as: 'exportFormat'
838
+ property :export_linked_drive_files, as: 'exportLinkedDriveFiles'
805
839
  property :show_confidential_mode_content, as: 'showConfidentialModeContent'
806
840
  property :use_new_export, as: 'useNewExport'
807
841
  end
@@ -859,6 +893,8 @@ module Google
859
893
  class Representation < Google::Apis::Core::JsonRepresentation
860
894
  property :account_info, as: 'accountInfo', class: Google::Apis::VaultV1::AccountInfo, decorator: Google::Apis::VaultV1::AccountInfo::Representation
861
895
 
896
+ property :calendar_options, as: 'calendarOptions', class: Google::Apis::VaultV1::CalendarOptions, decorator: Google::Apis::VaultV1::CalendarOptions::Representation
897
+
862
898
  property :corpus, as: 'corpus'
863
899
  property :data_scope, as: 'dataScope'
864
900
  property :drive_options, as: 'driveOptions', class: Google::Apis::VaultV1::DriveOptions, decorator: Google::Apis::VaultV1::DriveOptions::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vault_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-03 00:00:00.000000000 Z
11
+ date: 2023-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vault_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vault_v1
63
63
  post_install_message:
64
64
  rdoc_options: []