google-apis-storage_v1 0.56.0 → 0.57.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: 479b6913ba37888c18755e9af57b39898c1b6fb4eef2751344d83cabca64c394
|
4
|
+
data.tar.gz: 10488848814ec6bad2825d12febc63e491a9f66185a77fd9c87d31d7a4f3126d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38dc19e326cfc20a5823e126497eeab70a67a1a92460e3a8986b0bf0c90d9a8da3eaf7c824a15a63760e77de1bd97e7eaff4ff073d01393093418d297e16f182
|
7
|
+
data.tar.gz: 6b41b62735c0d4ccf3734e76dbb95336b725924bd54ddaecadfb67d825d65f29616af288feba977aeb97cc213a4d540ad6b6d1175b3cc05d42a824679354dc38
|
data/CHANGELOG.md
CHANGED
@@ -1552,6 +1552,12 @@ module Google
|
|
1552
1552
|
# @return [String]
|
1553
1553
|
attr_accessor :next_page_token
|
1554
1554
|
|
1555
|
+
# The list of bucket resource names that could not be reached during the listing
|
1556
|
+
# operation.
|
1557
|
+
# Corresponds to the JSON property `unreachable`
|
1558
|
+
# @return [Array<String>]
|
1559
|
+
attr_accessor :unreachable
|
1560
|
+
|
1555
1561
|
def initialize(**args)
|
1556
1562
|
update!(**args)
|
1557
1563
|
end
|
@@ -1561,6 +1567,7 @@ module Google
|
|
1561
1567
|
@items = args[:items] if args.key?(:items)
|
1562
1568
|
@kind = args[:kind] if args.key?(:kind)
|
1563
1569
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1570
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1564
1571
|
end
|
1565
1572
|
end
|
1566
1573
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module StorageV1
|
18
18
|
# Version of the google-apis-storage_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.57.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250925"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -796,6 +796,9 @@ module Google
|
|
796
796
|
# Filter results to buckets whose names begin with this prefix.
|
797
797
|
# @param [String] projection
|
798
798
|
# Set of properties to return. Defaults to noAcl.
|
799
|
+
# @param [Boolean] return_partial_success
|
800
|
+
# If true, return a list of bucket resource names for buckets that are in
|
801
|
+
# unreachable locations.
|
799
802
|
# @param [Boolean] soft_deleted
|
800
803
|
# If true, only soft-deleted bucket versions will be returned. The default is
|
801
804
|
# false. For more information, see [Soft Delete](https://cloud.google.com/
|
@@ -821,7 +824,7 @@ module Google
|
|
821
824
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
822
825
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
823
826
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
824
|
-
def list_buckets(project, max_results: nil, page_token: nil, prefix: nil, projection: nil, soft_deleted: nil, user_project: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
827
|
+
def list_buckets(project, max_results: nil, page_token: nil, prefix: nil, projection: nil, return_partial_success: nil, soft_deleted: nil, user_project: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
825
828
|
command = make_simple_command(:get, 'b', options)
|
826
829
|
command.response_representation = Google::Apis::StorageV1::Buckets::Representation
|
827
830
|
command.response_class = Google::Apis::StorageV1::Buckets
|
@@ -830,6 +833,7 @@ module Google
|
|
830
833
|
command.query['prefix'] = prefix unless prefix.nil?
|
831
834
|
command.query['project'] = project unless project.nil?
|
832
835
|
command.query['projection'] = projection unless projection.nil?
|
836
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
833
837
|
command.query['softDeleted'] = soft_deleted unless soft_deleted.nil?
|
834
838
|
command.query['userProject'] = user_project unless user_project.nil?
|
835
839
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-storage_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.57.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-storage_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.57.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|