google-apis-storage_v1 0.63.0 → 0.65.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 +8 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/storage_v1/gem_version.rb +3 -3
- data/lib/google/apis/storage_v1/service.rb +0 -81
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5e3193bf11b62aaa7ea4d7d1d8085b9c6cde083bd56579a261bfe561a469071
|
|
4
|
+
data.tar.gz: a8d45e31404d67a1a3669e2984e038f3a8ae7b3ef04ea979f259f59a2c3874c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd5f9a19e0da7dd551e131d986e94485da0709b26f8882c790eb87664548ec3460b25f88f3ad9f9beb58900c95e23271436023200d18e066d14fa5c3693160fc
|
|
7
|
+
data.tar.gz: 60fe6f21b0e960f397412e5687f9612a1a00c9bed2c3f56b9bb83f6883602fcf9430f6905e3d75859825f94d55648d43ed4add385f341089365577de19d33b7c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-storage_v1
|
|
2
2
|
|
|
3
|
+
### v0.65.0 (2026-07-05)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260625
|
|
6
|
+
|
|
7
|
+
### v0.64.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated using generator version 0.19.0
|
|
10
|
+
|
|
3
11
|
### v0.63.0 (2026-05-31)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260524
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://developers.google.com/storage/docs/json_api/
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -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.65.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260625"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3598,87 +3598,6 @@ module Google
|
|
|
3598
3598
|
execute_or_queue_command(command, &block)
|
|
3599
3599
|
end
|
|
3600
3600
|
|
|
3601
|
-
# Watch for changes on all objects in a bucket.
|
|
3602
|
-
# @param [String] bucket
|
|
3603
|
-
# Name of the bucket in which to look for objects.
|
|
3604
|
-
# @param [Google::Apis::StorageV1::Channel] channel_object
|
|
3605
|
-
# @param [String] delimiter
|
|
3606
|
-
# Returns results in a directory-like mode. items will contain only objects
|
|
3607
|
-
# whose names, aside from the prefix, do not contain delimiter. Objects whose
|
|
3608
|
-
# names, aside from the prefix, contain delimiter will have their name,
|
|
3609
|
-
# truncated after the delimiter, returned in prefixes. Duplicate prefixes are
|
|
3610
|
-
# omitted.
|
|
3611
|
-
# @param [String] end_offset
|
|
3612
|
-
# Filter results to objects whose names are lexicographically before endOffset.
|
|
3613
|
-
# If startOffset is also set, the objects listed will have names between
|
|
3614
|
-
# startOffset (inclusive) and endOffset (exclusive).
|
|
3615
|
-
# @param [Boolean] include_trailing_delimiter
|
|
3616
|
-
# If true, objects that end in exactly one instance of delimiter will have their
|
|
3617
|
-
# metadata included in items in addition to prefixes.
|
|
3618
|
-
# @param [Fixnum] max_results
|
|
3619
|
-
# Maximum number of items plus prefixes to return in a single page of responses.
|
|
3620
|
-
# As duplicate prefixes are omitted, fewer total results may be returned than
|
|
3621
|
-
# requested. The service will use this parameter or 1,000 items, whichever is
|
|
3622
|
-
# smaller.
|
|
3623
|
-
# @param [String] page_token
|
|
3624
|
-
# A previously-returned page token representing part of the larger set of
|
|
3625
|
-
# results to view.
|
|
3626
|
-
# @param [String] prefix
|
|
3627
|
-
# Filter results to objects whose names begin with this prefix.
|
|
3628
|
-
# @param [String] projection
|
|
3629
|
-
# Set of properties to return. Defaults to noAcl.
|
|
3630
|
-
# @param [String] start_offset
|
|
3631
|
-
# Filter results to objects whose names are lexicographically equal to or after
|
|
3632
|
-
# startOffset. If endOffset is also set, the objects listed will have names
|
|
3633
|
-
# between startOffset (inclusive) and endOffset (exclusive).
|
|
3634
|
-
# @param [String] user_project
|
|
3635
|
-
# The project to be billed for this request. Required for Requester Pays buckets.
|
|
3636
|
-
# @param [Boolean] versions
|
|
3637
|
-
# If true, lists all versions of an object as distinct results. The default is
|
|
3638
|
-
# false. For more information, see [Object Versioning](https://cloud.google.com/
|
|
3639
|
-
# storage/docs/object-versioning).
|
|
3640
|
-
# @param [String] fields
|
|
3641
|
-
# Selector specifying which fields to include in a partial response.
|
|
3642
|
-
# @param [String] quota_user
|
|
3643
|
-
# An opaque string that represents a user for quota purposes. Must not exceed 40
|
|
3644
|
-
# characters.
|
|
3645
|
-
# @param [String] user_ip
|
|
3646
|
-
# Deprecated. Please use quotaUser instead.
|
|
3647
|
-
# @param [Google::Apis::RequestOptions] options
|
|
3648
|
-
# Request-specific options
|
|
3649
|
-
#
|
|
3650
|
-
# @yield [result, err] Result & error if block supplied
|
|
3651
|
-
# @yieldparam result [Google::Apis::StorageV1::Channel] parsed result object
|
|
3652
|
-
# @yieldparam err [StandardError] error object if request failed
|
|
3653
|
-
#
|
|
3654
|
-
# @return [Google::Apis::StorageV1::Channel]
|
|
3655
|
-
#
|
|
3656
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3657
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3658
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3659
|
-
def watch_all_objects(bucket, channel_object = nil, delimiter: nil, end_offset: nil, include_trailing_delimiter: nil, max_results: nil, page_token: nil, prefix: nil, projection: nil, start_offset: nil, user_project: nil, versions: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
3660
|
-
command = make_simple_command(:post, 'b/{bucket}/o/watch', options)
|
|
3661
|
-
command.request_representation = Google::Apis::StorageV1::Channel::Representation
|
|
3662
|
-
command.request_object = channel_object
|
|
3663
|
-
command.response_representation = Google::Apis::StorageV1::Channel::Representation
|
|
3664
|
-
command.response_class = Google::Apis::StorageV1::Channel
|
|
3665
|
-
command.params['bucket'] = bucket unless bucket.nil?
|
|
3666
|
-
command.query['delimiter'] = delimiter unless delimiter.nil?
|
|
3667
|
-
command.query['endOffset'] = end_offset unless end_offset.nil?
|
|
3668
|
-
command.query['includeTrailingDelimiter'] = include_trailing_delimiter unless include_trailing_delimiter.nil?
|
|
3669
|
-
command.query['maxResults'] = max_results unless max_results.nil?
|
|
3670
|
-
command.query['pageToken'] = page_token unless page_token.nil?
|
|
3671
|
-
command.query['prefix'] = prefix unless prefix.nil?
|
|
3672
|
-
command.query['projection'] = projection unless projection.nil?
|
|
3673
|
-
command.query['startOffset'] = start_offset unless start_offset.nil?
|
|
3674
|
-
command.query['userProject'] = user_project unless user_project.nil?
|
|
3675
|
-
command.query['versions'] = versions unless versions.nil?
|
|
3676
|
-
command.query['fields'] = fields unless fields.nil?
|
|
3677
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3678
|
-
command.query['userIp'] = user_ip unless user_ip.nil?
|
|
3679
|
-
execute_or_queue_command(command, &block)
|
|
3680
|
-
end
|
|
3681
|
-
|
|
3682
3601
|
# Starts asynchronous advancement of the relocate bucket operation in the case
|
|
3683
3602
|
# of required write downtime, to allow it to lock the bucket at the source
|
|
3684
3603
|
# location, and proceed with the bucket location swap. The server makes a best
|
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.65.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.65.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:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|