Interface CreateVpnConnectionRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateVpnConnectionRequest
,CreateVpnConnectionRequest.Builder
public interface CreateVpnConnectionRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.String
getRequestId()
A unique identifier for this request.com.google.protobuf.ByteString
getRequestIdBytes()
A unique identifier for this request.VpnConnection
getVpnConnection()
Required.String
getVpnConnectionId()
Required.com.google.protobuf.ByteString
getVpnConnectionIdBytes()
Required.VpnConnectionOrBuilder
getVpnConnectionOrBuilder()
Required.boolean
hasVpnConnection()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The parent location where this vpn connection will be created.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent location where this vpn connection will be created.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
getVpnConnectionId
String getVpnConnectionId()
Required. The VPN connection identifier.
string vpn_connection_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The vpnConnectionId.
-
getVpnConnectionIdBytes
com.google.protobuf.ByteString getVpnConnectionIdBytes()
Required. The VPN connection identifier.
string vpn_connection_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for vpnConnectionId.
-
hasVpnConnection
boolean hasVpnConnection()
Required. The VPN connection to create.
.google.cloud.edgecontainer.v1.VpnConnection vpn_connection = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the vpnConnection field is set.
-
getVpnConnection
VpnConnection getVpnConnection()
Required. The VPN connection to create.
.google.cloud.edgecontainer.v1.VpnConnection vpn_connection = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The vpnConnection.
-
getVpnConnectionOrBuilder
VpnConnectionOrBuilder getVpnConnectionOrBuilder()
Required. The VPN connection to create.
.google.cloud.edgecontainer.v1.VpnConnection vpn_connection = 3 [(.google.api.field_behavior) = REQUIRED];
-
getRequestId
String getRequestId()
A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is only idempotent if `request_id` is provided.
string request_id = 4;
- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()
A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is only idempotent if `request_id` is provided.
string request_id = 4;
- Returns:
- The bytes for requestId.
-
-