google-apis-dialogflow_v3 0.15.0 → 0.19.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f673a4ce54d1db6f0d7a915c211436e14f38b57550625bc870d054b6647168d
|
4
|
+
data.tar.gz: 0fe671071c1b1bf071e31b4dc0b851df976fc0a9d151a39596a3a4db195d0763
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 348209a7a31b68be93c4ec093b51a27a2775ad6a9807ac98c6798e6ef937dac1ee24489251899792094f38698e02b309cc05ed6d3bfb77d9294cfdf607e9cc1a
|
7
|
+
data.tar.gz: 38b96573c88579c0b0988c9aac96afb53b7c765543651bc1ae39ea549506c36eddcab48f529f87eb6803ba88acd9dffd945c5f3c6bcdff990453d83a8b1c832a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
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
|
@@ -22,6 +22,54 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DialogflowV3
|
24
24
|
|
25
|
+
# Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
|
26
|
+
# Settings exposed at lower level overrides the settings exposed at higher level.
|
27
|
+
# Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
|
28
|
+
class GoogleCloudDialogflowCxV3AdvancedSettings
|
29
|
+
include Google::Apis::Core::Hashable
|
30
|
+
|
31
|
+
# Define behaviors on logging.
|
32
|
+
# Corresponds to the JSON property `loggingSettings`
|
33
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings]
|
34
|
+
attr_accessor :logging_settings
|
35
|
+
|
36
|
+
def initialize(**args)
|
37
|
+
update!(**args)
|
38
|
+
end
|
39
|
+
|
40
|
+
# Update properties of this object
|
41
|
+
def update!(**args)
|
42
|
+
@logging_settings = args[:logging_settings] if args.key?(:logging_settings)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# Define behaviors on logging.
|
47
|
+
class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
|
48
|
+
include Google::Apis::Core::Hashable
|
49
|
+
|
50
|
+
# If true, DF Interaction logging is currently enabled.
|
51
|
+
# Corresponds to the JSON property `enableInteractionLogging`
|
52
|
+
# @return [Boolean]
|
53
|
+
attr_accessor :enable_interaction_logging
|
54
|
+
alias_method :enable_interaction_logging?, :enable_interaction_logging
|
55
|
+
|
56
|
+
# If true, StackDriver logging is currently enabled.
|
57
|
+
# Corresponds to the JSON property `enableStackdriverLogging`
|
58
|
+
# @return [Boolean]
|
59
|
+
attr_accessor :enable_stackdriver_logging
|
60
|
+
alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
|
61
|
+
|
62
|
+
def initialize(**args)
|
63
|
+
update!(**args)
|
64
|
+
end
|
65
|
+
|
66
|
+
# Update properties of this object
|
67
|
+
def update!(**args)
|
68
|
+
@enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
|
69
|
+
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
25
73
|
# Agents are best described as Natural Language Understanding (NLU) modules that
|
26
74
|
# transform user requests into actionable data. You can include agents in your
|
27
75
|
# app, product, or service to determine user intent and respond to the user in a
|
@@ -30,6 +78,13 @@ module Google
|
|
30
78
|
class GoogleCloudDialogflowCxV3Agent
|
31
79
|
include Google::Apis::Core::Hashable
|
32
80
|
|
81
|
+
# Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
|
82
|
+
# Settings exposed at lower level overrides the settings exposed at higher level.
|
83
|
+
# Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
|
84
|
+
# Corresponds to the JSON property `advancedSettings`
|
85
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings]
|
86
|
+
attr_accessor :advanced_settings
|
87
|
+
|
33
88
|
# The URI of the agent's avatar. Avatars are used throughout the Dialogflow
|
34
89
|
# console and in the self-hosted [Web Demo](https://cloud.google.com/dialogflow/
|
35
90
|
# docs/integrations/web-demo) integration.
|
@@ -62,7 +117,8 @@ module Google
|
|
62
117
|
attr_accessor :enable_spell_correction
|
63
118
|
alias_method :enable_spell_correction?, :enable_spell_correction
|
64
119
|
|
65
|
-
# Indicates if stackdriver logging is enabled for the agent.
|
120
|
+
# Indicates if stackdriver logging is enabled for the agent. Please use agent.
|
121
|
+
# advanced_settings instead.
|
66
122
|
# Corresponds to the JSON property `enableStackdriverLogging`
|
67
123
|
# @return [Boolean]
|
68
124
|
attr_accessor :enable_stackdriver_logging
|
@@ -111,6 +167,7 @@ module Google
|
|
111
167
|
|
112
168
|
# Update properties of this object
|
113
169
|
def update!(**args)
|
170
|
+
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
114
171
|
@avatar_uri = args[:avatar_uri] if args.key?(:avatar_uri)
|
115
172
|
@default_language_code = args[:default_language_code] if args.key?(:default_language_code)
|
116
173
|
@description = args[:description] if args.key?(:description)
|
@@ -988,9 +1045,11 @@ module Google
|
|
988
1045
|
# @return [String]
|
989
1046
|
attr_accessor :end_time
|
990
1047
|
|
991
|
-
# Maximum number of days to run the
|
992
|
-
#
|
993
|
-
# default value and maximum will be
|
1048
|
+
# LINT.IfChange(default_experiment_length) Maximum number of days to run the
|
1049
|
+
# experiment/rollout. If auto-rollout is not enabled, default value and maximum
|
1050
|
+
# will be 30 days. If auto-rollout is enabled, default value and maximum will be
|
1051
|
+
# 6 days. LINT.ThenChange(//depot/google3/cloud/ml/api/conversation/analytics/
|
1052
|
+
# compute.cc:default_experiment_length)
|
994
1053
|
# Corresponds to the JSON property `experimentLength`
|
995
1054
|
# @return [String]
|
996
1055
|
attr_accessor :experiment_length
|
@@ -1017,9 +1076,9 @@ module Google
|
|
1017
1076
|
# @return [String]
|
1018
1077
|
attr_accessor :start_time
|
1019
1078
|
|
1020
|
-
# The current state of the experiment. Transition triggered by
|
1021
|
-
# StartExperiment:
|
1022
|
-
# CancelExperiment:
|
1079
|
+
# The current state of the experiment. Transition triggered by Experiments.
|
1080
|
+
# StartExperiment: DRAFT->RUNNING. Transition triggered by Experiments.
|
1081
|
+
# CancelExperiment: DRAFT->DONE or RUNNING->DONE.
|
1023
1082
|
# Corresponds to the JSON property `state`
|
1024
1083
|
# @return [String]
|
1025
1084
|
attr_accessor :state
|
@@ -2203,9 +2262,9 @@ module Google
|
|
2203
2262
|
# letters, digits and the symbols '-' and '_'. International characters are
|
2204
2263
|
# allowed, including letters from unicase alphabets. Keys must start with a
|
2205
2264
|
# letter. Keys and values can be no longer than 63 characters and no more than
|
2206
|
-
# 128 bytes. Prefix "sys
|
2207
|
-
# allowed Dialogflow defined labels include: * sys
|
2208
|
-
# above labels do not require value. "sys
|
2265
|
+
# 128 bytes. Prefix "sys-" is reserved for Dialogflow defined labels. Currently
|
2266
|
+
# allowed Dialogflow defined labels include: * sys-head * sys-contextual The
|
2267
|
+
# above labels do not require value. "sys-head" means the intent is a head
|
2209
2268
|
# intent. "sys.contextual" means the intent is a contextual intent.
|
2210
2269
|
# Corresponds to the JSON property `labels`
|
2211
2270
|
# @return [Hash<String,String>]
|
@@ -3406,6 +3465,15 @@ module Google
|
|
3406
3465
|
attr_accessor :disable_webhook
|
3407
3466
|
alias_method :disable_webhook?, :disable_webhook
|
3408
3467
|
|
3468
|
+
# A list of flow versions to override for the request. Format: `projects//
|
3469
|
+
# locations//agents//flows//versions/`. If version 1 of flow X is included in
|
3470
|
+
# this list, the traffic of flow X will go through version 1 regardless of the
|
3471
|
+
# version configuration in the environment. Each flow can have at most one
|
3472
|
+
# version specified in this list.
|
3473
|
+
# Corresponds to the JSON property `flowVersions`
|
3474
|
+
# @return [Array<String>]
|
3475
|
+
attr_accessor :flow_versions
|
3476
|
+
|
3409
3477
|
# An object that represents a latitude/longitude pair. This is expressed as a
|
3410
3478
|
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
3411
3479
|
# specified otherwise, this object must conform to the WGS84 standard. Values
|
@@ -3473,6 +3541,7 @@ module Google
|
|
3473
3541
|
@analyze_query_text_sentiment = args[:analyze_query_text_sentiment] if args.key?(:analyze_query_text_sentiment)
|
3474
3542
|
@current_page = args[:current_page] if args.key?(:current_page)
|
3475
3543
|
@disable_webhook = args[:disable_webhook] if args.key?(:disable_webhook)
|
3544
|
+
@flow_versions = args[:flow_versions] if args.key?(:flow_versions)
|
3476
3545
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
3477
3546
|
@parameters = args[:parameters] if args.key?(:parameters)
|
3478
3547
|
@payload = args[:payload] if args.key?(:payload)
|
@@ -4124,10 +4193,17 @@ module Google
|
|
4124
4193
|
# @return [String]
|
4125
4194
|
attr_accessor :display_name
|
4126
4195
|
|
4127
|
-
#
|
4128
|
-
#
|
4129
|
-
#
|
4130
|
-
#
|
4196
|
+
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
4197
|
+
# dialogflow/priv/docs/insights).
|
4198
|
+
# Corresponds to the JSON property `insightsExportSettings`
|
4199
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings]
|
4200
|
+
attr_accessor :insights_export_settings
|
4201
|
+
|
4202
|
+
# [DLP](https://cloud.google.com/dlp/docs) inspect template name. Use this
|
4203
|
+
# template to define inspect base settings. If empty, we use the default DLP
|
4204
|
+
# inspect config. The template name will have one of the following formats: `
|
4205
|
+
# projects//inspectTemplates/` OR `projects//locations//inspectTemplates/` OR `
|
4206
|
+
# organizations//inspectTemplates/`
|
4131
4207
|
# Corresponds to the JSON property `inspectTemplate`
|
4132
4208
|
# @return [String]
|
4133
4209
|
attr_accessor :inspect_template
|
@@ -4171,6 +4247,7 @@ module Google
|
|
4171
4247
|
# Update properties of this object
|
4172
4248
|
def update!(**args)
|
4173
4249
|
@display_name = args[:display_name] if args.key?(:display_name)
|
4250
|
+
@insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
|
4174
4251
|
@inspect_template = args[:inspect_template] if args.key?(:inspect_template)
|
4175
4252
|
@name = args[:name] if args.key?(:name)
|
4176
4253
|
@purge_data_types = args[:purge_data_types] if args.key?(:purge_data_types)
|
@@ -4180,6 +4257,28 @@ module Google
|
|
4180
4257
|
end
|
4181
4258
|
end
|
4182
4259
|
|
4260
|
+
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
4261
|
+
# dialogflow/priv/docs/insights).
|
4262
|
+
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
4263
|
+
include Google::Apis::Core::Hashable
|
4264
|
+
|
4265
|
+
# If enabled, we will automatically exports conversations to Insights and
|
4266
|
+
# Insights runs its analyzers.
|
4267
|
+
# Corresponds to the JSON property `enableInsightsExport`
|
4268
|
+
# @return [Boolean]
|
4269
|
+
attr_accessor :enable_insights_export
|
4270
|
+
alias_method :enable_insights_export?, :enable_insights_export
|
4271
|
+
|
4272
|
+
def initialize(**args)
|
4273
|
+
update!(**args)
|
4274
|
+
end
|
4275
|
+
|
4276
|
+
# Update properties of this object
|
4277
|
+
def update!(**args)
|
4278
|
+
@enable_insights_export = args[:enable_insights_export] if args.key?(:enable_insights_export)
|
4279
|
+
end
|
4280
|
+
end
|
4281
|
+
|
4183
4282
|
# The result of sentiment analysis. Sentiment analysis inspects user input and
|
4184
4283
|
# identifies the prevailing subjective opinion, especially to determine a user's
|
4185
4284
|
# attitude as positive, negative, or neutral.
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3
|
18
18
|
# Version of the google-apis-dialogflow_v3 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
|
@@ -22,6 +22,18 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DialogflowV3
|
24
24
|
|
25
|
+
class GoogleCloudDialogflowCxV3AdvancedSettings
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
25
37
|
class GoogleCloudDialogflowCxV3Agent
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
39
|
|
@@ -706,6 +718,12 @@ module Google
|
|
706
718
|
include Google::Apis::Core::JsonObjectSupport
|
707
719
|
end
|
708
720
|
|
721
|
+
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
722
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
723
|
+
|
724
|
+
include Google::Apis::Core::JsonObjectSupport
|
725
|
+
end
|
726
|
+
|
709
727
|
class GoogleCloudDialogflowCxV3SentimentAnalysisResult
|
710
728
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
711
729
|
|
@@ -2278,9 +2296,27 @@ module Google
|
|
2278
2296
|
include Google::Apis::Core::JsonObjectSupport
|
2279
2297
|
end
|
2280
2298
|
|
2299
|
+
class GoogleCloudDialogflowCxV3AdvancedSettings
|
2300
|
+
# @private
|
2301
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2302
|
+
property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings::Representation
|
2303
|
+
|
2304
|
+
end
|
2305
|
+
end
|
2306
|
+
|
2307
|
+
class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
|
2308
|
+
# @private
|
2309
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2310
|
+
property :enable_interaction_logging, as: 'enableInteractionLogging'
|
2311
|
+
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
2312
|
+
end
|
2313
|
+
end
|
2314
|
+
|
2281
2315
|
class GoogleCloudDialogflowCxV3Agent
|
2282
2316
|
# @private
|
2283
2317
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2318
|
+
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings::Representation
|
2319
|
+
|
2284
2320
|
property :avatar_uri, as: 'avatarUri'
|
2285
2321
|
property :default_language_code, as: 'defaultLanguageCode'
|
2286
2322
|
property :description, as: 'description'
|
@@ -3210,6 +3246,7 @@ module Google
|
|
3210
3246
|
property :analyze_query_text_sentiment, as: 'analyzeQueryTextSentiment'
|
3211
3247
|
property :current_page, as: 'currentPage'
|
3212
3248
|
property :disable_webhook, as: 'disableWebhook'
|
3249
|
+
collection :flow_versions, as: 'flowVersions'
|
3213
3250
|
property :geo_location, as: 'geoLocation', class: Google::Apis::DialogflowV3::GoogleTypeLatLng, decorator: Google::Apis::DialogflowV3::GoogleTypeLatLng::Representation
|
3214
3251
|
|
3215
3252
|
hash :parameters, as: 'parameters'
|
@@ -3403,6 +3440,8 @@ module Google
|
|
3403
3440
|
# @private
|
3404
3441
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3405
3442
|
property :display_name, as: 'displayName'
|
3443
|
+
property :insights_export_settings, as: 'insightsExportSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings::Representation
|
3444
|
+
|
3406
3445
|
property :inspect_template, as: 'inspectTemplate'
|
3407
3446
|
property :name, as: 'name'
|
3408
3447
|
collection :purge_data_types, as: 'purgeDataTypes'
|
@@ -3412,6 +3451,13 @@ module Google
|
|
3412
3451
|
end
|
3413
3452
|
end
|
3414
3453
|
|
3454
|
+
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
3455
|
+
# @private
|
3456
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3457
|
+
property :enable_insights_export, as: 'enableInsightsExport'
|
3458
|
+
end
|
3459
|
+
end
|
3460
|
+
|
3415
3461
|
class GoogleCloudDialogflowCxV3SentimentAnalysisResult
|
3416
3462
|
# @private
|
3417
3463
|
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
|
54
|
+
# flows prior to sending them 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::DialogflowV3::GoogleCloudDialogflowCxV3Agent] google_cloud_dialogflow_cx_v3_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 flows prior to
|
256
|
+
# sending them queries. See the [training documentation](https://cloud.google.
|
257
|
+
# com/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 flows
|
299
|
+
# prior to sending them 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/`.
|
@@ -360,7 +366,9 @@ module Google
|
|
360
366
|
execute_or_queue_command(command, &block)
|
361
367
|
end
|
362
368
|
|
363
|
-
# Creates an entity type in the specified agent.
|
369
|
+
# Creates an entity type in the specified agent. Note: You should always train a
|
370
|
+
# flow prior to sending it queries. See the [training documentation](https://
|
371
|
+
# cloud.google.com/dialogflow/cx/docs/concept/training).
|
364
372
|
# @param [String] parent
|
365
373
|
# Required. The agent to create a entity type for. Format: `projects//locations//
|
366
374
|
# agents/`.
|
@@ -401,7 +409,9 @@ module Google
|
|
401
409
|
execute_or_queue_command(command, &block)
|
402
410
|
end
|
403
411
|
|
404
|
-
# Deletes the specified entity type.
|
412
|
+
# Deletes the specified entity type. Note: You should always train a flow prior
|
413
|
+
# to sending it queries. See the [training documentation](https://cloud.google.
|
414
|
+
# com/dialogflow/cx/docs/concept/training).
|
405
415
|
# @param [String] name
|
406
416
|
# Required. The name of the entity type to delete. Format: `projects//locations//
|
407
417
|
# agents//entityTypes/`.
|
@@ -525,7 +535,9 @@ module Google
|
|
525
535
|
execute_or_queue_command(command, &block)
|
526
536
|
end
|
527
537
|
|
528
|
-
# Updates the specified entity type.
|
538
|
+
# Updates the specified entity type. Note: You should always train a flow prior
|
539
|
+
# to sending it queries. See the [training documentation](https://cloud.google.
|
540
|
+
# com/dialogflow/cx/docs/concept/training).
|
529
541
|
# @param [String] name
|
530
542
|
# The unique identifier of the entity type. Required for EntityTypes.
|
531
543
|
# UpdateEntityType. Format: `projects//locations//agents//entityTypes/`.
|
@@ -1399,7 +1411,9 @@ module Google
|
|
1399
1411
|
execute_or_queue_command(command, &block)
|
1400
1412
|
end
|
1401
1413
|
|
1402
|
-
# Creates a flow in the specified agent.
|
1414
|
+
# Creates a flow in the specified agent. Note: You should always train a flow
|
1415
|
+
# prior to sending it queries. See the [training documentation](https://cloud.
|
1416
|
+
# google.com/dialogflow/cx/docs/concept/training).
|
1403
1417
|
# @param [String] parent
|
1404
1418
|
# Required. The agent to create a flow for. Format: `projects//locations//agents/
|
1405
1419
|
# `.
|
@@ -1592,7 +1606,9 @@ module Google
|
|
1592
1606
|
execute_or_queue_command(command, &block)
|
1593
1607
|
end
|
1594
1608
|
|
1595
|
-
# Imports the specified flow to the specified agent from a binary file.
|
1609
|
+
# Imports the specified flow to the specified agent from a binary file. Note:
|
1610
|
+
# You should always train a flow prior to sending it queries. See the [training
|
1611
|
+
# documentation](https://cloud.google.com/dialogflow/cx/docs/concept/training).
|
1596
1612
|
# @param [String] parent
|
1597
1613
|
# Required. The agent to import the flow into. Format: `projects//locations//
|
1598
1614
|
# agents/`.
|
@@ -1674,7 +1690,9 @@ module Google
|
|
1674
1690
|
execute_or_queue_command(command, &block)
|
1675
1691
|
end
|
1676
1692
|
|
1677
|
-
# Updates the specified flow.
|
1693
|
+
# Updates the specified flow. Note: You should always train a flow prior to
|
1694
|
+
# sending it queries. See the [training documentation](https://cloud.google.com/
|
1695
|
+
# dialogflow/cx/docs/concept/training).
|
1678
1696
|
# @param [String] name
|
1679
1697
|
# The unique identifier of the flow. Format: `projects//locations//agents//flows/
|
1680
1698
|
# `.
|
@@ -1722,7 +1740,9 @@ module Google
|
|
1722
1740
|
end
|
1723
1741
|
|
1724
1742
|
# Trains the specified flow. Note that only the flow in 'draft' environment is
|
1725
|
-
# trained.
|
1743
|
+
# trained. Note: You should always train a flow prior to sending it queries. See
|
1744
|
+
# the [training documentation](https://cloud.google.com/dialogflow/cx/docs/
|
1745
|
+
# concept/training).
|
1726
1746
|
# @param [String] name
|
1727
1747
|
# Required. The flow to train. Format: `projects//locations//agents//flows/`.
|
1728
1748
|
# @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TrainFlowRequest] google_cloud_dialogflow_cx_v3_train_flow_request_object
|
@@ -1790,7 +1810,9 @@ module Google
|
|
1790
1810
|
execute_or_queue_command(command, &block)
|
1791
1811
|
end
|
1792
1812
|
|
1793
|
-
# Creates a page in the specified flow.
|
1813
|
+
# Creates a page in the specified flow. Note: You should always train a flow
|
1814
|
+
# prior to sending it queries. See the [training documentation](https://cloud.
|
1815
|
+
# google.com/dialogflow/cx/docs/concept/training).
|
1794
1816
|
# @param [String] parent
|
1795
1817
|
# Required. The flow to create a page for. Format: `projects//locations//agents//
|
1796
1818
|
# flows/`.
|
@@ -1839,7 +1861,9 @@ module Google
|
|
1839
1861
|
execute_or_queue_command(command, &block)
|
1840
1862
|
end
|
1841
1863
|
|
1842
|
-
# Deletes the specified page.
|
1864
|
+
# Deletes the specified page. Note: You should always train a flow prior to
|
1865
|
+
# sending it queries. See the [training documentation](https://cloud.google.com/
|
1866
|
+
# dialogflow/cx/docs/concept/training).
|
1843
1867
|
# @param [String] name
|
1844
1868
|
# Required. The name of the page to delete. Format: `projects//locations//agents/
|
1845
1869
|
# /Flows//pages/`.
|
@@ -1977,7 +2001,9 @@ module Google
|
|
1977
2001
|
execute_or_queue_command(command, &block)
|
1978
2002
|
end
|
1979
2003
|
|
1980
|
-
# Updates the specified page.
|
2004
|
+
# Updates the specified page. Note: You should always train a flow prior to
|
2005
|
+
# sending it queries. See the [training documentation](https://cloud.google.com/
|
2006
|
+
# dialogflow/cx/docs/concept/training).
|
1981
2007
|
# @param [String] name
|
1982
2008
|
# The unique identifier of the page. Required for the Pages.UpdatePage method.
|
1983
2009
|
# Pages.CreatePage populates the name automatically. Format: `projects//
|
@@ -2031,7 +2057,9 @@ module Google
|
|
2031
2057
|
execute_or_queue_command(command, &block)
|
2032
2058
|
end
|
2033
2059
|
|
2034
|
-
# Creates an TransitionRouteGroup in the specified flow.
|
2060
|
+
# Creates an TransitionRouteGroup in the specified flow. Note: You should always
|
2061
|
+
# train a flow prior to sending it queries. See the [training documentation](
|
2062
|
+
# https://cloud.google.com/dialogflow/cx/docs/concept/training).
|
2035
2063
|
# @param [String] parent
|
2036
2064
|
# Required. The flow to create an TransitionRouteGroup for. Format: `projects//
|
2037
2065
|
# locations//agents//flows/`.
|
@@ -2073,7 +2101,9 @@ module Google
|
|
2073
2101
|
execute_or_queue_command(command, &block)
|
2074
2102
|
end
|
2075
2103
|
|
2076
|
-
# Deletes the specified TransitionRouteGroup.
|
2104
|
+
# Deletes the specified TransitionRouteGroup. Note: You should always train a
|
2105
|
+
# flow prior to sending it queries. See the [training documentation](https://
|
2106
|
+
# cloud.google.com/dialogflow/cx/docs/concept/training).
|
2077
2107
|
# @param [String] name
|
2078
2108
|
# Required. The name of the TransitionRouteGroup to delete. Format: `projects//
|
2079
2109
|
# locations//agents//flows//transitionRouteGroups/`.
|
@@ -2198,7 +2228,9 @@ module Google
|
|
2198
2228
|
execute_or_queue_command(command, &block)
|
2199
2229
|
end
|
2200
2230
|
|
2201
|
-
# Updates the specified TransitionRouteGroup.
|
2231
|
+
# Updates the specified TransitionRouteGroup. Note: You should always train a
|
2232
|
+
# flow prior to sending it queries. See the [training documentation](https://
|
2233
|
+
# cloud.google.com/dialogflow/cx/docs/concept/training).
|
2202
2234
|
# @param [String] name
|
2203
2235
|
# The unique identifier of the transition route group. TransitionRouteGroups.
|
2204
2236
|
# CreateTransitionRouteGroup populates the name automatically. Format: `projects/
|
@@ -2450,7 +2482,9 @@ module Google
|
|
2450
2482
|
execute_or_queue_command(command, &block)
|
2451
2483
|
end
|
2452
2484
|
|
2453
|
-
# Creates an intent in the specified agent.
|
2485
|
+
# Creates an intent in the specified agent. Note: You should always train a flow
|
2486
|
+
# prior to sending it queries. See the [training documentation](https://cloud.
|
2487
|
+
# google.com/dialogflow/cx/docs/concept/training).
|
2454
2488
|
# @param [String] parent
|
2455
2489
|
# Required. The agent to create an intent for. Format: `projects//locations//
|
2456
2490
|
# agents/`.
|
@@ -2491,7 +2525,9 @@ module Google
|
|
2491
2525
|
execute_or_queue_command(command, &block)
|
2492
2526
|
end
|
2493
2527
|
|
2494
|
-
# Deletes the specified intent.
|
2528
|
+
# Deletes the specified intent. Note: You should always train a flow prior to
|
2529
|
+
# sending it queries. See the [training documentation](https://cloud.google.com/
|
2530
|
+
# dialogflow/cx/docs/concept/training).
|
2495
2531
|
# @param [String] name
|
2496
2532
|
# Required. The name of the intent to delete. Format: `projects//locations//
|
2497
2533
|
# agents//intents/`.
|
@@ -2608,7 +2644,9 @@ module Google
|
|
2608
2644
|
execute_or_queue_command(command, &block)
|
2609
2645
|
end
|
2610
2646
|
|
2611
|
-
# Updates the specified intent.
|
2647
|
+
# Updates the specified intent. Note: You should always train a flow prior to
|
2648
|
+
# sending it queries. See the [training documentation](https://cloud.google.com/
|
2649
|
+
# dialogflow/cx/docs/concept/training).
|
2612
2650
|
# @param [String] name
|
2613
2651
|
# The unique identifier of the intent. Required for the Intents.UpdateIntent
|
2614
2652
|
# 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_v3
|
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 V3. Simple REST clients
|
28
34
|
are Ruby client libraries that provide access to Google services via their HTTP
|
29
35
|
REST API endpoints. These libraries are generated and updated automatically based
|
@@ -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_v3/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.19.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|