Class: Google::Apis::ConnectorsV1::VpcscConfig
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::VpcscConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
This configuration provides VPCSC config for a connector.
Instance Attribute Summary collapse
-
#default_allowlisted_host ⇒ Array<String>
The list of allowlisted FQDNs for VPCSC.
-
#disable_firewall_vpcsc_flow ⇒ Boolean
(also: #disable_firewall_vpcsc_flow?)
Whether to disable firewall VPCSC flow.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VpcscConfig
constructor
A new instance of VpcscConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VpcscConfig
Returns a new instance of VpcscConfig.
7304 7305 7306 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 7304 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default_allowlisted_host ⇒ Array<String>
The list of allowlisted FQDNs for VPCSC.
Corresponds to the JSON property defaultAllowlistedHost
7296 7297 7298 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 7296 def default_allowlisted_host @default_allowlisted_host end |
#disable_firewall_vpcsc_flow ⇒ Boolean Also known as: disable_firewall_vpcsc_flow?
Whether to disable firewall VPCSC flow.
Corresponds to the JSON property disableFirewallVpcscFlow
7301 7302 7303 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 7301 def disable_firewall_vpcsc_flow @disable_firewall_vpcsc_flow end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7309 7310 7311 7312 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 7309 def update!(**args) @default_allowlisted_host = args[:default_allowlisted_host] if args.key?(:default_allowlisted_host) @disable_firewall_vpcsc_flow = args[:disable_firewall_vpcsc_flow] if args.key?(:disable_firewall_vpcsc_flow) end |