Skip to content

Commit 4cd56a7

Browse files
feat: Automated regeneration of storage v1 client (googleapis#26589)
Auto-created at 2026-05-31 10:28:38 +0000 using the toys pull request generator.
1 parent 69ba0b1 commit 4cd56a7

5 files changed

Lines changed: 22 additions & 2 deletions

File tree

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402761,6 +402761,8 @@
402761402761
"/storage:v1/Bucket/lifecycle/rule/rule/condition/matchesSuffix/matches_suffix": matches_suffix
402762402762
"/storage:v1/Bucket/lifecycle/rule/rule/condition/noncurrentTimeBefore": noncurrent_time_before
402763402763
"/storage:v1/Bucket/lifecycle/rule/rule/condition/numNewerVersions": num_newer_versions
402764+
"/storage:v1/Bucket/lifecycle/rule/rule/condition/sizeAboveBytes": size_above_bytes
402765+
"/storage:v1/Bucket/lifecycle/rule/rule/condition/sizeBelowBytes": size_below_bytes
402764402766
"/storage:v1/Bucket/location": location
402765402767
"/storage:v1/Bucket/locationType": location_type
402766402768
"/storage:v1/Bucket/logging": logging

generated/google-apis-storage_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-storage_v1
22

3+
### v0.63.0 (2026-05-31)
4+
5+
* Regenerated from discovery document revision 20260524
6+
37
### v0.62.0 (2026-04-19)
48

59
* Regenerated from discovery document revision 20260408

generated/google-apis-storage_v1/lib/google/apis/storage_v1/classes.rb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,6 +1089,16 @@ class Condition
10891089
# @return [Fixnum]
10901090
attr_accessor :num_newer_versions
10911091

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+
10921102
def initialize(**args)
10931103
update!(**args)
10941104
end
@@ -1107,6 +1117,8 @@ def update!(**args)
11071117
@matches_suffix = args[:matches_suffix] if args.key?(:matches_suffix)
11081118
@noncurrent_time_before = args[:noncurrent_time_before] if args.key?(:noncurrent_time_before)
11091119
@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)
11101122
end
11111123
end
11121124
end

generated/google-apis-storage_v1/lib/google/apis/storage_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module StorageV1
1818
# Version of the google-apis-storage_v1 gem
19-
GEM_VERSION = "0.62.0"
19+
GEM_VERSION = "0.63.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20260408"
25+
REVISION = "20260524"
2626
end
2727
end
2828
end

generated/google-apis-storage_v1/lib/google/apis/storage_v1/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
747747
property :noncurrent_time_before, as: 'noncurrentTimeBefore', type: Date
748748

749749
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'
750752
end
751753
end
752754
end

0 commit comments

Comments
 (0)