google-apis-vault_v1 0.29.0 → 0.30.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: 03d5d5166baf949878f313c79932f6eb7b47b3f1193492cf96f921294943e378
4
- data.tar.gz: 205c265536291e1fe2554918a75fe6646bf6e20c84b895459921e78142d5a81d
3
+ metadata.gz: 5f16ecd1bd4c9c0f8e22bc9c8bda076585875e23f95815adb63ac10de860b670
4
+ data.tar.gz: e68891bba280e533c7156f96f784e3eeb594942b03e7333e7b400a1f0d5d4820
5
5
  SHA512:
6
- metadata.gz: 951f0e96db37fa2ea84ae53c5c4fc72cd4be8a79ef34f0155a5bf977b9f7db503afa7513fdae3f5bf388524d0cb34822b778907e3b37213e62827a2aff38a841
7
- data.tar.gz: 7cde0483c99f2dfb53c54f4dc2fb09c51def41d7fed12ff828181794bc9efa242b9e8ef3d8251371dcc23ba74cbf5e20e5d25dccae1f8264ee3a731b043eddfd
6
+ metadata.gz: 139028668c5252ca4882a1ca76b0feb279a32aaa2a98f25c7e4af9098cd8aaf31071118f8c3693fc25ad1c50f2cea49ee74a43a67b56b782f45cf24dc60a5073
7
+ data.tar.gz: 2a3b6abb8eb13165e06c1b9495702f333529d3af8e6c2bd5d76fc1cfdd620fba45318291c82e7e908f1cf854f23cca34c86fd4a0ca5a4bb083a497058306061c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vault_v1
2
2
 
3
+ ### v0.30.0 (2024-06-16)
4
+
5
+ * Regenerated from discovery document revision 20240603
6
+
3
7
  ### v0.29.0 (2024-05-19)
4
8
 
5
9
  * 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
@@ -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.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240226"
25
+ REVISION = "20240603"
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
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.30.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-06-16 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.30.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: []