Class: Google::Cloud::BackupDR::V1::NetworkConfig
- Inherits:
-
Object
- Object
- Google::Cloud::BackupDR::V1::NetworkConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/backupdr/v1/backupdr.rb
Overview
Network configuration for ManagementServer instance.
Defined Under Namespace
Modules: PeeringMode
Instance Attribute Summary collapse
-
#network ⇒ ::String
Optional.
-
#peering_mode ⇒ ::Google::Cloud::BackupDR::V1::NetworkConfig::PeeringMode
Optional.
Instance Attribute Details
#network ⇒ ::String
Returns Optional. The resource name of the Google Compute Engine VPC network to which the ManagementServer instance is connected.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'proto_docs/google/cloud/backupdr/v1/backupdr.rb', line 33 class NetworkConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # VPC peering modes supported by Cloud BackupDR. module PeeringMode # Peering mode not set. PEERING_MODE_UNSPECIFIED = 0 # Connect using Private Service Access to the Management Server. Private # services access provides an IP address range for multiple Google Cloud # services, including Cloud BackupDR. PRIVATE_SERVICE_ACCESS = 1 end end |
#peering_mode ⇒ ::Google::Cloud::BackupDR::V1::NetworkConfig::PeeringMode
Returns Optional. The network connect mode of the ManagementServer instance. For this version, only PRIVATE_SERVICE_ACCESS is supported.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'proto_docs/google/cloud/backupdr/v1/backupdr.rb', line 33 class NetworkConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # VPC peering modes supported by Cloud BackupDR. module PeeringMode # Peering mode not set. PEERING_MODE_UNSPECIFIED = 0 # Connect using Private Service Access to the Management Server. Private # services access provides an IP address range for multiple Google Cloud # services, including Cloud BackupDR. PRIVATE_SERVICE_ACCESS = 1 end end |