Search in sources :

Example 6 with Builder

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

the class ListTestCaseResults method listTestCaseResults.

public static void listTestCaseResults(String projectId, String agentId, String testId, String location) throws IOException {
    String parent = "projects/" + projectId + "/locations/" + location + "/agents/" + agentId + "/testCases/" + testId;
    Builder req = ListTestCaseResultsRequest.newBuilder();
    req.setParent(parent);
    req.setFilter("environment=draft");
    TestCasesSettings testCasesSettings = TestCasesSettings.newBuilder().setEndpoint(location + "-dialogflow.googleapis.com:443").build();
    TestCasesClient client = TestCasesClient.create(testCasesSettings);
    for (TestCaseResult element : client.listTestCaseResults(req.build()).iterateAll()) {
        System.out.println(element);
    }
}
Also used : TestCasesSettings(com.google.cloud.dialogflow.cx.v3.TestCasesSettings) TestCaseResult(com.google.cloud.dialogflow.cx.v3.TestCaseResult) Builder(com.google.cloud.dialogflow.cx.v3.ListTestCaseResultsRequest.Builder) TestCasesClient(com.google.cloud.dialogflow.cx.v3.TestCasesClient)

Example 7 with Builder

use of com.google.cloud.dialogflow.cx.v3.ListPagesRequest.Builder 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)

Example 8 with Builder

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

the class UpdateIntentTest method setUp.

@Before
public void setUp() throws IOException {
    stdOut = new ByteArrayOutputStream();
    System.setOut(new PrintStream(stdOut));
    Builder build = Agent.newBuilder();
    build.setDefaultLanguageCode("en");
    build.setDisplayName("temp_agent_" + UUID.randomUUID().toString());
    build.setTimeZone("America/Los_Angeles");
    Agent agent = build.build();
    String apiEndpoint = "global-dialogflow.googleapis.com:443";
    String parentPath = "projects/" + PROJECT_ID + "/locations/global";
    AgentsSettings agentsSettings = AgentsSettings.newBuilder().setEndpoint(apiEndpoint).build();
    AgentsClient client = AgentsClient.create(agentsSettings);
    parent = client.createAgent(parentPath, agent).getName();
    UpdateIntentTest.agentID = parent.split("/")[5];
    try (IntentsClient intentsClient = IntentsClient.create()) {
        com.google.cloud.dialogflow.cx.v3.Intent.Builder intent = Intent.newBuilder();
        intent.setDisplayName("temp_intent_" + UUID.randomUUID().toString());
        UpdateIntentTest.intentPath = intentsClient.createIntent(parent, intent.build()).getName();
        UpdateIntentTest.intentID = UpdateIntentTest.intentPath.split("/")[7];
    }
}
Also used : PrintStream(java.io.PrintStream) Agent(com.google.cloud.dialogflow.cx.v3.Agent) IntentsClient(com.google.cloud.dialogflow.cx.v3.IntentsClient) Builder(com.google.cloud.dialogflow.cx.v3.Agent.Builder) Intent(com.google.cloud.dialogflow.cx.v3.Intent) ByteArrayOutputStream(java.io.ByteArrayOutputStream) AgentsSettings(com.google.cloud.dialogflow.cx.v3.AgentsSettings) AgentsClient(com.google.cloud.dialogflow.cx.v3.AgentsClient) Before(org.junit.Before)

Aggregations

Agent (com.google.cloud.dialogflow.cx.v3.Agent)4 Builder (com.google.cloud.dialogflow.cx.v3.Agent.Builder)4 AgentsClient (com.google.cloud.dialogflow.cx.v3.AgentsClient)4 AgentsSettings (com.google.cloud.dialogflow.cx.v3.AgentsSettings)4 ByteArrayOutputStream (java.io.ByteArrayOutputStream)3 PrintStream (java.io.PrintStream)3 Intent (com.google.cloud.dialogflow.cx.v3.Intent)2 IntentsClient (com.google.cloud.dialogflow.cx.v3.IntentsClient)2 PagesClient (com.google.cloud.dialogflow.cx.v3.PagesClient)2 Before (org.junit.Before)2 Builder (com.google.cloud.dialogflow.cx.v3.DeletePageRequest.Builder)1 Builder (com.google.cloud.dialogflow.cx.v3.Intent.Builder)1 Builder (com.google.cloud.dialogflow.cx.v3.ListPagesRequest.Builder)1 Builder (com.google.cloud.dialogflow.cx.v3.ListTestCaseResultsRequest.Builder)1 Page (com.google.cloud.dialogflow.cx.v3.Page)1 TestCaseResult (com.google.cloud.dialogflow.cx.v3.TestCaseResult)1 TestCasesClient (com.google.cloud.dialogflow.cx.v3.TestCasesClient)1 TestCasesSettings (com.google.cloud.dialogflow.cx.v3.TestCasesSettings)1 UpdateIntentRequest (com.google.cloud.dialogflow.cx.v3.UpdateIntentRequest)1 FieldMask (com.google.protobuf.FieldMask)1