google-apis-dialogflow_v2beta1 0.102.0 → 0.104.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: df766fdc4d7d6d0c1ed7350a67682e29299514e77bfd49cc0a882c3950be8271
|
4
|
+
data.tar.gz: 3cd61c7297b852bc2a00c7da4d8d79dd9a0f27b145ec5b17cf1eebb0d647c728
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8b9b1a24a0346d3783dccb8a4324440b8673ed91c372de16b0f6a724789a511f9393a048e73992298b1cf21ac06d3abacd0e00503d7f1d0ef615720abb89462
|
7
|
+
data.tar.gz: 8f698fb76dc7cb424c0b73ffc03f22555ef5e5460ff096354378697f7130258bf2d98c9ca7d479ffab34346207f4097d0d3bbc9abfd9d8c3773fd04de926f69b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2beta1
|
2
2
|
|
3
|
+
### v0.104.0 (2025-06-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250602
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.103.0 (2025-05-11)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250508
|
11
|
+
|
3
12
|
### v0.102.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -748,9 +748,10 @@ module Google
|
|
748
748
|
class GoogleCloudDialogflowCxV3EnvironmentVersionConfig
|
749
749
|
include Google::Apis::Core::Hashable
|
750
750
|
|
751
|
-
# Required.
|
751
|
+
# Required. Flow, playbook and tool versions are supported. Format for flow
|
752
752
|
# version: projects//locations//agents//flows//versions/. Format for playbook
|
753
|
-
# version: projects//locations//agents//playbooks//versions/.
|
753
|
+
# version: projects//locations//agents//playbooks//versions/. Format for tool
|
754
|
+
# version: projects//locations//agents//tools//versions/.
|
754
755
|
# Corresponds to the JSON property `version`
|
755
756
|
# @return [String]
|
756
757
|
attr_accessor :version
|
@@ -4634,9 +4635,10 @@ module Google
|
|
4634
4635
|
class GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig
|
4635
4636
|
include Google::Apis::Core::Hashable
|
4636
4637
|
|
4637
|
-
# Required.
|
4638
|
+
# Required. Flow, playbook and tool versions are supported. Format for flow
|
4638
4639
|
# version: projects//locations//agents//flows//versions/. Format for playbook
|
4639
|
-
# version: projects//locations//agents//playbooks//versions/.
|
4640
|
+
# version: projects//locations//agents//playbooks//versions/. Format for tool
|
4641
|
+
# version: projects//locations//agents//tools//versions/.
|
4640
4642
|
# Corresponds to the JSON property `version`
|
4641
4643
|
# @return [String]
|
4642
4644
|
attr_accessor :version
|
@@ -14571,6 +14573,15 @@ module Google
|
|
14571
14573
|
# @return [String]
|
14572
14574
|
attr_accessor :generator_name
|
14573
14575
|
|
14576
|
+
# Optional. Name of the CX SecuritySettings which is used to redact generated
|
14577
|
+
# response. If this field is empty, try to fetch v2 security_settings, which is
|
14578
|
+
# a project level setting. If this field is empty and no v2 security_settings
|
14579
|
+
# set up in this project, no redaction will be done. Format: `projects//
|
14580
|
+
# locations//securitySettings/`.
|
14581
|
+
# Corresponds to the JSON property `securitySettings`
|
14582
|
+
# @return [String]
|
14583
|
+
attr_accessor :security_settings
|
14584
|
+
|
14574
14585
|
# Optional. A list of trigger events. Generator will be triggered only if it's
|
14575
14586
|
# trigger event is included here.
|
14576
14587
|
# Corresponds to the JSON property `triggerEvents`
|
@@ -14587,6 +14598,7 @@ module Google
|
|
14587
14598
|
@conversation_context = args[:conversation_context] if args.key?(:conversation_context)
|
14588
14599
|
@generator = args[:generator] if args.key?(:generator)
|
14589
14600
|
@generator_name = args[:generator_name] if args.key?(:generator_name)
|
14601
|
+
@security_settings = args[:security_settings] if args.key?(:security_settings)
|
14590
14602
|
@trigger_events = args[:trigger_events] if args.key?(:trigger_events)
|
14591
14603
|
end
|
14592
14604
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2beta1
|
18
18
|
# Version of the google-apis-dialogflow_v2beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.104.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250602"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -7502,6 +7502,7 @@ module Google
|
|
7502
7502
|
property :generator, as: 'generator', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Generator, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Generator::Representation
|
7503
7503
|
|
7504
7504
|
property :generator_name, as: 'generatorName'
|
7505
|
+
property :security_settings, as: 'securitySettings'
|
7505
7506
|
collection :trigger_events, as: 'triggerEvents'
|
7506
7507
|
end
|
7507
7508
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.104.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.104.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Dialogflow API V2beta1
|
79
79
|
test_files: []
|