google-apis-vault_v1 0.29.0 → 0.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 03d5d5166baf949878f313c79932f6eb7b47b3f1193492cf96f921294943e378
4
- data.tar.gz: 205c265536291e1fe2554918a75fe6646bf6e20c84b895459921e78142d5a81d
3
+ metadata.gz: 29500ba4f281b0cb604880779e13cf6d378d67c46efa966bc4e237ab32790d84
4
+ data.tar.gz: a08be029ba7437166cf3a7b2e2e3c5b185bbb4569836d6a3d20d1d6df69a16b4
5
5
  SHA512:
6
- metadata.gz: 951f0e96db37fa2ea84ae53c5c4fc72cd4be8a79ef34f0155a5bf977b9f7db503afa7513fdae3f5bf388524d0cb34822b778907e3b37213e62827a2aff38a841
7
- data.tar.gz: 7cde0483c99f2dfb53c54f4dc2fb09c51def41d7fed12ff828181794bc9efa242b9e8ef3d8251371dcc23ba74cbf5e20e5d25dccae1f8264ee3a731b043eddfd
6
+ metadata.gz: 8c065b79731c73cbec81975866842144d269fb24565257b4a97d0fa549c2058062f8d12c68d2737714e391148c6b573d2c750e24f9a87698685d78af595859cf
7
+ data.tar.gz: 015cbf6375e6e1d40f808ca184fc679720bfe14e0d1fb94f7cdd974228da98ceda7e00262311228daffc9e3319637eaeeca597b2c3ae321463c755b5ab682444
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-vault_v1
2
2
 
3
+ ### v0.31.0 (2024-08-11)
4
+
5
+ * Regenerated from discovery document revision 20240806
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.30.0 (2024-06-16)
9
+
10
+ * Regenerated from discovery document revision 20240603
11
+
3
12
  ### v0.29.0 (2024-05-19)
4
13
 
5
14
  * Regenerated from discovery document revision 20240226
@@ -399,6 +399,11 @@ module Google
399
399
  class CorpusQuery
400
400
  include Google::Apis::Core::Hashable
401
401
 
402
+ # Options for Calendar holds.
403
+ # Corresponds to the JSON property `calendarQuery`
404
+ # @return [Google::Apis::VaultV1::HeldCalendarQuery]
405
+ attr_accessor :calendar_query
406
+
402
407
  # Options for Drive holds.
403
408
  # Corresponds to the JSON property `driveQuery`
404
409
  # @return [Google::Apis::VaultV1::HeldDriveQuery]
@@ -430,6 +435,7 @@ module Google
430
435
 
431
436
  # Update properties of this object
432
437
  def update!(**args)
438
+ @calendar_query = args[:calendar_query] if args.key?(:calendar_query)
433
439
  @drive_query = args[:drive_query] if args.key?(:drive_query)
434
440
  @groups_query = args[:groups_query] if args.key?(:groups_query)
435
441
  @hangouts_chat_query = args[:hangouts_chat_query] if args.key?(:hangouts_chat_query)
@@ -956,6 +962,19 @@ module Google
956
962
  end
957
963
  end
958
964
 
965
+ # Options for Calendar holds.
966
+ class HeldCalendarQuery
967
+ include Google::Apis::Core::Hashable
968
+
969
+ def initialize(**args)
970
+ update!(**args)
971
+ end
972
+
973
+ # Update properties of this object
974
+ def update!(**args)
975
+ end
976
+ end
977
+
959
978
  # Options for Drive holds.
960
979
  class HeldDriveQuery
961
980
  include Google::Apis::Core::Hashable
@@ -1462,6 +1481,11 @@ module Google
1462
1481
  # @return [Array<Google::Apis::VaultV1::MatterPermission>]
1463
1482
  attr_accessor :matter_permissions
1464
1483
 
1484
+ # Optional. The requested data region for the matter.
1485
+ # Corresponds to the JSON property `matterRegion`
1486
+ # @return [String]
1487
+ attr_accessor :matter_region
1488
+
1465
1489
  # The name of the matter.
1466
1490
  # Corresponds to the JSON property `name`
1467
1491
  # @return [String]
@@ -1481,6 +1505,7 @@ module Google
1481
1505
  @description = args[:description] if args.key?(:description)
1482
1506
  @matter_id = args[:matter_id] if args.key?(:matter_id)
1483
1507
  @matter_permissions = args[:matter_permissions] if args.key?(:matter_permissions)
1508
+ @matter_region = args[:matter_region] if args.key?(:matter_region)
1484
1509
  @name = args[:name] if args.key?(:name)
1485
1510
  @state = args[:state] if args.key?(:state)
1486
1511
  end
@@ -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.29.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240226"
25
+ REVISION = "20240806"
26
26
  end
27
27
  end
28
28
  end
@@ -202,6 +202,12 @@ module Google
202
202
  include Google::Apis::Core::JsonObjectSupport
203
203
  end
204
204
 
205
+ class HeldCalendarQuery
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
205
211
  class HeldDriveQuery
206
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
213
 
@@ -532,6 +538,8 @@ module Google
532
538
  class CorpusQuery
533
539
  # @private
534
540
  class Representation < Google::Apis::Core::JsonRepresentation
541
+ property :calendar_query, as: 'calendarQuery', class: Google::Apis::VaultV1::HeldCalendarQuery, decorator: Google::Apis::VaultV1::HeldCalendarQuery::Representation
542
+
535
543
  property :drive_query, as: 'driveQuery', class: Google::Apis::VaultV1::HeldDriveQuery, decorator: Google::Apis::VaultV1::HeldDriveQuery::Representation
536
544
 
537
545
  property :groups_query, as: 'groupsQuery', class: Google::Apis::VaultV1::HeldGroupsQuery, decorator: Google::Apis::VaultV1::HeldGroupsQuery::Representation
@@ -701,6 +709,12 @@ module Google
701
709
  end
702
710
  end
703
711
 
712
+ class HeldCalendarQuery
713
+ # @private
714
+ class Representation < Google::Apis::Core::JsonRepresentation
715
+ end
716
+ end
717
+
704
718
  class HeldDriveQuery
705
719
  # @private
706
720
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -856,6 +870,7 @@ module Google
856
870
  property :matter_id, as: 'matterId'
857
871
  collection :matter_permissions, as: 'matterPermissions', class: Google::Apis::VaultV1::MatterPermission, decorator: Google::Apis::VaultV1::MatterPermission::Representation
858
872
 
873
+ property :matter_region, as: 'matterRegion'
859
874
  property :name, as: 'name'
860
875
  property :state, as: 'state'
861
876
  end
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.29.0
4
+ version: 0.31.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: 2024-05-19 00:00:00.000000000 Z
11
+ date: 2024-08-11 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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.31.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: []