Package com.google.cloud.clouddms.v1
Interface UpdateMigrationJobRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateMigrationJobRequest
,UpdateMigrationJobRequest.Builder
public interface UpdateMigrationJobRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MigrationJob
getMigrationJob()
Required.MigrationJobOrBuilder
getMigrationJobOrBuilder()
Required.String
getRequestId()
A unique ID used to identify the request.com.google.protobuf.ByteString
getRequestIdBytes()
A unique ID used to identify the request.com.google.protobuf.FieldMask
getUpdateMask()
Required.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
Required.boolean
hasMigrationJob()
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];
-
hasMigrationJob
boolean hasMigrationJob()
Required. The migration job parameters to update.
.google.cloud.clouddms.v1.MigrationJob migration_job = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the migrationJob field is set.
-
getMigrationJob
MigrationJob getMigrationJob()
Required. The migration job parameters to update.
.google.cloud.clouddms.v1.MigrationJob migration_job = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The migrationJob.
-
getMigrationJobOrBuilder
MigrationJobOrBuilder getMigrationJobOrBuilder()
Required. The migration job parameters to update.
.google.cloud.clouddms.v1.MigrationJob migration_job = 2 [(.google.api.field_behavior) = REQUIRED];
-
getRequestId
String getRequestId()
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;
- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()
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;
- Returns:
- The bytes for requestId.
-
-