Interface UpdateProcessRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateProcessRequest,UpdateProcessRequest.Builder
public interface UpdateProcessRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAllowMissing()If set to true and the process is not found, the request inserts it.ProcessgetProcess()Required.ProcessOrBuildergetProcessOrBuilder()Required.com.google.protobuf.FieldMaskgetUpdateMask()The list of fields to update.com.google.protobuf.FieldMaskOrBuildergetUpdateMaskOrBuilder()The list of fields to update.booleanhasProcess()Required.booleanhasUpdateMask()The list of fields to update.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasProcess
boolean hasProcess()
Required. The lineage process to update. The process's `name` field is used to identify the process to update.
.google.cloud.datacatalog.lineage.v1.Process process = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the process field is set.
-
getProcess
Process getProcess()
Required. The lineage process to update. The process's `name` field is used to identify the process to update.
.google.cloud.datacatalog.lineage.v1.Process process = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The process.
-
getProcessOrBuilder
ProcessOrBuilder getProcessOrBuilder()
Required. The lineage process to update. The process's `name` field is used to identify the process to update.
.google.cloud.datacatalog.lineage.v1.Process process = 1 [(.google.api.field_behavior) = REQUIRED];
-
hasUpdateMask
boolean hasUpdateMask()
The list of fields to update. Currently not used. The whole message is updated.
.google.protobuf.FieldMask update_mask = 2;- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
The list of fields to update. Currently not used. The whole message is updated.
.google.protobuf.FieldMask update_mask = 2;- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
The list of fields to update. Currently not used. The whole message is updated.
.google.protobuf.FieldMask update_mask = 2;
-
getAllowMissing
boolean getAllowMissing()
If set to true and the process is not found, the request inserts it.
bool allow_missing = 3;- Returns:
- The allowMissing.
-
-