Google Cloud Dialogflow Cx V3 Client - Class MergeOption (0.3.2)

Reference documentation and code samples for the Google Cloud Dialogflow Cx V3 Client class MergeOption.

Merge option when display name conflicts exist during import.

Protobuf type google.cloud.dialogflow.cx.v3.ImportIntentsRequest.MergeOption

Namespace

Google \ Cloud \ Dialogflow \ Cx \ V3 \ ImportIntentsRequest

Methods

static::name

Parameter
Name Description
value mixed

static::value

Parameter
Name Description
name mixed

Constants

MERGE_OPTION_UNSPECIFIED

Value: 0

Unspecified. Should not be used.

Generated from protobuf enum MERGE_OPTION_UNSPECIFIED = 0;

REJECT

Value: 1

DEPRECATED: Please use REPORT_CONFLICT instead.

Fail the request if there are intents whose display names conflict with the display names of intents in the agent.

Generated from protobuf enum REJECT = 1 [deprecated = true];

REPLACE

Value: 2

Replace the original intent in the agent with the new intent when display name conflicts exist.

Generated from protobuf enum REPLACE = 2;

MERGE

Value: 3

Merge the original intent with the new intent when display name conflicts exist.

Generated from protobuf enum MERGE = 3;

RENAME

Value: 4

Create new intents with new display names to differentiate them from the existing intents when display name conflicts exist.

Generated from protobuf enum RENAME = 4;

REPORT_CONFLICT

Value: 5

Report conflict information if display names conflict is detected.

Otherwise, import intents.

Generated from protobuf enum REPORT_CONFLICT = 5;

KEEP

Value: 6

Keep the original intent and discard the conflicting new intent when display name conflicts exist.

Generated from protobuf enum KEEP = 6;