google-apis-storage_v1 0.62.0 → 0.64.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/classes.rb +12 -0
- data/lib/google/apis/storage_v1/gem_version.rb +3 -3
- data/lib/google/apis/storage_v1/representations.rb +2 -0
- 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: 57c516c005458cef372d45a91e8f7a7bdddda76e679a494fbb2765cf06bcdae5
|
|
4
|
+
data.tar.gz: 1f164229dd37673ebfa62f3e1f00222f4c3fe08f3b76507aab0aa0c38d43b0bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3597cb839bdf637b9f02f9ed72e91bade16a367282ba5ec0897ea685862de3d34343f128305fec13cf6a9eb50de1236094e63dbc8283a77eb1d49534a1e6a648
|
|
7
|
+
data.tar.gz: 574116620cb5f99f9b1e5a82ddcad76d6d144e87ca13a3b0aa2c9e98f9928a027b218096f85c687abadd47a6e1e314a2cb82215e2f7328dd216e160f7703817f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-storage_v1
|
|
2
2
|
|
|
3
|
+
### v0.64.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated using generator version 0.19.0
|
|
6
|
+
|
|
7
|
+
### v0.63.0 (2026-05-31)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260524
|
|
10
|
+
|
|
3
11
|
### v0.62.0 (2026-04-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260408
|
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
|
|
|
@@ -1089,6 +1089,16 @@ module Google
|
|
|
1089
1089
|
# @return [Fixnum]
|
|
1090
1090
|
attr_accessor :num_newer_versions
|
|
1091
1091
|
|
|
1092
|
+
# Objects having a size greater than this value in bytes will be matched.
|
|
1093
|
+
# Corresponds to the JSON property `sizeAboveBytes`
|
|
1094
|
+
# @return [Fixnum]
|
|
1095
|
+
attr_accessor :size_above_bytes
|
|
1096
|
+
|
|
1097
|
+
# Objects having a size less than this value in bytes will be matched.
|
|
1098
|
+
# Corresponds to the JSON property `sizeBelowBytes`
|
|
1099
|
+
# @return [Fixnum]
|
|
1100
|
+
attr_accessor :size_below_bytes
|
|
1101
|
+
|
|
1092
1102
|
def initialize(**args)
|
|
1093
1103
|
update!(**args)
|
|
1094
1104
|
end
|
|
@@ -1107,6 +1117,8 @@ module Google
|
|
|
1107
1117
|
@matches_suffix = args[:matches_suffix] if args.key?(:matches_suffix)
|
|
1108
1118
|
@noncurrent_time_before = args[:noncurrent_time_before] if args.key?(:noncurrent_time_before)
|
|
1109
1119
|
@num_newer_versions = args[:num_newer_versions] if args.key?(:num_newer_versions)
|
|
1120
|
+
@size_above_bytes = args[:size_above_bytes] if args.key?(:size_above_bytes)
|
|
1121
|
+
@size_below_bytes = args[:size_below_bytes] if args.key?(:size_below_bytes)
|
|
1110
1122
|
end
|
|
1111
1123
|
end
|
|
1112
1124
|
end
|
|
@@ -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.64.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 = "20260524"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -747,6 +747,8 @@ module Google
|
|
|
747
747
|
property :noncurrent_time_before, as: 'noncurrentTimeBefore', type: Date
|
|
748
748
|
|
|
749
749
|
property :num_newer_versions, as: 'numNewerVersions'
|
|
750
|
+
property :size_above_bytes, :numeric_string => true, as: 'sizeAboveBytes'
|
|
751
|
+
property :size_below_bytes, :numeric_string => true, as: 'sizeBelowBytes'
|
|
750
752
|
end
|
|
751
753
|
end
|
|
752
754
|
end
|
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.64.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.64.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
|
- - ">="
|