Package com.google.cloud.clouddms.v1
Interface UpdateConnectionProfileRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateConnectionProfileRequest
,UpdateConnectionProfileRequest.Builder
public interface UpdateConnectionProfileRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionProfile
getConnectionProfile()
Required.ConnectionProfileOrBuilder
getConnectionProfileOrBuilder()
Required.String
getRequestId()
Optional.com.google.protobuf.ByteString
getRequestIdBytes()
Optional.boolean
getSkipValidation()
Optional.com.google.protobuf.FieldMask
getUpdateMask()
Required.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
Required.boolean
getValidateOnly()
Optional.boolean
hasConnectionProfile()
Required.boolean
hasUpdateMask()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasUpdateMask
boolean hasUpdateMask()
Required. Field mask is used to specify the fields to be overwritten by the update in the conversion workspace resource.
.google.protobuf.FieldMask update_mask = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
Required. Field mask is used to specify the fields to be overwritten by the update in the conversion workspace resource.
.google.protobuf.FieldMask update_mask = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
Required. Field mask is used to specify the fields to be overwritten by the update in the conversion workspace resource.
.google.protobuf.FieldMask update_mask = 1 [(.google.api.field_behavior) = REQUIRED];
-
hasConnectionProfile
boolean hasConnectionProfile()
Required. The connection profile parameters to update.
.google.cloud.clouddms.v1.ConnectionProfile connection_profile = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the connectionProfile field is set.
-
getConnectionProfile
ConnectionProfile getConnectionProfile()
Required. The connection profile parameters to update.
.google.cloud.clouddms.v1.ConnectionProfile connection_profile = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The connectionProfile.
-
getConnectionProfileOrBuilder
ConnectionProfileOrBuilder getConnectionProfileOrBuilder()
Required. The connection profile parameters to update.
.google.cloud.clouddms.v1.ConnectionProfile connection_profile = 2 [(.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 = 3 [(.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 = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for requestId.
-
getValidateOnly
boolean getValidateOnly()
Optional. Only validate the connection profile, but don't update any resources. The default is false. Only supported for Oracle connection profiles.
bool validate_only = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The validateOnly.
-
getSkipValidation
boolean getSkipValidation()
Optional. Update the connection profile without validating it. The default is false. Only supported for Oracle connection profiles.
bool skip_validation = 5 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The skipValidation.
-
-