Class: Google::Cloud::AppEngine::V1::VpcAccessConnector

Inherits:
Object
  • Object
show all
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

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.

Returns:



568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
# File 'proto_docs/google/appengine/v1/version.rb', line 568

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.

Returns:

  • (::String)

    Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.



568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
# File 'proto_docs/google/appengine/v1/version.rb', line 568

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