google-apis-dialogflow_v2beta1 0.20.0 → 0.21.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: 76e0c00b4a62d9318138b46e58e2f1f77c10e36fe51fca3f22dbeec0e811502d
|
4
|
+
data.tar.gz: f61db0b0ebd738ea0cb06a894ae7eb2285105bc6dbf2ddb0a0a5969e2f37ef5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e49b2abe2c186d8689506b08bc77d14022963095e786d14699b803e8129d94880de76bb102bf6b6485ea4723ed63eb28e391521bb7f19198bf5a3a3cc6250e3
|
7
|
+
data.tar.gz: 49887242fee66ddc8bb3b1775e858d3712429a1bb8171dcadddaa1728d13aab96cbd7f34fdf94e9071061e88d8f97cb55a546d24d1d07f8bcfa62dba87dab6f6
|
data/CHANGELOG.md
CHANGED
@@ -335,6 +335,57 @@ module Google
|
|
335
335
|
end
|
336
336
|
end
|
337
337
|
|
338
|
+
# Metadata returned for the Environments.DeployFlow long running operation.
|
339
|
+
class GoogleCloudDialogflowCxV3DeployFlowMetadata
|
340
|
+
include Google::Apis::Core::Hashable
|
341
|
+
|
342
|
+
# Errors of running deployment tests.
|
343
|
+
# Corresponds to the JSON property `testErrors`
|
344
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TestError>]
|
345
|
+
attr_accessor :test_errors
|
346
|
+
|
347
|
+
def initialize(**args)
|
348
|
+
update!(**args)
|
349
|
+
end
|
350
|
+
|
351
|
+
# Update properties of this object
|
352
|
+
def update!(**args)
|
353
|
+
@test_errors = args[:test_errors] if args.key?(:test_errors)
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
# The response message for Environments.DeployFlow.
|
358
|
+
class GoogleCloudDialogflowCxV3DeployFlowResponse
|
359
|
+
include Google::Apis::Core::Hashable
|
360
|
+
|
361
|
+
# The name of the flow version Deployment. Format: `projects//locations//agents//
|
362
|
+
# environments//deployments/`.
|
363
|
+
# Corresponds to the JSON property `deployment`
|
364
|
+
# @return [String]
|
365
|
+
attr_accessor :deployment
|
366
|
+
|
367
|
+
# Represents an environment for an agent. You can create multiple versions of
|
368
|
+
# your agent and publish them to separate environments. When you edit an agent,
|
369
|
+
# you are editing the draft agent. At any point, you can save the draft agent as
|
370
|
+
# an agent version, which is an immutable snapshot of your agent. When you save
|
371
|
+
# the draft agent, it is published to the default environment. When you create
|
372
|
+
# agent versions, you can publish them to custom environments. You can create a
|
373
|
+
# variety of custom environments for testing, development, production, etc.
|
374
|
+
# Corresponds to the JSON property `environment`
|
375
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Environment]
|
376
|
+
attr_accessor :environment
|
377
|
+
|
378
|
+
def initialize(**args)
|
379
|
+
update!(**args)
|
380
|
+
end
|
381
|
+
|
382
|
+
# Update properties of this object
|
383
|
+
def update!(**args)
|
384
|
+
@deployment = args[:deployment] if args.key?(:deployment)
|
385
|
+
@environment = args[:environment] if args.key?(:environment)
|
386
|
+
end
|
387
|
+
end
|
388
|
+
|
338
389
|
# Represents the input for dtmf event.
|
339
390
|
class GoogleCloudDialogflowCxV3DtmfInput
|
340
391
|
include Google::Apis::Core::Hashable
|
@@ -360,6 +411,121 @@ module Google
|
|
360
411
|
end
|
361
412
|
end
|
362
413
|
|
414
|
+
# Represents an environment for an agent. You can create multiple versions of
|
415
|
+
# your agent and publish them to separate environments. When you edit an agent,
|
416
|
+
# you are editing the draft agent. At any point, you can save the draft agent as
|
417
|
+
# an agent version, which is an immutable snapshot of your agent. When you save
|
418
|
+
# the draft agent, it is published to the default environment. When you create
|
419
|
+
# agent versions, you can publish them to custom environments. You can create a
|
420
|
+
# variety of custom environments for testing, development, production, etc.
|
421
|
+
class GoogleCloudDialogflowCxV3Environment
|
422
|
+
include Google::Apis::Core::Hashable
|
423
|
+
|
424
|
+
# The human-readable description of the environment. The maximum length is 500
|
425
|
+
# characters. If exceeded, the request is rejected.
|
426
|
+
# Corresponds to the JSON property `description`
|
427
|
+
# @return [String]
|
428
|
+
attr_accessor :description
|
429
|
+
|
430
|
+
# Required. The human-readable name of the environment (unique in an agent).
|
431
|
+
# Limit of 64 characters.
|
432
|
+
# Corresponds to the JSON property `displayName`
|
433
|
+
# @return [String]
|
434
|
+
attr_accessor :display_name
|
435
|
+
|
436
|
+
# The name of the environment. Format: `projects//locations//agents//
|
437
|
+
# environments/`.
|
438
|
+
# Corresponds to the JSON property `name`
|
439
|
+
# @return [String]
|
440
|
+
attr_accessor :name
|
441
|
+
|
442
|
+
# The configuration for continuous tests.
|
443
|
+
# Corresponds to the JSON property `testCasesConfig`
|
444
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig]
|
445
|
+
attr_accessor :test_cases_config
|
446
|
+
|
447
|
+
# Output only. Update time of this environment.
|
448
|
+
# Corresponds to the JSON property `updateTime`
|
449
|
+
# @return [String]
|
450
|
+
attr_accessor :update_time
|
451
|
+
|
452
|
+
# Required. A list of configurations for flow versions. You should include
|
453
|
+
# version configs for all flows that are reachable from `Start Flow` in the
|
454
|
+
# agent. Otherwise, an error will be returned.
|
455
|
+
# Corresponds to the JSON property `versionConfigs`
|
456
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig>]
|
457
|
+
attr_accessor :version_configs
|
458
|
+
|
459
|
+
def initialize(**args)
|
460
|
+
update!(**args)
|
461
|
+
end
|
462
|
+
|
463
|
+
# Update properties of this object
|
464
|
+
def update!(**args)
|
465
|
+
@description = args[:description] if args.key?(:description)
|
466
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
467
|
+
@name = args[:name] if args.key?(:name)
|
468
|
+
@test_cases_config = args[:test_cases_config] if args.key?(:test_cases_config)
|
469
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
470
|
+
@version_configs = args[:version_configs] if args.key?(:version_configs)
|
471
|
+
end
|
472
|
+
end
|
473
|
+
|
474
|
+
# The configuration for continuous tests.
|
475
|
+
class GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig
|
476
|
+
include Google::Apis::Core::Hashable
|
477
|
+
|
478
|
+
# Whether to run test cases in TestCasesConfig.test_cases periodically. Default
|
479
|
+
# false. If set to ture, run once a day.
|
480
|
+
# Corresponds to the JSON property `enableContinuousRun`
|
481
|
+
# @return [Boolean]
|
482
|
+
attr_accessor :enable_continuous_run
|
483
|
+
alias_method :enable_continuous_run?, :enable_continuous_run
|
484
|
+
|
485
|
+
# Whether to run test cases in TestCasesConfig.test_cases before deploying a
|
486
|
+
# flow version to the environment. Default false.
|
487
|
+
# Corresponds to the JSON property `enablePredeploymentRun`
|
488
|
+
# @return [Boolean]
|
489
|
+
attr_accessor :enable_predeployment_run
|
490
|
+
alias_method :enable_predeployment_run?, :enable_predeployment_run
|
491
|
+
|
492
|
+
# A list of test case names to run. They should be under the same agent. Format
|
493
|
+
# of each test case name: `projects//locations/ /agents//testCases/`
|
494
|
+
# Corresponds to the JSON property `testCases`
|
495
|
+
# @return [Array<String>]
|
496
|
+
attr_accessor :test_cases
|
497
|
+
|
498
|
+
def initialize(**args)
|
499
|
+
update!(**args)
|
500
|
+
end
|
501
|
+
|
502
|
+
# Update properties of this object
|
503
|
+
def update!(**args)
|
504
|
+
@enable_continuous_run = args[:enable_continuous_run] if args.key?(:enable_continuous_run)
|
505
|
+
@enable_predeployment_run = args[:enable_predeployment_run] if args.key?(:enable_predeployment_run)
|
506
|
+
@test_cases = args[:test_cases] if args.key?(:test_cases)
|
507
|
+
end
|
508
|
+
end
|
509
|
+
|
510
|
+
# Configuration for the version.
|
511
|
+
class GoogleCloudDialogflowCxV3EnvironmentVersionConfig
|
512
|
+
include Google::Apis::Core::Hashable
|
513
|
+
|
514
|
+
# Required. Format: projects//locations//agents//flows//versions/.
|
515
|
+
# Corresponds to the JSON property `version`
|
516
|
+
# @return [String]
|
517
|
+
attr_accessor :version
|
518
|
+
|
519
|
+
def initialize(**args)
|
520
|
+
update!(**args)
|
521
|
+
end
|
522
|
+
|
523
|
+
# Update properties of this object
|
524
|
+
def update!(**args)
|
525
|
+
@version = args[:version] if args.key?(:version)
|
526
|
+
end
|
527
|
+
end
|
528
|
+
|
363
529
|
# An event handler specifies an event that can be handled during a session. When
|
364
530
|
# the specified event happens, the following actions are taken in order: * If
|
365
531
|
# there is a `trigger_fulfillment` associated with the event, it will be called.
|
@@ -2876,6 +3042,57 @@ module Google
|
|
2876
3042
|
end
|
2877
3043
|
end
|
2878
3044
|
|
3045
|
+
# Metadata returned for the Environments.DeployFlow long running operation.
|
3046
|
+
class GoogleCloudDialogflowCxV3beta1DeployFlowMetadata
|
3047
|
+
include Google::Apis::Core::Hashable
|
3048
|
+
|
3049
|
+
# Errors of running deployment tests.
|
3050
|
+
# Corresponds to the JSON property `testErrors`
|
3051
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TestError>]
|
3052
|
+
attr_accessor :test_errors
|
3053
|
+
|
3054
|
+
def initialize(**args)
|
3055
|
+
update!(**args)
|
3056
|
+
end
|
3057
|
+
|
3058
|
+
# Update properties of this object
|
3059
|
+
def update!(**args)
|
3060
|
+
@test_errors = args[:test_errors] if args.key?(:test_errors)
|
3061
|
+
end
|
3062
|
+
end
|
3063
|
+
|
3064
|
+
# The response message for Environments.DeployFlow.
|
3065
|
+
class GoogleCloudDialogflowCxV3beta1DeployFlowResponse
|
3066
|
+
include Google::Apis::Core::Hashable
|
3067
|
+
|
3068
|
+
# The name of the flow version deployment. Format: `projects//locations//agents//
|
3069
|
+
# environments//deployments/`.
|
3070
|
+
# Corresponds to the JSON property `deployment`
|
3071
|
+
# @return [String]
|
3072
|
+
attr_accessor :deployment
|
3073
|
+
|
3074
|
+
# Represents an environment for an agent. You can create multiple versions of
|
3075
|
+
# your agent and publish them to separate environments. When you edit an agent,
|
3076
|
+
# you are editing the draft agent. At any point, you can save the draft agent as
|
3077
|
+
# an agent version, which is an immutable snapshot of your agent. When you save
|
3078
|
+
# the draft agent, it is published to the default environment. When you create
|
3079
|
+
# agent versions, you can publish them to custom environments. You can create a
|
3080
|
+
# variety of custom environments for testing, development, production, etc.
|
3081
|
+
# Corresponds to the JSON property `environment`
|
3082
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Environment]
|
3083
|
+
attr_accessor :environment
|
3084
|
+
|
3085
|
+
def initialize(**args)
|
3086
|
+
update!(**args)
|
3087
|
+
end
|
3088
|
+
|
3089
|
+
# Update properties of this object
|
3090
|
+
def update!(**args)
|
3091
|
+
@deployment = args[:deployment] if args.key?(:deployment)
|
3092
|
+
@environment = args[:environment] if args.key?(:environment)
|
3093
|
+
end
|
3094
|
+
end
|
3095
|
+
|
2879
3096
|
# Represents the input for dtmf event.
|
2880
3097
|
class GoogleCloudDialogflowCxV3beta1DtmfInput
|
2881
3098
|
include Google::Apis::Core::Hashable
|
@@ -2901,6 +3118,121 @@ module Google
|
|
2901
3118
|
end
|
2902
3119
|
end
|
2903
3120
|
|
3121
|
+
# Represents an environment for an agent. You can create multiple versions of
|
3122
|
+
# your agent and publish them to separate environments. When you edit an agent,
|
3123
|
+
# you are editing the draft agent. At any point, you can save the draft agent as
|
3124
|
+
# an agent version, which is an immutable snapshot of your agent. When you save
|
3125
|
+
# the draft agent, it is published to the default environment. When you create
|
3126
|
+
# agent versions, you can publish them to custom environments. You can create a
|
3127
|
+
# variety of custom environments for testing, development, production, etc.
|
3128
|
+
class GoogleCloudDialogflowCxV3beta1Environment
|
3129
|
+
include Google::Apis::Core::Hashable
|
3130
|
+
|
3131
|
+
# The human-readable description of the environment. The maximum length is 500
|
3132
|
+
# characters. If exceeded, the request is rejected.
|
3133
|
+
# Corresponds to the JSON property `description`
|
3134
|
+
# @return [String]
|
3135
|
+
attr_accessor :description
|
3136
|
+
|
3137
|
+
# Required. The human-readable name of the environment (unique in an agent).
|
3138
|
+
# Limit of 64 characters.
|
3139
|
+
# Corresponds to the JSON property `displayName`
|
3140
|
+
# @return [String]
|
3141
|
+
attr_accessor :display_name
|
3142
|
+
|
3143
|
+
# The name of the environment. Format: `projects//locations//agents//
|
3144
|
+
# environments/`.
|
3145
|
+
# Corresponds to the JSON property `name`
|
3146
|
+
# @return [String]
|
3147
|
+
attr_accessor :name
|
3148
|
+
|
3149
|
+
# The configuration for continuous tests.
|
3150
|
+
# Corresponds to the JSON property `testCasesConfig`
|
3151
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig]
|
3152
|
+
attr_accessor :test_cases_config
|
3153
|
+
|
3154
|
+
# Output only. Update time of this environment.
|
3155
|
+
# Corresponds to the JSON property `updateTime`
|
3156
|
+
# @return [String]
|
3157
|
+
attr_accessor :update_time
|
3158
|
+
|
3159
|
+
# Required. A list of configurations for flow versions. You should include
|
3160
|
+
# version configs for all flows that are reachable from `Start Flow` in the
|
3161
|
+
# agent. Otherwise, an error will be returned.
|
3162
|
+
# Corresponds to the JSON property `versionConfigs`
|
3163
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig>]
|
3164
|
+
attr_accessor :version_configs
|
3165
|
+
|
3166
|
+
def initialize(**args)
|
3167
|
+
update!(**args)
|
3168
|
+
end
|
3169
|
+
|
3170
|
+
# Update properties of this object
|
3171
|
+
def update!(**args)
|
3172
|
+
@description = args[:description] if args.key?(:description)
|
3173
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
3174
|
+
@name = args[:name] if args.key?(:name)
|
3175
|
+
@test_cases_config = args[:test_cases_config] if args.key?(:test_cases_config)
|
3176
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
3177
|
+
@version_configs = args[:version_configs] if args.key?(:version_configs)
|
3178
|
+
end
|
3179
|
+
end
|
3180
|
+
|
3181
|
+
# The configuration for continuous tests.
|
3182
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig
|
3183
|
+
include Google::Apis::Core::Hashable
|
3184
|
+
|
3185
|
+
# Whether to run test cases in TestCasesConfig.test_cases periodically. Default
|
3186
|
+
# false. If set to ture, run once a day.
|
3187
|
+
# Corresponds to the JSON property `enableContinuousRun`
|
3188
|
+
# @return [Boolean]
|
3189
|
+
attr_accessor :enable_continuous_run
|
3190
|
+
alias_method :enable_continuous_run?, :enable_continuous_run
|
3191
|
+
|
3192
|
+
# Whether to run test cases in TestCasesConfig.test_cases before deploying a
|
3193
|
+
# flow version to the environment. Default false.
|
3194
|
+
# Corresponds to the JSON property `enablePredeploymentRun`
|
3195
|
+
# @return [Boolean]
|
3196
|
+
attr_accessor :enable_predeployment_run
|
3197
|
+
alias_method :enable_predeployment_run?, :enable_predeployment_run
|
3198
|
+
|
3199
|
+
# A list of test case names to run. They should be under the same agent. Format
|
3200
|
+
# of each test case name: `projects//locations/ /agents//testCases/`
|
3201
|
+
# Corresponds to the JSON property `testCases`
|
3202
|
+
# @return [Array<String>]
|
3203
|
+
attr_accessor :test_cases
|
3204
|
+
|
3205
|
+
def initialize(**args)
|
3206
|
+
update!(**args)
|
3207
|
+
end
|
3208
|
+
|
3209
|
+
# Update properties of this object
|
3210
|
+
def update!(**args)
|
3211
|
+
@enable_continuous_run = args[:enable_continuous_run] if args.key?(:enable_continuous_run)
|
3212
|
+
@enable_predeployment_run = args[:enable_predeployment_run] if args.key?(:enable_predeployment_run)
|
3213
|
+
@test_cases = args[:test_cases] if args.key?(:test_cases)
|
3214
|
+
end
|
3215
|
+
end
|
3216
|
+
|
3217
|
+
# Configuration for the version.
|
3218
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig
|
3219
|
+
include Google::Apis::Core::Hashable
|
3220
|
+
|
3221
|
+
# Required. Format: projects//locations//agents//flows//versions/.
|
3222
|
+
# Corresponds to the JSON property `version`
|
3223
|
+
# @return [String]
|
3224
|
+
attr_accessor :version
|
3225
|
+
|
3226
|
+
def initialize(**args)
|
3227
|
+
update!(**args)
|
3228
|
+
end
|
3229
|
+
|
3230
|
+
# Update properties of this object
|
3231
|
+
def update!(**args)
|
3232
|
+
@version = args[:version] if args.key?(:version)
|
3233
|
+
end
|
3234
|
+
end
|
3235
|
+
|
2904
3236
|
# An event handler specifies an event that can be handled during a session. When
|
2905
3237
|
# the specified event happens, the following actions are taken in order: * If
|
2906
3238
|
# there is a `trigger_fulfillment` associated with the event, it will be called.
|
@@ -13283,6 +13615,12 @@ module Google
|
|
13283
13615
|
# @return [Hash<String,Object>]
|
13284
13616
|
attr_accessor :payload
|
13285
13617
|
|
13618
|
+
# Represents the signal that telles the client to transfer the phone call
|
13619
|
+
# connected to the agent to a third-party endpoint.
|
13620
|
+
# Corresponds to the JSON property `telephonyTransferCall`
|
13621
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall]
|
13622
|
+
attr_accessor :telephony_transfer_call
|
13623
|
+
|
13286
13624
|
# The text response message.
|
13287
13625
|
# Corresponds to the JSON property `text`
|
13288
13626
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessageText]
|
@@ -13297,6 +13635,7 @@ module Google
|
|
13297
13635
|
@end_interaction = args[:end_interaction] if args.key?(:end_interaction)
|
13298
13636
|
@live_agent_handoff = args[:live_agent_handoff] if args.key?(:live_agent_handoff)
|
13299
13637
|
@payload = args[:payload] if args.key?(:payload)
|
13638
|
+
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
13300
13639
|
@text = args[:text] if args.key?(:text)
|
13301
13640
|
end
|
13302
13641
|
end
|
@@ -13340,6 +13679,33 @@ module Google
|
|
13340
13679
|
end
|
13341
13680
|
end
|
13342
13681
|
|
13682
|
+
# Represents the signal that telles the client to transfer the phone call
|
13683
|
+
# connected to the agent to a third-party endpoint.
|
13684
|
+
class GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall
|
13685
|
+
include Google::Apis::Core::Hashable
|
13686
|
+
|
13687
|
+
# Transfer the call to a phone number in [E.164 format](https://en.wikipedia.org/
|
13688
|
+
# wiki/E.164).
|
13689
|
+
# Corresponds to the JSON property `phoneNumber`
|
13690
|
+
# @return [String]
|
13691
|
+
attr_accessor :phone_number
|
13692
|
+
|
13693
|
+
# Transfer the call to a SIP endpoint.
|
13694
|
+
# Corresponds to the JSON property `sipUri`
|
13695
|
+
# @return [String]
|
13696
|
+
attr_accessor :sip_uri
|
13697
|
+
|
13698
|
+
def initialize(**args)
|
13699
|
+
update!(**args)
|
13700
|
+
end
|
13701
|
+
|
13702
|
+
# Update properties of this object
|
13703
|
+
def update!(**args)
|
13704
|
+
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
13705
|
+
@sip_uri = args[:sip_uri] if args.key?(:sip_uri)
|
13706
|
+
end
|
13707
|
+
end
|
13708
|
+
|
13343
13709
|
# The text response message.
|
13344
13710
|
class GoogleCloudDialogflowV2beta1ResponseMessageText
|
13345
13711
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2beta1
|
18
18
|
# Version of the google-apis-dialogflow_v2beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210918"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -82,12 +82,42 @@ module Google
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
83
83
|
end
|
84
84
|
|
85
|
+
class GoogleCloudDialogflowCxV3DeployFlowMetadata
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
91
|
+
class GoogleCloudDialogflowCxV3DeployFlowResponse
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
85
97
|
class GoogleCloudDialogflowCxV3DtmfInput
|
86
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
99
|
|
88
100
|
include Google::Apis::Core::JsonObjectSupport
|
89
101
|
end
|
90
102
|
|
103
|
+
class GoogleCloudDialogflowCxV3Environment
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
109
|
+
class GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
115
|
+
class GoogleCloudDialogflowCxV3EnvironmentVersionConfig
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
91
121
|
class GoogleCloudDialogflowCxV3EventHandler
|
92
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
123
|
|
@@ -520,12 +550,42 @@ module Google
|
|
520
550
|
include Google::Apis::Core::JsonObjectSupport
|
521
551
|
end
|
522
552
|
|
553
|
+
class GoogleCloudDialogflowCxV3beta1DeployFlowMetadata
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
|
+
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
557
|
+
end
|
558
|
+
|
559
|
+
class GoogleCloudDialogflowCxV3beta1DeployFlowResponse
|
560
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
|
+
|
562
|
+
include Google::Apis::Core::JsonObjectSupport
|
563
|
+
end
|
564
|
+
|
523
565
|
class GoogleCloudDialogflowCxV3beta1DtmfInput
|
524
566
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
567
|
|
526
568
|
include Google::Apis::Core::JsonObjectSupport
|
527
569
|
end
|
528
570
|
|
571
|
+
class GoogleCloudDialogflowCxV3beta1Environment
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
573
|
+
|
574
|
+
include Google::Apis::Core::JsonObjectSupport
|
575
|
+
end
|
576
|
+
|
577
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig
|
578
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
579
|
+
|
580
|
+
include Google::Apis::Core::JsonObjectSupport
|
581
|
+
end
|
582
|
+
|
583
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
|
+
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
587
|
+
end
|
588
|
+
|
529
589
|
class GoogleCloudDialogflowCxV3beta1EventHandler
|
530
590
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
591
|
|
@@ -2164,6 +2224,12 @@ module Google
|
|
2164
2224
|
include Google::Apis::Core::JsonObjectSupport
|
2165
2225
|
end
|
2166
2226
|
|
2227
|
+
class GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall
|
2228
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2229
|
+
|
2230
|
+
include Google::Apis::Core::JsonObjectSupport
|
2231
|
+
end
|
2232
|
+
|
2167
2233
|
class GoogleCloudDialogflowV2beta1ResponseMessageText
|
2168
2234
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2169
2235
|
|
@@ -2543,6 +2609,23 @@ module Google
|
|
2543
2609
|
end
|
2544
2610
|
end
|
2545
2611
|
|
2612
|
+
class GoogleCloudDialogflowCxV3DeployFlowMetadata
|
2613
|
+
# @private
|
2614
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2615
|
+
collection :test_errors, as: 'testErrors', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TestError, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TestError::Representation
|
2616
|
+
|
2617
|
+
end
|
2618
|
+
end
|
2619
|
+
|
2620
|
+
class GoogleCloudDialogflowCxV3DeployFlowResponse
|
2621
|
+
# @private
|
2622
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2623
|
+
property :deployment, as: 'deployment'
|
2624
|
+
property :environment, as: 'environment', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Environment, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Environment::Representation
|
2625
|
+
|
2626
|
+
end
|
2627
|
+
end
|
2628
|
+
|
2546
2629
|
class GoogleCloudDialogflowCxV3DtmfInput
|
2547
2630
|
# @private
|
2548
2631
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2551,6 +2634,36 @@ module Google
|
|
2551
2634
|
end
|
2552
2635
|
end
|
2553
2636
|
|
2637
|
+
class GoogleCloudDialogflowCxV3Environment
|
2638
|
+
# @private
|
2639
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2640
|
+
property :description, as: 'description'
|
2641
|
+
property :display_name, as: 'displayName'
|
2642
|
+
property :name, as: 'name'
|
2643
|
+
property :test_cases_config, as: 'testCasesConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig::Representation
|
2644
|
+
|
2645
|
+
property :update_time, as: 'updateTime'
|
2646
|
+
collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EnvironmentVersionConfig::Representation
|
2647
|
+
|
2648
|
+
end
|
2649
|
+
end
|
2650
|
+
|
2651
|
+
class GoogleCloudDialogflowCxV3EnvironmentTestCasesConfig
|
2652
|
+
# @private
|
2653
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2654
|
+
property :enable_continuous_run, as: 'enableContinuousRun'
|
2655
|
+
property :enable_predeployment_run, as: 'enablePredeploymentRun'
|
2656
|
+
collection :test_cases, as: 'testCases'
|
2657
|
+
end
|
2658
|
+
end
|
2659
|
+
|
2660
|
+
class GoogleCloudDialogflowCxV3EnvironmentVersionConfig
|
2661
|
+
# @private
|
2662
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2663
|
+
property :version, as: 'version'
|
2664
|
+
end
|
2665
|
+
end
|
2666
|
+
|
2554
2667
|
class GoogleCloudDialogflowCxV3EventHandler
|
2555
2668
|
# @private
|
2556
2669
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3255,6 +3368,23 @@ module Google
|
|
3255
3368
|
end
|
3256
3369
|
end
|
3257
3370
|
|
3371
|
+
class GoogleCloudDialogflowCxV3beta1DeployFlowMetadata
|
3372
|
+
# @private
|
3373
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3374
|
+
collection :test_errors, as: 'testErrors', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TestError, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TestError::Representation
|
3375
|
+
|
3376
|
+
end
|
3377
|
+
end
|
3378
|
+
|
3379
|
+
class GoogleCloudDialogflowCxV3beta1DeployFlowResponse
|
3380
|
+
# @private
|
3381
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3382
|
+
property :deployment, as: 'deployment'
|
3383
|
+
property :environment, as: 'environment', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Environment, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Environment::Representation
|
3384
|
+
|
3385
|
+
end
|
3386
|
+
end
|
3387
|
+
|
3258
3388
|
class GoogleCloudDialogflowCxV3beta1DtmfInput
|
3259
3389
|
# @private
|
3260
3390
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3263,6 +3393,36 @@ module Google
|
|
3263
3393
|
end
|
3264
3394
|
end
|
3265
3395
|
|
3396
|
+
class GoogleCloudDialogflowCxV3beta1Environment
|
3397
|
+
# @private
|
3398
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3399
|
+
property :description, as: 'description'
|
3400
|
+
property :display_name, as: 'displayName'
|
3401
|
+
property :name, as: 'name'
|
3402
|
+
property :test_cases_config, as: 'testCasesConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig::Representation
|
3403
|
+
|
3404
|
+
property :update_time, as: 'updateTime'
|
3405
|
+
collection :version_configs, as: 'versionConfigs', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig::Representation
|
3406
|
+
|
3407
|
+
end
|
3408
|
+
end
|
3409
|
+
|
3410
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentTestCasesConfig
|
3411
|
+
# @private
|
3412
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3413
|
+
property :enable_continuous_run, as: 'enableContinuousRun'
|
3414
|
+
property :enable_predeployment_run, as: 'enablePredeploymentRun'
|
3415
|
+
collection :test_cases, as: 'testCases'
|
3416
|
+
end
|
3417
|
+
end
|
3418
|
+
|
3419
|
+
class GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig
|
3420
|
+
# @private
|
3421
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3422
|
+
property :version, as: 'version'
|
3423
|
+
end
|
3424
|
+
end
|
3425
|
+
|
3266
3426
|
class GoogleCloudDialogflowCxV3beta1EventHandler
|
3267
3427
|
# @private
|
3268
3428
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6079,6 +6239,8 @@ module Google
|
|
6079
6239
|
property :live_agent_handoff, as: 'liveAgentHandoff', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff::Representation
|
6080
6240
|
|
6081
6241
|
hash :payload, as: 'payload'
|
6242
|
+
property :telephony_transfer_call, as: 'telephonyTransferCall', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall::Representation
|
6243
|
+
|
6082
6244
|
property :text, as: 'text', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessageText, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessageText::Representation
|
6083
6245
|
|
6084
6246
|
end
|
@@ -6097,6 +6259,14 @@ module Google
|
|
6097
6259
|
end
|
6098
6260
|
end
|
6099
6261
|
|
6262
|
+
class GoogleCloudDialogflowV2beta1ResponseMessageTelephonyTransferCall
|
6263
|
+
# @private
|
6264
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6265
|
+
property :phone_number, as: 'phoneNumber'
|
6266
|
+
property :sip_uri, as: 'sipUri'
|
6267
|
+
end
|
6268
|
+
end
|
6269
|
+
|
6100
6270
|
class GoogleCloudDialogflowV2beta1ResponseMessageText
|
6101
6271
|
# @private
|
6102
6272
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.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: 2021-09-
|
11
|
+
date: 2021-09-27 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/master/generated/google-apis-dialogflow_v2beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.21.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v2beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|