Package com.google.appengine.v1
Interface VpcAccessConnectorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
VpcAccessConnector
,VpcAccessConnector.Builder
public interface VpcAccessConnectorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VpcAccessConnector.EgressSetting
getEgressSetting()
The egress setting for the connector, controlling what traffic is diverted through it.int
getEgressSettingValue()
The egress setting for the connector, controlling what traffic is diverted through it.String
getName()
Full Serverless VPC Access Connector name e.g.com.google.protobuf.ByteString
getNameBytes()
Full Serverless VPC Access Connector name e.g.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
string name = 1;
- Returns:
- The bytes for name.
-
getEgressSettingValue
int getEgressSettingValue()
The egress setting for the connector, controlling what traffic is diverted through it.
.google.appengine.v1.VpcAccessConnector.EgressSetting egress_setting = 2;
- Returns:
- The enum numeric value on the wire for egressSetting.
-
getEgressSetting
VpcAccessConnector.EgressSetting getEgressSetting()
The egress setting for the connector, controlling what traffic is diverted through it.
.google.appengine.v1.VpcAccessConnector.EgressSetting egress_setting = 2;
- Returns:
- The egressSetting.
-
-