class Google::Apis::AppengineV1::VpcAccessConnector
VPC access connector specification.
Attributes
egress_setting[RW]
The egress setting for the connector, controlling what traffic is diverted through it. Corresponds to the JSON property `egressSetting` @return [String]
name[RW]
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/ us-central1/connectors/c1. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appengine_v1/classes.rb, line 3178 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/appengine_v1/classes.rb, line 3183 def update!(**args) @egress_setting = args[:egress_setting] if args.key?(:egress_setting) @name = args[:name] if args.key?(:name) end