google-apis-dialogflow_v3beta1 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: f65fe74c8807f4f5cb6abf313ea6b11f7d58745e68f7f8fb9309c4b4a6b4aa05
|
4
|
+
data.tar.gz: ccaa333fae67e5ad8c977d8f4feee99f820c232c2932d7e7754ce92bfb4b625c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2a63cf8c10f37597e26f07dbcf6bfb44e1142d98361233c7e608d492008dacd596d4d172559e463323d5c04c70496a6bbe1fe8d77762ad2cbe9261565413240
|
7
|
+
data.tar.gz: e2c21371ef1600839842e8635154278503db3d90facf90edd7c59ac0c35428d92fa8e78f537ad898f1dd6bf39e5d7419be75cfa143418fafebfa8d1db8c52da9
|
data/CHANGELOG.md
CHANGED
@@ -2284,12 +2284,24 @@ module Google
|
|
2284
2284
|
class GoogleCloudDialogflowCxV3TestConfig
|
2285
2285
|
include Google::Apis::Core::Hashable
|
2286
2286
|
|
2287
|
-
# Flow name
|
2288
|
-
#
|
2287
|
+
# Flow name to start the test case with. Format: `projects//locations//agents//
|
2288
|
+
# flows/`. Only one of `flow` and `page` should be set to indicate the starting
|
2289
|
+
# point of the test case. If both are set, `page` takes precedence over `flow`.
|
2290
|
+
# If neither is set, the test case will start with start page on the default
|
2291
|
+
# start flow.
|
2289
2292
|
# Corresponds to the JSON property `flow`
|
2290
2293
|
# @return [String]
|
2291
2294
|
attr_accessor :flow
|
2292
2295
|
|
2296
|
+
# The page to start the test case with. Format: `projects//locations//agents//
|
2297
|
+
# flows//pages/`. Only one of `flow` and `page` should be set to indicate the
|
2298
|
+
# starting point of the test case. If both are set, `page` takes precedence over
|
2299
|
+
# `flow`. If neither is set, the test case will start with start page on the
|
2300
|
+
# default start flow.
|
2301
|
+
# Corresponds to the JSON property `page`
|
2302
|
+
# @return [String]
|
2303
|
+
attr_accessor :page
|
2304
|
+
|
2293
2305
|
# Session parameters to be compared when calculating differences.
|
2294
2306
|
# Corresponds to the JSON property `trackingParameters`
|
2295
2307
|
# @return [Array<String>]
|
@@ -2302,6 +2314,7 @@ module Google
|
|
2302
2314
|
# Update properties of this object
|
2303
2315
|
def update!(**args)
|
2304
2316
|
@flow = args[:flow] if args.key?(:flow)
|
2317
|
+
@page = args[:page] if args.key?(:page)
|
2305
2318
|
@tracking_parameters = args[:tracking_parameters] if args.key?(:tracking_parameters)
|
2306
2319
|
end
|
2307
2320
|
end
|
@@ -4359,7 +4372,11 @@ module Google
|
|
4359
4372
|
|
4360
4373
|
# Optional. The [Google Cloud Storage](https://cloud.google.com/storage/docs/)
|
4361
4374
|
# URI to export the agent to. The format of this URI must be `gs:///`. If left
|
4362
|
-
# unspecified, the serialized agent is returned inline.
|
4375
|
+
# unspecified, the serialized agent is returned inline. Dialogflow performs a
|
4376
|
+
# write operation for the Cloud Storage object on the caller's behalf, so your
|
4377
|
+
# request authentication must have write permissions for the object. For more
|
4378
|
+
# information, see [Dialogflow access control](https://cloud.google.com/
|
4379
|
+
# dialogflow/cx/docs/concept/access-control#storage).
|
4363
4380
|
# Corresponds to the JSON property `agentUri`
|
4364
4381
|
# @return [String]
|
4365
4382
|
attr_accessor :agent_uri
|
@@ -4414,7 +4431,11 @@ module Google
|
|
4414
4431
|
|
4415
4432
|
# Optional. The [Google Cloud Storage](https://cloud.google.com/storage/docs/)
|
4416
4433
|
# URI to export the flow to. The format of this URI must be `gs:///`. If left
|
4417
|
-
# unspecified, the serialized flow is returned inline.
|
4434
|
+
# unspecified, the serialized flow is returned inline. Dialogflow performs a
|
4435
|
+
# write operation for the Cloud Storage object on the caller's behalf, so your
|
4436
|
+
# request authentication must have write permissions for the object. For more
|
4437
|
+
# information, see [Dialogflow access control](https://cloud.google.com/
|
4438
|
+
# dialogflow/cx/docs/concept/access-control#storage).
|
4418
4439
|
# Corresponds to the JSON property `flowUri`
|
4419
4440
|
# @return [String]
|
4420
4441
|
attr_accessor :flow_uri
|
@@ -4497,7 +4518,11 @@ module Google
|
|
4497
4518
|
|
4498
4519
|
# The [Google Cloud Storage](https://cloud.google.com/storage/docs/) URI to
|
4499
4520
|
# export the test cases to. The format of this URI must be `gs:///`. If
|
4500
|
-
# unspecified, the serialized test cases is returned inline.
|
4521
|
+
# unspecified, the serialized test cases is returned inline. Dialogflow performs
|
4522
|
+
# a write operation for the Cloud Storage object on the caller's behalf, so your
|
4523
|
+
# request authentication must have write permissions for the object. For more
|
4524
|
+
# information, see [Dialogflow access control](https://cloud.google.com/
|
4525
|
+
# dialogflow/cx/docs/concept/access-control#storage).
|
4501
4526
|
# Corresponds to the JSON property `gcsUri`
|
4502
4527
|
# @return [String]
|
4503
4528
|
attr_accessor :gcs_uri
|
@@ -5117,7 +5142,11 @@ module Google
|
|
5117
5142
|
attr_accessor :flow_content
|
5118
5143
|
|
5119
5144
|
# The [Google Cloud Storage](https://cloud.google.com/storage/docs/) URI to
|
5120
|
-
# import flow from. The format of this URI must be `gs:///`.
|
5145
|
+
# import flow from. The format of this URI must be `gs:///`. Dialogflow performs
|
5146
|
+
# a read operation for the Cloud Storage object on the caller's behalf, so your
|
5147
|
+
# request authentication must have read permissions for the object. For more
|
5148
|
+
# information, see [Dialogflow access control](https://cloud.google.com/
|
5149
|
+
# dialogflow/cx/docs/concept/access-control#storage).
|
5121
5150
|
# Corresponds to the JSON property `flowUri`
|
5122
5151
|
# @return [String]
|
5123
5152
|
attr_accessor :flow_uri
|
@@ -5189,7 +5218,11 @@ module Google
|
|
5189
5218
|
attr_accessor :content
|
5190
5219
|
|
5191
5220
|
# The [Google Cloud Storage](https://cloud.google.com/storage/docs/) URI to
|
5192
|
-
# import test cases from. The format of this URI must be `gs:///`.
|
5221
|
+
# import test cases from. The format of this URI must be `gs:///`. Dialogflow
|
5222
|
+
# performs a read operation for the Cloud Storage object on the caller's behalf,
|
5223
|
+
# so your request authentication must have read permissions for the object. For
|
5224
|
+
# more information, see [Dialogflow access control](https://cloud.google.com/
|
5225
|
+
# dialogflow/cx/docs/concept/access-control#storage).
|
5193
5226
|
# Corresponds to the JSON property `gcsUri`
|
5194
5227
|
# @return [String]
|
5195
5228
|
attr_accessor :gcs_uri
|
@@ -7225,7 +7258,11 @@ module Google
|
|
7225
7258
|
attr_accessor :agent_content
|
7226
7259
|
|
7227
7260
|
# The [Google Cloud Storage](https://cloud.google.com/storage/docs/) URI to
|
7228
|
-
# restore agent from. The format of this URI must be `gs:///`.
|
7261
|
+
# restore agent from. The format of this URI must be `gs:///`. Dialogflow
|
7262
|
+
# performs a read operation for the Cloud Storage object on the caller's behalf,
|
7263
|
+
# so your request authentication must have read permissions for the object. For
|
7264
|
+
# more information, see [Dialogflow access control](https://cloud.google.com/
|
7265
|
+
# dialogflow/cx/docs/concept/access-control#storage).
|
7229
7266
|
# Corresponds to the JSON property `agentUri`
|
7230
7267
|
# @return [String]
|
7231
7268
|
attr_accessor :agent_uri
|
@@ -7928,12 +7965,24 @@ module Google
|
|
7928
7965
|
class GoogleCloudDialogflowCxV3beta1TestConfig
|
7929
7966
|
include Google::Apis::Core::Hashable
|
7930
7967
|
|
7931
|
-
# Flow name
|
7932
|
-
#
|
7968
|
+
# Flow name to start the test case with. Format: `projects//locations//agents//
|
7969
|
+
# flows/`. Only one of `flow` and `page` should be set to indicate the starting
|
7970
|
+
# point of the test case. If both are set, `page` takes precedence over `flow`.
|
7971
|
+
# If neither is set, the test case will start with start page on the default
|
7972
|
+
# start flow.
|
7933
7973
|
# Corresponds to the JSON property `flow`
|
7934
7974
|
# @return [String]
|
7935
7975
|
attr_accessor :flow
|
7936
7976
|
|
7977
|
+
# The page to start the test case with. Format: `projects//locations//agents//
|
7978
|
+
# flows//pages/`. Only one of `flow` and `page` should be set to indicate the
|
7979
|
+
# starting point of the test case. If both are set, `page` takes precedence over
|
7980
|
+
# `flow`. If neither is set, the test case will start with start page on the
|
7981
|
+
# default start flow.
|
7982
|
+
# Corresponds to the JSON property `page`
|
7983
|
+
# @return [String]
|
7984
|
+
attr_accessor :page
|
7985
|
+
|
7937
7986
|
# Session parameters to be compared when calculating differences.
|
7938
7987
|
# Corresponds to the JSON property `trackingParameters`
|
7939
7988
|
# @return [Array<String>]
|
@@ -7946,6 +7995,7 @@ module Google
|
|
7946
7995
|
# Update properties of this object
|
7947
7996
|
def update!(**args)
|
7948
7997
|
@flow = args[:flow] if args.key?(:flow)
|
7998
|
+
@page = args[:page] if args.key?(:page)
|
7949
7999
|
@tracking_parameters = args[:tracking_parameters] if args.key?(:tracking_parameters)
|
7950
8000
|
end
|
7951
8001
|
end
|
@@ -9679,7 +9729,9 @@ module Google
|
|
9679
9729
|
# Required. The language of this query. See [Language Support](https://cloud.
|
9680
9730
|
# google.com/dialogflow/docs/reference/language) for a list of the currently
|
9681
9731
|
# supported language codes. Note that queries in the same session do not
|
9682
|
-
# necessarily need to specify the same language.
|
9732
|
+
# necessarily need to specify the same language. This field is ignored when used
|
9733
|
+
# in the context of a WebhookResponse.followup_event_input field, because the
|
9734
|
+
# language was already defined in the originating detect intent request.
|
9683
9735
|
# Corresponds to the JSON property `languageCode`
|
9684
9736
|
# @return [String]
|
9685
9737
|
attr_accessor :language_code
|
@@ -12416,7 +12468,9 @@ module Google
|
|
12416
12468
|
# Required. The language of this query. See [Language Support](https://cloud.
|
12417
12469
|
# google.com/dialogflow/docs/reference/language) for a list of the currently
|
12418
12470
|
# supported language codes. Note that queries in the same session do not
|
12419
|
-
# necessarily need to specify the same language.
|
12471
|
+
# necessarily need to specify the same language. This field is ignored when used
|
12472
|
+
# in the context of a WebhookResponse.followup_event_input field, because the
|
12473
|
+
# language was already defined in the originating detect intent request.
|
12420
12474
|
# Corresponds to the JSON property `languageCode`
|
12421
12475
|
# @return [String]
|
12422
12476
|
attr_accessor :language_code
|
@@ -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.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 = "20220309"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3214,6 +3214,7 @@ module Google
|
|
3214
3214
|
# @private
|
3215
3215
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3216
3216
|
property :flow, as: 'flow'
|
3217
|
+
property :page, as: 'page'
|
3217
3218
|
collection :tracking_parameters, as: 'trackingParameters'
|
3218
3219
|
end
|
3219
3220
|
end
|
@@ -4759,6 +4760,7 @@ module Google
|
|
4759
4760
|
# @private
|
4760
4761
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4761
4762
|
property :flow, as: 'flow'
|
4763
|
+
property :page, as: 'page'
|
4762
4764
|
collection :tracking_parameters, as: 'trackingParameters'
|
4763
4765
|
end
|
4764
4766
|
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.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-03-14 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.30.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: []
|