google-apis-dialogflow_v2 0.64.0 → 0.65.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: eba9ecceacdb3503a5788b9b4f4fe443c77f765069bd7073ab60f216ccb05a2e
|
|
4
|
+
data.tar.gz: 54351d54bf2048cc8d6e6d36feb27dc0e38fc09dfca3649dae10132175bd4953
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0a8700cb11be05f6560c4eada55c6521db19d3efcf2cbe8a607a6bdcedc9c5e0efd91b8fa4cd46a085a56bdedc9efc23c1271e0d981cab1e759e2ffec21ec06
|
|
7
|
+
data.tar.gz: 159a65741c2fc58ed2586ddd4b4c536035cba8cd05f003191ca3230dd913f27133364cd14aecbe0135e234ea2d9ab1b9c30fcdf5c0d216fb8053ba9cd278f2c1
|
data/CHANGELOG.md
CHANGED
|
@@ -666,7 +666,7 @@ module Google
|
|
|
666
666
|
# @return [String]
|
|
667
667
|
attr_accessor :agent_uri
|
|
668
668
|
|
|
669
|
-
# Commit SHA of the git push. This field is populated if `git_destination`
|
|
669
|
+
# Commit SHA of the git push. This field is populated if `git_destination` is
|
|
670
670
|
# specified in ExportAgentRequest.
|
|
671
671
|
# Corresponds to the JSON property `commitSha`
|
|
672
672
|
# @return [String]
|
|
@@ -1836,6 +1836,11 @@ module Google
|
|
|
1836
1836
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio]
|
|
1837
1837
|
attr_accessor :play_audio
|
|
1838
1838
|
|
|
1839
|
+
# Response type.
|
|
1840
|
+
# Corresponds to the JSON property `responseType`
|
|
1841
|
+
# @return [String]
|
|
1842
|
+
attr_accessor :response_type
|
|
1843
|
+
|
|
1839
1844
|
# Represents the signal that telles the client to transfer the phone call
|
|
1840
1845
|
# connected to the agent to a third-party endpoint.
|
|
1841
1846
|
# Corresponds to the JSON property `telephonyTransferCall`
|
|
@@ -1861,6 +1866,7 @@ module Google
|
|
|
1861
1866
|
@output_audio_text = args[:output_audio_text] if args.key?(:output_audio_text)
|
|
1862
1867
|
@payload = args[:payload] if args.key?(:payload)
|
|
1863
1868
|
@play_audio = args[:play_audio] if args.key?(:play_audio)
|
|
1869
|
+
@response_type = args[:response_type] if args.key?(:response_type)
|
|
1864
1870
|
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
|
1865
1871
|
@text = args[:text] if args.key?(:text)
|
|
1866
1872
|
end
|
|
@@ -3751,7 +3757,7 @@ module Google
|
|
|
3751
3757
|
# @return [String]
|
|
3752
3758
|
attr_accessor :agent_uri
|
|
3753
3759
|
|
|
3754
|
-
# Commit SHA of the git push. This field is populated if `git_destination`
|
|
3760
|
+
# Commit SHA of the git push. This field is populated if `git_destination` is
|
|
3755
3761
|
# specified in ExportAgentRequest.
|
|
3756
3762
|
# Corresponds to the JSON property `commitSha`
|
|
3757
3763
|
# @return [String]
|
|
@@ -6447,7 +6453,6 @@ module Google
|
|
|
6447
6453
|
# @return [String]
|
|
6448
6454
|
attr_accessor :request_id
|
|
6449
6455
|
|
|
6450
|
-
# ============================================================================
|
|
6451
6456
|
# Auxiliary proto messages. Represents the natural language text to be processed.
|
|
6452
6457
|
# Corresponds to the JSON property `textInput`
|
|
6453
6458
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2TextInput]
|
|
@@ -7211,7 +7216,7 @@ module Google
|
|
|
7211
7216
|
# Required. The unique identifier of the context. Format: `projects//agent/
|
|
7212
7217
|
# sessions//contexts/`, or `projects//agent/environments//users//sessions//
|
|
7213
7218
|
# contexts/`. The `Context ID` is always converted to lowercase, may only
|
|
7214
|
-
# contain characters in a-zA-Z0-9_
|
|
7219
|
+
# contain characters in `a-zA-Z0-9_-%` and may be at most 250 bytes long. If `
|
|
7215
7220
|
# Environment ID` is not specified, we assume default 'draft' environment. If `
|
|
7216
7221
|
# User ID` is not specified, we assume default '-' user. The following context
|
|
7217
7222
|
# names are reserved for internal use by Dialogflow. You should not use these
|
|
@@ -7224,12 +7229,12 @@ module Google
|
|
|
7224
7229
|
# Optional. The collection of parameters associated with this context. Depending
|
|
7225
7230
|
# on your protocol or client library language, this is a map, associative array,
|
|
7226
7231
|
# symbol table, dictionary, or JSON object composed of a collection of (MapKey,
|
|
7227
|
-
# MapValue) pairs:
|
|
7228
|
-
# MapValue type:
|
|
7229
|
-
# depending on parameter value type, could be one of string,
|
|
7230
|
-
# null, list or map
|
|
7231
|
-
# composite entity
|
|
7232
|
-
#
|
|
7232
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
|
7233
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
|
7234
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
|
7235
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
|
7236
|
+
# type is a composite entity then use map from composite entity property names
|
|
7237
|
+
# to property values, otherwise, use parameter value.
|
|
7233
7238
|
# Corresponds to the JSON property `parameters`
|
|
7234
7239
|
# @return [Hash<String,Object>]
|
|
7235
7240
|
attr_accessor :parameters
|
|
@@ -8520,12 +8525,12 @@ module Google
|
|
|
8520
8525
|
# The collection of parameters associated with the event. Depending on your
|
|
8521
8526
|
# protocol or client library language, this is a map, associative array, symbol
|
|
8522
8527
|
# table, dictionary, or JSON object composed of a collection of (MapKey,
|
|
8523
|
-
# MapValue) pairs:
|
|
8524
|
-
# MapValue type:
|
|
8525
|
-
# depending on parameter value type, could be one of string,
|
|
8526
|
-
# null, list or map
|
|
8527
|
-
# composite entity
|
|
8528
|
-
#
|
|
8528
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
|
8529
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
|
8530
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
|
8531
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
|
8532
|
+
# type is a composite entity then use map from composite entity property names
|
|
8533
|
+
# to property values, otherwise, use parameter value.
|
|
8529
8534
|
# Corresponds to the JSON property `parameters`
|
|
8530
8535
|
# @return [Hash<String,Object>]
|
|
8531
8536
|
attr_accessor :parameters
|
|
@@ -8834,8 +8839,8 @@ module Google
|
|
|
8834
8839
|
class GoogleCloudDialogflowV2GcsDestination
|
|
8835
8840
|
include Google::Apis::Core::Hashable
|
|
8836
8841
|
|
|
8837
|
-
# The Google Cloud Storage URIs for the output. A URI is of the form: gs://
|
|
8838
|
-
# bucket/object-prefix-or-name Whether a prefix or name is used depends on the
|
|
8842
|
+
# The Google Cloud Storage URIs for the output. A URI is of the form: `gs://
|
|
8843
|
+
# bucket/object-prefix-or-name` Whether a prefix or name is used depends on the
|
|
8839
8844
|
# use case. The requesting user must have "write-permission" to the bucket.
|
|
8840
8845
|
# Corresponds to the JSON property `uri`
|
|
8841
8846
|
# @return [String]
|
|
@@ -8855,8 +8860,8 @@ module Google
|
|
|
8855
8860
|
class GoogleCloudDialogflowV2GcsSources
|
|
8856
8861
|
include Google::Apis::Core::Hashable
|
|
8857
8862
|
|
|
8858
|
-
# Required. Google Cloud Storage URIs for the inputs. A URI is of the form: gs
|
|
8859
|
-
# bucket/object-prefix-or-name Whether a prefix or name is used depends on the
|
|
8863
|
+
# Required. Google Cloud Storage URIs for the inputs. A URI is of the form: `gs:/
|
|
8864
|
+
# /bucket/object-prefix-or-name` Whether a prefix or name is used depends on the
|
|
8860
8865
|
# use case.
|
|
8861
8866
|
# Corresponds to the JSON property `uris`
|
|
8862
8867
|
# @return [Array<String>]
|
|
@@ -9783,9 +9788,9 @@ module Google
|
|
|
9783
9788
|
# A list of strings containing words and phrases that the speech recognizer
|
|
9784
9789
|
# should recognize with higher likelihood. See [the Cloud Speech documentation](
|
|
9785
9790
|
# https://cloud.google.com/speech-to-text/docs/basics#phrase-hints) for more
|
|
9786
|
-
# details. This field is deprecated. Please use [speech_contexts]() instead.
|
|
9787
|
-
# you specify both [phrase_hints]() and [speech_contexts](), Dialogflow
|
|
9788
|
-
# treat the [phrase_hints]() as a single additional [SpeechContext]().
|
|
9791
|
+
# details. This field is deprecated. Please use [`speech_contexts`]() instead.
|
|
9792
|
+
# If you specify both [`phrase_hints`]() and [`speech_contexts`](), Dialogflow
|
|
9793
|
+
# will treat the [`phrase_hints`]() as a single additional [`SpeechContext`]().
|
|
9789
9794
|
# Corresponds to the JSON property `phraseHints`
|
|
9790
9795
|
# @return [Array<String>]
|
|
9791
9796
|
attr_accessor :phrase_hints
|
|
@@ -11995,7 +12000,6 @@ module Google
|
|
|
11995
12000
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput]
|
|
11996
12001
|
attr_accessor :event
|
|
11997
12002
|
|
|
11998
|
-
# ============================================================================
|
|
11999
12003
|
# Auxiliary proto messages. Represents the natural language text to be processed.
|
|
12000
12004
|
# Corresponds to the JSON property `text`
|
|
12001
12005
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2TextInput]
|
|
@@ -12176,12 +12180,13 @@ module Google
|
|
|
12176
12180
|
|
|
12177
12181
|
# The collection of extracted parameters. Depending on your protocol or client
|
|
12178
12182
|
# library language, this is a map, associative array, symbol table, dictionary,
|
|
12179
|
-
# or JSON object composed of a collection of (MapKey, MapValue) pairs:
|
|
12180
|
-
# type: string
|
|
12181
|
-
# entity type is a composite entity
|
|
12182
|
-
# type, could be one of string, number, boolean, null, list
|
|
12183
|
-
# value:
|
|
12184
|
-
# entity property names to property values
|
|
12183
|
+
# or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey
|
|
12184
|
+
# type: string * MapKey value: parameter name * MapValue type: If parameter's
|
|
12185
|
+
# entity type is a composite entity then use map, otherwise, depending on the
|
|
12186
|
+
# parameter value type, it could be one of string, number, boolean, null, list
|
|
12187
|
+
# or map. * MapValue value: If parameter's entity type is a composite entity
|
|
12188
|
+
# then use map from composite entity property names to property values,
|
|
12189
|
+
# otherwise, use parameter value.
|
|
12185
12190
|
# Corresponds to the JSON property `parameters`
|
|
12186
12191
|
# @return [Hash<String,Object>]
|
|
12187
12192
|
attr_accessor :parameters
|
|
@@ -12969,7 +12974,6 @@ module Google
|
|
|
12969
12974
|
# @return [Fixnum]
|
|
12970
12975
|
attr_accessor :context_size
|
|
12971
12976
|
|
|
12972
|
-
# ============================================================================
|
|
12973
12977
|
# Auxiliary proto messages. Represents the natural language text to be processed.
|
|
12974
12978
|
# Corresponds to the JSON property `currentTextInput`
|
|
12975
12979
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2TextInput]
|
|
@@ -13152,7 +13156,6 @@ module Google
|
|
|
13152
13156
|
end
|
|
13153
13157
|
end
|
|
13154
13158
|
|
|
13155
|
-
# ============================================================================
|
|
13156
13159
|
# Auxiliary proto messages. Represents the natural language text to be processed.
|
|
13157
13160
|
class GoogleCloudDialogflowV2TextInput
|
|
13158
13161
|
include Google::Apis::Core::Hashable
|
|
@@ -13284,13 +13287,13 @@ module Google
|
|
|
13284
13287
|
class GoogleCloudDialogflowV2ValidationError
|
|
13285
13288
|
include Google::Apis::Core::Hashable
|
|
13286
13289
|
|
|
13287
|
-
# The names of the entries that the error is associated with. Format: -
|
|
13288
|
-
# projects//agent
|
|
13289
|
-
# projects//agent/intents
|
|
13290
|
-
# projects//agent/intents//trainingPhrases
|
|
13291
|
-
# certain intent training phrases. -
|
|
13292
|
-
# the error is associated with certain intent parameters. -
|
|
13293
|
-
# entities
|
|
13290
|
+
# The names of the entries that the error is associated with. Format: - `
|
|
13291
|
+
# projects//agent`, if the error is associated with the entire agent. - `
|
|
13292
|
+
# projects//agent/intents/`, if the error is associated with certain intents. - `
|
|
13293
|
+
# projects//agent/intents//trainingPhrases/`, if the error is associated with
|
|
13294
|
+
# certain intent training phrases. - `projects//agent/intents//parameters/`, if
|
|
13295
|
+
# the error is associated with certain intent parameters. - `projects//agent/
|
|
13296
|
+
# entities/`, if the error is associated with certain entities.
|
|
13294
13297
|
# Corresponds to the JSON property `entries`
|
|
13295
13298
|
# @return [Array<String>]
|
|
13296
13299
|
attr_accessor :entries
|
|
@@ -13734,7 +13737,7 @@ module Google
|
|
|
13734
13737
|
# /agent/sessions//contexts/`, - `projects//locations//agent/sessions//contexts/`
|
|
13735
13738
|
# , - `projects//agent/environments//users//sessions//contexts/`, - `projects//
|
|
13736
13739
|
# locations//agent/environments//users//sessions//contexts/`, The `Context ID`
|
|
13737
|
-
# is always converted to lowercase, may only contain characters in a-zA-Z0-9_
|
|
13740
|
+
# is always converted to lowercase, may only contain characters in `a-zA-Z0-9_-%`
|
|
13738
13741
|
# and may be at most 250 bytes long. If `Environment ID` is not specified, we
|
|
13739
13742
|
# assume default 'draft' environment. If `User ID` is not specified, we assume
|
|
13740
13743
|
# default '-' user. The following context names are reserved for internal use by
|
|
@@ -13747,12 +13750,12 @@ module Google
|
|
|
13747
13750
|
# Optional. The collection of parameters associated with this context. Depending
|
|
13748
13751
|
# on your protocol or client library language, this is a map, associative array,
|
|
13749
13752
|
# symbol table, dictionary, or JSON object composed of a collection of (MapKey,
|
|
13750
|
-
# MapValue) pairs:
|
|
13751
|
-
# MapValue type:
|
|
13752
|
-
# depending on parameter value type, could be one of string,
|
|
13753
|
-
# null, list or map
|
|
13754
|
-
# composite entity
|
|
13755
|
-
#
|
|
13753
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
|
13754
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
|
13755
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
|
13756
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
|
13757
|
+
# type is a composite entity then use map from composite entity property names
|
|
13758
|
+
# to property values, otherwise, use parameter value.
|
|
13756
13759
|
# Corresponds to the JSON property `parameters`
|
|
13757
13760
|
# @return [Hash<String,Object>]
|
|
13758
13761
|
attr_accessor :parameters
|
|
@@ -13963,12 +13966,12 @@ module Google
|
|
|
13963
13966
|
# The collection of parameters associated with the event. Depending on your
|
|
13964
13967
|
# protocol or client library language, this is a map, associative array, symbol
|
|
13965
13968
|
# table, dictionary, or JSON object composed of a collection of (MapKey,
|
|
13966
|
-
# MapValue) pairs:
|
|
13967
|
-
# MapValue type:
|
|
13968
|
-
# depending on parameter value type, could be one of string,
|
|
13969
|
-
# null, list or map
|
|
13970
|
-
# composite entity
|
|
13971
|
-
#
|
|
13969
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
|
13970
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
|
13971
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
|
13972
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
|
13973
|
+
# type is a composite entity then use map from composite entity property names
|
|
13974
|
+
# to property values, otherwise, use parameter value.
|
|
13972
13975
|
# Corresponds to the JSON property `parameters`
|
|
13973
13976
|
# @return [Hash<String,Object>]
|
|
13974
13977
|
attr_accessor :parameters
|
|
@@ -14089,8 +14092,8 @@ module Google
|
|
|
14089
14092
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
|
14090
14093
|
include Google::Apis::Core::Hashable
|
|
14091
14094
|
|
|
14092
|
-
# Required. The Google Cloud Storage URIs for the output. A URI is of the form:
|
|
14093
|
-
# gs://bucket/object-prefix-or-name Whether a prefix or name is used depends on
|
|
14095
|
+
# Required. The Google Cloud Storage URIs for the output. A URI is of the form: `
|
|
14096
|
+
# gs://bucket/object-prefix-or-name` Whether a prefix or name is used depends on
|
|
14094
14097
|
# the use case. The requesting user must have "write-permission" to the bucket.
|
|
14095
14098
|
# Corresponds to the JSON property `uri`
|
|
14096
14099
|
# @return [String]
|
|
@@ -16257,12 +16260,13 @@ module Google
|
|
|
16257
16260
|
|
|
16258
16261
|
# The collection of extracted parameters. Depending on your protocol or client
|
|
16259
16262
|
# library language, this is a map, associative array, symbol table, dictionary,
|
|
16260
|
-
# or JSON object composed of a collection of (MapKey, MapValue) pairs:
|
|
16261
|
-
# type: string
|
|
16262
|
-
# entity type is a composite entity
|
|
16263
|
-
# type, could be one of string, number, boolean, null, list
|
|
16264
|
-
# value:
|
|
16265
|
-
# entity property names to property values
|
|
16263
|
+
# or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey
|
|
16264
|
+
# type: string * MapKey value: parameter name * MapValue type: If parameter's
|
|
16265
|
+
# entity type is a composite entity then use map, otherwise, depending on the
|
|
16266
|
+
# parameter value type, it could be one of string, number, boolean, null, list
|
|
16267
|
+
# or map. * MapValue value: If parameter's entity type is a composite entity
|
|
16268
|
+
# then use map from composite entity property names to property values,
|
|
16269
|
+
# otherwise, use parameter value.
|
|
16266
16270
|
# Corresponds to the JSON property `parameters`
|
|
16267
16271
|
# @return [Hash<String,Object>]
|
|
16268
16272
|
attr_accessor :parameters
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV2
|
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.65.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230717"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3335,6 +3335,7 @@ module Google
|
|
|
3335
3335
|
hash :payload, as: 'payload'
|
|
3336
3336
|
property :play_audio, as: 'playAudio', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio::Representation
|
|
3337
3337
|
|
|
3338
|
+
property :response_type, as: 'responseType'
|
|
3338
3339
|
property :telephony_transfer_call, as: 'telephonyTransferCall', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall::Representation
|
|
3339
3340
|
|
|
3340
3341
|
property :text, as: 'text', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessageText, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessageText::Representation
|
|
@@ -1397,7 +1397,7 @@ module Google
|
|
|
1397
1397
|
# Required. The unique identifier of the context. Format: `projects//agent/
|
|
1398
1398
|
# sessions//contexts/`, or `projects//agent/environments//users//sessions//
|
|
1399
1399
|
# contexts/`. The `Context ID` is always converted to lowercase, may only
|
|
1400
|
-
# contain characters in a-zA-Z0-9_
|
|
1400
|
+
# contain characters in `a-zA-Z0-9_-%` and may be at most 250 bytes long. If `
|
|
1401
1401
|
# Environment ID` is not specified, we assume default 'draft' environment. If `
|
|
1402
1402
|
# User ID` is not specified, we assume default '-' user. The following context
|
|
1403
1403
|
# names are reserved for internal use by Dialogflow. You should not use these
|
|
@@ -2589,7 +2589,7 @@ module Google
|
|
|
2589
2589
|
# Required. The unique identifier of the context. Format: `projects//agent/
|
|
2590
2590
|
# sessions//contexts/`, or `projects//agent/environments//users//sessions//
|
|
2591
2591
|
# contexts/`. The `Context ID` is always converted to lowercase, may only
|
|
2592
|
-
# contain characters in a-zA-Z0-9_
|
|
2592
|
+
# contain characters in `a-zA-Z0-9_-%` and may be at most 250 bytes long. If `
|
|
2593
2593
|
# Environment ID` is not specified, we assume default 'draft' environment. If `
|
|
2594
2594
|
# User ID` is not specified, we assume default '-' user. The following context
|
|
2595
2595
|
# names are reserved for internal use by Dialogflow. You should not use these
|
|
@@ -3792,7 +3792,7 @@ module Google
|
|
|
3792
3792
|
# Optional. Identifier of the conversation. Generally it's auto generated by
|
|
3793
3793
|
# Google. Only set it if you cannot wait for the response to return a auto-
|
|
3794
3794
|
# generated one to you. The conversation ID must be compliant with the
|
|
3795
|
-
# regression fomula
|
|
3795
|
+
# regression fomula `a-zA-Z*` with the characters length in range of [3,64]. If
|
|
3796
3796
|
# the field is provided, the caller is resposible for 1. the uniqueness of the
|
|
3797
3797
|
# ID, otherwise the request will be rejected. 2. the consistency for whether to
|
|
3798
3798
|
# use custom ID or not under a project to better ensure uniqueness.
|
|
@@ -6195,7 +6195,7 @@ module Google
|
|
|
6195
6195
|
# Required. The unique identifier of the context. Format: `projects//agent/
|
|
6196
6196
|
# sessions//contexts/`, or `projects//agent/environments//users//sessions//
|
|
6197
6197
|
# contexts/`. The `Context ID` is always converted to lowercase, may only
|
|
6198
|
-
# contain characters in a-zA-Z0-9_
|
|
6198
|
+
# contain characters in `a-zA-Z0-9_-%` and may be at most 250 bytes long. If `
|
|
6199
6199
|
# Environment ID` is not specified, we assume default 'draft' environment. If `
|
|
6200
6200
|
# User ID` is not specified, we assume default '-' user. The following context
|
|
6201
6201
|
# names are reserved for internal use by Dialogflow. You should not use these
|
|
@@ -6960,7 +6960,7 @@ module Google
|
|
|
6960
6960
|
# Required. The unique identifier of the context. Format: `projects//agent/
|
|
6961
6961
|
# sessions//contexts/`, or `projects//agent/environments//users//sessions//
|
|
6962
6962
|
# contexts/`. The `Context ID` is always converted to lowercase, may only
|
|
6963
|
-
# contain characters in a-zA-Z0-9_
|
|
6963
|
+
# contain characters in `a-zA-Z0-9_-%` and may be at most 250 bytes long. If `
|
|
6964
6964
|
# Environment ID` is not specified, we assume default 'draft' environment. If `
|
|
6965
6965
|
# User ID` is not specified, we assume default '-' user. The following context
|
|
6966
6966
|
# names are reserved for internal use by Dialogflow. You should not use these
|
|
@@ -8271,7 +8271,7 @@ module Google
|
|
|
8271
8271
|
# Optional. Identifier of the conversation. Generally it's auto generated by
|
|
8272
8272
|
# Google. Only set it if you cannot wait for the response to return a auto-
|
|
8273
8273
|
# generated one to you. The conversation ID must be compliant with the
|
|
8274
|
-
# regression fomula
|
|
8274
|
+
# regression fomula `a-zA-Z*` with the characters length in range of [3,64]. If
|
|
8275
8275
|
# the field is provided, the caller is resposible for 1. the uniqueness of the
|
|
8276
8276
|
# ID, otherwise the request will be rejected. 2. the consistency for whether to
|
|
8277
8277
|
# use custom ID or not under a project to better ensure uniqueness.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.65.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: 2023-07-
|
|
11
|
+
date: 2023-07-23 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_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.65.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|