Search in sources :

Example 1 with UpdateIntentRequest

use of com.google.cloud.dialogflow.cx.v3.UpdateIntentRequest in project java-dialogflow by googleapis.

the class UpdateIntent method updateIntent.

// DialogFlow API Update Intent sample.
public static void updateIntent(String projectId, String intentId, String location, String displayName) throws IOException {
    try (IntentsClient client = IntentsClient.create()) {
        String intentPath = "projects/" + projectId + "/locations/" + location + "/agent/intents/" + intentId;
        Builder intentBuilder = client.getIntent(intentPath).toBuilder();
        intentBuilder.setDisplayName(displayName);
        FieldMask fieldMask = FieldMask.newBuilder().addPaths("display_name").build();
        Intent intent = intentBuilder.build();
        UpdateIntentRequest request = UpdateIntentRequest.newBuilder().setIntent(intent).setLanguageCode("en").setUpdateMask(fieldMask).build();
        // Make API request to update intent using fieldmask
        Intent response = client.updateIntent(request);
        System.out.println(response);
    }
}
Also used : IntentsClient(com.google.cloud.dialogflow.v2.IntentsClient) Builder(com.google.cloud.dialogflow.v2.Intent.Builder) Intent(com.google.cloud.dialogflow.v2.Intent) FieldMask(com.google.protobuf.FieldMask) UpdateIntentRequest(com.google.cloud.dialogflow.v2.UpdateIntentRequest)

Example 2 with UpdateIntentRequest

use of com.google.cloud.dialogflow.cx.v3.UpdateIntentRequest in project java-dialogflow-cx by googleapis.

the class UpdateIntent method updateIntent.

// DialogFlow API Update Intent sample.
public static void updateIntent(String projectId, String agentId, String intentId, String location, String displayName) throws IOException {
    try (IntentsClient client = IntentsClient.create()) {
        String intentPath = "projects/" + projectId + "/locations/" + location + "/agents/" + agentId + "/intents/" + intentId;
        Builder intentBuilder = client.getIntent(intentPath).toBuilder();
        intentBuilder.setDisplayName(displayName);
        FieldMask fieldMask = FieldMask.newBuilder().addPaths("display_name").build();
        Intent intent = intentBuilder.build();
        UpdateIntentRequest request = UpdateIntentRequest.newBuilder().setIntent(intent).setLanguageCode("en").setUpdateMask(fieldMask).build();
        // Make API request to update intent using fieldmask
        Intent response = client.updateIntent(request);
        System.out.println(response);
    }
}
Also used : IntentsClient(com.google.cloud.dialogflow.cx.v3.IntentsClient) Builder(com.google.cloud.dialogflow.cx.v3.Intent.Builder) Intent(com.google.cloud.dialogflow.cx.v3.Intent) FieldMask(com.google.protobuf.FieldMask) UpdateIntentRequest(com.google.cloud.dialogflow.cx.v3.UpdateIntentRequest)

Aggregations

FieldMask (com.google.protobuf.FieldMask)2 Intent (com.google.cloud.dialogflow.cx.v3.Intent)1 Builder (com.google.cloud.dialogflow.cx.v3.Intent.Builder)1 IntentsClient (com.google.cloud.dialogflow.cx.v3.IntentsClient)1 UpdateIntentRequest (com.google.cloud.dialogflow.cx.v3.UpdateIntentRequest)1 Intent (com.google.cloud.dialogflow.v2.Intent)1 Builder (com.google.cloud.dialogflow.v2.Intent.Builder)1 IntentsClient (com.google.cloud.dialogflow.v2.IntentsClient)1 UpdateIntentRequest (com.google.cloud.dialogflow.v2.UpdateIntentRequest)1