google-apis-dialogflow_v3beta1 0.15.0 → 0.16.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: e46b5801050199688dd76930e9450e9251533c525baf278b29ee90cb5c996743
|
4
|
+
data.tar.gz: 318b72f6b004260ed8cda1fc77a77557c1d0a3449285a4960cd0e0196bfb0e7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62ff321c97f222c1035a80c4f9c6cb91daaaec475b8d6f72457be8209769f4e30d1f5f54fe293fc4d86e496d0531c8697fe8020d3d1e128e66f7f32423c7016c
|
7
|
+
data.tar.gz: 1ad8ec0a17dff18033aa08dca82000c649bcbca6d99def87a86ff7d7cf2599880445bdd4323e81b5fed7a88174b504d434b5023c3bd113baa0c766d9488e29f4
|
data/CHANGELOG.md
CHANGED
@@ -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>]
|
@@ -6662,10 +6662,11 @@ module Google
|
|
6662
6662
|
# @return [String]
|
6663
6663
|
attr_accessor :display_name
|
6664
6664
|
|
6665
|
-
# DLP inspect template name. Use this
|
6666
|
-
# If empty, we use the default DLP
|
6667
|
-
# one of the following formats: `
|
6668
|
-
#
|
6665
|
+
# [DLP](https://cloud.google.com/dlp/docs) inspect template name. Use this
|
6666
|
+
# template to define inspect base settings. If empty, we use the default DLP
|
6667
|
+
# inspect config. The template name will have one of the following formats: `
|
6668
|
+
# projects//inspectTemplates/` OR `projects//locations//inspectTemplates/` OR `
|
6669
|
+
# organizations//inspectTemplates/`
|
6669
6670
|
# Corresponds to the JSON property `inspectTemplate`
|
6670
6671
|
# @return [String]
|
6671
6672
|
attr_accessor :inspect_template
|
@@ -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.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 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.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 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.16.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: []
|