google-apis-dialogflow_v3 0.28.0 → 0.31.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: 0b018c99ec123396d350673263c9dd8163c0f0ab2bb5a96a275b503b36347392
|
4
|
+
data.tar.gz: a39ac8491b1952362d71a3922e425b86e16123b3816b376b8c8ae71769d47373
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 325a5f6a24a86d631eac60b8aa05c5839d28e4e1c0b9a973ac2a89660309f2634143a4b6c3661e07c11c90f2ec4ff61db7ffd65ab5eec8e852894472edfa1632
|
7
|
+
data.tar.gz: 7ded7a96c2423cd4419f6cde23d74d93babfe6b0c208b0c8330b4421830e5f9abc3850922d08fde568929a31ff81ce1d0f5cae1a94a9497ba63866ed840cb06f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.31.0 (2022-04-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220404
|
6
|
+
|
7
|
+
### v0.30.0 (2022-03-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220330
|
10
|
+
|
11
|
+
### v0.29.0 (2022-03-16)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220314
|
14
|
+
|
3
15
|
### v0.28.0 (2022-03-11)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220309
|
@@ -124,6 +124,13 @@ module Google
|
|
124
124
|
attr_accessor :enable_stackdriver_logging
|
125
125
|
alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
|
126
126
|
|
127
|
+
# Indiciates whether the agent is locked for changes. If the agent is locked,
|
128
|
+
# modifications to the agent will be rejected except for RestoreAgent.
|
129
|
+
# Corresponds to the JSON property `locked`
|
130
|
+
# @return [Boolean]
|
131
|
+
attr_accessor :locked
|
132
|
+
alias_method :locked?, :locked
|
133
|
+
|
127
134
|
# The unique identifier of the agent. Required for the Agents.UpdateAgent method.
|
128
135
|
# Agents.CreateAgent populates the name automatically. Format: `projects//
|
129
136
|
# locations//agents/`.
|
@@ -174,6 +181,7 @@ module Google
|
|
174
181
|
@display_name = args[:display_name] if args.key?(:display_name)
|
175
182
|
@enable_spell_correction = args[:enable_spell_correction] if args.key?(:enable_spell_correction)
|
176
183
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
184
|
+
@locked = args[:locked] if args.key?(:locked)
|
177
185
|
@name = args[:name] if args.key?(:name)
|
178
186
|
@security_settings = args[:security_settings] if args.key?(:security_settings)
|
179
187
|
@speech_to_text_settings = args[:speech_to_text_settings] if args.key?(:speech_to_text_settings)
|
@@ -1626,6 +1634,12 @@ module Google
|
|
1626
1634
|
# @return [String]
|
1627
1635
|
attr_accessor :agent_uri
|
1628
1636
|
|
1637
|
+
# Optional. The data format of the exported agent. If not specified, `BLOB` is
|
1638
|
+
# assumed.
|
1639
|
+
# Corresponds to the JSON property `dataFormat`
|
1640
|
+
# @return [String]
|
1641
|
+
attr_accessor :data_format
|
1642
|
+
|
1629
1643
|
# Optional. Environment name. If not set, draft environment is assumed. Format: `
|
1630
1644
|
# projects//locations//agents//environments/`.
|
1631
1645
|
# Corresponds to the JSON property `environment`
|
@@ -1639,6 +1653,7 @@ module Google
|
|
1639
1653
|
# Update properties of this object
|
1640
1654
|
def update!(**args)
|
1641
1655
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
1656
|
+
@data_format = args[:data_format] if args.key?(:data_format)
|
1642
1657
|
@environment = args[:environment] if args.key?(:environment)
|
1643
1658
|
end
|
1644
1659
|
end
|
@@ -3398,12 +3413,12 @@ module Google
|
|
3398
3413
|
# The collection of parameters extracted from the query. Depending on your
|
3399
3414
|
# protocol or client library language, this is a map, associative array, symbol
|
3400
3415
|
# table, dictionary, or JSON object composed of a collection of (MapKey,
|
3401
|
-
# MapValue) pairs:
|
3402
|
-
# MapValue type:
|
3403
|
-
# depending on parameter value type, could be one of string,
|
3404
|
-
# null, list or map
|
3405
|
-
# composite entity
|
3406
|
-
#
|
3416
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
3417
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
3418
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
3419
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
3420
|
+
# type is a composite entity then use map from composite entity property names
|
3421
|
+
# to property values, otherwise, use parameter value.
|
3407
3422
|
# Corresponds to the JSON property `parameters`
|
3408
3423
|
# @return [Hash<String,Object>]
|
3409
3424
|
attr_accessor :parameters
|
@@ -3901,12 +3916,13 @@ module Google
|
|
3901
3916
|
# You can reference the session parameters in the agent with the following
|
3902
3917
|
# format: $session.params.parameter-id. Depending on your protocol or client
|
3903
3918
|
# library language, this is a map, associative array, symbol table, dictionary,
|
3904
|
-
# or JSON object composed of a collection of (MapKey, MapValue) pairs:
|
3905
|
-
# type: string
|
3906
|
-
# entity type is a composite entity
|
3907
|
-
# type, could be one of string, number, boolean, null, list
|
3908
|
-
# value:
|
3909
|
-
# entity property names to property values
|
3919
|
+
# or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey
|
3920
|
+
# type: string * MapKey value: parameter name * MapValue type: If parameter's
|
3921
|
+
# entity type is a composite entity then use map, otherwise, depending on the
|
3922
|
+
# parameter value type, it could be one of string, number, boolean, null, list
|
3923
|
+
# or map. * MapValue value: If parameter's entity type is a composite entity
|
3924
|
+
# then use map from composite entity property names to property values,
|
3925
|
+
# otherwise, use parameter value.
|
3910
3926
|
# Corresponds to the JSON property `parameters`
|
3911
3927
|
# @return [Hash<String,Object>]
|
3912
3928
|
attr_accessor :parameters
|
@@ -4029,12 +4045,13 @@ module Google
|
|
4029
4045
|
|
4030
4046
|
# The collected session parameters. Depending on your protocol or client library
|
4031
4047
|
# language, this is a map, associative array, symbol table, dictionary, or JSON
|
4032
|
-
# object composed of a collection of (MapKey, MapValue) pairs:
|
4033
|
-
# string
|
4034
|
-
# type is a composite entity
|
4035
|
-
# could be one of string, number, boolean, null, list or map
|
4036
|
-
# If parameter's entity type is a composite entity
|
4037
|
-
# property names to property values
|
4048
|
+
# object composed of a collection of (MapKey, MapValue) pairs: * MapKey type:
|
4049
|
+
# string * MapKey value: parameter name * MapValue type: If parameter's entity
|
4050
|
+
# type is a composite entity then use map, otherwise, depending on the parameter
|
4051
|
+
# value type, it could be one of string, number, boolean, null, list or map. *
|
4052
|
+
# MapValue value: If parameter's entity type is a composite entity then use map
|
4053
|
+
# from composite entity property names to property values, otherwise, use
|
4054
|
+
# parameter value.
|
4038
4055
|
# Corresponds to the JSON property `parameters`
|
4039
4056
|
# @return [Hash<String,Object>]
|
4040
4057
|
attr_accessor :parameters
|
@@ -6003,9 +6020,9 @@ module Google
|
|
6003
6020
|
# empty or unspecified, Dialogflow will use Google's default trust store to
|
6004
6021
|
# verify certificates. N.B. Make sure the HTTPS server certificates are signed
|
6005
6022
|
# with "subject alt name". For instance a certificate can be self-signed using
|
6006
|
-
# the following command, openssl x509 -req -days 200 -in example.com.csr \ -
|
6023
|
+
# the following command, ``` openssl x509 -req -days 200 -in example.com.csr \ -
|
6007
6024
|
# signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
6008
|
-
# nsubjectAltName='DNS:www.example.com'")
|
6025
|
+
# nsubjectAltName='DNS:www.example.com'") ```
|
6009
6026
|
# Corresponds to the JSON property `allowedCaCerts`
|
6010
6027
|
# @return [Array<String>]
|
6011
6028
|
attr_accessor :allowed_ca_certs
|
@@ -15592,8 +15609,7 @@ module Google
|
|
15592
15609
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
15593
15610
|
# messages in your APIs. A typical example is to use it as the request or the
|
15594
15611
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
15595
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
15596
|
-
# `Empty` is empty JSON object ````.
|
15612
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
15597
15613
|
class GoogleProtobufEmpty
|
15598
15614
|
include Google::Apis::Core::Hashable
|
15599
15615
|
|
@@ -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.31.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220404"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2605,6 +2605,7 @@ module Google
|
|
2605
2605
|
property :display_name, as: 'displayName'
|
2606
2606
|
property :enable_spell_correction, as: 'enableSpellCorrection'
|
2607
2607
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
2608
|
+
property :locked, as: 'locked'
|
2608
2609
|
property :name, as: 'name'
|
2609
2610
|
property :security_settings, as: 'securitySettings'
|
2610
2611
|
property :speech_to_text_settings, as: 'speechToTextSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SpeechToTextSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SpeechToTextSettings::Representation
|
@@ -3018,6 +3019,7 @@ module Google
|
|
3018
3019
|
# @private
|
3019
3020
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3020
3021
|
property :agent_uri, as: 'agentUri'
|
3022
|
+
property :data_format, as: 'dataFormat'
|
3021
3023
|
property :environment, as: 'environment'
|
3022
3024
|
end
|
3023
3025
|
end
|
@@ -85,8 +85,8 @@ module Google
|
|
85
85
|
# The resource that owns the locations collection, if applicable.
|
86
86
|
# @param [String] filter
|
87
87
|
# A filter to narrow down results to a preferred subset. The filtering language
|
88
|
-
# accepts strings like "displayName=tokyo"
|
89
|
-
# AIP-160](https://google.aip.dev/160).
|
88
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
89
|
+
# in [AIP-160](https://google.aip.dev/160).
|
90
90
|
# @param [Fixnum] page_size
|
91
91
|
# The maximum number of results to return. If not set, the service selects a
|
92
92
|
# default.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.31.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: 2022-
|
11
|
+
date: 2022-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.31.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|