google-apis-dialogflow_v3beta1 0.30.0 → 0.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/apis/dialogflow_v3beta1/classes.rb +38 -22
- data/lib/google/apis/dialogflow_v3beta1/gem_version.rb +2 -2
- data/lib/google/apis/dialogflow_v3beta1/representations.rb +2 -0
- data/lib/google/apis/dialogflow_v3beta1/service.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 910978ccc4dfca06523354cc78a3022185269035e497a78a681d8f607b6b211b
|
4
|
+
data.tar.gz: c2cc30675e953027efca90e2ea85f6e2df56aadfaa5b9c9e6db26dd7e5db7717
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 737b8e192a67d89f39657a40be3183b14a44df9f243be53e3af4e51e6d8946b31efd1b89dea7178ea7824e972bb0864998cddf64ed66316eda00bbb7c8bd41e1
|
7
|
+
data.tar.gz: 995544a6eafb9f9225caf93561ea21f344bf1295db69de91982b98a77874ed3bf748bec9f47a2b6a60ff99cd88daa9baeb8f29041c25715bbee78374b60ab021
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
2
2
|
|
3
|
+
### v0.33.0 (2022-04-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220404
|
6
|
+
|
7
|
+
### v0.32.0 (2022-03-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220330
|
10
|
+
|
11
|
+
### v0.31.0 (2022-03-16)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220314
|
14
|
+
|
3
15
|
### v0.30.0 (2022-03-11)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220309
|
@@ -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
|
@@ -6153,12 +6168,12 @@ module Google
|
|
6153
6168
|
# The collection of parameters extracted from the query. Depending on your
|
6154
6169
|
# protocol or client library language, this is a map, associative array, symbol
|
6155
6170
|
# table, dictionary, or JSON object composed of a collection of (MapKey,
|
6156
|
-
# MapValue) pairs:
|
6157
|
-
# MapValue type:
|
6158
|
-
# depending on parameter value type, could be one of string,
|
6159
|
-
# null, list or map
|
6160
|
-
# composite entity
|
6161
|
-
#
|
6171
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
6172
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
6173
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
6174
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
6175
|
+
# type is a composite entity then use map from composite entity property names
|
6176
|
+
# to property values, otherwise, use parameter value.
|
6162
6177
|
# Corresponds to the JSON property `parameters`
|
6163
6178
|
# @return [Hash<String,Object>]
|
6164
6179
|
attr_accessor :parameters
|
@@ -6656,12 +6671,13 @@ module Google
|
|
6656
6671
|
# You can reference the session parameters in the agent with the following
|
6657
6672
|
# format: $session.params.parameter-id. Depending on your protocol or client
|
6658
6673
|
# library language, this is a map, associative array, symbol table, dictionary,
|
6659
|
-
# or JSON object composed of a collection of (MapKey, MapValue) pairs:
|
6660
|
-
# type: string
|
6661
|
-
# entity type is a composite entity
|
6662
|
-
# type, could be one of string, number, boolean, null, list
|
6663
|
-
# value:
|
6664
|
-
# entity property names to property values
|
6674
|
+
# or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey
|
6675
|
+
# type: string * MapKey value: parameter name * MapValue type: If parameter's
|
6676
|
+
# entity type is a composite entity then use map, otherwise, depending on the
|
6677
|
+
# parameter value type, it could be one of string, number, boolean, null, list
|
6678
|
+
# or map. * MapValue value: If parameter's entity type is a composite entity
|
6679
|
+
# then use map from composite entity property names to property values,
|
6680
|
+
# otherwise, use parameter value.
|
6665
6681
|
# Corresponds to the JSON property `parameters`
|
6666
6682
|
# @return [Hash<String,Object>]
|
6667
6683
|
attr_accessor :parameters
|
@@ -6784,12 +6800,13 @@ module Google
|
|
6784
6800
|
|
6785
6801
|
# The collected session parameters. Depending on your protocol or client library
|
6786
6802
|
# language, this is a map, associative array, symbol table, dictionary, or JSON
|
6787
|
-
# object composed of a collection of (MapKey, MapValue) pairs:
|
6788
|
-
# string
|
6789
|
-
# type is a composite entity
|
6790
|
-
# could be one of string, number, boolean, null, list or map
|
6791
|
-
# If parameter's entity type is a composite entity
|
6792
|
-
# property names to property values
|
6803
|
+
# object composed of a collection of (MapKey, MapValue) pairs: * MapKey type:
|
6804
|
+
# string * MapKey value: parameter name * MapValue type: If parameter's entity
|
6805
|
+
# type is a composite entity then use map, otherwise, depending on the parameter
|
6806
|
+
# value type, it could be one of string, number, boolean, null, list or map. *
|
6807
|
+
# MapValue value: If parameter's entity type is a composite entity then use map
|
6808
|
+
# from composite entity property names to property values, otherwise, use
|
6809
|
+
# parameter value.
|
6793
6810
|
# Corresponds to the JSON property `parameters`
|
6794
6811
|
# @return [Hash<String,Object>]
|
6795
6812
|
attr_accessor :parameters
|
@@ -8758,9 +8775,9 @@ module Google
|
|
8758
8775
|
# empty or unspecified, Dialogflow will use Google's default trust store to
|
8759
8776
|
# verify certificates. N.B. Make sure the HTTPS server certificates are signed
|
8760
8777
|
# with "subject alt name". For instance a certificate can be self-signed using
|
8761
|
-
# the following command, openssl x509 -req -days 200 -in example.com.csr \ -
|
8778
|
+
# the following command, ``` openssl x509 -req -days 200 -in example.com.csr \ -
|
8762
8779
|
# signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
8763
|
-
# nsubjectAltName='DNS:www.example.com'")
|
8780
|
+
# nsubjectAltName='DNS:www.example.com'") ```
|
8764
8781
|
# Corresponds to the JSON property `allowedCaCerts`
|
8765
8782
|
# @return [Array<String>]
|
8766
8783
|
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 DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.33.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
|
@@ -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
|
@@ -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_v3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.33.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_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.33.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: []
|