google-apis-dialogflow_v3beta1 0.15.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/google/apis/dialogflow_v3beta1/classes.rb +113 -14
- data/lib/google/apis/dialogflow_v3beta1/gem_version.rb +3 -3
- data/lib/google/apis/dialogflow_v3beta1/representations.rb +46 -0
- data/lib/google/apis/dialogflow_v3beta1/service.rb +45 -15
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07750cfe952eb3b2656bdb0c6d66e096a54f9224c562b6f84eb7bc1c4155a948
|
4
|
+
data.tar.gz: 20b730243069d55694048585e0e93f5abe3664d8515a4826a219e5c5fd476749
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60b5586320fb568e89b34cec99c042393442aa8e1501c525ffcee42e25471080a869e829f98326dab5a8b5c4767a58349983bad03b859f6cd395b142cc11e4b6
|
7
|
+
data.tar.gz: f9fc149bef0f4a91e7f2643c53d5131c482edd2ebe4dade3289c41c41ff51c30271c11c205121a4d0829a0d8f5e7b389f838f8dbe95c379d171511cd73f6fe79
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
2
2
|
|
3
|
+
### v0.19.0 (2021-07-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210727
|
6
|
+
|
7
|
+
### v0.18.0 (2021-07-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210706
|
10
|
+
|
11
|
+
### v0.17.0 (2021-06-29)
|
12
|
+
|
13
|
+
* Regenerated using generator version 0.4.0
|
14
|
+
|
15
|
+
### v0.16.0 (2021-06-24)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210618
|
18
|
+
|
3
19
|
### v0.15.0 (2021-06-16)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210611
|
@@ -1067,9 +1067,9 @@ module Google
|
|
1067
1067
|
# letters, digits and the symbols '-' and '_'. International characters are
|
1068
1068
|
# allowed, including letters from unicase alphabets. Keys must start with a
|
1069
1069
|
# letter. Keys and values can be no longer than 63 characters and no more than
|
1070
|
-
# 128 bytes. Prefix "sys
|
1071
|
-
# allowed Dialogflow defined labels include: * sys
|
1072
|
-
# above labels do not require value. "sys
|
1070
|
+
# 128 bytes. Prefix "sys-" is reserved for Dialogflow defined labels. Currently
|
1071
|
+
# allowed Dialogflow defined labels include: * sys-head * sys-contextual The
|
1072
|
+
# above labels do not require value. "sys-head" means the intent is a head
|
1073
1073
|
# intent. "sys.contextual" means the intent is a contextual intent.
|
1074
1074
|
# Corresponds to the JSON property `labels`
|
1075
1075
|
# @return [Hash<String,String>]
|
@@ -2560,6 +2560,54 @@ module Google
|
|
2560
2560
|
end
|
2561
2561
|
end
|
2562
2562
|
|
2563
|
+
# Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
|
2564
|
+
# Settings exposed at lower level overrides the settings exposed at higher level.
|
2565
|
+
# Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
|
2566
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettings
|
2567
|
+
include Google::Apis::Core::Hashable
|
2568
|
+
|
2569
|
+
# Define behaviors on logging.
|
2570
|
+
# Corresponds to the JSON property `loggingSettings`
|
2571
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings]
|
2572
|
+
attr_accessor :logging_settings
|
2573
|
+
|
2574
|
+
def initialize(**args)
|
2575
|
+
update!(**args)
|
2576
|
+
end
|
2577
|
+
|
2578
|
+
# Update properties of this object
|
2579
|
+
def update!(**args)
|
2580
|
+
@logging_settings = args[:logging_settings] if args.key?(:logging_settings)
|
2581
|
+
end
|
2582
|
+
end
|
2583
|
+
|
2584
|
+
# Define behaviors on logging.
|
2585
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
|
2586
|
+
include Google::Apis::Core::Hashable
|
2587
|
+
|
2588
|
+
# If true, DF Interaction logging is currently enabled.
|
2589
|
+
# Corresponds to the JSON property `enableInteractionLogging`
|
2590
|
+
# @return [Boolean]
|
2591
|
+
attr_accessor :enable_interaction_logging
|
2592
|
+
alias_method :enable_interaction_logging?, :enable_interaction_logging
|
2593
|
+
|
2594
|
+
# If true, StackDriver logging is currently enabled.
|
2595
|
+
# Corresponds to the JSON property `enableStackdriverLogging`
|
2596
|
+
# @return [Boolean]
|
2597
|
+
attr_accessor :enable_stackdriver_logging
|
2598
|
+
alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
|
2599
|
+
|
2600
|
+
def initialize(**args)
|
2601
|
+
update!(**args)
|
2602
|
+
end
|
2603
|
+
|
2604
|
+
# Update properties of this object
|
2605
|
+
def update!(**args)
|
2606
|
+
@enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
|
2607
|
+
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
2608
|
+
end
|
2609
|
+
end
|
2610
|
+
|
2563
2611
|
# Agents are best described as Natural Language Understanding (NLU) modules that
|
2564
2612
|
# transform user requests into actionable data. You can include agents in your
|
2565
2613
|
# app, product, or service to determine user intent and respond to the user in a
|
@@ -2568,6 +2616,13 @@ module Google
|
|
2568
2616
|
class GoogleCloudDialogflowCxV3beta1Agent
|
2569
2617
|
include Google::Apis::Core::Hashable
|
2570
2618
|
|
2619
|
+
# Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
|
2620
|
+
# Settings exposed at lower level overrides the settings exposed at higher level.
|
2621
|
+
# Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
|
2622
|
+
# Corresponds to the JSON property `advancedSettings`
|
2623
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings]
|
2624
|
+
attr_accessor :advanced_settings
|
2625
|
+
|
2571
2626
|
# The URI of the agent's avatar. Avatars are used throughout the Dialogflow
|
2572
2627
|
# console and in the self-hosted [Web Demo](https://cloud.google.com/dialogflow/
|
2573
2628
|
# docs/integrations/web-demo) integration.
|
@@ -2600,7 +2655,8 @@ module Google
|
|
2600
2655
|
attr_accessor :enable_spell_correction
|
2601
2656
|
alias_method :enable_spell_correction?, :enable_spell_correction
|
2602
2657
|
|
2603
|
-
# Indicates if stackdriver logging is enabled for the agent.
|
2658
|
+
# Indicates if stackdriver logging is enabled for the agent. Please use agent.
|
2659
|
+
# advanced_settings instead.
|
2604
2660
|
# Corresponds to the JSON property `enableStackdriverLogging`
|
2605
2661
|
# @return [Boolean]
|
2606
2662
|
attr_accessor :enable_stackdriver_logging
|
@@ -2649,6 +2705,7 @@ module Google
|
|
2649
2705
|
|
2650
2706
|
# Update properties of this object
|
2651
2707
|
def update!(**args)
|
2708
|
+
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
2652
2709
|
@avatar_uri = args[:avatar_uri] if args.key?(:avatar_uri)
|
2653
2710
|
@default_language_code = args[:default_language_code] if args.key?(:default_language_code)
|
2654
2711
|
@description = args[:description] if args.key?(:description)
|
@@ -3526,9 +3583,11 @@ module Google
|
|
3526
3583
|
# @return [String]
|
3527
3584
|
attr_accessor :end_time
|
3528
3585
|
|
3529
|
-
# Maximum number of days to run the
|
3530
|
-
#
|
3531
|
-
# value and maximum will be 6 days.
|
3586
|
+
# LINT.IfChange(default_experiment_length) Maximum number of days to run the
|
3587
|
+
# experiment. If auto-rollout is not enabled, default value and maximum will be
|
3588
|
+
# 30 days. If auto-rollout is enabled, default value and maximum will be 6 days.
|
3589
|
+
# LINT.ThenChange(//depot/google3/cloud/ml/api/conversation/analytics/compute.cc:
|
3590
|
+
# default_experiment_length)
|
3532
3591
|
# Corresponds to the JSON property `experimentLength`
|
3533
3592
|
# @return [String]
|
3534
3593
|
attr_accessor :experiment_length
|
@@ -3555,9 +3614,9 @@ module Google
|
|
3555
3614
|
# @return [String]
|
3556
3615
|
attr_accessor :start_time
|
3557
3616
|
|
3558
|
-
# The current state of the experiment. Transition triggered by
|
3559
|
-
# StartExperiment:
|
3560
|
-
# CancelExperiment:
|
3617
|
+
# The current state of the experiment. Transition triggered by Experiments.
|
3618
|
+
# StartExperiment: DRAFT->RUNNING. Transition triggered by Experiments.
|
3619
|
+
# CancelExperiment: DRAFT->DONE or RUNNING->DONE.
|
3561
3620
|
# Corresponds to the JSON property `state`
|
3562
3621
|
# @return [String]
|
3563
3622
|
attr_accessor :state
|
@@ -5944,6 +6003,15 @@ module Google
|
|
5944
6003
|
attr_accessor :disable_webhook
|
5945
6004
|
alias_method :disable_webhook?, :disable_webhook
|
5946
6005
|
|
6006
|
+
# A list of flow versions to override for the request. Format: `projects//
|
6007
|
+
# locations//agents//flows//versions/`. If version 1 of flow X is included in
|
6008
|
+
# this list, the traffic of flow X will go through version 1 regardless of the
|
6009
|
+
# version configuration in the environment. Each flow can have at most one
|
6010
|
+
# version specified in this list.
|
6011
|
+
# Corresponds to the JSON property `flowVersions`
|
6012
|
+
# @return [Array<String>]
|
6013
|
+
attr_accessor :flow_versions
|
6014
|
+
|
5947
6015
|
# An object that represents a latitude/longitude pair. This is expressed as a
|
5948
6016
|
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
5949
6017
|
# specified otherwise, this object must conform to the WGS84 standard. Values
|
@@ -6011,6 +6079,7 @@ module Google
|
|
6011
6079
|
@analyze_query_text_sentiment = args[:analyze_query_text_sentiment] if args.key?(:analyze_query_text_sentiment)
|
6012
6080
|
@current_page = args[:current_page] if args.key?(:current_page)
|
6013
6081
|
@disable_webhook = args[:disable_webhook] if args.key?(:disable_webhook)
|
6082
|
+
@flow_versions = args[:flow_versions] if args.key?(:flow_versions)
|
6014
6083
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
6015
6084
|
@parameters = args[:parameters] if args.key?(:parameters)
|
6016
6085
|
@payload = args[:payload] if args.key?(:payload)
|
@@ -6662,10 +6731,17 @@ module Google
|
|
6662
6731
|
# @return [String]
|
6663
6732
|
attr_accessor :display_name
|
6664
6733
|
|
6665
|
-
#
|
6666
|
-
#
|
6667
|
-
#
|
6668
|
-
#
|
6734
|
+
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
6735
|
+
# dialogflow/priv/docs/insights).
|
6736
|
+
# Corresponds to the JSON property `insightsExportSettings`
|
6737
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings]
|
6738
|
+
attr_accessor :insights_export_settings
|
6739
|
+
|
6740
|
+
# [DLP](https://cloud.google.com/dlp/docs) inspect template name. Use this
|
6741
|
+
# template to define inspect base settings. If empty, we use the default DLP
|
6742
|
+
# inspect config. The template name will have one of the following formats: `
|
6743
|
+
# projects//inspectTemplates/` OR `projects//locations//inspectTemplates/` OR `
|
6744
|
+
# organizations//inspectTemplates/`
|
6669
6745
|
# Corresponds to the JSON property `inspectTemplate`
|
6670
6746
|
# @return [String]
|
6671
6747
|
attr_accessor :inspect_template
|
@@ -6709,6 +6785,7 @@ module Google
|
|
6709
6785
|
# Update properties of this object
|
6710
6786
|
def update!(**args)
|
6711
6787
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6788
|
+
@insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
|
6712
6789
|
@inspect_template = args[:inspect_template] if args.key?(:inspect_template)
|
6713
6790
|
@name = args[:name] if args.key?(:name)
|
6714
6791
|
@purge_data_types = args[:purge_data_types] if args.key?(:purge_data_types)
|
@@ -6718,6 +6795,28 @@ module Google
|
|
6718
6795
|
end
|
6719
6796
|
end
|
6720
6797
|
|
6798
|
+
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
6799
|
+
# dialogflow/priv/docs/insights).
|
6800
|
+
class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
|
6801
|
+
include Google::Apis::Core::Hashable
|
6802
|
+
|
6803
|
+
# If enabled, we will automatically exports conversations to Insights and
|
6804
|
+
# Insights runs its analyzers.
|
6805
|
+
# Corresponds to the JSON property `enableInsightsExport`
|
6806
|
+
# @return [Boolean]
|
6807
|
+
attr_accessor :enable_insights_export
|
6808
|
+
alias_method :enable_insights_export?, :enable_insights_export
|
6809
|
+
|
6810
|
+
def initialize(**args)
|
6811
|
+
update!(**args)
|
6812
|
+
end
|
6813
|
+
|
6814
|
+
# Update properties of this object
|
6815
|
+
def update!(**args)
|
6816
|
+
@enable_insights_export = args[:enable_insights_export] if args.key?(:enable_insights_export)
|
6817
|
+
end
|
6818
|
+
end
|
6819
|
+
|
6721
6820
|
# The result of sentiment analysis. Sentiment analysis inspects user input and
|
6722
6821
|
# identifies the prevailing subjective opinion, especially to determine a user's
|
6723
6822
|
# attitude as positive, negative, or neutral.
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210727"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -460,6 +460,18 @@ module Google
|
|
460
460
|
include Google::Apis::Core::JsonObjectSupport
|
461
461
|
end
|
462
462
|
|
463
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettings
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
469
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
|
+
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
473
|
+
end
|
474
|
+
|
463
475
|
class GoogleCloudDialogflowCxV3beta1Agent
|
464
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
477
|
|
@@ -1144,6 +1156,12 @@ module Google
|
|
1144
1156
|
include Google::Apis::Core::JsonObjectSupport
|
1145
1157
|
end
|
1146
1158
|
|
1159
|
+
class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
|
1160
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1161
|
+
|
1162
|
+
include Google::Apis::Core::JsonObjectSupport
|
1163
|
+
end
|
1164
|
+
|
1147
1165
|
class GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult
|
1148
1166
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1149
1167
|
|
@@ -2990,9 +3008,27 @@ module Google
|
|
2990
3008
|
end
|
2991
3009
|
end
|
2992
3010
|
|
3011
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettings
|
3012
|
+
# @private
|
3013
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3014
|
+
property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings::Representation
|
3015
|
+
|
3016
|
+
end
|
3017
|
+
end
|
3018
|
+
|
3019
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
|
3020
|
+
# @private
|
3021
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3022
|
+
property :enable_interaction_logging, as: 'enableInteractionLogging'
|
3023
|
+
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
3024
|
+
end
|
3025
|
+
end
|
3026
|
+
|
2993
3027
|
class GoogleCloudDialogflowCxV3beta1Agent
|
2994
3028
|
# @private
|
2995
3029
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3030
|
+
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings::Representation
|
3031
|
+
|
2996
3032
|
property :avatar_uri, as: 'avatarUri'
|
2997
3033
|
property :default_language_code, as: 'defaultLanguageCode'
|
2998
3034
|
property :description, as: 'description'
|
@@ -3922,6 +3958,7 @@ module Google
|
|
3922
3958
|
property :analyze_query_text_sentiment, as: 'analyzeQueryTextSentiment'
|
3923
3959
|
property :current_page, as: 'currentPage'
|
3924
3960
|
property :disable_webhook, as: 'disableWebhook'
|
3961
|
+
collection :flow_versions, as: 'flowVersions'
|
3925
3962
|
property :geo_location, as: 'geoLocation', class: Google::Apis::DialogflowV3beta1::GoogleTypeLatLng, decorator: Google::Apis::DialogflowV3beta1::GoogleTypeLatLng::Representation
|
3926
3963
|
|
3927
3964
|
hash :parameters, as: 'parameters'
|
@@ -4115,6 +4152,8 @@ module Google
|
|
4115
4152
|
# @private
|
4116
4153
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4117
4154
|
property :display_name, as: 'displayName'
|
4155
|
+
property :insights_export_settings, as: 'insightsExportSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings::Representation
|
4156
|
+
|
4118
4157
|
property :inspect_template, as: 'inspectTemplate'
|
4119
4158
|
property :name, as: 'name'
|
4120
4159
|
collection :purge_data_types, as: 'purgeDataTypes'
|
@@ -4124,6 +4163,13 @@ module Google
|
|
4124
4163
|
end
|
4125
4164
|
end
|
4126
4165
|
|
4166
|
+
class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
|
4167
|
+
# @private
|
4168
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4169
|
+
property :enable_insights_export, as: 'enableInsightsExport'
|
4170
|
+
end
|
4171
|
+
end
|
4172
|
+
|
4127
4173
|
class GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult
|
4128
4174
|
# @private
|
4129
4175
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -50,7 +50,9 @@ module Google
|
|
50
50
|
@batch_path = 'batch'
|
51
51
|
end
|
52
52
|
|
53
|
-
# Creates an agent in the specified location.
|
53
|
+
# Creates an agent in the specified location. Note: You should always train a
|
54
|
+
# flow prior to sending it queries. See the [training documentation](https://
|
55
|
+
# cloud.google.com/dialogflow/cx/docs/concept/training).
|
54
56
|
# @param [String] parent
|
55
57
|
# Required. The location to create a agent for. Format: `projects//locations/`.
|
56
58
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Agent] google_cloud_dialogflow_cx_v3beta1_agent_object
|
@@ -250,7 +252,9 @@ module Google
|
|
250
252
|
execute_or_queue_command(command, &block)
|
251
253
|
end
|
252
254
|
|
253
|
-
# Updates the specified agent.
|
255
|
+
# Updates the specified agent. Note: You should always train a flow prior to
|
256
|
+
# sending it queries. See the [training documentation](https://cloud.google.com/
|
257
|
+
# dialogflow/cx/docs/concept/training).
|
254
258
|
# @param [String] name
|
255
259
|
# The unique identifier of the agent. Required for the Agents.UpdateAgent method.
|
256
260
|
# Agents.CreateAgent populates the name automatically. Format: `projects//
|
@@ -291,7 +295,9 @@ module Google
|
|
291
295
|
|
292
296
|
# Restores the specified agent from a binary file. Replaces the current agent
|
293
297
|
# with a new one. Note that all existing resources in agent (e.g. intents,
|
294
|
-
# entity types, flows) will be removed.
|
298
|
+
# entity types, flows) will be removed. Note: You should always train a flow
|
299
|
+
# prior to sending it queries. See the [training documentation](https://cloud.
|
300
|
+
# google.com/dialogflow/cx/docs/concept/training).
|
295
301
|
# @param [String] name
|
296
302
|
# Required. The name of the agent to restore into. Format: `projects//locations//
|
297
303
|
# agents/`.
|
@@ -401,7 +407,9 @@ module Google
|
|
401
407
|
execute_or_queue_command(command, &block)
|
402
408
|
end
|
403
409
|
|
404
|
-
# Deletes the specified entity type.
|
410
|
+
# Deletes the specified entity type. Note: You should always train a flow prior
|
411
|
+
# to sending it queries. See the [training documentation](https://cloud.google.
|
412
|
+
# com/dialogflow/cx/docs/concept/training).
|
405
413
|
# @param [String] name
|
406
414
|
# Required. The name of the entity type to delete. Format: `projects//locations//
|
407
415
|
# agents//entityTypes/`.
|
@@ -525,7 +533,9 @@ module Google
|
|
525
533
|
execute_or_queue_command(command, &block)
|
526
534
|
end
|
527
535
|
|
528
|
-
# Updates the specified entity type.
|
536
|
+
# Updates the specified entity type. Note: You should always train a flow prior
|
537
|
+
# to sending it queries. See the [training documentation](https://cloud.google.
|
538
|
+
# com/dialogflow/cx/docs/concept/training).
|
529
539
|
# @param [String] name
|
530
540
|
# The unique identifier of the entity type. Required for EntityTypes.
|
531
541
|
# UpdateEntityType. Format: `projects//locations//agents//entityTypes/`.
|
@@ -1399,7 +1409,9 @@ module Google
|
|
1399
1409
|
execute_or_queue_command(command, &block)
|
1400
1410
|
end
|
1401
1411
|
|
1402
|
-
# Creates a flow in the specified agent.
|
1412
|
+
# Creates a flow in the specified agent. Note: You should always train a flow
|
1413
|
+
# prior to sending it queries. See the [training documentation](https://cloud.
|
1414
|
+
# google.com/dialogflow/cx/docs/concept/training).
|
1403
1415
|
# @param [String] parent
|
1404
1416
|
# Required. The agent to create a flow for. Format: `projects//locations//agents/
|
1405
1417
|
# `.
|
@@ -1592,7 +1604,9 @@ module Google
|
|
1592
1604
|
execute_or_queue_command(command, &block)
|
1593
1605
|
end
|
1594
1606
|
|
1595
|
-
# Imports the specified flow to the specified agent from a binary file.
|
1607
|
+
# Imports the specified flow to the specified agent from a binary file. Note:
|
1608
|
+
# You should always train a flow prior to sending it queries. See the [training
|
1609
|
+
# documentation](https://cloud.google.com/dialogflow/cx/docs/concept/training).
|
1596
1610
|
# @param [String] parent
|
1597
1611
|
# Required. The agent to import the flow into. Format: `projects//locations//
|
1598
1612
|
# agents/`.
|
@@ -1674,7 +1688,9 @@ module Google
|
|
1674
1688
|
execute_or_queue_command(command, &block)
|
1675
1689
|
end
|
1676
1690
|
|
1677
|
-
# Updates the specified flow.
|
1691
|
+
# Updates the specified flow. Note: You should always train a flow prior to
|
1692
|
+
# sending it queries. See the [training documentation](https://cloud.google.com/
|
1693
|
+
# dialogflow/cx/docs/concept/training).
|
1678
1694
|
# @param [String] name
|
1679
1695
|
# The unique identifier of the flow. Format: `projects//locations//agents//flows/
|
1680
1696
|
# `.
|
@@ -1722,7 +1738,9 @@ module Google
|
|
1722
1738
|
end
|
1723
1739
|
|
1724
1740
|
# Trains the specified flow. Note that only the flow in 'draft' environment is
|
1725
|
-
# trained.
|
1741
|
+
# trained. Note: You should always train a flow prior to sending it queries. See
|
1742
|
+
# the [training documentation](https://cloud.google.com/dialogflow/cx/docs/
|
1743
|
+
# concept/training).
|
1726
1744
|
# @param [String] name
|
1727
1745
|
# Required. The flow to train. Format: `projects//locations//agents//flows/`.
|
1728
1746
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TrainFlowRequest] google_cloud_dialogflow_cx_v3beta1_train_flow_request_object
|
@@ -2031,7 +2049,9 @@ module Google
|
|
2031
2049
|
execute_or_queue_command(command, &block)
|
2032
2050
|
end
|
2033
2051
|
|
2034
|
-
# Creates an TransitionRouteGroup in the specified flow.
|
2052
|
+
# Creates an TransitionRouteGroup in the specified flow. Note: You should always
|
2053
|
+
# train a flow prior to sending it queries. See the [training documentation](
|
2054
|
+
# https://cloud.google.com/dialogflow/cx/docs/concept/training).
|
2035
2055
|
# @param [String] parent
|
2036
2056
|
# Required. The flow to create an TransitionRouteGroup for. Format: `projects//
|
2037
2057
|
# locations//agents//flows/`.
|
@@ -2073,7 +2093,9 @@ module Google
|
|
2073
2093
|
execute_or_queue_command(command, &block)
|
2074
2094
|
end
|
2075
2095
|
|
2076
|
-
# Deletes the specified TransitionRouteGroup.
|
2096
|
+
# Deletes the specified TransitionRouteGroup. Note: You should always train a
|
2097
|
+
# flow prior to sending it queries. See the [training documentation](https://
|
2098
|
+
# cloud.google.com/dialogflow/cx/docs/concept/training).
|
2077
2099
|
# @param [String] name
|
2078
2100
|
# Required. The name of the TransitionRouteGroup to delete. Format: `projects//
|
2079
2101
|
# locations//agents//flows//transitionRouteGroups/`.
|
@@ -2198,7 +2220,9 @@ module Google
|
|
2198
2220
|
execute_or_queue_command(command, &block)
|
2199
2221
|
end
|
2200
2222
|
|
2201
|
-
# Updates the specified TransitionRouteGroup.
|
2223
|
+
# Updates the specified TransitionRouteGroup. Note: You should always train a
|
2224
|
+
# flow prior to sending it queries. See the [training documentation](https://
|
2225
|
+
# cloud.google.com/dialogflow/cx/docs/concept/training).
|
2202
2226
|
# @param [String] name
|
2203
2227
|
# The unique identifier of the transition route group. TransitionRouteGroups.
|
2204
2228
|
# CreateTransitionRouteGroup populates the name automatically. Format: `projects/
|
@@ -2450,7 +2474,9 @@ module Google
|
|
2450
2474
|
execute_or_queue_command(command, &block)
|
2451
2475
|
end
|
2452
2476
|
|
2453
|
-
# Creates an intent in the specified agent.
|
2477
|
+
# Creates an intent in the specified agent. Note: You should always train a flow
|
2478
|
+
# prior to sending it queries. See the [training documentation](https://cloud.
|
2479
|
+
# google.com/dialogflow/cx/docs/concept/training).
|
2454
2480
|
# @param [String] parent
|
2455
2481
|
# Required. The agent to create an intent for. Format: `projects//locations//
|
2456
2482
|
# agents/`.
|
@@ -2491,7 +2517,9 @@ module Google
|
|
2491
2517
|
execute_or_queue_command(command, &block)
|
2492
2518
|
end
|
2493
2519
|
|
2494
|
-
# Deletes the specified intent.
|
2520
|
+
# Deletes the specified intent. Note: You should always train a flow prior to
|
2521
|
+
# sending it queries. See the [training documentation](https://cloud.google.com/
|
2522
|
+
# dialogflow/cx/docs/concept/training).
|
2495
2523
|
# @param [String] name
|
2496
2524
|
# Required. The name of the intent to delete. Format: `projects//locations//
|
2497
2525
|
# agents//intents/`.
|
@@ -2608,7 +2636,9 @@ module Google
|
|
2608
2636
|
execute_or_queue_command(command, &block)
|
2609
2637
|
end
|
2610
2638
|
|
2611
|
-
# Updates the specified intent.
|
2639
|
+
# Updates the specified intent. Note: You should always train a flow prior to
|
2640
|
+
# sending it queries. See the [training documentation](https://cloud.google.com/
|
2641
|
+
# dialogflow/cx/docs/concept/training).
|
2612
2642
|
# @param [String] name
|
2613
2643
|
# The unique identifier of the intent. Required for the Intents.UpdateIntent
|
2614
2644
|
# method. Intents.CreateIntent populates the name automatically. Format: `
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Dialogflow API V3beta1. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.19.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3beta1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|