Skip to content

Commit 3ca59d2

Browse files
feat: Automated regeneration of storage v1 client (googleapis#23291)
Auto-created at 2025-06-01 10:08:01 +0000 using the toys pull request generator.
1 parent 3b029ca commit 3ca59d2

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345017,6 +345017,7 @@
345017345017
"/storage:v1/Bucket/iamConfiguration/uniformBucketLevelAccess/lockedTime": locked_time
345018345018
"/storage:v1/Bucket/id": id
345019345019
"/storage:v1/Bucket/ipFilter": ip_filter
345020+
"/storage:v1/Bucket/ipFilter/allowCrossOrgVpcs": allow_cross_org_vpcs
345020345021
"/storage:v1/Bucket/ipFilter/mode": mode
345021345022
"/storage:v1/Bucket/ipFilter/publicNetworkSource": public_network_source
345022345023
"/storage:v1/Bucket/ipFilter/publicNetworkSource/allowedIpCidrRanges": allowed_ip_cidr_ranges

generated/google-apis-storage_v1/CHANGELOG.md

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

3+
### v0.52.0 (2025-06-01)
4+
5+
* Regenerated from discovery document revision 20250524
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.51.0 (2025-05-04)
49

510
* Regenerated from discovery document revision 20250424

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,12 @@ def update!(**args)
717717
class IpFilter
718718
include Google::Apis::Core::Hashable
719719

720+
# Whether to allow cross-org VPCs in the bucket's IP filter configuration.
721+
# Corresponds to the JSON property `allowCrossOrgVpcs`
722+
# @return [Boolean]
723+
attr_accessor :allow_cross_org_vpcs
724+
alias_method :allow_cross_org_vpcs?, :allow_cross_org_vpcs
725+
720726
# The mode of the IP filter. Valid values are 'Enabled' and 'Disabled'.
721727
# Corresponds to the JSON property `mode`
722728
# @return [String]
@@ -739,6 +745,7 @@ def initialize(**args)
739745

740746
# Update properties of this object
741747
def update!(**args)
748+
@allow_cross_org_vpcs = args[:allow_cross_org_vpcs] if args.key?(:allow_cross_org_vpcs)
742749
@mode = args[:mode] if args.key?(:mode)
743750
@public_network_source = args[:public_network_source] if args.key?(:public_network_source)
744751
@vpc_network_sources = args[:vpc_network_sources] if args.key?(:vpc_network_sources)

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

Lines changed: 3 additions & 3 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.51.0"
19+
GEM_VERSION = "0.52.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.18.0"
2323

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
616616
class IpFilter
617617
# @private
618618
class Representation < Google::Apis::Core::JsonRepresentation
619+
property :allow_cross_org_vpcs, as: 'allowCrossOrgVpcs'
619620
property :mode, as: 'mode'
620621
property :public_network_source, as: 'publicNetworkSource', class: Google::Apis::StorageV1::Bucket::IpFilter::PublicNetworkSource, decorator: Google::Apis::StorageV1::Bucket::IpFilter::PublicNetworkSource::Representation
621622

0 commit comments

Comments
 (0)