Package com.google.cloud.datafusion.v1
Interface NetworkConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NetworkConfig
,NetworkConfig.Builder
public interface NetworkConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getIpAllocation()
The IP range in CIDR notation to use for the managed Data Fusion instance nodes.com.google.protobuf.ByteString
getIpAllocationBytes()
The IP range in CIDR notation to use for the managed Data Fusion instance nodes.String
getNetwork()
Name of the network in the customer project with which the Tenant Project will be peered for executing pipelines.com.google.protobuf.ByteString
getNetworkBytes()
Name of the network in the customer project with which the Tenant Project will be peered for executing pipelines.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNetwork
String getNetwork()
Name of the network in the customer project with which the Tenant Project will be peered for executing pipelines. In case of shared VPC where the network resides in another host project the network should specified in the form of projects/{host-project-id}/global/networks/{network}
string network = 1;
- Returns:
- The network.
-
getNetworkBytes
com.google.protobuf.ByteString getNetworkBytes()
Name of the network in the customer project with which the Tenant Project will be peered for executing pipelines. In case of shared VPC where the network resides in another host project the network should specified in the form of projects/{host-project-id}/global/networks/{network}
string network = 1;
- Returns:
- The bytes for network.
-
getIpAllocation
String getIpAllocation()
The IP range in CIDR notation to use for the managed Data Fusion instance nodes. This range must not overlap with any other ranges used in the customer network.
string ip_allocation = 2;
- Returns:
- The ipAllocation.
-
getIpAllocationBytes
com.google.protobuf.ByteString getIpAllocationBytes()
The IP range in CIDR notation to use for the managed Data Fusion instance nodes. This range must not overlap with any other ranges used in the customer network.
string ip_allocation = 2;
- Returns:
- The bytes for ipAllocation.
-
-