google-apis-dialogflow_v3 0.29.0 → 0.30.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: 946085329dd46a3d32d2d7140129f3cb78df7d233a4f7b1f288b74c287ad82a1
|
|
4
|
+
data.tar.gz: 8e7dc072826b23aa8124147d2d6a7c81ea8b937b6a9b4fa764ba1839692a5a83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc057ea40fe6672a600b8868637ccf48914b1b94de25109d3ab532869828b340ebbec851f92d1fe0b1d01c5209d2449ceaf8a10c5a2032225d3e0237eb54a512
|
|
7
|
+
data.tar.gz: df283012dfc8cbf29f9988ae3d7ff63a9059c9a93812028da6c374742c9df8d56a8cda6c6bd1fa50812ae2cc98f08250eae19a1e4fafe81be193f1ffd2f01020
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -15594,8 +15609,7 @@ module Google
|
|
|
15594
15609
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
|
15595
15610
|
# messages in your APIs. A typical example is to use it as the request or the
|
|
15596
15611
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
|
15597
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
|
15598
|
-
# `Empty` is empty JSON object ````.
|
|
15612
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
|
15599
15613
|
class GoogleProtobufEmpty
|
|
15600
15614
|
include Google::Apis::Core::Hashable
|
|
15601
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.30.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 = "20220330"
|
|
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
|
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.30.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-04 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.30.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: []
|