google-apis-dialogflow_v3 0.34.0 → 0.35.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: a408395024d2fb3b2028bc1d12cebb7cef832b2d7a6ab597d82872e81a38e2ab
|
4
|
+
data.tar.gz: 0fb8c724a6ef479f58b4acff18ea87e688542aa9d4a9346625dfad89f5f028b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61becfa303274e479e1fdf0175fe4983f62aad6ccf41eaab51120a523a51e61c34ec48ec926f4f15ac293d5bdeec17ef0123a7e5ae375f6d6165ccabad887993
|
7
|
+
data.tar.gz: 40caa4d2ed04c2ceb00fbbd6b424f9ac515ddafa072d3417784b1a3e3fe69f8ef920be8dc6516c59f3592221a6c45c61385defd500e48236f4c99d4366ace8ee
|
data/CHANGELOG.md
CHANGED
@@ -1190,6 +1190,11 @@ module Google
|
|
1190
1190
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EnvironmentVersionConfig>]
|
1191
1191
|
attr_accessor :version_configs
|
1192
1192
|
|
1193
|
+
# Configuration for webhooks.
|
1194
|
+
# Corresponds to the JSON property `webhookConfig`
|
1195
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig]
|
1196
|
+
attr_accessor :webhook_config
|
1197
|
+
|
1193
1198
|
def initialize(**args)
|
1194
1199
|
update!(**args)
|
1195
1200
|
end
|
@@ -1202,6 +1207,7 @@ module Google
|
|
1202
1207
|
@test_cases_config = args[:test_cases_config] if args.key?(:test_cases_config)
|
1203
1208
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1204
1209
|
@version_configs = args[:version_configs] if args.key?(:version_configs)
|
1210
|
+
@webhook_config = args[:webhook_config] if args.key?(:webhook_config)
|
1205
1211
|
end
|
1206
1212
|
end
|
1207
1213
|
|
@@ -1260,6 +1266,27 @@ module Google
|
|
1260
1266
|
end
|
1261
1267
|
end
|
1262
1268
|
|
1269
|
+
# Configuration for webhooks.
|
1270
|
+
class GoogleCloudDialogflowCxV3EnvironmentWebhookConfig
|
1271
|
+
include Google::Apis::Core::Hashable
|
1272
|
+
|
1273
|
+
# The list of webhooks to override for the agent environment. The webhook must
|
1274
|
+
# exist in the agent. You can override fields in `generic_web_service` and `
|
1275
|
+
# service_directory`.
|
1276
|
+
# Corresponds to the JSON property `webhookOverrides`
|
1277
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Webhook>]
|
1278
|
+
attr_accessor :webhook_overrides
|
1279
|
+
|
1280
|
+
def initialize(**args)
|
1281
|
+
update!(**args)
|
1282
|
+
end
|
1283
|
+
|
1284
|
+
# Update properties of this object
|
1285
|
+
def update!(**args)
|
1286
|
+
@webhook_overrides = args[:webhook_overrides] if args.key?(:webhook_overrides)
|
1287
|
+
end
|
1288
|
+
end
|
1289
|
+
|
1263
1290
|
# An event handler specifies an event that can be handled during a session. When
|
1264
1291
|
# the specified event happens, the following actions are taken in order: * If
|
1265
1292
|
# there is a `trigger_fulfillment` associated with the event, it will be called.
|
@@ -6873,6 +6900,11 @@ module Google
|
|
6873
6900
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig>]
|
6874
6901
|
attr_accessor :version_configs
|
6875
6902
|
|
6903
|
+
# Configuration for webhooks.
|
6904
|
+
# Corresponds to the JSON property `webhookConfig`
|
6905
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig]
|
6906
|
+
attr_accessor :webhook_config
|
6907
|
+
|
6876
6908
|
def initialize(**args)
|
6877
6909
|
update!(**args)
|
6878
6910
|
end
|
@@ -6885,6 +6917,7 @@ module Google
|
|
6885
6917
|
@test_cases_config = args[:test_cases_config] if args.key?(:test_cases_config)
|
6886
6918
|
@update_time = args[:update_time] if args.key?(:update_time)
|
6887
6919
|
@version_configs = args[:version_configs] if args.key?(:version_configs)
|
6920
|
+
@webhook_config = args[:webhook_config] if args.key?(:webhook_config)
|
6888
6921
|
end
|
6889
6922
|
end
|
6890
6923
|
|
@@ -6943,6 +6976,27 @@ module Google
|
|
6943
6976
|
end
|
6944
6977
|
end
|
6945
6978
|
|
6979
|
+
# Configuration for webhooks.
|
6980
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
|
6981
|
+
include Google::Apis::Core::Hashable
|
6982
|
+
|
6983
|
+
# The list of webhooks to override for the agent environment. The webhook must
|
6984
|
+
# exist in the agent. You can override fields in `generic_web_service` and `
|
6985
|
+
# service_directory`.
|
6986
|
+
# Corresponds to the JSON property `webhookOverrides`
|
6987
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Webhook>]
|
6988
|
+
attr_accessor :webhook_overrides
|
6989
|
+
|
6990
|
+
def initialize(**args)
|
6991
|
+
update!(**args)
|
6992
|
+
end
|
6993
|
+
|
6994
|
+
# Update properties of this object
|
6995
|
+
def update!(**args)
|
6996
|
+
@webhook_overrides = args[:webhook_overrides] if args.key?(:webhook_overrides)
|
6997
|
+
end
|
6998
|
+
end
|
6999
|
+
|
6946
7000
|
# An event handler specifies an event that can be handled during a session. When
|
6947
7001
|
# the specified event happens, the following actions are taken in order: * If
|
6948
7002
|
# there is a `trigger_fulfillment` associated with the event, it will be called.
|
@@ -8910,6 +8964,115 @@ module Google
|
|
8910
8964
|
end
|
8911
8965
|
end
|
8912
8966
|
|
8967
|
+
# Webhooks host the developer's business logic. During a session, webhooks allow
|
8968
|
+
# the developer to use the data extracted by Dialogflow's natural language
|
8969
|
+
# processing to generate dynamic responses, validate collected data, or trigger
|
8970
|
+
# actions on the backend.
|
8971
|
+
class GoogleCloudDialogflowCxV3beta1Webhook
|
8972
|
+
include Google::Apis::Core::Hashable
|
8973
|
+
|
8974
|
+
# Indicates whether the webhook is disabled.
|
8975
|
+
# Corresponds to the JSON property `disabled`
|
8976
|
+
# @return [Boolean]
|
8977
|
+
attr_accessor :disabled
|
8978
|
+
alias_method :disabled?, :disabled
|
8979
|
+
|
8980
|
+
# Required. The human-readable name of the webhook, unique within the agent.
|
8981
|
+
# Corresponds to the JSON property `displayName`
|
8982
|
+
# @return [String]
|
8983
|
+
attr_accessor :display_name
|
8984
|
+
|
8985
|
+
# Represents configuration for a generic web service.
|
8986
|
+
# Corresponds to the JSON property `genericWebService`
|
8987
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService]
|
8988
|
+
attr_accessor :generic_web_service
|
8989
|
+
|
8990
|
+
# The unique identifier of the webhook. Required for the Webhooks.UpdateWebhook
|
8991
|
+
# method. Webhooks.CreateWebhook populates the name automatically. Format: `
|
8992
|
+
# projects//locations//agents//webhooks/`.
|
8993
|
+
# Corresponds to the JSON property `name`
|
8994
|
+
# @return [String]
|
8995
|
+
attr_accessor :name
|
8996
|
+
|
8997
|
+
# Represents configuration for a [Service Directory](https://cloud.google.com/
|
8998
|
+
# service-directory) service.
|
8999
|
+
# Corresponds to the JSON property `serviceDirectory`
|
9000
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig]
|
9001
|
+
attr_accessor :service_directory
|
9002
|
+
|
9003
|
+
# Webhook execution timeout. Execution is considered failed if Dialogflow doesn'
|
9004
|
+
# t receive a response from webhook at the end of the timeout period. Defaults
|
9005
|
+
# to 5 seconds, maximum allowed timeout is 30 seconds.
|
9006
|
+
# Corresponds to the JSON property `timeout`
|
9007
|
+
# @return [String]
|
9008
|
+
attr_accessor :timeout
|
9009
|
+
|
9010
|
+
def initialize(**args)
|
9011
|
+
update!(**args)
|
9012
|
+
end
|
9013
|
+
|
9014
|
+
# Update properties of this object
|
9015
|
+
def update!(**args)
|
9016
|
+
@disabled = args[:disabled] if args.key?(:disabled)
|
9017
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
9018
|
+
@generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service)
|
9019
|
+
@name = args[:name] if args.key?(:name)
|
9020
|
+
@service_directory = args[:service_directory] if args.key?(:service_directory)
|
9021
|
+
@timeout = args[:timeout] if args.key?(:timeout)
|
9022
|
+
end
|
9023
|
+
end
|
9024
|
+
|
9025
|
+
# Represents configuration for a generic web service.
|
9026
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
|
9027
|
+
include Google::Apis::Core::Hashable
|
9028
|
+
|
9029
|
+
# Optional. Specifies a list of allowed custom CA certificates (in DER format)
|
9030
|
+
# for HTTPS verification. This overrides the default SSL trust store. If this is
|
9031
|
+
# empty or unspecified, Dialogflow will use Google's default trust store to
|
9032
|
+
# verify certificates. N.B. Make sure the HTTPS server certificates are signed
|
9033
|
+
# with "subject alt name". For instance a certificate can be self-signed using
|
9034
|
+
# the following command, ``` openssl x509 -req -days 200 -in example.com.csr \ -
|
9035
|
+
# signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
9036
|
+
# nsubjectAltName='DNS:www.example.com'") ```
|
9037
|
+
# Corresponds to the JSON property `allowedCaCerts`
|
9038
|
+
# @return [Array<String>]
|
9039
|
+
attr_accessor :allowed_ca_certs
|
9040
|
+
|
9041
|
+
# The password for HTTP Basic authentication.
|
9042
|
+
# Corresponds to the JSON property `password`
|
9043
|
+
# @return [String]
|
9044
|
+
attr_accessor :password
|
9045
|
+
|
9046
|
+
# The HTTP request headers to send together with webhook requests.
|
9047
|
+
# Corresponds to the JSON property `requestHeaders`
|
9048
|
+
# @return [Hash<String,String>]
|
9049
|
+
attr_accessor :request_headers
|
9050
|
+
|
9051
|
+
# Required. The webhook URI for receiving POST requests. It must use https
|
9052
|
+
# protocol.
|
9053
|
+
# Corresponds to the JSON property `uri`
|
9054
|
+
# @return [String]
|
9055
|
+
attr_accessor :uri
|
9056
|
+
|
9057
|
+
# The user name for HTTP Basic authentication.
|
9058
|
+
# Corresponds to the JSON property `username`
|
9059
|
+
# @return [String]
|
9060
|
+
attr_accessor :username
|
9061
|
+
|
9062
|
+
def initialize(**args)
|
9063
|
+
update!(**args)
|
9064
|
+
end
|
9065
|
+
|
9066
|
+
# Update properties of this object
|
9067
|
+
def update!(**args)
|
9068
|
+
@allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
|
9069
|
+
@password = args[:password] if args.key?(:password)
|
9070
|
+
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
9071
|
+
@uri = args[:uri] if args.key?(:uri)
|
9072
|
+
@username = args[:username] if args.key?(:username)
|
9073
|
+
end
|
9074
|
+
end
|
9075
|
+
|
8913
9076
|
# The request message for a webhook call. The request is sent as a JSON object
|
8914
9077
|
# and the field names will be presented in camel cases.
|
8915
9078
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
@@ -9200,6 +9363,35 @@ module Google
|
|
9200
9363
|
end
|
9201
9364
|
end
|
9202
9365
|
|
9366
|
+
# Represents configuration for a [Service Directory](https://cloud.google.com/
|
9367
|
+
# service-directory) service.
|
9368
|
+
class GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
|
9369
|
+
include Google::Apis::Core::Hashable
|
9370
|
+
|
9371
|
+
# Represents configuration for a generic web service.
|
9372
|
+
# Corresponds to the JSON property `genericWebService`
|
9373
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService]
|
9374
|
+
attr_accessor :generic_web_service
|
9375
|
+
|
9376
|
+
# Required. The name of [Service Directory](https://cloud.google.com/service-
|
9377
|
+
# directory) service. Format: `projects//locations//namespaces//services/`. `
|
9378
|
+
# Location ID` of the service directory must be the same as the location of the
|
9379
|
+
# agent.
|
9380
|
+
# Corresponds to the JSON property `service`
|
9381
|
+
# @return [String]
|
9382
|
+
attr_accessor :service
|
9383
|
+
|
9384
|
+
def initialize(**args)
|
9385
|
+
update!(**args)
|
9386
|
+
end
|
9387
|
+
|
9388
|
+
# Update properties of this object
|
9389
|
+
def update!(**args)
|
9390
|
+
@generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service)
|
9391
|
+
@service = args[:service] if args.key?(:service)
|
9392
|
+
end
|
9393
|
+
end
|
9394
|
+
|
9203
9395
|
# Represents a part of a message possibly annotated with an entity. The part can
|
9204
9396
|
# be an entity or purely a part of the message between two entities or message
|
9205
9397
|
# start/end.
|
@@ -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.35.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 = "20220524"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -226,6 +226,12 @@ module Google
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
227
227
|
end
|
228
228
|
|
229
|
+
class GoogleCloudDialogflowCxV3EnvironmentWebhookConfig
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
229
235
|
class GoogleCloudDialogflowCxV3EventHandler
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
237
|
|
@@ -1168,6 +1174,12 @@ module Google
|
|
1168
1174
|
include Google::Apis::Core::JsonObjectSupport
|
1169
1175
|
end
|
1170
1176
|
|
1177
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
|
1178
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1179
|
+
|
1180
|
+
include Google::Apis::Core::JsonObjectSupport
|
1181
|
+
end
|
1182
|
+
|
1171
1183
|
class GoogleCloudDialogflowCxV3beta1EventHandler
|
1172
1184
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1173
1185
|
|
@@ -1504,6 +1516,18 @@ module Google
|
|
1504
1516
|
include Google::Apis::Core::JsonObjectSupport
|
1505
1517
|
end
|
1506
1518
|
|
1519
|
+
class GoogleCloudDialogflowCxV3beta1Webhook
|
1520
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1521
|
+
|
1522
|
+
include Google::Apis::Core::JsonObjectSupport
|
1523
|
+
end
|
1524
|
+
|
1525
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
|
1526
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1527
|
+
|
1528
|
+
include Google::Apis::Core::JsonObjectSupport
|
1529
|
+
end
|
1530
|
+
|
1507
1531
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
1508
1532
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1509
1533
|
|
@@ -1546,6 +1570,12 @@ module Google
|
|
1546
1570
|
include Google::Apis::Core::JsonObjectSupport
|
1547
1571
|
end
|
1548
1572
|
|
1573
|
+
class GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
|
1574
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1575
|
+
|
1576
|
+
include Google::Apis::Core::JsonObjectSupport
|
1577
|
+
end
|
1578
|
+
|
1549
1579
|
class GoogleCloudDialogflowV2AnnotatedMessagePart
|
1550
1580
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1551
1581
|
|
@@ -2907,6 +2937,8 @@ module Google
|
|
2907
2937
|
property :update_time, as: 'updateTime'
|
2908
2938
|
collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EnvironmentVersionConfig::Representation
|
2909
2939
|
|
2940
|
+
property :webhook_config, as: 'webhookConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EnvironmentWebhookConfig::Representation
|
2941
|
+
|
2910
2942
|
end
|
2911
2943
|
end
|
2912
2944
|
|
@@ -2926,6 +2958,14 @@ module Google
|
|
2926
2958
|
end
|
2927
2959
|
end
|
2928
2960
|
|
2961
|
+
class GoogleCloudDialogflowCxV3EnvironmentWebhookConfig
|
2962
|
+
# @private
|
2963
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2964
|
+
collection :webhook_overrides, as: 'webhookOverrides', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Webhook, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Webhook::Representation
|
2965
|
+
|
2966
|
+
end
|
2967
|
+
end
|
2968
|
+
|
2929
2969
|
class GoogleCloudDialogflowCxV3EventHandler
|
2930
2970
|
# @private
|
2931
2971
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4464,6 +4504,8 @@ module Google
|
|
4464
4504
|
property :update_time, as: 'updateTime'
|
4465
4505
|
collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig::Representation
|
4466
4506
|
|
4507
|
+
property :webhook_config, as: 'webhookConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig::Representation
|
4508
|
+
|
4467
4509
|
end
|
4468
4510
|
end
|
4469
4511
|
|
@@ -4483,6 +4525,14 @@ module Google
|
|
4483
4525
|
end
|
4484
4526
|
end
|
4485
4527
|
|
4528
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
|
4529
|
+
# @private
|
4530
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4531
|
+
collection :webhook_overrides, as: 'webhookOverrides', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Webhook, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Webhook::Representation
|
4532
|
+
|
4533
|
+
end
|
4534
|
+
end
|
4535
|
+
|
4486
4536
|
class GoogleCloudDialogflowCxV3beta1EventHandler
|
4487
4537
|
# @private
|
4488
4538
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5018,6 +5068,31 @@ module Google
|
|
5018
5068
|
end
|
5019
5069
|
end
|
5020
5070
|
|
5071
|
+
class GoogleCloudDialogflowCxV3beta1Webhook
|
5072
|
+
# @private
|
5073
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5074
|
+
property :disabled, as: 'disabled'
|
5075
|
+
property :display_name, as: 'displayName'
|
5076
|
+
property :generic_web_service, as: 'genericWebService', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService::Representation
|
5077
|
+
|
5078
|
+
property :name, as: 'name'
|
5079
|
+
property :service_directory, as: 'serviceDirectory', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig::Representation
|
5080
|
+
|
5081
|
+
property :timeout, as: 'timeout'
|
5082
|
+
end
|
5083
|
+
end
|
5084
|
+
|
5085
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
|
5086
|
+
# @private
|
5087
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5088
|
+
collection :allowed_ca_certs, as: 'allowedCaCerts'
|
5089
|
+
property :password, as: 'password'
|
5090
|
+
hash :request_headers, as: 'requestHeaders'
|
5091
|
+
property :uri, as: 'uri'
|
5092
|
+
property :username, as: 'username'
|
5093
|
+
end
|
5094
|
+
end
|
5095
|
+
|
5021
5096
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
5022
5097
|
# @private
|
5023
5098
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5101,6 +5176,15 @@ module Google
|
|
5101
5176
|
end
|
5102
5177
|
end
|
5103
5178
|
|
5179
|
+
class GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
|
5180
|
+
# @private
|
5181
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5182
|
+
property :generic_web_service, as: 'genericWebService', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService::Representation
|
5183
|
+
|
5184
|
+
property :service, as: 'service'
|
5185
|
+
end
|
5186
|
+
end
|
5187
|
+
|
5104
5188
|
class GoogleCloudDialogflowV2AnnotatedMessagePart
|
5105
5189
|
# @private
|
5106
5190
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.35.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-05-
|
11
|
+
date: 2022-05-30 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.35.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Dialogflow API V3
|