Reference documentation and code samples for the Dialogflow CX V3 API class Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.
REST client for the EntityTypes service.
Service for managing EntityTypes.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
Configure the EntityTypes Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all EntityTypes clients ::Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the EntityTypes Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#create_entity_type
def create_entity_type(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
def create_entity_type(parent: nil, entity_type: nil, language_code: nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
Creates an entity type in the specified agent.
Note: You should always train a flow prior to sending it queries. See the training documentation.
def create_entity_type(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
create_entity_type
via a request object, either of type
CreateEntityTypeRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::CreateEntityTypeRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def create_entity_type(parent: nil, entity_type: nil, language_code: nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
create_entity_type
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The agent to create a entity type for.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>
. - entity_type (::Google::Cloud::Dialogflow::CX::V3::EntityType, ::Hash) — Required. The entity type to create.
-
language_code (::String) — The language of the following fields in
entity_type
:-
EntityType.entities.value
-
EntityType.entities.synonyms
-
EntityType.excluded_phrases.value
If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
-
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Dialogflow::CX::V3::EntityType)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::CreateEntityTypeRequest.new # Call the create_entity_type method. result = client.create_entity_type request # The returned object is of type Google::Cloud::Dialogflow::CX::V3::EntityType. p result
#delete_entity_type
def delete_entity_type(request, options = nil) -> ::Google::Protobuf::Empty
def delete_entity_type(name: nil, force: nil) -> ::Google::Protobuf::Empty
Deletes the specified entity type.
Note: You should always train a flow prior to sending it queries. See the training documentation.
def delete_entity_type(request, options = nil) -> ::Google::Protobuf::Empty
delete_entity_type
via a request object, either of type
DeleteEntityTypeRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::DeleteEntityTypeRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def delete_entity_type(name: nil, force: nil) -> ::Google::Protobuf::Empty
delete_entity_type
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the entity type to delete.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/entityTypes/<Entity Type ID>
. -
force (::Boolean) —
This field has no effect for entity type not being used. For entity types that are used by intents or pages:
- If
force
is set to false, an error will be returned with message indicating the referencing resources. - If
force
is set to true, Dialogflow will remove the entity type, as well as any references to the entity type (i.e. Page parameter of the entity type will be changed to '@sys.any' and intent parameter of the entity type will be removed).
- If
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Protobuf::Empty)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::DeleteEntityTypeRequest.new # Call the delete_entity_type method. result = client.delete_entity_type request # The returned object is of type Google::Protobuf::Empty. p result
#export_entity_types
def export_entity_types(request, options = nil) -> ::Gapic::Operation
def export_entity_types(parent: nil, entity_types: nil, entity_types_uri: nil, entity_types_content_inline: nil, data_format: nil, language_code: nil) -> ::Gapic::Operation
Exports the selected entity types.
def export_entity_types(request, options = nil) -> ::Gapic::Operation
export_entity_types
via a request object, either of type
Google::Cloud::Dialogflow::CX::V3::ExportEntityTypesRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::ExportEntityTypesRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def export_entity_types(parent: nil, entity_types: nil, entity_types_uri: nil, entity_types_content_inline: nil, data_format: nil, language_code: nil) -> ::Gapic::Operation
export_entity_types
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The name of the parent agent to export entity types.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>
. -
entity_types (::Array<::String>) — Required. The name of the entity types to export.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/entityTypes/<EntityType ID>
. -
entity_types_uri (::String) — Optional. The Google Cloud
Storage URI to export the entity
types to. The format of this URI must be
gs://<bucket-name>/<object-name>
.Dialogflow performs a write operation for the Cloud Storage object on the caller's behalf, so your request authentication must have write permissions for the object. For more information, see Dialogflow access control.
- entity_types_content_inline (::Boolean) — Optional. The option to return the serialized entity types inline.
-
data_format (::Google::Cloud::Dialogflow::CX::V3::ExportEntityTypesRequest::DataFormat) — Optional. The data format of the exported entity types. If not specified,
BLOB
is assumed. -
language_code (::String) — Optional. The language to retrieve the entity type for. The following
fields are language dependent:
-
EntityType.entities.value
-
EntityType.entities.synonyms
-
EntityType.excluded_phrases.value
If not specified, all language dependent fields will be retrieved. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
-
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::ExportEntityTypesRequest.new # Call the export_entity_types method. result = client.export_entity_types request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#get_entity_type
def get_entity_type(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
def get_entity_type(name: nil, language_code: nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
Retrieves the specified entity type.
def get_entity_type(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
get_entity_type
via a request object, either of type
GetEntityTypeRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::GetEntityTypeRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get_entity_type(name: nil, language_code: nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
get_entity_type
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the entity type.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/entityTypes/<Entity Type ID>
. -
language_code (::String) — The language to retrieve the entity type for. The following fields are
language dependent:
-
EntityType.entities.value
-
EntityType.entities.synonyms
-
EntityType.excluded_phrases.value
If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
-
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Dialogflow::CX::V3::EntityType)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::GetEntityTypeRequest.new # Call the get_entity_type method. result = client.get_entity_type request # The returned object is of type Google::Cloud::Dialogflow::CX::V3::EntityType. p result
#import_entity_types
def import_entity_types(request, options = nil) -> ::Gapic::Operation
def import_entity_types(parent: nil, entity_types_uri: nil, entity_types_content: nil, merge_option: nil, target_entity_type: nil) -> ::Gapic::Operation
Imports the specified entitytypes into the agent.
def import_entity_types(request, options = nil) -> ::Gapic::Operation
import_entity_types
via a request object, either of type
ImportEntityTypesRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::ImportEntityTypesRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def import_entity_types(parent: nil, entity_types_uri: nil, entity_types_content: nil, merge_option: nil, target_entity_type: nil) -> ::Gapic::Operation
import_entity_types
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The agent to import the entity types into.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>
. -
entity_types_uri (::String) — The Google Cloud Storage URI
to import entity types from. The format of this URI must be
gs://<bucket-name>/<object-name>
.Dialogflow performs a read operation for the Cloud Storage object on the caller's behalf, so your request authentication must have read permissions for the object. For more information, see Dialogflow access control.
- entity_types_content (::Google::Cloud::Dialogflow::CX::V3::InlineSource, ::Hash) — Uncompressed byte content of entity types.
- merge_option (::Google::Cloud::Dialogflow::CX::V3::ImportEntityTypesRequest::MergeOption) — Required. Merge option for importing entity types.
-
target_entity_type (::String) — Optional. The target entity type to import into.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/entity_types/<EntityType ID>
. If set, there should be only one entity type included in [entity_types][google.cloud.dialogflow.cx.v3.ImportEntityTypesRequest.entity_types], of which the type should match the type of the target entity type. All entities in the imported entity type will be added to the target entity type.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::ImportEntityTypesRequest.new # Call the import_entity_types method. result = client.import_entity_types request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#initialize
def initialize() { |config| ... } -> Client
Create a new EntityTypes REST client object.
- (config) — Configure the EntityTypes client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.new do |config| config.timeout = 10.0 end
#list_entity_types
def list_entity_types(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dialogflow::CX::V3::EntityType>
def list_entity_types(parent: nil, language_code: nil, page_size: nil, page_token: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dialogflow::CX::V3::EntityType>
Returns the list of all entity types in the specified agent.
def list_entity_types(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dialogflow::CX::V3::EntityType>
list_entity_types
via a request object, either of type
ListEntityTypesRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::ListEntityTypesRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def list_entity_types(parent: nil, language_code: nil, page_size: nil, page_token: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dialogflow::CX::V3::EntityType>
list_entity_types
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The agent to list all entity types for.
Format:
projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>
. -
language_code (::String) — The language to list entity types for. The following fields are language
dependent:
-
EntityType.entities.value
-
EntityType.entities.synonyms
-
EntityType.excluded_phrases.value
If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
-
- page_size (::Integer) — The maximum number of items to return in a single page. By default 100 and at most 1000.
- page_token (::String) — The next_page_token value returned from a previous list request.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dialogflow::CX::V3::EntityType>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dialogflow::CX::V3::EntityType>)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::ListEntityTypesRequest.new # Call the list_entity_types method. result = client.list_entity_types request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Cloud::Dialogflow::CX::V3::EntityType. p item end
#location_client
def location_client() -> Google::Cloud::Location::Locations::Rest::Client
Get the associated client for mix-in of the Locations.
- (Google::Cloud::Location::Locations::Rest::Client)
#operations_client
def operations_client() -> ::Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Operations
Get the associated client for long-running operations.
#universe_domain
def universe_domain() -> String
The effective universe domain
- (String)
#update_entity_type
def update_entity_type(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
def update_entity_type(entity_type: nil, language_code: nil, update_mask: nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
Updates the specified entity type.
Note: You should always train a flow prior to sending it queries. See the training documentation.
def update_entity_type(request, options = nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
update_entity_type
via a request object, either of type
UpdateEntityTypeRequest or an equivalent Hash.
- request (::Google::Cloud::Dialogflow::CX::V3::UpdateEntityTypeRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def update_entity_type(entity_type: nil, language_code: nil, update_mask: nil) -> ::Google::Cloud::Dialogflow::CX::V3::EntityType
update_entity_type
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- entity_type (::Google::Cloud::Dialogflow::CX::V3::EntityType, ::Hash) — Required. The entity type to update.
-
language_code (::String) — The language of the following fields in
entity_type
:-
EntityType.entities.value
-
EntityType.entities.synonyms
-
EntityType.excluded_phrases.value
If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.
-
- update_mask (::Google::Protobuf::FieldMask, ::Hash) — The mask to control which fields get updated.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Dialogflow::CX::V3::EntityType)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/cloud/dialogflow/cx/v3" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Dialogflow::CX::V3::EntityTypes::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Dialogflow::CX::V3::UpdateEntityTypeRequest.new # Call the update_entity_type method. result = client.update_entity_type request # The returned object is of type Google::Cloud::Dialogflow::CX::V3::EntityType. p result