class Google::Apis::RunV2::GoogleCloudRunV2VpcAccess
VPC Access settings. For more information on creating a VPC Connector, visit cloud.google.com/vpc/docs/configure-serverless-vpc-access For information on how to configure Cloud Run with an existing VPC Connector, visit cloud.google.com/run/docs/configuring/connecting-vpc
Attributes
connector[RW]
VPC Access connector name. Format: projects/‘project`/locations/`location`/ connectors/`connector` Corresponds to the JSON property `connector` @return [String]
egress[RW]
Traffic VPC egress settings. Corresponds to the JSON property ‘egress` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/run_v2/classes.rb, line 1259 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/run_v2/classes.rb, line 1264 def update!(**args) @connector = args[:connector] if args.key?(:connector) @egress = args[:egress] if args.key?(:egress) end