google-apis-dialogflow_v3 0.63.0 → 0.65.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: 20a9d1e702b37e2beee85bc65af4e1da53f9425853e1a961ac3c6fba795a26b3
|
4
|
+
data.tar.gz: d66aec5b08883cd2e867839bbbc08016d224dfeb44e4177eee8b05e081859ec9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6a0499fbd15f6fdacf571d05ba446b2bec582d8564399ac4b66d97d52e3881c63165bce63dcc151d4fc3c1dbf0c953d8971bc54d159614d5b4db22c3ebb00d4
|
7
|
+
data.tar.gz: 0eeb0974772bd71b393d7d6f301aad36b60074730287df8922eba733a711c8b8882952ede44cdfee52cf4f8889575eae3316e589063df901ddb940f448c41c91
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.65.0 (2023-07-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230717
|
6
|
+
|
7
|
+
### v0.64.0 (2023-07-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230705
|
10
|
+
|
3
11
|
### v0.63.0 (2023-07-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230626
|
@@ -141,6 +141,11 @@ module Google
|
|
141
141
|
attr_accessor :enable_stackdriver_logging
|
142
142
|
alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
|
143
143
|
|
144
|
+
# Settings for connecting to Git repository for an agent.
|
145
|
+
# Corresponds to the JSON property `gitIntegrationSettings`
|
146
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGitIntegrationSettings]
|
147
|
+
attr_accessor :git_integration_settings
|
148
|
+
|
144
149
|
# Indicates whether the agent is locked for changes. If the agent is locked,
|
145
150
|
# modifications to the agent will be rejected except for RestoreAgent.
|
146
151
|
# Corresponds to the JSON property `locked`
|
@@ -203,6 +208,7 @@ module Google
|
|
203
208
|
@display_name = args[:display_name] if args.key?(:display_name)
|
204
209
|
@enable_spell_correction = args[:enable_spell_correction] if args.key?(:enable_spell_correction)
|
205
210
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
211
|
+
@git_integration_settings = args[:git_integration_settings] if args.key?(:git_integration_settings)
|
206
212
|
@locked = args[:locked] if args.key?(:locked)
|
207
213
|
@name = args[:name] if args.key?(:name)
|
208
214
|
@security_settings = args[:security_settings] if args.key?(:security_settings)
|
@@ -214,6 +220,68 @@ module Google
|
|
214
220
|
end
|
215
221
|
end
|
216
222
|
|
223
|
+
# Settings for connecting to Git repository for an agent.
|
224
|
+
class GoogleCloudDialogflowCxV3AgentGitIntegrationSettings
|
225
|
+
include Google::Apis::Core::Hashable
|
226
|
+
|
227
|
+
# Settings of integration with GitHub.
|
228
|
+
# Corresponds to the JSON property `githubSettings`
|
229
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings]
|
230
|
+
attr_accessor :github_settings
|
231
|
+
|
232
|
+
def initialize(**args)
|
233
|
+
update!(**args)
|
234
|
+
end
|
235
|
+
|
236
|
+
# Update properties of this object
|
237
|
+
def update!(**args)
|
238
|
+
@github_settings = args[:github_settings] if args.key?(:github_settings)
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
242
|
+
# Settings of integration with GitHub.
|
243
|
+
class GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings
|
244
|
+
include Google::Apis::Core::Hashable
|
245
|
+
|
246
|
+
# The access token used to authenticate the access to the GitHub repository.
|
247
|
+
# Corresponds to the JSON property `accessToken`
|
248
|
+
# @return [String]
|
249
|
+
attr_accessor :access_token
|
250
|
+
|
251
|
+
# A list of branches configured to be used from Dialogflow.
|
252
|
+
# Corresponds to the JSON property `branches`
|
253
|
+
# @return [Array<String>]
|
254
|
+
attr_accessor :branches
|
255
|
+
|
256
|
+
# The unique repository display name for the GitHub repository.
|
257
|
+
# Corresponds to the JSON property `displayName`
|
258
|
+
# @return [String]
|
259
|
+
attr_accessor :display_name
|
260
|
+
|
261
|
+
# The GitHub repository URI related to the agent.
|
262
|
+
# Corresponds to the JSON property `repositoryUri`
|
263
|
+
# @return [String]
|
264
|
+
attr_accessor :repository_uri
|
265
|
+
|
266
|
+
# The branch of the GitHub repository tracked for this agent.
|
267
|
+
# Corresponds to the JSON property `trackingBranch`
|
268
|
+
# @return [String]
|
269
|
+
attr_accessor :tracking_branch
|
270
|
+
|
271
|
+
def initialize(**args)
|
272
|
+
update!(**args)
|
273
|
+
end
|
274
|
+
|
275
|
+
# Update properties of this object
|
276
|
+
def update!(**args)
|
277
|
+
@access_token = args[:access_token] if args.key?(:access_token)
|
278
|
+
@branches = args[:branches] if args.key?(:branches)
|
279
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
280
|
+
@repository_uri = args[:repository_uri] if args.key?(:repository_uri)
|
281
|
+
@tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
|
282
|
+
end
|
283
|
+
end
|
284
|
+
|
217
285
|
# The response message for Agents.GetAgentValidationResult.
|
218
286
|
class GoogleCloudDialogflowCxV3AgentValidationResult
|
219
287
|
include Google::Apis::Core::Hashable
|
@@ -1717,6 +1785,11 @@ module Google
|
|
1717
1785
|
# @return [String]
|
1718
1786
|
attr_accessor :environment
|
1719
1787
|
|
1788
|
+
# Settings for exporting to a git branch.
|
1789
|
+
# Corresponds to the JSON property `gitDestination`
|
1790
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExportAgentRequestGitDestination]
|
1791
|
+
attr_accessor :git_destination
|
1792
|
+
|
1720
1793
|
# Optional. Whether to include BigQuery Export setting.
|
1721
1794
|
# Corresponds to the JSON property `includeBigqueryExportSettings`
|
1722
1795
|
# @return [Boolean]
|
@@ -1732,15 +1805,42 @@ module Google
|
|
1732
1805
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
1733
1806
|
@data_format = args[:data_format] if args.key?(:data_format)
|
1734
1807
|
@environment = args[:environment] if args.key?(:environment)
|
1808
|
+
@git_destination = args[:git_destination] if args.key?(:git_destination)
|
1735
1809
|
@include_bigquery_export_settings = args[:include_bigquery_export_settings] if args.key?(:include_bigquery_export_settings)
|
1736
1810
|
end
|
1737
1811
|
end
|
1738
1812
|
|
1813
|
+
# Settings for exporting to a git branch.
|
1814
|
+
class GoogleCloudDialogflowCxV3ExportAgentRequestGitDestination
|
1815
|
+
include Google::Apis::Core::Hashable
|
1816
|
+
|
1817
|
+
# Commit message for the git push.
|
1818
|
+
# Corresponds to the JSON property `commitMessage`
|
1819
|
+
# @return [String]
|
1820
|
+
attr_accessor :commit_message
|
1821
|
+
|
1822
|
+
# Tracking branch for the git push.
|
1823
|
+
# Corresponds to the JSON property `trackingBranch`
|
1824
|
+
# @return [String]
|
1825
|
+
attr_accessor :tracking_branch
|
1826
|
+
|
1827
|
+
def initialize(**args)
|
1828
|
+
update!(**args)
|
1829
|
+
end
|
1830
|
+
|
1831
|
+
# Update properties of this object
|
1832
|
+
def update!(**args)
|
1833
|
+
@commit_message = args[:commit_message] if args.key?(:commit_message)
|
1834
|
+
@tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
|
1835
|
+
end
|
1836
|
+
end
|
1837
|
+
|
1739
1838
|
# The response message for Agents.ExportAgent.
|
1740
1839
|
class GoogleCloudDialogflowCxV3ExportAgentResponse
|
1741
1840
|
include Google::Apis::Core::Hashable
|
1742
1841
|
|
1743
|
-
# Uncompressed raw byte content for agent.
|
1842
|
+
# Uncompressed raw byte content for agent. This field is populated if none of `
|
1843
|
+
# agent_uri` and `git_destination` are specified in ExportAgentRequest.
|
1744
1844
|
# Corresponds to the JSON property `agentContent`
|
1745
1845
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
1746
1846
|
# @return [String]
|
@@ -1752,6 +1852,12 @@ module Google
|
|
1752
1852
|
# @return [String]
|
1753
1853
|
attr_accessor :agent_uri
|
1754
1854
|
|
1855
|
+
# Commit SHA of the git push. This field is populated if `git_destination` is
|
1856
|
+
# specified in ExportAgentRequest.
|
1857
|
+
# Corresponds to the JSON property `commitSha`
|
1858
|
+
# @return [String]
|
1859
|
+
attr_accessor :commit_sha
|
1860
|
+
|
1755
1861
|
def initialize(**args)
|
1756
1862
|
update!(**args)
|
1757
1863
|
end
|
@@ -1760,6 +1866,7 @@ module Google
|
|
1760
1866
|
def update!(**args)
|
1761
1867
|
@agent_content = args[:agent_content] if args.key?(:agent_content)
|
1762
1868
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
1869
|
+
@commit_sha = args[:commit_sha] if args.key?(:commit_sha)
|
1763
1870
|
end
|
1764
1871
|
end
|
1765
1872
|
|
@@ -4391,6 +4498,11 @@ module Google
|
|
4391
4498
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio]
|
4392
4499
|
attr_accessor :play_audio
|
4393
4500
|
|
4501
|
+
# Response type.
|
4502
|
+
# Corresponds to the JSON property `responseType`
|
4503
|
+
# @return [String]
|
4504
|
+
attr_accessor :response_type
|
4505
|
+
|
4394
4506
|
# Represents the signal that telles the client to transfer the phone call
|
4395
4507
|
# connected to the agent to a third-party endpoint.
|
4396
4508
|
# Corresponds to the JSON property `telephonyTransferCall`
|
@@ -4416,6 +4528,7 @@ module Google
|
|
4416
4528
|
@output_audio_text = args[:output_audio_text] if args.key?(:output_audio_text)
|
4417
4529
|
@payload = args[:payload] if args.key?(:payload)
|
4418
4530
|
@play_audio = args[:play_audio] if args.key?(:play_audio)
|
4531
|
+
@response_type = args[:response_type] if args.key?(:response_type)
|
4419
4532
|
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
4420
4533
|
@text = args[:text] if args.key?(:text)
|
4421
4534
|
end
|
@@ -4677,6 +4790,11 @@ module Google
|
|
4677
4790
|
# @return [String]
|
4678
4791
|
attr_accessor :agent_uri
|
4679
4792
|
|
4793
|
+
# Settings for restoring from a git branch
|
4794
|
+
# Corresponds to the JSON property `gitSource`
|
4795
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RestoreAgentRequestGitSource]
|
4796
|
+
attr_accessor :git_source
|
4797
|
+
|
4680
4798
|
# Agent restore mode. If not specified, `KEEP` is assumed.
|
4681
4799
|
# Corresponds to the JSON property `restoreOption`
|
4682
4800
|
# @return [String]
|
@@ -4690,10 +4808,30 @@ module Google
|
|
4690
4808
|
def update!(**args)
|
4691
4809
|
@agent_content = args[:agent_content] if args.key?(:agent_content)
|
4692
4810
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
4811
|
+
@git_source = args[:git_source] if args.key?(:git_source)
|
4693
4812
|
@restore_option = args[:restore_option] if args.key?(:restore_option)
|
4694
4813
|
end
|
4695
4814
|
end
|
4696
4815
|
|
4816
|
+
# Settings for restoring from a git branch
|
4817
|
+
class GoogleCloudDialogflowCxV3RestoreAgentRequestGitSource
|
4818
|
+
include Google::Apis::Core::Hashable
|
4819
|
+
|
4820
|
+
# tracking branch for the git pull
|
4821
|
+
# Corresponds to the JSON property `trackingBranch`
|
4822
|
+
# @return [String]
|
4823
|
+
attr_accessor :tracking_branch
|
4824
|
+
|
4825
|
+
def initialize(**args)
|
4826
|
+
update!(**args)
|
4827
|
+
end
|
4828
|
+
|
4829
|
+
# Update properties of this object
|
4830
|
+
def update!(**args)
|
4831
|
+
@tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
|
4832
|
+
end
|
4833
|
+
end
|
4834
|
+
|
4697
4835
|
# The configuration for auto rollout.
|
4698
4836
|
class GoogleCloudDialogflowCxV3RolloutConfig
|
4699
4837
|
include Google::Apis::Core::Hashable
|
@@ -7347,7 +7485,8 @@ module Google
|
|
7347
7485
|
class GoogleCloudDialogflowCxV3beta1ExportAgentResponse
|
7348
7486
|
include Google::Apis::Core::Hashable
|
7349
7487
|
|
7350
|
-
# Uncompressed raw byte content for agent.
|
7488
|
+
# Uncompressed raw byte content for agent. This field is populated if none of `
|
7489
|
+
# agent_uri` and `git_destination` are specified in ExportAgentRequest.
|
7351
7490
|
# Corresponds to the JSON property `agentContent`
|
7352
7491
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
7353
7492
|
# @return [String]
|
@@ -7359,6 +7498,12 @@ module Google
|
|
7359
7498
|
# @return [String]
|
7360
7499
|
attr_accessor :agent_uri
|
7361
7500
|
|
7501
|
+
# Commit SHA of the git push. This field is populated if `git_destination` is
|
7502
|
+
# specified in ExportAgentRequest.
|
7503
|
+
# Corresponds to the JSON property `commitSha`
|
7504
|
+
# @return [String]
|
7505
|
+
attr_accessor :commit_sha
|
7506
|
+
|
7362
7507
|
def initialize(**args)
|
7363
7508
|
update!(**args)
|
7364
7509
|
end
|
@@ -7367,6 +7512,7 @@ module Google
|
|
7367
7512
|
def update!(**args)
|
7368
7513
|
@agent_content = args[:agent_content] if args.key?(:agent_content)
|
7369
7514
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
7515
|
+
@commit_sha = args[:commit_sha] if args.key?(:commit_sha)
|
7370
7516
|
end
|
7371
7517
|
end
|
7372
7518
|
|
@@ -10007,7 +10153,7 @@ module Google
|
|
10007
10153
|
# Required. The unique identifier of the context. Format: `projects//agent/
|
10008
10154
|
# sessions//contexts/`, or `projects//agent/environments//users//sessions//
|
10009
10155
|
# contexts/`. The `Context ID` is always converted to lowercase, may only
|
10010
|
-
# contain characters in a-zA-Z0-9_
|
10156
|
+
# contain characters in `a-zA-Z0-9_-%` and may be at most 250 bytes long. If `
|
10011
10157
|
# Environment ID` is not specified, we assume default 'draft' environment. If `
|
10012
10158
|
# User ID` is not specified, we assume default '-' user. The following context
|
10013
10159
|
# names are reserved for internal use by Dialogflow. You should not use these
|
@@ -10020,12 +10166,12 @@ module Google
|
|
10020
10166
|
# Optional. The collection of parameters associated with this context. Depending
|
10021
10167
|
# on your protocol or client library language, this is a map, associative array,
|
10022
10168
|
# symbol table, dictionary, or JSON object composed of a collection of (MapKey,
|
10023
|
-
# MapValue) pairs:
|
10024
|
-
# MapValue type:
|
10025
|
-
# depending on parameter value type, could be one of string,
|
10026
|
-
# null, list or map
|
10027
|
-
# composite entity
|
10028
|
-
#
|
10169
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
10170
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
10171
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
10172
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
10173
|
+
# type is a composite entity then use map from composite entity property names
|
10174
|
+
# to property values, otherwise, use parameter value.
|
10029
10175
|
# Corresponds to the JSON property `parameters`
|
10030
10176
|
# @return [Hash<String,Object>]
|
10031
10177
|
attr_accessor :parameters
|
@@ -10428,12 +10574,12 @@ module Google
|
|
10428
10574
|
# The collection of parameters associated with the event. Depending on your
|
10429
10575
|
# protocol or client library language, this is a map, associative array, symbol
|
10430
10576
|
# table, dictionary, or JSON object composed of a collection of (MapKey,
|
10431
|
-
# MapValue) pairs:
|
10432
|
-
# MapValue type:
|
10433
|
-
# depending on parameter value type, could be one of string,
|
10434
|
-
# null, list or map
|
10435
|
-
# composite entity
|
10436
|
-
#
|
10577
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
10578
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
10579
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
10580
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
10581
|
+
# type is a composite entity then use map from composite entity property names
|
10582
|
+
# to property values, otherwise, use parameter value.
|
10437
10583
|
# Corresponds to the JSON property `parameters`
|
10438
10584
|
# @return [Hash<String,Object>]
|
10439
10585
|
attr_accessor :parameters
|
@@ -10554,8 +10700,8 @@ module Google
|
|
10554
10700
|
class GoogleCloudDialogflowV2GcsDestination
|
10555
10701
|
include Google::Apis::Core::Hashable
|
10556
10702
|
|
10557
|
-
# The Google Cloud Storage URIs for the output. A URI is of the form: gs://
|
10558
|
-
# bucket/object-prefix-or-name Whether a prefix or name is used depends on the
|
10703
|
+
# The Google Cloud Storage URIs for the output. A URI is of the form: `gs://
|
10704
|
+
# bucket/object-prefix-or-name` Whether a prefix or name is used depends on the
|
10559
10705
|
# use case. The requesting user must have "write-permission" to the bucket.
|
10560
10706
|
# Corresponds to the JSON property `uri`
|
10561
10707
|
# @return [String]
|
@@ -12214,12 +12360,13 @@ module Google
|
|
12214
12360
|
|
12215
12361
|
# The collection of extracted parameters. Depending on your protocol or client
|
12216
12362
|
# library language, this is a map, associative array, symbol table, dictionary,
|
12217
|
-
# or JSON object composed of a collection of (MapKey, MapValue) pairs:
|
12218
|
-
# type: string
|
12219
|
-
# entity type is a composite entity
|
12220
|
-
# type, could be one of string, number, boolean, null, list
|
12221
|
-
# value:
|
12222
|
-
# entity property names to property values
|
12363
|
+
# or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey
|
12364
|
+
# type: string * MapKey value: parameter name * MapValue type: If parameter's
|
12365
|
+
# entity type is a composite entity then use map, otherwise, depending on the
|
12366
|
+
# parameter value type, it could be one of string, number, boolean, null, list
|
12367
|
+
# or map. * MapValue value: If parameter's entity type is a composite entity
|
12368
|
+
# then use map from composite entity property names to property values,
|
12369
|
+
# otherwise, use parameter value.
|
12223
12370
|
# Corresponds to the JSON property `parameters`
|
12224
12371
|
# @return [Hash<String,Object>]
|
12225
12372
|
attr_accessor :parameters
|
@@ -12975,7 +13122,7 @@ module Google
|
|
12975
13122
|
# /agent/sessions//contexts/`, - `projects//locations//agent/sessions//contexts/`
|
12976
13123
|
# , - `projects//agent/environments//users//sessions//contexts/`, - `projects//
|
12977
13124
|
# locations//agent/environments//users//sessions//contexts/`, The `Context ID`
|
12978
|
-
# is always converted to lowercase, may only contain characters in a-zA-Z0-9_
|
13125
|
+
# is always converted to lowercase, may only contain characters in `a-zA-Z0-9_-%`
|
12979
13126
|
# and may be at most 250 bytes long. If `Environment ID` is not specified, we
|
12980
13127
|
# assume default 'draft' environment. If `User ID` is not specified, we assume
|
12981
13128
|
# default '-' user. The following context names are reserved for internal use by
|
@@ -12988,12 +13135,12 @@ module Google
|
|
12988
13135
|
# Optional. The collection of parameters associated with this context. Depending
|
12989
13136
|
# on your protocol or client library language, this is a map, associative array,
|
12990
13137
|
# symbol table, dictionary, or JSON object composed of a collection of (MapKey,
|
12991
|
-
# MapValue) pairs:
|
12992
|
-
# MapValue type:
|
12993
|
-
# depending on parameter value type, could be one of string,
|
12994
|
-
# null, list or map
|
12995
|
-
# composite entity
|
12996
|
-
#
|
13138
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
13139
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
13140
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
13141
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
13142
|
+
# type is a composite entity then use map from composite entity property names
|
13143
|
+
# to property values, otherwise, use parameter value.
|
12997
13144
|
# Corresponds to the JSON property `parameters`
|
12998
13145
|
# @return [Hash<String,Object>]
|
12999
13146
|
attr_accessor :parameters
|
@@ -13204,12 +13351,12 @@ module Google
|
|
13204
13351
|
# The collection of parameters associated with the event. Depending on your
|
13205
13352
|
# protocol or client library language, this is a map, associative array, symbol
|
13206
13353
|
# table, dictionary, or JSON object composed of a collection of (MapKey,
|
13207
|
-
# MapValue) pairs:
|
13208
|
-
# MapValue type:
|
13209
|
-
# depending on parameter value type, could be one of string,
|
13210
|
-
# null, list or map
|
13211
|
-
# composite entity
|
13212
|
-
#
|
13354
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
13355
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
13356
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
13357
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
13358
|
+
# type is a composite entity then use map from composite entity property names
|
13359
|
+
# to property values, otherwise, use parameter value.
|
13213
13360
|
# Corresponds to the JSON property `parameters`
|
13214
13361
|
# @return [Hash<String,Object>]
|
13215
13362
|
attr_accessor :parameters
|
@@ -13330,8 +13477,8 @@ module Google
|
|
13330
13477
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
13331
13478
|
include Google::Apis::Core::Hashable
|
13332
13479
|
|
13333
|
-
# Required. The Google Cloud Storage URIs for the output. A URI is of the form:
|
13334
|
-
# gs://bucket/object-prefix-or-name Whether a prefix or name is used depends on
|
13480
|
+
# Required. The Google Cloud Storage URIs for the output. A URI is of the form: `
|
13481
|
+
# gs://bucket/object-prefix-or-name` Whether a prefix or name is used depends on
|
13335
13482
|
# the use case. The requesting user must have "write-permission" to the bucket.
|
13336
13483
|
# Corresponds to the JSON property `uri`
|
13337
13484
|
# @return [String]
|
@@ -15498,12 +15645,13 @@ module Google
|
|
15498
15645
|
|
15499
15646
|
# The collection of extracted parameters. Depending on your protocol or client
|
15500
15647
|
# library language, this is a map, associative array, symbol table, dictionary,
|
15501
|
-
# or JSON object composed of a collection of (MapKey, MapValue) pairs:
|
15502
|
-
# type: string
|
15503
|
-
# entity type is a composite entity
|
15504
|
-
# type, could be one of string, number, boolean, null, list
|
15505
|
-
# value:
|
15506
|
-
# entity property names to property values
|
15648
|
+
# or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey
|
15649
|
+
# type: string * MapKey value: parameter name * MapValue type: If parameter's
|
15650
|
+
# entity type is a composite entity then use map, otherwise, depending on the
|
15651
|
+
# parameter value type, it could be one of string, number, boolean, null, list
|
15652
|
+
# or map. * MapValue value: If parameter's entity type is a composite entity
|
15653
|
+
# then use map from composite entity property names to property values,
|
15654
|
+
# otherwise, use parameter value.
|
15507
15655
|
# Corresponds to the JSON property `parameters`
|
15508
15656
|
# @return [Hash<String,Object>]
|
15509
15657
|
attr_accessor :parameters
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3
|
18
18
|
# Version of the google-apis-dialogflow_v3 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
|
@@ -40,6 +40,18 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class GoogleCloudDialogflowCxV3AgentGitIntegrationSettings
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
49
|
+
class GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
43
55
|
class GoogleCloudDialogflowCxV3AgentValidationResult
|
44
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
57
|
|
@@ -292,6 +304,12 @@ module Google
|
|
292
304
|
include Google::Apis::Core::JsonObjectSupport
|
293
305
|
end
|
294
306
|
|
307
|
+
class GoogleCloudDialogflowCxV3ExportAgentRequestGitDestination
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
+
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
311
|
+
end
|
312
|
+
|
295
313
|
class GoogleCloudDialogflowCxV3ExportAgentResponse
|
296
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
315
|
|
@@ -766,6 +784,12 @@ module Google
|
|
766
784
|
include Google::Apis::Core::JsonObjectSupport
|
767
785
|
end
|
768
786
|
|
787
|
+
class GoogleCloudDialogflowCxV3RestoreAgentRequestGitSource
|
788
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
789
|
+
|
790
|
+
include Google::Apis::Core::JsonObjectSupport
|
791
|
+
end
|
792
|
+
|
769
793
|
class GoogleCloudDialogflowCxV3RolloutConfig
|
770
794
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
771
795
|
|
@@ -2709,6 +2733,8 @@ module Google
|
|
2709
2733
|
property :display_name, as: 'displayName'
|
2710
2734
|
property :enable_spell_correction, as: 'enableSpellCorrection'
|
2711
2735
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
2736
|
+
property :git_integration_settings, as: 'gitIntegrationSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGitIntegrationSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGitIntegrationSettings::Representation
|
2737
|
+
|
2712
2738
|
property :locked, as: 'locked'
|
2713
2739
|
property :name, as: 'name'
|
2714
2740
|
property :security_settings, as: 'securitySettings'
|
@@ -2722,6 +2748,25 @@ module Google
|
|
2722
2748
|
end
|
2723
2749
|
end
|
2724
2750
|
|
2751
|
+
class GoogleCloudDialogflowCxV3AgentGitIntegrationSettings
|
2752
|
+
# @private
|
2753
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2754
|
+
property :github_settings, as: 'githubSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings::Representation
|
2755
|
+
|
2756
|
+
end
|
2757
|
+
end
|
2758
|
+
|
2759
|
+
class GoogleCloudDialogflowCxV3AgentGitIntegrationSettingsGithubSettings
|
2760
|
+
# @private
|
2761
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2762
|
+
property :access_token, as: 'accessToken'
|
2763
|
+
collection :branches, as: 'branches'
|
2764
|
+
property :display_name, as: 'displayName'
|
2765
|
+
property :repository_uri, as: 'repositoryUri'
|
2766
|
+
property :tracking_branch, as: 'trackingBranch'
|
2767
|
+
end
|
2768
|
+
end
|
2769
|
+
|
2725
2770
|
class GoogleCloudDialogflowCxV3AgentValidationResult
|
2726
2771
|
# @private
|
2727
2772
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3145,15 +3190,26 @@ module Google
|
|
3145
3190
|
property :agent_uri, as: 'agentUri'
|
3146
3191
|
property :data_format, as: 'dataFormat'
|
3147
3192
|
property :environment, as: 'environment'
|
3193
|
+
property :git_destination, as: 'gitDestination', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExportAgentRequestGitDestination, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExportAgentRequestGitDestination::Representation
|
3194
|
+
|
3148
3195
|
property :include_bigquery_export_settings, as: 'includeBigqueryExportSettings'
|
3149
3196
|
end
|
3150
3197
|
end
|
3151
3198
|
|
3199
|
+
class GoogleCloudDialogflowCxV3ExportAgentRequestGitDestination
|
3200
|
+
# @private
|
3201
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3202
|
+
property :commit_message, as: 'commitMessage'
|
3203
|
+
property :tracking_branch, as: 'trackingBranch'
|
3204
|
+
end
|
3205
|
+
end
|
3206
|
+
|
3152
3207
|
class GoogleCloudDialogflowCxV3ExportAgentResponse
|
3153
3208
|
# @private
|
3154
3209
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3155
3210
|
property :agent_content, :base64 => true, as: 'agentContent'
|
3156
3211
|
property :agent_uri, as: 'agentUri'
|
3212
|
+
property :commit_sha, as: 'commitSha'
|
3157
3213
|
end
|
3158
3214
|
end
|
3159
3215
|
|
@@ -3849,6 +3905,7 @@ module Google
|
|
3849
3905
|
hash :payload, as: 'payload'
|
3850
3906
|
property :play_audio, as: 'playAudio', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio::Representation
|
3851
3907
|
|
3908
|
+
property :response_type, as: 'responseType'
|
3852
3909
|
property :telephony_transfer_call, as: 'telephonyTransferCall', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall::Representation
|
3853
3910
|
|
3854
3911
|
property :text, as: 'text', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageText, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageText::Representation
|
@@ -3930,10 +3987,19 @@ module Google
|
|
3930
3987
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3931
3988
|
property :agent_content, :base64 => true, as: 'agentContent'
|
3932
3989
|
property :agent_uri, as: 'agentUri'
|
3990
|
+
property :git_source, as: 'gitSource', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RestoreAgentRequestGitSource, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RestoreAgentRequestGitSource::Representation
|
3991
|
+
|
3933
3992
|
property :restore_option, as: 'restoreOption'
|
3934
3993
|
end
|
3935
3994
|
end
|
3936
3995
|
|
3996
|
+
class GoogleCloudDialogflowCxV3RestoreAgentRequestGitSource
|
3997
|
+
# @private
|
3998
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3999
|
+
property :tracking_branch, as: 'trackingBranch'
|
4000
|
+
end
|
4001
|
+
end
|
4002
|
+
|
3937
4003
|
class GoogleCloudDialogflowCxV3RolloutConfig
|
3938
4004
|
# @private
|
3939
4005
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4684,6 +4750,7 @@ module Google
|
|
4684
4750
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4685
4751
|
property :agent_content, :base64 => true, as: 'agentContent'
|
4686
4752
|
property :agent_uri, as: 'agentUri'
|
4753
|
+
property :commit_sha, as: 'commitSha'
|
4687
4754
|
end
|
4688
4755
|
end
|
4689
4756
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3
|
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_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.65.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|