Skip to content

Commit bc63b64

Browse files
feat: Automated regeneration of run v2 client (googleapis#20516)
Auto-created at 2024-11-03 09:56:53 +0000 using the toys pull request generator.
1 parent a8bce8e commit bc63b64

File tree

5 files changed

+16
-2
lines changed

5 files changed

+16
-2
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292685,6 +292685,8 @@
292685292685
"/run:v2/GoogleCloudRunV2ExportStatusResponse/operationState": operation_state
292686292686
"/run:v2/GoogleCloudRunV2GCSVolumeSource": google_cloud_run_v2_gcs_volume_source
292687292687
"/run:v2/GoogleCloudRunV2GCSVolumeSource/bucket": bucket
292688+
"/run:v2/GoogleCloudRunV2GCSVolumeSource/mountOptions": mount_options
292689+
"/run:v2/GoogleCloudRunV2GCSVolumeSource/mountOptions/mount_option": mount_option
292688292690
"/run:v2/GoogleCloudRunV2GCSVolumeSource/readOnly": read_only
292689292691
"/run:v2/GoogleCloudRunV2GRPCAction": google_cloud_run_v2_grpc_action
292690292692
"/run:v2/GoogleCloudRunV2GRPCAction/port": port

generated/google-apis-run_v2/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-run_v2
22

3+
### v0.78.0 (2024-11-03)
4+
5+
* Regenerated from discovery document revision 20241025
6+
37
### v0.77.0 (2024-10-20)
48

59
* Regenerated from discovery document revision 20241011

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -899,6 +899,12 @@ class GoogleCloudRunV2GcsVolumeSource
899899
# @return [String]
900900
attr_accessor :bucket
901901

902+
# A list of additional flags to pass to the gcsfuse CLI. Options should be
903+
# specified without the leading "--".
904+
# Corresponds to the JSON property `mountOptions`
905+
# @return [Array<String>]
906+
attr_accessor :mount_options
907+
902908
# If true, the volume will be mounted as read only for all mounts.
903909
# Corresponds to the JSON property `readOnly`
904910
# @return [Boolean]
@@ -912,6 +918,7 @@ def initialize(**args)
912918
# Update properties of this object
913919
def update!(**args)
914920
@bucket = args[:bucket] if args.key?(:bucket)
921+
@mount_options = args[:mount_options] if args.key?(:mount_options)
915922
@read_only = args[:read_only] if args.key?(:read_only)
916923
end
917924
end

generated/google-apis-run_v2/lib/google/apis/run_v2/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 RunV2
1818
# Version of the google-apis-run_v2 gem
19-
GEM_VERSION = "0.77.0"
19+
GEM_VERSION = "0.78.0"
2020

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

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -905,6 +905,7 @@ class GoogleCloudRunV2GcsVolumeSource
905905
# @private
906906
class Representation < Google::Apis::Core::JsonRepresentation
907907
property :bucket, as: 'bucket'
908+
collection :mount_options, as: 'mountOptions'
908909
property :read_only, as: 'readOnly'
909910
end
910911
end

0 commit comments

Comments
 (0)