google-apis-dialogflow_v3beta1 0.1.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/dialogflow_v3beta1/classes.rb +98 -32
- data/lib/google/apis/dialogflow_v3beta1/gem_version.rb +3 -3
- data/lib/google/apis/dialogflow_v3beta1/representations.rb +8 -0
- data/lib/google/apis/dialogflow_v3beta1/service.rb +2 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e2e716668e2565e56f700448a0017881349441a1fd1cdfb8938e4f84e8d94ac
|
4
|
+
data.tar.gz: 315afba01ec21435e5f27547bbe316abb8ec753c576b7f2ad69ffe542854d746
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3ce2f6b80b2ebe0db92adf712df3ee4633515113b237b8dad8ba4cf3d961d9ea1b2d159bbd6c7d6dfd4678a6494b73809daf2cdb6e9eb2581a95a3b7212b12d
|
7
|
+
data.tar.gz: 2f8bb90e111e8b5d59e08a45d77b065908aeab30a5b7845793ca9a849c173316b7176830091f79b781372c0274898d7651b55fbb4d32c552ba7c06443e0bafe9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
2
2
|
|
3
|
+
### v0.2.0 (2021-02-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210130
|
6
|
+
* Regenerated using generator version 0.1.2
|
7
|
+
|
3
8
|
### v0.1.0 (2021-01-07)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20201231
|
@@ -512,9 +512,10 @@ module Google
|
|
512
512
|
attr_accessor :is_list
|
513
513
|
alias_method :is_list?, :is_list
|
514
514
|
|
515
|
-
# Indicates whether the parameter content
|
516
|
-
#
|
517
|
-
#
|
515
|
+
# Indicates whether the parameter content should be redacted in log. If
|
516
|
+
# redaction is enabled, the parameter content will be replaced by parameter name
|
517
|
+
# during logging. Note: the parameter content is subject to redaction if either
|
518
|
+
# parameter level redaction or entity type level redaction is enabled.
|
518
519
|
# Corresponds to the JSON property `redact`
|
519
520
|
# @return [Boolean]
|
520
521
|
attr_accessor :redact
|
@@ -1057,9 +1058,10 @@ module Google
|
|
1057
1058
|
attr_accessor :is_list
|
1058
1059
|
alias_method :is_list?, :is_list
|
1059
1060
|
|
1060
|
-
# Indicates whether the parameter content
|
1061
|
-
#
|
1062
|
-
#
|
1061
|
+
# Indicates whether the parameter content should be redacted in log. If
|
1062
|
+
# redaction is enabled, the parameter content will be replaced by parameter name
|
1063
|
+
# during logging. Note: the parameter content is subject to redaction if either
|
1064
|
+
# parameter level redaction or entity type level redaction is enabled.
|
1063
1065
|
# Corresponds to the JSON property `redact`
|
1064
1066
|
# @return [Boolean]
|
1065
1067
|
attr_accessor :redact
|
@@ -1213,9 +1215,12 @@ module Google
|
|
1213
1215
|
# conversation to another page in the same flow, or another flow. When we are in
|
1214
1216
|
# a certain page, the TransitionRoutes are evalauted in the following order: *
|
1215
1217
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
1216
|
-
# defined in the transition route groups
|
1217
|
-
# with intent specified. * TransitionRoutes
|
1218
|
-
#
|
1218
|
+
# defined in the transition route groups with intent specified. *
|
1219
|
+
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
1220
|
+
# defined in the transition route groups with intent specified. *
|
1221
|
+
# TransitionRoutes defined in the page with only condition specified. *
|
1222
|
+
# TransitionRoutes defined in the transition route groups with only condition
|
1223
|
+
# specified.
|
1219
1224
|
# Corresponds to the JSON property `transitionRoutes`
|
1220
1225
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3TransitionRoute>]
|
1221
1226
|
attr_accessor :transition_routes
|
@@ -1765,7 +1770,8 @@ module Google
|
|
1765
1770
|
|
1766
1771
|
# Always present for WebhookRequest. Ignored for WebhookResponse. The unique
|
1767
1772
|
# identifier of the session. This field can be used by the webhook to identify a
|
1768
|
-
#
|
1773
|
+
# session. Format: `projects//locations//agents//sessions/` or `projects//
|
1774
|
+
# locations//agents//environments//sessions/` if environment is specified.
|
1769
1775
|
# Corresponds to the JSON property `session`
|
1770
1776
|
# @return [String]
|
1771
1777
|
attr_accessor :session
|
@@ -1889,8 +1895,8 @@ module Google
|
|
1889
1895
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ConversationTurn>]
|
1890
1896
|
attr_accessor :conversation_turns
|
1891
1897
|
|
1892
|
-
#
|
1893
|
-
#
|
1898
|
+
# Environment where the test was run. If not set, it indicates the draft
|
1899
|
+
# environment.
|
1894
1900
|
# Corresponds to the JSON property `environment`
|
1895
1901
|
# @return [String]
|
1896
1902
|
attr_accessor :environment
|
@@ -2202,6 +2208,17 @@ module Google
|
|
2202
2208
|
class GoogleCloudDialogflowCxV3WebhookRequestIntentInfo
|
2203
2209
|
include Google::Apis::Core::Hashable
|
2204
2210
|
|
2211
|
+
# The confidence of the matched intent. Values range from 0.0 (completely
|
2212
|
+
# uncertain) to 1.0 (completely certain).
|
2213
|
+
# Corresponds to the JSON property `confidence`
|
2214
|
+
# @return [Float]
|
2215
|
+
attr_accessor :confidence
|
2216
|
+
|
2217
|
+
# Always present. The display name of the last matched intent.
|
2218
|
+
# Corresponds to the JSON property `displayName`
|
2219
|
+
# @return [String]
|
2220
|
+
attr_accessor :display_name
|
2221
|
+
|
2205
2222
|
# Always present. The unique identifier of the last matched intent. Format: `
|
2206
2223
|
# projects//locations//agents//intents/`.
|
2207
2224
|
# Corresponds to the JSON property `lastMatchedIntent`
|
@@ -2222,6 +2239,8 @@ module Google
|
|
2222
2239
|
|
2223
2240
|
# Update properties of this object
|
2224
2241
|
def update!(**args)
|
2242
|
+
@confidence = args[:confidence] if args.key?(:confidence)
|
2243
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2225
2244
|
@last_matched_intent = args[:last_matched_intent] if args.key?(:last_matched_intent)
|
2226
2245
|
@parameters = args[:parameters] if args.key?(:parameters)
|
2227
2246
|
end
|
@@ -2382,6 +2401,12 @@ module Google
|
|
2382
2401
|
# @return [String]
|
2383
2402
|
attr_accessor :name
|
2384
2403
|
|
2404
|
+
# Name of the SecuritySettings reference for the agent. Format: `projects//
|
2405
|
+
# locations//securitySettings/`.
|
2406
|
+
# Corresponds to the JSON property `securitySettings`
|
2407
|
+
# @return [String]
|
2408
|
+
attr_accessor :security_settings
|
2409
|
+
|
2385
2410
|
# Settings related to speech recognition.
|
2386
2411
|
# Corresponds to the JSON property `speechToTextSettings`
|
2387
2412
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SpeechToTextSettings]
|
@@ -2413,6 +2438,7 @@ module Google
|
|
2413
2438
|
@enable_spell_correction = args[:enable_spell_correction] if args.key?(:enable_spell_correction)
|
2414
2439
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
2415
2440
|
@name = args[:name] if args.key?(:name)
|
2441
|
+
@security_settings = args[:security_settings] if args.key?(:security_settings)
|
2416
2442
|
@speech_to_text_settings = args[:speech_to_text_settings] if args.key?(:speech_to_text_settings)
|
2417
2443
|
@start_flow = args[:start_flow] if args.key?(:start_flow)
|
2418
2444
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
@@ -2957,6 +2983,14 @@ module Google
|
|
2957
2983
|
# @return [String]
|
2958
2984
|
attr_accessor :name
|
2959
2985
|
|
2986
|
+
# Indicates whether parameters of the entity type should be redacted in log. If
|
2987
|
+
# redaction is enabled, page parameters and intent parameters referring to the
|
2988
|
+
# entity type will be replaced by parameter name during logging.
|
2989
|
+
# Corresponds to the JSON property `redact`
|
2990
|
+
# @return [Boolean]
|
2991
|
+
attr_accessor :redact
|
2992
|
+
alias_method :redact?, :redact
|
2993
|
+
|
2960
2994
|
def initialize(**args)
|
2961
2995
|
update!(**args)
|
2962
2996
|
end
|
@@ -2970,10 +3004,11 @@ module Google
|
|
2970
3004
|
@excluded_phrases = args[:excluded_phrases] if args.key?(:excluded_phrases)
|
2971
3005
|
@kind = args[:kind] if args.key?(:kind)
|
2972
3006
|
@name = args[:name] if args.key?(:name)
|
3007
|
+
@redact = args[:redact] if args.key?(:redact)
|
2973
3008
|
end
|
2974
3009
|
end
|
2975
3010
|
|
2976
|
-
# An **entity entry** for an associated entity type.
|
3011
|
+
# An **entity entry** for an associated entity type.
|
2977
3012
|
class GoogleCloudDialogflowCxV3beta1EntityTypeEntity
|
2978
3013
|
include Google::Apis::Core::Hashable
|
2979
3014
|
|
@@ -3172,7 +3207,7 @@ module Google
|
|
3172
3207
|
end
|
3173
3208
|
end
|
3174
3209
|
|
3175
|
-
# Represents an experiment in an environment.
|
3210
|
+
# Represents an experiment in an environment.
|
3176
3211
|
class GoogleCloudDialogflowCxV3beta1Experiment
|
3177
3212
|
include Google::Apis::Core::Hashable
|
3178
3213
|
|
@@ -3181,7 +3216,7 @@ module Google
|
|
3181
3216
|
# @return [String]
|
3182
3217
|
attr_accessor :create_time
|
3183
3218
|
|
3184
|
-
# Definition of the experiment.
|
3219
|
+
# Definition of the experiment.
|
3185
3220
|
# Corresponds to the JSON property `definition`
|
3186
3221
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentDefinition]
|
3187
3222
|
attr_accessor :definition
|
@@ -3262,7 +3297,7 @@ module Google
|
|
3262
3297
|
end
|
3263
3298
|
end
|
3264
3299
|
|
3265
|
-
# Definition of the experiment.
|
3300
|
+
# Definition of the experiment.
|
3266
3301
|
class GoogleCloudDialogflowCxV3beta1ExperimentDefinition
|
3267
3302
|
include Google::Apis::Core::Hashable
|
3268
3303
|
|
@@ -3367,12 +3402,24 @@ module Google
|
|
3367
3402
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval]
|
3368
3403
|
attr_accessor :confidence_interval
|
3369
3404
|
|
3405
|
+
# Count value of a metric.
|
3406
|
+
# Corresponds to the JSON property `count`
|
3407
|
+
# @return [Float]
|
3408
|
+
attr_accessor :count
|
3409
|
+
|
3410
|
+
# Count-based metric type. Only one of type or count_type is specified in each
|
3411
|
+
# Metric.
|
3412
|
+
# Corresponds to the JSON property `countType`
|
3413
|
+
# @return [String]
|
3414
|
+
attr_accessor :count_type
|
3415
|
+
|
3370
3416
|
# Ratio value of a metric.
|
3371
3417
|
# Corresponds to the JSON property `ratio`
|
3372
3418
|
# @return [Float]
|
3373
3419
|
attr_accessor :ratio
|
3374
3420
|
|
3375
|
-
#
|
3421
|
+
# Ratio-based metric type. Only one of type or count_type is specified in each
|
3422
|
+
# Metric.
|
3376
3423
|
# Corresponds to the JSON property `type`
|
3377
3424
|
# @return [String]
|
3378
3425
|
attr_accessor :type
|
@@ -3384,6 +3431,8 @@ module Google
|
|
3384
3431
|
# Update properties of this object
|
3385
3432
|
def update!(**args)
|
3386
3433
|
@confidence_interval = args[:confidence_interval] if args.key?(:confidence_interval)
|
3434
|
+
@count = args[:count] if args.key?(:count)
|
3435
|
+
@count_type = args[:count_type] if args.key?(:count_type)
|
3387
3436
|
@ratio = args[:ratio] if args.key?(:ratio)
|
3388
3437
|
@type = args[:type] if args.key?(:type)
|
3389
3438
|
end
|
@@ -3710,9 +3759,10 @@ module Google
|
|
3710
3759
|
attr_accessor :is_list
|
3711
3760
|
alias_method :is_list?, :is_list
|
3712
3761
|
|
3713
|
-
# Indicates whether the parameter content
|
3714
|
-
#
|
3715
|
-
#
|
3762
|
+
# Indicates whether the parameter content should be redacted in log. If
|
3763
|
+
# redaction is enabled, the parameter content will be replaced by parameter name
|
3764
|
+
# during logging. Note: the parameter content is subject to redaction if either
|
3765
|
+
# parameter level redaction or entity type level redaction is enabled.
|
3716
3766
|
# Corresponds to the JSON property `redact`
|
3717
3767
|
# @return [Boolean]
|
3718
3768
|
attr_accessor :redact
|
@@ -4411,9 +4461,10 @@ module Google
|
|
4411
4461
|
attr_accessor :is_list
|
4412
4462
|
alias_method :is_list?, :is_list
|
4413
4463
|
|
4414
|
-
# Indicates whether the parameter content
|
4415
|
-
#
|
4416
|
-
#
|
4464
|
+
# Indicates whether the parameter content should be redacted in log. If
|
4465
|
+
# redaction is enabled, the parameter content will be replaced by parameter name
|
4466
|
+
# during logging. Note: the parameter content is subject to redaction if either
|
4467
|
+
# parameter level redaction or entity type level redaction is enabled.
|
4417
4468
|
# Corresponds to the JSON property `redact`
|
4418
4469
|
# @return [Boolean]
|
4419
4470
|
attr_accessor :redact
|
@@ -5228,9 +5279,12 @@ module Google
|
|
5228
5279
|
# conversation to another page in the same flow, or another flow. When we are in
|
5229
5280
|
# a certain page, the TransitionRoutes are evalauted in the following order: *
|
5230
5281
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
5231
|
-
# defined in the transition route groups
|
5232
|
-
# with intent specified. * TransitionRoutes
|
5233
|
-
#
|
5282
|
+
# defined in the transition route groups with intent specified. *
|
5283
|
+
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
5284
|
+
# defined in the transition route groups with intent specified. *
|
5285
|
+
# TransitionRoutes defined in the page with only condition specified. *
|
5286
|
+
# TransitionRoutes defined in the transition route groups with only condition
|
5287
|
+
# specified.
|
5234
5288
|
# Corresponds to the JSON property `transitionRoutes`
|
5235
5289
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute>]
|
5236
5290
|
attr_accessor :transition_routes
|
@@ -6220,7 +6274,8 @@ module Google
|
|
6220
6274
|
|
6221
6275
|
# Always present for WebhookRequest. Ignored for WebhookResponse. The unique
|
6222
6276
|
# identifier of the session. This field can be used by the webhook to identify a
|
6223
|
-
#
|
6277
|
+
# session. Format: `projects//locations//agents//sessions/` or `projects//
|
6278
|
+
# locations//agents//environments//sessions/` if environment is specified.
|
6224
6279
|
# Corresponds to the JSON property `session`
|
6225
6280
|
# @return [String]
|
6226
6281
|
attr_accessor :session
|
@@ -6447,8 +6502,8 @@ module Google
|
|
6447
6502
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationTurn>]
|
6448
6503
|
attr_accessor :conversation_turns
|
6449
6504
|
|
6450
|
-
#
|
6451
|
-
#
|
6505
|
+
# Environment where the test was run. If not set, it indicates the draft
|
6506
|
+
# environment.
|
6452
6507
|
# Corresponds to the JSON property `environment`
|
6453
6508
|
# @return [String]
|
6454
6509
|
attr_accessor :environment
|
@@ -6826,9 +6881,7 @@ module Google
|
|
6826
6881
|
# @return [String]
|
6827
6882
|
attr_accessor :name
|
6828
6883
|
|
6829
|
-
# Transition routes associated with the TransitionRouteGroup.
|
6830
|
-
# transition routes (i.e. using the same `intent`) are not allowed. Note that
|
6831
|
-
# the `name` field is not used in the transition route group scope.
|
6884
|
+
# Transition routes associated with the TransitionRouteGroup.
|
6832
6885
|
# Corresponds to the JSON property `transitionRoutes`
|
6833
6886
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute>]
|
6834
6887
|
attr_accessor :transition_routes
|
@@ -7276,6 +7329,17 @@ module Google
|
|
7276
7329
|
class GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo
|
7277
7330
|
include Google::Apis::Core::Hashable
|
7278
7331
|
|
7332
|
+
# The confidence of the matched intent. Values range from 0.0 (completely
|
7333
|
+
# uncertain) to 1.0 (completely certain).
|
7334
|
+
# Corresponds to the JSON property `confidence`
|
7335
|
+
# @return [Float]
|
7336
|
+
attr_accessor :confidence
|
7337
|
+
|
7338
|
+
# Always present. The display name of the last matched intent.
|
7339
|
+
# Corresponds to the JSON property `displayName`
|
7340
|
+
# @return [String]
|
7341
|
+
attr_accessor :display_name
|
7342
|
+
|
7279
7343
|
# Always present. The unique identifier of the last matched intent. Format: `
|
7280
7344
|
# projects//locations//agents//intents/`.
|
7281
7345
|
# Corresponds to the JSON property `lastMatchedIntent`
|
@@ -7296,6 +7360,8 @@ module Google
|
|
7296
7360
|
|
7297
7361
|
# Update properties of this object
|
7298
7362
|
def update!(**args)
|
7363
|
+
@confidence = args[:confidence] if args.key?(:confidence)
|
7364
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
7299
7365
|
@last_matched_intent = args[:last_matched_intent] if args.key?(:last_matched_intent)
|
7300
7366
|
@parameters = args[:parameters] if args.key?(:parameters)
|
7301
7367
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.1.
|
22
|
+
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2652,6 +2652,8 @@ module Google
|
|
2652
2652
|
class GoogleCloudDialogflowCxV3WebhookRequestIntentInfo
|
2653
2653
|
# @private
|
2654
2654
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2655
|
+
property :confidence, as: 'confidence'
|
2656
|
+
property :display_name, as: 'displayName'
|
2655
2657
|
property :last_matched_intent, as: 'lastMatchedIntent'
|
2656
2658
|
hash :parameters, as: 'parameters', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookRequestIntentInfoIntentParameterValue::Representation
|
2657
2659
|
|
@@ -2700,6 +2702,7 @@ module Google
|
|
2700
2702
|
property :enable_spell_correction, as: 'enableSpellCorrection'
|
2701
2703
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
2702
2704
|
property :name, as: 'name'
|
2705
|
+
property :security_settings, as: 'securitySettings'
|
2703
2706
|
property :speech_to_text_settings, as: 'speechToTextSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SpeechToTextSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SpeechToTextSettings::Representation
|
2704
2707
|
|
2705
2708
|
property :start_flow, as: 'startFlow'
|
@@ -2872,6 +2875,7 @@ module Google
|
|
2872
2875
|
|
2873
2876
|
property :kind, as: 'kind'
|
2874
2877
|
property :name, as: 'name'
|
2878
|
+
property :redact, as: 'redact'
|
2875
2879
|
end
|
2876
2880
|
end
|
2877
2881
|
|
@@ -2982,6 +2986,8 @@ module Google
|
|
2982
2986
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2983
2987
|
property :confidence_interval, as: 'confidenceInterval', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval::Representation
|
2984
2988
|
|
2989
|
+
property :count, as: 'count'
|
2990
|
+
property :count_type, as: 'countType'
|
2985
2991
|
property :ratio, as: 'ratio'
|
2986
2992
|
property :type, as: 'type'
|
2987
2993
|
end
|
@@ -4060,6 +4066,8 @@ module Google
|
|
4060
4066
|
class GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo
|
4061
4067
|
# @private
|
4062
4068
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4069
|
+
property :confidence, as: 'confidence'
|
4070
|
+
property :display_name, as: 'displayName'
|
4063
4071
|
property :last_matched_intent, as: 'lastMatchedIntent'
|
4064
4072
|
hash :parameters, as: 'parameters', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfoIntentParameterValue::Representation
|
4065
4073
|
|
@@ -3081,9 +3081,8 @@ module Google
|
|
3081
3081
|
# testCases/`.
|
3082
3082
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TestCase] google_cloud_dialogflow_cx_v3beta1_test_case_object
|
3083
3083
|
# @param [String] update_mask
|
3084
|
-
# Required. The mask to specify which fields should be updated.
|
3085
|
-
#
|
3086
|
-
# test_case_conversation_turns may not be updated.
|
3084
|
+
# Required. The mask to specify which fields should be updated. The `
|
3085
|
+
# creationTime` and `lastTestResult` cannot be updated.
|
3087
3086
|
# @param [String] fields
|
3088
3087
|
# Selector specifying which fields to include in a partial response.
|
3089
3088
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.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-
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.2.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.2.6
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Dialogflow API V3beta1
|