google-apis-vault_v1 0.35.0 → 0.37.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99b0880967ca64bf0ac473cfa9c039d7745714c186d225373f5f9c8daa2ba8fd
|
|
4
|
+
data.tar.gz: 0120f8983a8fae2e8f0fc06a1e25720467fc68b6060f3e9aa05f30455f34505e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a56c00e3d9f1a7ef083abf0aa1d3760741cd40171e823ddee7a5379348bc2262554b922e095dcafc2a26445d2d4e4c1c6be68958cffa074c2d1952aac1ae2df
|
|
7
|
+
data.tar.gz: 98d80c06dde7b14b8d724697b215ac55e085464ae01a79dfa4cd2d670d214c59f65dc77612d99b64cb48665a4e462f0ee3e39d342379da8f5c5c28e9553e40ed
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-vault_v1
|
|
2
2
|
|
|
3
|
+
### v0.37.0 (2025-10-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251015
|
|
6
|
+
|
|
7
|
+
### v0.36.0 (2025-06-01)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250527
|
|
10
|
+
* Regenerated using generator version 0.18.0
|
|
11
|
+
|
|
3
12
|
### v0.35.0 (2025-05-04)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20250331
|
|
@@ -619,6 +619,13 @@ module Google
|
|
|
619
619
|
attr_accessor :include_team_drives
|
|
620
620
|
alias_method :include_team_drives?, :include_team_drives
|
|
621
621
|
|
|
622
|
+
# Optional. Options to include or exclude documents in shared drives. We
|
|
623
|
+
# recommend using this field over include_shared_drives. This field overrides
|
|
624
|
+
# include_shared_drives and include_team_drives when set.
|
|
625
|
+
# Corresponds to the JSON property `sharedDrivesOption`
|
|
626
|
+
# @return [String]
|
|
627
|
+
attr_accessor :shared_drives_option
|
|
628
|
+
|
|
622
629
|
# Search the current version of the Drive file, but export the contents of the
|
|
623
630
|
# last version saved before 12:00 AM UTC on the specified date. Enter the date
|
|
624
631
|
# in UTC.
|
|
@@ -635,6 +642,7 @@ module Google
|
|
|
635
642
|
@client_side_encrypted_option = args[:client_side_encrypted_option] if args.key?(:client_side_encrypted_option)
|
|
636
643
|
@include_shared_drives = args[:include_shared_drives] if args.key?(:include_shared_drives)
|
|
637
644
|
@include_team_drives = args[:include_team_drives] if args.key?(:include_team_drives)
|
|
645
|
+
@shared_drives_option = args[:shared_drives_option] if args.key?(:shared_drives_option)
|
|
638
646
|
@version_date = args[:version_date] if args.key?(:version_date)
|
|
639
647
|
end
|
|
640
648
|
end
|
|
@@ -1382,6 +1390,13 @@ module Google
|
|
|
1382
1390
|
# @return [Array<Google::Apis::VaultV1::Operation>]
|
|
1383
1391
|
attr_accessor :operations
|
|
1384
1392
|
|
|
1393
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1394
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
1395
|
+
# when attempting to list all resources across all supported locations.
|
|
1396
|
+
# Corresponds to the JSON property `unreachable`
|
|
1397
|
+
# @return [Array<String>]
|
|
1398
|
+
attr_accessor :unreachable
|
|
1399
|
+
|
|
1385
1400
|
def initialize(**args)
|
|
1386
1401
|
update!(**args)
|
|
1387
1402
|
end
|
|
@@ -1390,6 +1405,7 @@ module Google
|
|
|
1390
1405
|
def update!(**args)
|
|
1391
1406
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1392
1407
|
@operations = args[:operations] if args.key?(:operations)
|
|
1408
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
1393
1409
|
end
|
|
1394
1410
|
end
|
|
1395
1411
|
|
|
@@ -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.37.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251015"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -636,6 +636,7 @@ module Google
|
|
|
636
636
|
property :client_side_encrypted_option, as: 'clientSideEncryptedOption'
|
|
637
637
|
property :include_shared_drives, as: 'includeSharedDrives'
|
|
638
638
|
property :include_team_drives, as: 'includeTeamDrives'
|
|
639
|
+
property :shared_drives_option, as: 'sharedDrivesOption'
|
|
639
640
|
property :version_date, as: 'versionDate'
|
|
640
641
|
end
|
|
641
642
|
end
|
|
@@ -874,6 +875,7 @@ module Google
|
|
|
874
875
|
property :next_page_token, as: 'nextPageToken'
|
|
875
876
|
collection :operations, as: 'operations', class: Google::Apis::VaultV1::Operation, decorator: Google::Apis::VaultV1::Operation::Representation
|
|
876
877
|
|
|
878
|
+
collection :unreachable, as: 'unreachable'
|
|
877
879
|
end
|
|
878
880
|
end
|
|
879
881
|
|
|
@@ -1179,6 +1179,13 @@ module Google
|
|
|
1179
1179
|
# The standard list page size.
|
|
1180
1180
|
# @param [String] page_token
|
|
1181
1181
|
# The standard list page token.
|
|
1182
|
+
# @param [Boolean] return_partial_success
|
|
1183
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1184
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
1185
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
1186
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
1187
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
1188
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
1182
1189
|
# @param [String] fields
|
|
1183
1190
|
# Selector specifying which fields to include in a partial response.
|
|
1184
1191
|
# @param [String] quota_user
|
|
@@ -1196,7 +1203,7 @@ module Google
|
|
|
1196
1203
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1197
1204
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1198
1205
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1199
|
-
def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1206
|
+
def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1200
1207
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
1201
1208
|
command.response_representation = Google::Apis::VaultV1::ListOperationsResponse::Representation
|
|
1202
1209
|
command.response_class = Google::Apis::VaultV1::ListOperationsResponse
|
|
@@ -1204,6 +1211,7 @@ module Google
|
|
|
1204
1211
|
command.query['filter'] = filter unless filter.nil?
|
|
1205
1212
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1206
1213
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1214
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1207
1215
|
command.query['fields'] = fields unless fields.nil?
|
|
1208
1216
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1209
1217
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.37.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vault_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.37.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vault_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.6.
|
|
76
|
+
rubygems_version: 3.6.9
|
|
77
77
|
specification_version: 4
|
|
78
78
|
summary: Simple REST client for Google Vault API V1
|
|
79
79
|
test_files: []
|