use of com.google.cloud.dialogflow.cx.v3.DeletePageRequest.Builder in project java-dialogflow-cx by googleapis.
the class DeletePage method deletePage.
// DialogFlow API Delete Page Sample.
// Deletes a page from the provided parameters
public static void deletePage(String projectId, String agentId, String flowId, String pageId, String location) throws IOException {
try (PagesClient client = PagesClient.create()) {
Builder deleteRequestBuilder = DeletePageRequest.newBuilder();
deleteRequestBuilder.setName("projects/" + projectId + "/locations/" + location + "/agents/" + agentId + "/flows/" + flowId + "/pages/" + pageId);
// Make API request to delete page
client.deletePage(deleteRequestBuilder.build());
System.out.println("Successfully deleted page!");
}
}
use of com.google.cloud.dialogflow.cx.v3.DeletePageRequest.Builder in project java-dialogflow-cx by googleapis.
the class ExportAgentIT 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();
ExportAgentIT.agentPath = parent;
ExportAgentIT.agentID = parent.split("/")[5];
client.close();
}
use of com.google.cloud.dialogflow.cx.v3.DeletePageRequest.Builder in project java-dialogflow-cx by googleapis.
the class PageManagementIT method setUp.
@BeforeClass
public static 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();
agentID = parent.split("/")[5];
}
use of com.google.cloud.dialogflow.cx.v3.DeletePageRequest.Builder in project java-dialogflow-cx by googleapis.
the class CreateAgent method createAgent.
public static Agent createAgent(String parent, String displayName) throws IOException {
String apiEndpoint = "global-dialogflow.googleapis.com:443";
AgentsSettings agentsSettings = AgentsSettings.newBuilder().setEndpoint(apiEndpoint).build();
try (AgentsClient client = AgentsClient.create(agentsSettings)) {
// Set the details of the Agent to create
Builder build = Agent.newBuilder();
build.setDefaultLanguageCode("en");
build.setDisplayName(displayName);
// Correct format for timezone is location/city
// For example America/Los_Angeles, Europe/Madrid, Asia/Tokyo
build.setTimeZone("America/Los_Angeles");
Agent agent = build.build();
String parentPath = String.format("projects/%s/locations/%s", parent, "global");
// Calls the create agent api and returns the created Agent
Agent response = client.createAgent(parentPath, agent);
System.out.println(response);
return response;
}
}
use of com.google.cloud.dialogflow.cx.v3.DeletePageRequest.Builder in project java-dialogflow-cx by googleapis.
the class ListPages method listPages.
// DialogFlow API List Pages Sample.
// Lists all pages from the provided parameters
public static void listPages(String projectId, String agentId, String flowId, String location) throws IOException {
PagesClient client = PagesClient.create();
Builder listRequestBuilder = ListPagesRequest.newBuilder();
listRequestBuilder.setParent("projects/" + projectId + "/locations/" + location + "/agents/" + agentId + "/flows/" + flowId);
listRequestBuilder.setLanguageCode("en");
// Make API request to list all pages in the project
for (Page element : client.listPages(listRequestBuilder.build()).iterateAll()) {
System.out.println(element);
}
}
Aggregations