public interface UpdateDocumentRequestOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getAllowMissing()
public abstract boolean getAllowMissing()If set to true, and the Document is not found, a new Document will be created.
bool allow_missing = 2;
| Returns | |
|---|---|
| Type | Description |
boolean |
The allowMissing. |
getDocument()
public abstract Document getDocument()Required. The document to update/create.
If the caller does not have permission to update the
Document, regardless of
whether or not it exists, a PERMISSION_DENIED error is returned.
If the Document to update
does not exist and
allow_missing
is not set, a NOT_FOUND error is returned.
.google.cloud.discoveryengine.v1beta.Document document = 1 [(.google.api.field_behavior) = REQUIRED];
| Returns | |
|---|---|
| Type | Description |
Document |
The document. |
getDocumentOrBuilder()
public abstract DocumentOrBuilder getDocumentOrBuilder()Required. The document to update/create.
If the caller does not have permission to update the
Document, regardless of
whether or not it exists, a PERMISSION_DENIED error is returned.
If the Document to update
does not exist and
allow_missing
is not set, a NOT_FOUND error is returned.
.google.cloud.discoveryengine.v1beta.Document document = 1 [(.google.api.field_behavior) = REQUIRED];
| Returns | |
|---|---|
| Type | Description |
DocumentOrBuilder |
|
getUpdateMask()
public abstract FieldMask getUpdateMask()Indicates which fields in the provided imported 'document' to update. If not set, will by default update all fields.
.google.protobuf.FieldMask update_mask = 3;
| Returns | |
|---|---|
| Type | Description |
FieldMask |
The updateMask. |
getUpdateMaskOrBuilder()
public abstract FieldMaskOrBuilder getUpdateMaskOrBuilder()Indicates which fields in the provided imported 'document' to update. If not set, will by default update all fields.
.google.protobuf.FieldMask update_mask = 3;
| Returns | |
|---|---|
| Type | Description |
FieldMaskOrBuilder |
|
hasDocument()
public abstract boolean hasDocument()Required. The document to update/create.
If the caller does not have permission to update the
Document, regardless of
whether or not it exists, a PERMISSION_DENIED error is returned.
If the Document to update
does not exist and
allow_missing
is not set, a NOT_FOUND error is returned.
.google.cloud.discoveryengine.v1beta.Document document = 1 [(.google.api.field_behavior) = REQUIRED];
| Returns | |
|---|---|
| Type | Description |
boolean |
Whether the document field is set. |
hasUpdateMask()
public abstract boolean hasUpdateMask()Indicates which fields in the provided imported 'document' to update. If not set, will by default update all fields.
.google.protobuf.FieldMask update_mask = 3;
| Returns | |
|---|---|
| Type | Description |
boolean |
Whether the updateMask field is set. |