Package com.google.cloud.clouddms.v1
Interface CreatePrivateConnectionRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreatePrivateConnectionRequest
,CreatePrivateConnectionRequest.Builder
public interface CreatePrivateConnectionRequestOrBuilder 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.PrivateConnection
getPrivateConnection()
Required.String
getPrivateConnectionId()
Required.com.google.protobuf.ByteString
getPrivateConnectionIdBytes()
Required.PrivateConnectionOrBuilder
getPrivateConnectionOrBuilder()
Required.String
getRequestId()
Optional.com.google.protobuf.ByteString
getRequestIdBytes()
Optional.boolean
getSkipValidation()
Optional.boolean
hasPrivateConnection()
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 that owns the collection of PrivateConnections.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent that owns the collection of PrivateConnections.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
getPrivateConnectionId
String getPrivateConnectionId()
Required. The private connection identifier.
string private_connection_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The privateConnectionId.
-
getPrivateConnectionIdBytes
com.google.protobuf.ByteString getPrivateConnectionIdBytes()
Required. The private connection identifier.
string private_connection_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for privateConnectionId.
-
hasPrivateConnection
boolean hasPrivateConnection()
Required. The private connection resource to create.
.google.cloud.clouddms.v1.PrivateConnection private_connection = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the privateConnection field is set.
-
getPrivateConnection
PrivateConnection getPrivateConnection()
Required. The private connection resource to create.
.google.cloud.clouddms.v1.PrivateConnection private_connection = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The privateConnection.
-
getPrivateConnectionOrBuilder
PrivateConnectionOrBuilder getPrivateConnectionOrBuilder()
Required. The private connection resource to create.
.google.cloud.clouddms.v1.PrivateConnection private_connection = 3 [(.google.api.field_behavior) = REQUIRED];
-
getRequestId
String getRequestId()
Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this value to a UUID. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
string request_id = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()
Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this value to a UUID. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
string request_id = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for requestId.
-
getSkipValidation
boolean getSkipValidation()
Optional. If set to true, will skip validations.
bool skip_validation = 5 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The skipValidation.
-
-