google-apis-dialogflow_v3 0.15.0 → 0.16.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 653e9311107f24d3f694b9013daf92c5fdf41a121732fff0d3b79b8d5b36d646
|
|
4
|
+
data.tar.gz: fb4d92467ee1e6dad7b6a9ad5bd10f31e4be7bb778f99517436f315e595556f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d22f0f63346ee2146c06bc092008cdd37f2866e773d91cab4dfa08992f4a15b9b64f437418a41a5f76fb9fc8b8fdf2db6e2c8d7e11215dc707e42626590ef517
|
|
7
|
+
data.tar.gz: d8e13294c6703f8e1de5721e59992bf0708f2bde80fd67b519701c75078bde5b2dacadd71744d371e0543a64abc66311c7e918632d87fcfa8ce48fe26b8f116f
|
data/CHANGELOG.md
CHANGED
|
@@ -2203,9 +2203,9 @@ module Google
|
|
|
2203
2203
|
# letters, digits and the symbols '-' and '_'. International characters are
|
|
2204
2204
|
# allowed, including letters from unicase alphabets. Keys must start with a
|
|
2205
2205
|
# 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
|
|
2206
|
+
# 128 bytes. Prefix "sys-" is reserved for Dialogflow defined labels. Currently
|
|
2207
|
+
# allowed Dialogflow defined labels include: * sys-head * sys-contextual The
|
|
2208
|
+
# above labels do not require value. "sys-head" means the intent is a head
|
|
2209
2209
|
# intent. "sys.contextual" means the intent is a contextual intent.
|
|
2210
2210
|
# Corresponds to the JSON property `labels`
|
|
2211
2211
|
# @return [Hash<String,String>]
|
|
@@ -4124,10 +4124,11 @@ module Google
|
|
|
4124
4124
|
# @return [String]
|
|
4125
4125
|
attr_accessor :display_name
|
|
4126
4126
|
|
|
4127
|
-
# DLP inspect template name. Use this
|
|
4128
|
-
# If empty, we use the default DLP
|
|
4129
|
-
# one of the following formats: `
|
|
4130
|
-
#
|
|
4127
|
+
# [DLP](https://cloud.google.com/dlp/docs) inspect template name. Use this
|
|
4128
|
+
# template to define inspect base settings. If empty, we use the default DLP
|
|
4129
|
+
# inspect config. The template name will have one of the following formats: `
|
|
4130
|
+
# projects//inspectTemplates/` OR `projects//locations//inspectTemplates/` OR `
|
|
4131
|
+
# organizations//inspectTemplates/`
|
|
4131
4132
|
# Corresponds to the JSON property `inspectTemplate`
|
|
4132
4133
|
# @return [String]
|
|
4133
4134
|
attr_accessor :inspect_template
|
|
@@ -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.16.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.3.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210618"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -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.16.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-06-
|
|
11
|
+
date: 2021-06-28 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.3'
|
|
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.3'
|
|
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.16.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: []
|