Class: Google::Cloud::Orchestration::Airflow::Service::V1::NetworkingConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Orchestration::Airflow::Service::V1::NetworkingConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/orchestration/airflow/service/v1/environments.rb
Overview
Configuration options for networking connections in the Composer 2 environment.
Defined Under Namespace
Modules: ConnectionType
Instance Attribute Summary collapse
Instance Attribute Details
#connection_type ⇒ ::Google::Cloud::Orchestration::Airflow::Service::V1::NetworkingConfig::ConnectionType
Returns Optional. Indicates the user requested specific connection type between Tenant and Customer projects. You cannot set networking connection type in public IP environment.
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'proto_docs/google/cloud/orchestration/airflow/service/v1/environments.rb', line 1447 class NetworkingConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Represents connection type between Composer environment in Customer # Project and the corresponding Tenant project, from a predefined list # of available connection modes. module ConnectionType # No specific connection type was requested, so the environment uses # the default value corresponding to the rest of its configuration. CONNECTION_TYPE_UNSPECIFIED = 0 # Requests the use of VPC peerings for connecting the Customer and Tenant # projects. VPC_PEERING = 1 # Requests the use of Private Service Connect for connecting the Customer # and Tenant projects. PRIVATE_SERVICE_CONNECT = 2 end end |