google-apis-vault_v1 0.32.0 → 0.33.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/vault_v1/classes.rb +90 -2
- data/lib/google/apis/vault_v1/gem_version.rb +3 -3
- data/lib/google/apis/vault_v1/representations.rb +58 -0
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4102f9d268063689246b9e8814b9d5b99470481b1aa623b29d977fa75a17d9d4
|
4
|
+
data.tar.gz: 9af6f8ff78c7a5a58ccdef77665b2b30f857ecc4a794d8c1a16e3c5f7cbe2816
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20060c066faa28d5327e67b27d57b3b899dbe367bd4fc29fd5db69a6789b55af1569a42aa3f0759a103c6a7cf1f09d4d4ca8e515349d7d569dcb133182e3d7e4
|
7
|
+
data.tar.gz: 2f278e8087fe917d0855120e5c9b0b33d4a805d142feac8b1e0b00ba6316ea8423eecf7aebb29ecc2b248f76bc4008bbfd5eaa188e3b70923bf454f2585d105c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-vault_v1
|
2
2
|
|
3
|
+
### v0.33.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250212
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.32.0 (2024-12-08)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241121
|
@@ -537,6 +537,44 @@ module Google
|
|
537
537
|
end
|
538
538
|
end
|
539
539
|
|
540
|
+
# Specify Drive documents by document ID.
|
541
|
+
class DriveDocumentIds
|
542
|
+
include Google::Apis::Core::Hashable
|
543
|
+
|
544
|
+
# Required. A list of Drive document IDs.
|
545
|
+
# Corresponds to the JSON property `ids`
|
546
|
+
# @return [Array<String>]
|
547
|
+
attr_accessor :ids
|
548
|
+
|
549
|
+
def initialize(**args)
|
550
|
+
update!(**args)
|
551
|
+
end
|
552
|
+
|
553
|
+
# Update properties of this object
|
554
|
+
def update!(**args)
|
555
|
+
@ids = args[:ids] if args.key?(:ids)
|
556
|
+
end
|
557
|
+
end
|
558
|
+
|
559
|
+
# The Drive documents to search.
|
560
|
+
class DriveDocumentInfo
|
561
|
+
include Google::Apis::Core::Hashable
|
562
|
+
|
563
|
+
# Specify Drive documents by document ID.
|
564
|
+
# Corresponds to the JSON property `documentIds`
|
565
|
+
# @return [Google::Apis::VaultV1::DriveDocumentIds]
|
566
|
+
attr_accessor :document_ids
|
567
|
+
|
568
|
+
def initialize(**args)
|
569
|
+
update!(**args)
|
570
|
+
end
|
571
|
+
|
572
|
+
# Update properties of this object
|
573
|
+
def update!(**args)
|
574
|
+
@document_ids = args[:document_ids] if args.key?(:document_ids)
|
575
|
+
end
|
576
|
+
end
|
577
|
+
|
540
578
|
# Options for Drive exports.
|
541
579
|
class DriveExportOptions
|
542
580
|
include Google::Apis::Core::Hashable
|
@@ -558,7 +596,7 @@ module Google
|
|
558
596
|
end
|
559
597
|
end
|
560
598
|
|
561
|
-
# Additional options for Drive search
|
599
|
+
# Additional options for Drive search.
|
562
600
|
class DriveOptions
|
563
601
|
include Google::Apis::Core::Hashable
|
564
602
|
|
@@ -715,6 +753,11 @@ module Google
|
|
715
753
|
# @return [Google::Apis::VaultV1::DriveExportOptions]
|
716
754
|
attr_accessor :drive_options
|
717
755
|
|
756
|
+
# The options for Gemini exports.
|
757
|
+
# Corresponds to the JSON property `geminiOptions`
|
758
|
+
# @return [Google::Apis::VaultV1::GeminiExportOptions]
|
759
|
+
attr_accessor :gemini_options
|
760
|
+
|
718
761
|
# Options for Groups exports.
|
719
762
|
# Corresponds to the JSON property `groupsOptions`
|
720
763
|
# @return [Google::Apis::VaultV1::GroupsExportOptions]
|
@@ -748,6 +791,7 @@ module Google
|
|
748
791
|
def update!(**args)
|
749
792
|
@calendar_options = args[:calendar_options] if args.key?(:calendar_options)
|
750
793
|
@drive_options = args[:drive_options] if args.key?(:drive_options)
|
794
|
+
@gemini_options = args[:gemini_options] if args.key?(:gemini_options)
|
751
795
|
@groups_options = args[:groups_options] if args.key?(:groups_options)
|
752
796
|
@hangouts_chat_options = args[:hangouts_chat_options] if args.key?(:hangouts_chat_options)
|
753
797
|
@mail_options = args[:mail_options] if args.key?(:mail_options)
|
@@ -787,6 +831,38 @@ module Google
|
|
787
831
|
end
|
788
832
|
end
|
789
833
|
|
834
|
+
# The options for Gemini exports.
|
835
|
+
class GeminiExportOptions
|
836
|
+
include Google::Apis::Core::Hashable
|
837
|
+
|
838
|
+
# The file format for exported messages.
|
839
|
+
# Corresponds to the JSON property `exportFormat`
|
840
|
+
# @return [String]
|
841
|
+
attr_accessor :export_format
|
842
|
+
|
843
|
+
def initialize(**args)
|
844
|
+
update!(**args)
|
845
|
+
end
|
846
|
+
|
847
|
+
# Update properties of this object
|
848
|
+
def update!(**args)
|
849
|
+
@export_format = args[:export_format] if args.key?(:export_format)
|
850
|
+
end
|
851
|
+
end
|
852
|
+
|
853
|
+
# Additional options for Gemini search
|
854
|
+
class GeminiOptions
|
855
|
+
include Google::Apis::Core::Hashable
|
856
|
+
|
857
|
+
def initialize(**args)
|
858
|
+
update!(**args)
|
859
|
+
end
|
860
|
+
|
861
|
+
# Update properties of this object
|
862
|
+
def update!(**args)
|
863
|
+
end
|
864
|
+
end
|
865
|
+
|
790
866
|
# Groups specific count metrics.
|
791
867
|
class GroupsCountResult
|
792
868
|
include Google::Apis::Core::Hashable
|
@@ -1645,7 +1721,12 @@ module Google
|
|
1645
1721
|
# @return [String]
|
1646
1722
|
attr_accessor :data_scope
|
1647
1723
|
|
1648
|
-
#
|
1724
|
+
# The Drive documents to search.
|
1725
|
+
# Corresponds to the JSON property `driveDocumentInfo`
|
1726
|
+
# @return [Google::Apis::VaultV1::DriveDocumentInfo]
|
1727
|
+
attr_accessor :drive_document_info
|
1728
|
+
|
1729
|
+
# Additional options for Drive search.
|
1649
1730
|
# Corresponds to the JSON property `driveOptions`
|
1650
1731
|
# @return [Google::Apis::VaultV1::DriveOptions]
|
1651
1732
|
attr_accessor :drive_options
|
@@ -1656,6 +1737,11 @@ module Google
|
|
1656
1737
|
# @return [String]
|
1657
1738
|
attr_accessor :end_time
|
1658
1739
|
|
1740
|
+
# Additional options for Gemini search
|
1741
|
+
# Corresponds to the JSON property `geminiOptions`
|
1742
|
+
# @return [Google::Apis::VaultV1::GeminiOptions]
|
1743
|
+
attr_accessor :gemini_options
|
1744
|
+
|
1659
1745
|
# The Chat spaces to search
|
1660
1746
|
# Corresponds to the JSON property `hangoutsChatInfo`
|
1661
1747
|
# @return [Google::Apis::VaultV1::HangoutsChatInfo]
|
@@ -1739,8 +1825,10 @@ module Google
|
|
1739
1825
|
@calendar_options = args[:calendar_options] if args.key?(:calendar_options)
|
1740
1826
|
@corpus = args[:corpus] if args.key?(:corpus)
|
1741
1827
|
@data_scope = args[:data_scope] if args.key?(:data_scope)
|
1828
|
+
@drive_document_info = args[:drive_document_info] if args.key?(:drive_document_info)
|
1742
1829
|
@drive_options = args[:drive_options] if args.key?(:drive_options)
|
1743
1830
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1831
|
+
@gemini_options = args[:gemini_options] if args.key?(:gemini_options)
|
1744
1832
|
@hangouts_chat_info = args[:hangouts_chat_info] if args.key?(:hangouts_chat_info)
|
1745
1833
|
@hangouts_chat_options = args[:hangouts_chat_options] if args.key?(:hangouts_chat_options)
|
1746
1834
|
@mail_options = args[:mail_options] if args.key?(:mail_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.
|
19
|
+
GEM_VERSION = "0.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250212"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,6 +130,18 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
+
class DriveDocumentIds
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
139
|
+
class DriveDocumentInfo
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
133
145
|
class DriveExportOptions
|
134
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
147
|
|
@@ -166,6 +178,18 @@ module Google
|
|
166
178
|
include Google::Apis::Core::JsonObjectSupport
|
167
179
|
end
|
168
180
|
|
181
|
+
class GeminiExportOptions
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
187
|
+
class GeminiOptions
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
169
193
|
class GroupsCountResult
|
170
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
195
|
|
@@ -584,6 +608,21 @@ module Google
|
|
584
608
|
end
|
585
609
|
end
|
586
610
|
|
611
|
+
class DriveDocumentIds
|
612
|
+
# @private
|
613
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
614
|
+
collection :ids, as: 'ids'
|
615
|
+
end
|
616
|
+
end
|
617
|
+
|
618
|
+
class DriveDocumentInfo
|
619
|
+
# @private
|
620
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
621
|
+
property :document_ids, as: 'documentIds', class: Google::Apis::VaultV1::DriveDocumentIds, decorator: Google::Apis::VaultV1::DriveDocumentIds::Representation
|
622
|
+
|
623
|
+
end
|
624
|
+
end
|
625
|
+
|
587
626
|
class DriveExportOptions
|
588
627
|
# @private
|
589
628
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -636,6 +675,8 @@ module Google
|
|
636
675
|
|
637
676
|
property :drive_options, as: 'driveOptions', class: Google::Apis::VaultV1::DriveExportOptions, decorator: Google::Apis::VaultV1::DriveExportOptions::Representation
|
638
677
|
|
678
|
+
property :gemini_options, as: 'geminiOptions', class: Google::Apis::VaultV1::GeminiExportOptions, decorator: Google::Apis::VaultV1::GeminiExportOptions::Representation
|
679
|
+
|
639
680
|
property :groups_options, as: 'groupsOptions', class: Google::Apis::VaultV1::GroupsExportOptions, decorator: Google::Apis::VaultV1::GroupsExportOptions::Representation
|
640
681
|
|
641
682
|
property :hangouts_chat_options, as: 'hangoutsChatOptions', class: Google::Apis::VaultV1::HangoutsChatExportOptions, decorator: Google::Apis::VaultV1::HangoutsChatExportOptions::Representation
|
@@ -657,6 +698,19 @@ module Google
|
|
657
698
|
end
|
658
699
|
end
|
659
700
|
|
701
|
+
class GeminiExportOptions
|
702
|
+
# @private
|
703
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
704
|
+
property :export_format, as: 'exportFormat'
|
705
|
+
end
|
706
|
+
end
|
707
|
+
|
708
|
+
class GeminiOptions
|
709
|
+
# @private
|
710
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
711
|
+
end
|
712
|
+
end
|
713
|
+
|
660
714
|
class GroupsCountResult
|
661
715
|
# @private
|
662
716
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -912,9 +966,13 @@ module Google
|
|
912
966
|
|
913
967
|
property :corpus, as: 'corpus'
|
914
968
|
property :data_scope, as: 'dataScope'
|
969
|
+
property :drive_document_info, as: 'driveDocumentInfo', class: Google::Apis::VaultV1::DriveDocumentInfo, decorator: Google::Apis::VaultV1::DriveDocumentInfo::Representation
|
970
|
+
|
915
971
|
property :drive_options, as: 'driveOptions', class: Google::Apis::VaultV1::DriveOptions, decorator: Google::Apis::VaultV1::DriveOptions::Representation
|
916
972
|
|
917
973
|
property :end_time, as: 'endTime'
|
974
|
+
property :gemini_options, as: 'geminiOptions', class: Google::Apis::VaultV1::GeminiOptions, decorator: Google::Apis::VaultV1::GeminiOptions::Representation
|
975
|
+
|
918
976
|
property :hangouts_chat_info, as: 'hangoutsChatInfo', class: Google::Apis::VaultV1::HangoutsChatInfo, decorator: Google::Apis::VaultV1::HangoutsChatInfo::Representation
|
919
977
|
|
920
978
|
property :hangouts_chat_options, as: 'hangoutsChatOptions', class: Google::Apis::VaultV1::HangoutsChatOptions, decorator: Google::Apis::VaultV1::HangoutsChatOptions::Representation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vault_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.33.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vault_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Google Vault API V1
|
82
79
|
test_files: []
|