Interface UpdateSchemaRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateSchemaRequest
,UpdateSchemaRequest.Builder
public interface UpdateSchemaRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAllowMissing()
If set to true, and the [Schema][google.cloud.discoveryengine.v1.Schema] is not found, a new [Schema][google.cloud.discoveryengine.v1.Schema] will be created.Schema
getSchema()
Required.SchemaOrBuilder
getSchemaOrBuilder()
Required.boolean
hasSchema()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasSchema
boolean hasSchema()
Required. The [Schema][google.cloud.discoveryengine.v1.Schema] to update.
.google.cloud.discoveryengine.v1.Schema schema = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the schema field is set.
-
getSchema
Schema getSchema()
Required. The [Schema][google.cloud.discoveryengine.v1.Schema] to update.
.google.cloud.discoveryengine.v1.Schema schema = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The schema.
-
getSchemaOrBuilder
SchemaOrBuilder getSchemaOrBuilder()
Required. The [Schema][google.cloud.discoveryengine.v1.Schema] to update.
.google.cloud.discoveryengine.v1.Schema schema = 1 [(.google.api.field_behavior) = REQUIRED];
-
getAllowMissing
boolean getAllowMissing()
If set to true, and the [Schema][google.cloud.discoveryengine.v1.Schema] is not found, a new [Schema][google.cloud.discoveryengine.v1.Schema] will be created. In this situation, `update_mask` is ignored.
bool allow_missing = 3;
- Returns:
- The allowMissing.
-
-