Skip to content

Commit 54a9e80

Browse files
feat: Automated regeneration of storage v1 client (googleapis#23437)
Auto-created at 2025-06-15 10:27:01 +0000 using the toys pull request generator.
1 parent a31f064 commit 54a9e80

File tree

5 files changed

+16
-2
lines changed

5 files changed

+16
-2
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347003,6 +347003,7 @@
347003347003
"/storage:v1/Bucket/iamConfiguration/uniformBucketLevelAccess/lockedTime": locked_time
347004347004
"/storage:v1/Bucket/id": id
347005347005
"/storage:v1/Bucket/ipFilter": ip_filter
347006+
"/storage:v1/Bucket/ipFilter/allowAllServiceAgentAccess": allow_all_service_agent_access
347006347007
"/storage:v1/Bucket/ipFilter/allowCrossOrgVpcs": allow_cross_org_vpcs
347007347008
"/storage:v1/Bucket/ipFilter/mode": mode
347008347009
"/storage:v1/Bucket/ipFilter/publicNetworkSource": public_network_source

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.53.0 (2025-06-15)
4+
5+
* Regenerated from discovery document revision 20250605
6+
37
### v0.52.0 (2025-06-01)
48

59
* Regenerated from discovery document revision 20250524

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

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

720+
# Whether to allow all service agents to access the bucket regardless of the IP
721+
# filter configuration.
722+
# Corresponds to the JSON property `allowAllServiceAgentAccess`
723+
# @return [Boolean]
724+
attr_accessor :allow_all_service_agent_access
725+
alias_method :allow_all_service_agent_access?, :allow_all_service_agent_access
726+
720727
# Whether to allow cross-org VPCs in the bucket's IP filter configuration.
721728
# Corresponds to the JSON property `allowCrossOrgVpcs`
722729
# @return [Boolean]
@@ -745,6 +752,7 @@ def initialize(**args)
745752

746753
# Update properties of this object
747754
def update!(**args)
755+
@allow_all_service_agent_access = args[:allow_all_service_agent_access] if args.key?(:allow_all_service_agent_access)
748756
@allow_cross_org_vpcs = args[:allow_cross_org_vpcs] if args.key?(:allow_cross_org_vpcs)
749757
@mode = args[:mode] if args.key?(:mode)
750758
@public_network_source = args[:public_network_source] if args.key?(:public_network_source)

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.52.0"
19+
GEM_VERSION = "0.53.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 = "20250524"
25+
REVISION = "20250605"
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_all_service_agent_access, as: 'allowAllServiceAgentAccess'
619620
property :allow_cross_org_vpcs, as: 'allowCrossOrgVpcs'
620621
property :mode, as: 'mode'
621622
property :public_network_source, as: 'publicNetworkSource', class: Google::Apis::StorageV1::Bucket::IpFilter::PublicNetworkSource, decorator: Google::Apis::StorageV1::Bucket::IpFilter::PublicNetworkSource::Representation

0 commit comments

Comments
 (0)