Class: Google::Cloud::AppEngine::V1::VpcAccessConnector
- Inherits:
-
Object
- Object
- Google::Cloud::AppEngine::V1::VpcAccessConnector
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/appengine/v1/version.rb
Overview
VPC access connector specification.
Defined Under Namespace
Modules: EgressSetting
Instance Attribute Summary collapse
-
#egress_setting ⇒ ::Google::Cloud::AppEngine::V1::VpcAccessConnector::EgressSetting
The egress setting for the connector, controlling what traffic is diverted through it.
-
#name ⇒ ::String
Full Serverless VPC Access Connector name e.g.
Instance Attribute Details
#egress_setting ⇒ ::Google::Cloud::AppEngine::V1::VpcAccessConnector::EgressSetting
Returns The egress setting for the connector, controlling what traffic is diverted through it.
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 |
# File 'proto_docs/google/appengine/v1/version.rb', line 574 class VpcAccessConnector include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Available egress settings. # # This controls what traffic is diverted through the VPC Access Connector # resource. By default PRIVATE_IP_RANGES will be used. module EgressSetting EGRESS_SETTING_UNSPECIFIED = 0 # Force the use of VPC Access for all egress traffic from the function. ALL_TRAFFIC = 1 # Use the VPC Access Connector for private IP space from RFC1918. PRIVATE_IP_RANGES = 2 end end |
#name ⇒ ::String
Returns Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 |
# File 'proto_docs/google/appengine/v1/version.rb', line 574 class VpcAccessConnector include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Available egress settings. # # This controls what traffic is diverted through the VPC Access Connector # resource. By default PRIVATE_IP_RANGES will be used. module EgressSetting EGRESS_SETTING_UNSPECIFIED = 0 # Force the use of VPC Access for all egress traffic from the function. ALL_TRAFFIC = 1 # Use the VPC Access Connector for private IP space from RFC1918. PRIVATE_IP_RANGES = 2 end end |