google-apis-dialogflow_v3beta1 0.31.0 → 0.32.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: 4b109ff9e7c6243279e690399fb9e921f610c74ff06a00d6c04434a813b71b24
|
4
|
+
data.tar.gz: c655a272f16d933316745365e2a7cb56b4b76b2a4632eb14e4fa1b13f2da6ae2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fadcd5e9378ae193eaff2e4734e2395932387d437d510638a8d36591a8fd196bf86a2f0f1c9e282f1cef8085ec74f51492b2547896117832a7aa4c8e41608d9f
|
7
|
+
data.tar.gz: df66af445b1fa4f18849561bca41653142b4421263cb0d09883687527f21c294978a36bfa4b253394b728b104706ea231eb45a495baf1138d2dfbe23aeb79155
|
data/CHANGELOG.md
CHANGED
@@ -2879,6 +2879,13 @@ module Google
|
|
2879
2879
|
attr_accessor :enable_stackdriver_logging
|
2880
2880
|
alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
|
2881
2881
|
|
2882
|
+
# Indiciates whether the agent is locked for changes. If the agent is locked,
|
2883
|
+
# modifications to the agent will be rejected except for RestoreAgent.
|
2884
|
+
# Corresponds to the JSON property `locked`
|
2885
|
+
# @return [Boolean]
|
2886
|
+
attr_accessor :locked
|
2887
|
+
alias_method :locked?, :locked
|
2888
|
+
|
2882
2889
|
# The unique identifier of the agent. Required for the Agents.UpdateAgent method.
|
2883
2890
|
# Agents.CreateAgent populates the name automatically. Format: `projects//
|
2884
2891
|
# locations//agents/`.
|
@@ -2929,6 +2936,7 @@ module Google
|
|
2929
2936
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2930
2937
|
@enable_spell_correction = args[:enable_spell_correction] if args.key?(:enable_spell_correction)
|
2931
2938
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
2939
|
+
@locked = args[:locked] if args.key?(:locked)
|
2932
2940
|
@name = args[:name] if args.key?(:name)
|
2933
2941
|
@security_settings = args[:security_settings] if args.key?(:security_settings)
|
2934
2942
|
@speech_to_text_settings = args[:speech_to_text_settings] if args.key?(:speech_to_text_settings)
|
@@ -4381,6 +4389,12 @@ module Google
|
|
4381
4389
|
# @return [String]
|
4382
4390
|
attr_accessor :agent_uri
|
4383
4391
|
|
4392
|
+
# Optional. The data format of the exported agent. If not specified, `BLOB` is
|
4393
|
+
# assumed.
|
4394
|
+
# Corresponds to the JSON property `dataFormat`
|
4395
|
+
# @return [String]
|
4396
|
+
attr_accessor :data_format
|
4397
|
+
|
4384
4398
|
# Optional. Environment name. If not set, draft environment is assumed. Format: `
|
4385
4399
|
# projects//locations//agents//environments/`.
|
4386
4400
|
# Corresponds to the JSON property `environment`
|
@@ -4394,6 +4408,7 @@ module Google
|
|
4394
4408
|
# Update properties of this object
|
4395
4409
|
def update!(**args)
|
4396
4410
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
4411
|
+
@data_format = args[:data_format] if args.key?(:data_format)
|
4397
4412
|
@environment = args[:environment] if args.key?(:environment)
|
4398
4413
|
end
|
4399
4414
|
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 DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.32.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
|
@@ -3375,6 +3375,7 @@ module Google
|
|
3375
3375
|
property :display_name, as: 'displayName'
|
3376
3376
|
property :enable_spell_correction, as: 'enableSpellCorrection'
|
3377
3377
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
3378
|
+
property :locked, as: 'locked'
|
3378
3379
|
property :name, as: 'name'
|
3379
3380
|
property :security_settings, as: 'securitySettings'
|
3380
3381
|
property :speech_to_text_settings, as: 'speechToTextSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SpeechToTextSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SpeechToTextSettings::Representation
|
@@ -3788,6 +3789,7 @@ module Google
|
|
3788
3789
|
# @private
|
3789
3790
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3790
3791
|
property :agent_uri, as: 'agentUri'
|
3792
|
+
property :data_format, as: 'dataFormat'
|
3791
3793
|
property :environment, as: 'environment'
|
3792
3794
|
end
|
3793
3795
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.32.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_v3beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.32.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|