google-apis-dialogflow_v3 0.34.0 → 0.37.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: 3b2448234dfdcb8cddaf349172a9bbe5cb7fb5da834a4b4deace336b00cb2fa8
|
4
|
+
data.tar.gz: ce468c2e9e29311f724fe114426293f15751e8985ea80acfbc987b5258743385
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65a2e5e467742bd3b2f3e73ae85e5a05bde59c05c3d656493df68ee3796ed549d12987e8a7d6f8d6c4c94eac57d34c3a0a22e8a25f10c97c2740c574c54bac5f
|
7
|
+
data.tar.gz: f4ad8a836a7245222f9ee5ef620d43ea5da6ad8541f53c685e7aff5b818cf11ce24eb75baf0c91703a0cb3045f8985fa38665a4ca65e39b0282020d2021b6a20
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.37.0 (2022-06-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220616
|
6
|
+
* Regenerated using generator version 0.7.0
|
7
|
+
|
8
|
+
### v0.36.0 (2022-06-09)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20220607
|
11
|
+
* Regenerated using generator version 0.5.0
|
12
|
+
* Unspecified changes
|
13
|
+
|
14
|
+
### v0.35.0 (2022-05-27)
|
15
|
+
|
16
|
+
* Regenerated from discovery document revision 20220524
|
17
|
+
|
3
18
|
### v0.34.0 (2022-05-05)
|
4
19
|
|
5
20
|
* Regenerated from discovery document revision 20220502
|
@@ -124,7 +124,7 @@ module Google
|
|
124
124
|
attr_accessor :enable_stackdriver_logging
|
125
125
|
alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
|
126
126
|
|
127
|
-
#
|
127
|
+
# Indicates whether the agent is locked for changes. If the agent is locked,
|
128
128
|
# modifications to the agent will be rejected except for RestoreAgent.
|
129
129
|
# Corresponds to the JSON property `locked`
|
130
130
|
# @return [Boolean]
|
@@ -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.
|
@@ -6121,7 +6148,9 @@ module Google
|
|
6121
6148
|
end
|
6122
6149
|
|
6123
6150
|
# The request message for a webhook call. The request is sent as a JSON object
|
6124
|
-
# and the field names will be presented in camel cases.
|
6151
|
+
# and the field names will be presented in camel cases. You may see undocumented
|
6152
|
+
# fields in an actual request. These fields are used internally by Dialogflow
|
6153
|
+
# and should be ignored.
|
6125
6154
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
6126
6155
|
include Google::Apis::Core::Hashable
|
6127
6156
|
|
@@ -6873,6 +6902,11 @@ module Google
|
|
6873
6902
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig>]
|
6874
6903
|
attr_accessor :version_configs
|
6875
6904
|
|
6905
|
+
# Configuration for webhooks.
|
6906
|
+
# Corresponds to the JSON property `webhookConfig`
|
6907
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig]
|
6908
|
+
attr_accessor :webhook_config
|
6909
|
+
|
6876
6910
|
def initialize(**args)
|
6877
6911
|
update!(**args)
|
6878
6912
|
end
|
@@ -6885,6 +6919,7 @@ module Google
|
|
6885
6919
|
@test_cases_config = args[:test_cases_config] if args.key?(:test_cases_config)
|
6886
6920
|
@update_time = args[:update_time] if args.key?(:update_time)
|
6887
6921
|
@version_configs = args[:version_configs] if args.key?(:version_configs)
|
6922
|
+
@webhook_config = args[:webhook_config] if args.key?(:webhook_config)
|
6888
6923
|
end
|
6889
6924
|
end
|
6890
6925
|
|
@@ -6943,6 +6978,27 @@ module Google
|
|
6943
6978
|
end
|
6944
6979
|
end
|
6945
6980
|
|
6981
|
+
# Configuration for webhooks.
|
6982
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentWebhookConfig
|
6983
|
+
include Google::Apis::Core::Hashable
|
6984
|
+
|
6985
|
+
# The list of webhooks to override for the agent environment. The webhook must
|
6986
|
+
# exist in the agent. You can override fields in `generic_web_service` and `
|
6987
|
+
# service_directory`.
|
6988
|
+
# Corresponds to the JSON property `webhookOverrides`
|
6989
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Webhook>]
|
6990
|
+
attr_accessor :webhook_overrides
|
6991
|
+
|
6992
|
+
def initialize(**args)
|
6993
|
+
update!(**args)
|
6994
|
+
end
|
6995
|
+
|
6996
|
+
# Update properties of this object
|
6997
|
+
def update!(**args)
|
6998
|
+
@webhook_overrides = args[:webhook_overrides] if args.key?(:webhook_overrides)
|
6999
|
+
end
|
7000
|
+
end
|
7001
|
+
|
6946
7002
|
# An event handler specifies an event that can be handled during a session. When
|
6947
7003
|
# the specified event happens, the following actions are taken in order: * If
|
6948
7004
|
# there is a `trigger_fulfillment` associated with the event, it will be called.
|
@@ -8910,8 +8966,119 @@ module Google
|
|
8910
8966
|
end
|
8911
8967
|
end
|
8912
8968
|
|
8969
|
+
# Webhooks host the developer's business logic. During a session, webhooks allow
|
8970
|
+
# the developer to use the data extracted by Dialogflow's natural language
|
8971
|
+
# processing to generate dynamic responses, validate collected data, or trigger
|
8972
|
+
# actions on the backend.
|
8973
|
+
class GoogleCloudDialogflowCxV3beta1Webhook
|
8974
|
+
include Google::Apis::Core::Hashable
|
8975
|
+
|
8976
|
+
# Indicates whether the webhook is disabled.
|
8977
|
+
# Corresponds to the JSON property `disabled`
|
8978
|
+
# @return [Boolean]
|
8979
|
+
attr_accessor :disabled
|
8980
|
+
alias_method :disabled?, :disabled
|
8981
|
+
|
8982
|
+
# Required. The human-readable name of the webhook, unique within the agent.
|
8983
|
+
# Corresponds to the JSON property `displayName`
|
8984
|
+
# @return [String]
|
8985
|
+
attr_accessor :display_name
|
8986
|
+
|
8987
|
+
# Represents configuration for a generic web service.
|
8988
|
+
# Corresponds to the JSON property `genericWebService`
|
8989
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService]
|
8990
|
+
attr_accessor :generic_web_service
|
8991
|
+
|
8992
|
+
# The unique identifier of the webhook. Required for the Webhooks.UpdateWebhook
|
8993
|
+
# method. Webhooks.CreateWebhook populates the name automatically. Format: `
|
8994
|
+
# projects//locations//agents//webhooks/`.
|
8995
|
+
# Corresponds to the JSON property `name`
|
8996
|
+
# @return [String]
|
8997
|
+
attr_accessor :name
|
8998
|
+
|
8999
|
+
# Represents configuration for a [Service Directory](https://cloud.google.com/
|
9000
|
+
# service-directory) service.
|
9001
|
+
# Corresponds to the JSON property `serviceDirectory`
|
9002
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig]
|
9003
|
+
attr_accessor :service_directory
|
9004
|
+
|
9005
|
+
# Webhook execution timeout. Execution is considered failed if Dialogflow doesn'
|
9006
|
+
# t receive a response from webhook at the end of the timeout period. Defaults
|
9007
|
+
# to 5 seconds, maximum allowed timeout is 30 seconds.
|
9008
|
+
# Corresponds to the JSON property `timeout`
|
9009
|
+
# @return [String]
|
9010
|
+
attr_accessor :timeout
|
9011
|
+
|
9012
|
+
def initialize(**args)
|
9013
|
+
update!(**args)
|
9014
|
+
end
|
9015
|
+
|
9016
|
+
# Update properties of this object
|
9017
|
+
def update!(**args)
|
9018
|
+
@disabled = args[:disabled] if args.key?(:disabled)
|
9019
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
9020
|
+
@generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service)
|
9021
|
+
@name = args[:name] if args.key?(:name)
|
9022
|
+
@service_directory = args[:service_directory] if args.key?(:service_directory)
|
9023
|
+
@timeout = args[:timeout] if args.key?(:timeout)
|
9024
|
+
end
|
9025
|
+
end
|
9026
|
+
|
9027
|
+
# Represents configuration for a generic web service.
|
9028
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
|
9029
|
+
include Google::Apis::Core::Hashable
|
9030
|
+
|
9031
|
+
# Optional. Specifies a list of allowed custom CA certificates (in DER format)
|
9032
|
+
# for HTTPS verification. This overrides the default SSL trust store. If this is
|
9033
|
+
# empty or unspecified, Dialogflow will use Google's default trust store to
|
9034
|
+
# verify certificates. N.B. Make sure the HTTPS server certificates are signed
|
9035
|
+
# with "subject alt name". For instance a certificate can be self-signed using
|
9036
|
+
# the following command, ``` openssl x509 -req -days 200 -in example.com.csr \ -
|
9037
|
+
# signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
9038
|
+
# nsubjectAltName='DNS:www.example.com'") ```
|
9039
|
+
# Corresponds to the JSON property `allowedCaCerts`
|
9040
|
+
# @return [Array<String>]
|
9041
|
+
attr_accessor :allowed_ca_certs
|
9042
|
+
|
9043
|
+
# The password for HTTP Basic authentication.
|
9044
|
+
# Corresponds to the JSON property `password`
|
9045
|
+
# @return [String]
|
9046
|
+
attr_accessor :password
|
9047
|
+
|
9048
|
+
# The HTTP request headers to send together with webhook requests.
|
9049
|
+
# Corresponds to the JSON property `requestHeaders`
|
9050
|
+
# @return [Hash<String,String>]
|
9051
|
+
attr_accessor :request_headers
|
9052
|
+
|
9053
|
+
# Required. The webhook URI for receiving POST requests. It must use https
|
9054
|
+
# protocol.
|
9055
|
+
# Corresponds to the JSON property `uri`
|
9056
|
+
# @return [String]
|
9057
|
+
attr_accessor :uri
|
9058
|
+
|
9059
|
+
# The user name for HTTP Basic authentication.
|
9060
|
+
# Corresponds to the JSON property `username`
|
9061
|
+
# @return [String]
|
9062
|
+
attr_accessor :username
|
9063
|
+
|
9064
|
+
def initialize(**args)
|
9065
|
+
update!(**args)
|
9066
|
+
end
|
9067
|
+
|
9068
|
+
# Update properties of this object
|
9069
|
+
def update!(**args)
|
9070
|
+
@allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
|
9071
|
+
@password = args[:password] if args.key?(:password)
|
9072
|
+
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
9073
|
+
@uri = args[:uri] if args.key?(:uri)
|
9074
|
+
@username = args[:username] if args.key?(:username)
|
9075
|
+
end
|
9076
|
+
end
|
9077
|
+
|
8913
9078
|
# The request message for a webhook call. The request is sent as a JSON object
|
8914
|
-
# and the field names will be presented in camel cases.
|
9079
|
+
# and the field names will be presented in camel cases. You may see undocumented
|
9080
|
+
# fields in an actual request. These fields are used internally by Dialogflow
|
9081
|
+
# and should be ignored.
|
8915
9082
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
8916
9083
|
include Google::Apis::Core::Hashable
|
8917
9084
|
|
@@ -9200,6 +9367,35 @@ module Google
|
|
9200
9367
|
end
|
9201
9368
|
end
|
9202
9369
|
|
9370
|
+
# Represents configuration for a [Service Directory](https://cloud.google.com/
|
9371
|
+
# service-directory) service.
|
9372
|
+
class GoogleCloudDialogflowCxV3beta1WebhookServiceDirectoryConfig
|
9373
|
+
include Google::Apis::Core::Hashable
|
9374
|
+
|
9375
|
+
# Represents configuration for a generic web service.
|
9376
|
+
# Corresponds to the JSON property `genericWebService`
|
9377
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebService]
|
9378
|
+
attr_accessor :generic_web_service
|
9379
|
+
|
9380
|
+
# Required. The name of [Service Directory](https://cloud.google.com/service-
|
9381
|
+
# directory) service. Format: `projects//locations//namespaces//services/`. `
|
9382
|
+
# Location ID` of the service directory must be the same as the location of the
|
9383
|
+
# agent.
|
9384
|
+
# Corresponds to the JSON property `service`
|
9385
|
+
# @return [String]
|
9386
|
+
attr_accessor :service
|
9387
|
+
|
9388
|
+
def initialize(**args)
|
9389
|
+
update!(**args)
|
9390
|
+
end
|
9391
|
+
|
9392
|
+
# Update properties of this object
|
9393
|
+
def update!(**args)
|
9394
|
+
@generic_web_service = args[:generic_web_service] if args.key?(:generic_web_service)
|
9395
|
+
@service = args[:service] if args.key?(:service)
|
9396
|
+
end
|
9397
|
+
end
|
9398
|
+
|
9203
9399
|
# Represents a part of a message possibly annotated with an entity. The part can
|
9204
9400
|
# be an entity or purely a part of the message between two entities or message
|
9205
9401
|
# start/end.
|
@@ -11550,7 +11746,8 @@ module Google
|
|
11550
11746
|
alias_method :all_required_params_present?, :all_required_params_present
|
11551
11747
|
|
11552
11748
|
# Indicates whether the conversational query triggers a cancellation for slot
|
11553
|
-
# filling.
|
11749
|
+
# filling. For more information, see the [cancel slot filling documentation](
|
11750
|
+
# https://cloud.google.com/dialogflow/es/docs/intents-actions-parameters#cancel).
|
11554
11751
|
# Corresponds to the JSON property `cancelsSlotFilling`
|
11555
11752
|
# @return [Boolean]
|
11556
11753
|
attr_accessor :cancels_slot_filling
|
@@ -14759,7 +14956,8 @@ module Google
|
|
14759
14956
|
alias_method :all_required_params_present?, :all_required_params_present
|
14760
14957
|
|
14761
14958
|
# Indicates whether the conversational query triggers a cancellation for slot
|
14762
|
-
# filling.
|
14959
|
+
# filling. For more information, see the [cancel slot filling documentation](
|
14960
|
+
# https://cloud.google.com/dialogflow/es/docs/intents-actions-parameters#cancel).
|
14763
14961
|
# Corresponds to the JSON property `cancelsSlotFilling`
|
14764
14962
|
# @return [Boolean]
|
14765
14963
|
attr_accessor :cancels_slot_filling
|
@@ -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.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.7.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220616"
|
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.37.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-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.6'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.6'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.37.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
|