com.google.cloud.dialogflow.cx.v3.AgentOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-cx-v3 Show documentation
Show all versions of proto-google-cloud-dialogflow-cx-v3 Show documentation
PROTO library for proto-google-cloud-dialogflow-cx-v3
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/cx/v3/agent.proto
package com.google.cloud.dialogflow.cx.v3;
public interface AgentOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3.Agent)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The unique identifier of the agent.
* Required for the [Agents.UpdateAgent][google.cloud.dialogflow.cx.v3.Agents.UpdateAgent] method. [Agents.CreateAgent][google.cloud.dialogflow.cx.v3.Agents.CreateAgent]
* populates the name automatically.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>`.
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The unique identifier of the agent.
* Required for the [Agents.UpdateAgent][google.cloud.dialogflow.cx.v3.Agents.UpdateAgent] method. [Agents.CreateAgent][google.cloud.dialogflow.cx.v3.Agents.CreateAgent]
* populates the name automatically.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>`.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Required. The human-readable name of the agent, unique within the location.
*
*
* string display_name = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The displayName.
*/
java.lang.String getDisplayName();
/**
*
*
*
* Required. The human-readable name of the agent, unique within the location.
*
*
* string display_name = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for displayName.
*/
com.google.protobuf.ByteString getDisplayNameBytes();
/**
*
*
*
* Required. Immutable. The default language of the agent as a language tag.
* See [Language
* Support](https://cloud.google.com/dialogflow/cx/docs/reference/language)
* for a list of the currently supported language codes.
* This field cannot be set by the [Agents.UpdateAgent][google.cloud.dialogflow.cx.v3.Agents.UpdateAgent] method.
*
*
*
* string default_language_code = 3 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = IMMUTABLE];
*
*
* @return The defaultLanguageCode.
*/
java.lang.String getDefaultLanguageCode();
/**
*
*
*
* Required. Immutable. The default language of the agent as a language tag.
* See [Language
* Support](https://cloud.google.com/dialogflow/cx/docs/reference/language)
* for a list of the currently supported language codes.
* This field cannot be set by the [Agents.UpdateAgent][google.cloud.dialogflow.cx.v3.Agents.UpdateAgent] method.
*
*
*
* string default_language_code = 3 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = IMMUTABLE];
*
*
* @return The bytes for defaultLanguageCode.
*/
com.google.protobuf.ByteString getDefaultLanguageCodeBytes();
/**
*
*
*
* The list of all languages supported by the agent (except for the
* `default_language_code`).
*
*
* repeated string supported_language_codes = 4;
*
* @return A list containing the supportedLanguageCodes.
*/
java.util.List getSupportedLanguageCodesList();
/**
*
*
*
* The list of all languages supported by the agent (except for the
* `default_language_code`).
*
*
* repeated string supported_language_codes = 4;
*
* @return The count of supportedLanguageCodes.
*/
int getSupportedLanguageCodesCount();
/**
*
*
*
* The list of all languages supported by the agent (except for the
* `default_language_code`).
*
*
* repeated string supported_language_codes = 4;
*
* @param index The index of the element to return.
* @return The supportedLanguageCodes at the given index.
*/
java.lang.String getSupportedLanguageCodes(int index);
/**
*
*
*
* The list of all languages supported by the agent (except for the
* `default_language_code`).
*
*
* repeated string supported_language_codes = 4;
*
* @param index The index of the value to return.
* @return The bytes of the supportedLanguageCodes at the given index.
*/
com.google.protobuf.ByteString getSupportedLanguageCodesBytes(int index);
/**
*
*
*
* Required. The time zone of the agent from the [time zone
* database](https://www.iana.org/time-zones), e.g., America/New_York,
* Europe/Paris.
*
*
* string time_zone = 5 [(.google.api.field_behavior) = REQUIRED];
*
* @return The timeZone.
*/
java.lang.String getTimeZone();
/**
*
*
*
* Required. The time zone of the agent from the [time zone
* database](https://www.iana.org/time-zones), e.g., America/New_York,
* Europe/Paris.
*
*
* string time_zone = 5 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for timeZone.
*/
com.google.protobuf.ByteString getTimeZoneBytes();
/**
*
*
*
* The description of the agent. The maximum length is 500 characters. If
* exceeded, the request is rejected.
*
*
* string description = 6;
*
* @return The description.
*/
java.lang.String getDescription();
/**
*
*
*
* The description of the agent. The maximum length is 500 characters. If
* exceeded, the request is rejected.
*
*
* string description = 6;
*
* @return The bytes for description.
*/
com.google.protobuf.ByteString getDescriptionBytes();
/**
*
*
*
* The URI of the agent's avatar. Avatars are used throughout the Dialogflow
* console and in the self-hosted [Web
* Demo](https://cloud.google.com/dialogflow/docs/integrations/web-demo)
* integration.
*
*
* string avatar_uri = 7;
*
* @return The avatarUri.
*/
java.lang.String getAvatarUri();
/**
*
*
*
* The URI of the agent's avatar. Avatars are used throughout the Dialogflow
* console and in the self-hosted [Web
* Demo](https://cloud.google.com/dialogflow/docs/integrations/web-demo)
* integration.
*
*
* string avatar_uri = 7;
*
* @return The bytes for avatarUri.
*/
com.google.protobuf.ByteString getAvatarUriBytes();
/**
*
*
*
* Speech recognition related settings.
*
*
* .google.cloud.dialogflow.cx.v3.SpeechToTextSettings speech_to_text_settings = 13;
*
* @return Whether the speechToTextSettings field is set.
*/
boolean hasSpeechToTextSettings();
/**
*
*
*
* Speech recognition related settings.
*
*
* .google.cloud.dialogflow.cx.v3.SpeechToTextSettings speech_to_text_settings = 13;
*
* @return The speechToTextSettings.
*/
com.google.cloud.dialogflow.cx.v3.SpeechToTextSettings getSpeechToTextSettings();
/**
*
*
*
* Speech recognition related settings.
*
*
* .google.cloud.dialogflow.cx.v3.SpeechToTextSettings speech_to_text_settings = 13;
*/
com.google.cloud.dialogflow.cx.v3.SpeechToTextSettingsOrBuilder
getSpeechToTextSettingsOrBuilder();
/**
*
*
*
* Immutable. Name of the start flow in this agent. A start flow will be automatically
* created when the agent is created, and can only be deleted by deleting the
* agent.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
*
* string start_flow = 16 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
*
*
* @return The startFlow.
*/
java.lang.String getStartFlow();
/**
*
*
*
* Immutable. Name of the start flow in this agent. A start flow will be automatically
* created when the agent is created, and can only be deleted by deleting the
* agent.
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/flows/<Flow ID>`.
*
*
*
* string start_flow = 16 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for startFlow.
*/
com.google.protobuf.ByteString getStartFlowBytes();
/**
*
*
*
* Name of the [SecuritySettings][google.cloud.dialogflow.cx.v3.SecuritySettings] reference for the agent.
* Format: `projects/<Project ID>/locations/<Location
* ID>/securitySettings/<Security Settings ID>`.
*
*
* string security_settings = 17 [(.google.api.resource_reference) = { ... }
*
* @return The securitySettings.
*/
java.lang.String getSecuritySettings();
/**
*
*
*
* Name of the [SecuritySettings][google.cloud.dialogflow.cx.v3.SecuritySettings] reference for the agent.
* Format: `projects/<Project ID>/locations/<Location
* ID>/securitySettings/<Security Settings ID>`.
*
*
* string security_settings = 17 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for securitySettings.
*/
com.google.protobuf.ByteString getSecuritySettingsBytes();
/**
*
*
*
* Indicates if stackdriver logging is enabled for the agent.
* Please use [agent.advanced_settings][google.cloud.dialogflow.cx.v3.AdvancedSettings.LoggingSettings]
* instead.
*
*
* bool enable_stackdriver_logging = 18 [deprecated = true];
*
* @return The enableStackdriverLogging.
*/
@java.lang.Deprecated
boolean getEnableStackdriverLogging();
/**
*
*
*
* Indicates if automatic spell correction is enabled in detect intent
* requests.
*
*
* bool enable_spell_correction = 20;
*
* @return The enableSpellCorrection.
*/
boolean getEnableSpellCorrection();
/**
*
*
*
* Hierarchical advanced settings for this agent. The settings exposed at the
* lower level overrides the settings exposed at the higher level.
*
*
* .google.cloud.dialogflow.cx.v3.AdvancedSettings advanced_settings = 22;
*
* @return Whether the advancedSettings field is set.
*/
boolean hasAdvancedSettings();
/**
*
*
*
* Hierarchical advanced settings for this agent. The settings exposed at the
* lower level overrides the settings exposed at the higher level.
*
*
* .google.cloud.dialogflow.cx.v3.AdvancedSettings advanced_settings = 22;
*
* @return The advancedSettings.
*/
com.google.cloud.dialogflow.cx.v3.AdvancedSettings getAdvancedSettings();
/**
*
*
*
* Hierarchical advanced settings for this agent. The settings exposed at the
* lower level overrides the settings exposed at the higher level.
*
*
* .google.cloud.dialogflow.cx.v3.AdvancedSettings advanced_settings = 22;
*/
com.google.cloud.dialogflow.cx.v3.AdvancedSettingsOrBuilder getAdvancedSettingsOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy