google-apis-dialogflow_v3 0.16.0 → 0.20.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: 00e549984ba51c9642ccdf98c5526852ebd04113766f8c9e19e122be810a0ddd
|
4
|
+
data.tar.gz: 85b3e8aac660d29695a60d97acaacabe068a28fb09e0de586e06d9a8eeab378a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa8d5734aca40e0370e8dc2a3cf6709f5f4a9417e2f2049a437209d44669250f921c5eb964f775c931a2c3455993987766f6df293b7184e75dda4a51b768b0d0
|
7
|
+
data.tar.gz: 51c7cea1ff89daadd0cb889781223d9892c0e83e3d4d782557595c1220e58d2680a48fc8aa06553e4dec4386f9b78ba2839ad64de4bae680cd6a97b0842b5350
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.20.0 (2021-08-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210802
|
6
|
+
|
7
|
+
### v0.19.0 (2021-07-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210727
|
10
|
+
|
11
|
+
### v0.18.0 (2021-07-09)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210706
|
14
|
+
|
15
|
+
### v0.17.0 (2021-06-29)
|
16
|
+
|
17
|
+
* Regenerated using generator version 0.4.0
|
18
|
+
|
3
19
|
### v0.16.0 (2021-06-24)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210618
|
@@ -22,6 +22,54 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DialogflowV3
|
24
24
|
|
25
|
+
# Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
|
26
|
+
# Settings exposed at lower level overrides the settings exposed at higher level.
|
27
|
+
# Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
|
28
|
+
class GoogleCloudDialogflowCxV3AdvancedSettings
|
29
|
+
include Google::Apis::Core::Hashable
|
30
|
+
|
31
|
+
# Define behaviors on logging.
|
32
|
+
# Corresponds to the JSON property `loggingSettings`
|
33
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings]
|
34
|
+
attr_accessor :logging_settings
|
35
|
+
|
36
|
+
def initialize(**args)
|
37
|
+
update!(**args)
|
38
|
+
end
|
39
|
+
|
40
|
+
# Update properties of this object
|
41
|
+
def update!(**args)
|
42
|
+
@logging_settings = args[:logging_settings] if args.key?(:logging_settings)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# Define behaviors on logging.
|
47
|
+
class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
|
48
|
+
include Google::Apis::Core::Hashable
|
49
|
+
|
50
|
+
# If true, DF Interaction logging is currently enabled.
|
51
|
+
# Corresponds to the JSON property `enableInteractionLogging`
|
52
|
+
# @return [Boolean]
|
53
|
+
attr_accessor :enable_interaction_logging
|
54
|
+
alias_method :enable_interaction_logging?, :enable_interaction_logging
|
55
|
+
|
56
|
+
# If true, StackDriver logging is currently enabled.
|
57
|
+
# Corresponds to the JSON property `enableStackdriverLogging`
|
58
|
+
# @return [Boolean]
|
59
|
+
attr_accessor :enable_stackdriver_logging
|
60
|
+
alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
|
61
|
+
|
62
|
+
def initialize(**args)
|
63
|
+
update!(**args)
|
64
|
+
end
|
65
|
+
|
66
|
+
# Update properties of this object
|
67
|
+
def update!(**args)
|
68
|
+
@enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
|
69
|
+
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
25
73
|
# Agents are best described as Natural Language Understanding (NLU) modules that
|
26
74
|
# transform user requests into actionable data. You can include agents in your
|
27
75
|
# app, product, or service to determine user intent and respond to the user in a
|
@@ -30,6 +78,13 @@ module Google
|
|
30
78
|
class GoogleCloudDialogflowCxV3Agent
|
31
79
|
include Google::Apis::Core::Hashable
|
32
80
|
|
81
|
+
# Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
|
82
|
+
# Settings exposed at lower level overrides the settings exposed at higher level.
|
83
|
+
# Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
|
84
|
+
# Corresponds to the JSON property `advancedSettings`
|
85
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings]
|
86
|
+
attr_accessor :advanced_settings
|
87
|
+
|
33
88
|
# The URI of the agent's avatar. Avatars are used throughout the Dialogflow
|
34
89
|
# console and in the self-hosted [Web Demo](https://cloud.google.com/dialogflow/
|
35
90
|
# docs/integrations/web-demo) integration.
|
@@ -62,7 +117,8 @@ module Google
|
|
62
117
|
attr_accessor :enable_spell_correction
|
63
118
|
alias_method :enable_spell_correction?, :enable_spell_correction
|
64
119
|
|
65
|
-
# Indicates if stackdriver logging is enabled for the agent.
|
120
|
+
# Indicates if stackdriver logging is enabled for the agent. Please use agent.
|
121
|
+
# advanced_settings instead.
|
66
122
|
# Corresponds to the JSON property `enableStackdriverLogging`
|
67
123
|
# @return [Boolean]
|
68
124
|
attr_accessor :enable_stackdriver_logging
|
@@ -111,6 +167,7 @@ module Google
|
|
111
167
|
|
112
168
|
# Update properties of this object
|
113
169
|
def update!(**args)
|
170
|
+
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
114
171
|
@avatar_uri = args[:avatar_uri] if args.key?(:avatar_uri)
|
115
172
|
@default_language_code = args[:default_language_code] if args.key?(:default_language_code)
|
116
173
|
@description = args[:description] if args.key?(:description)
|
@@ -1012,14 +1069,30 @@ module Google
|
|
1012
1069
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResult]
|
1013
1070
|
attr_accessor :result
|
1014
1071
|
|
1072
|
+
# The configuration for auto rollout.
|
1073
|
+
# Corresponds to the JSON property `rolloutConfig`
|
1074
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutConfig]
|
1075
|
+
attr_accessor :rollout_config
|
1076
|
+
|
1077
|
+
# The reason why rollout has failed. Should only be set when state is
|
1078
|
+
# ROLLOUT_FAILED.
|
1079
|
+
# Corresponds to the JSON property `rolloutFailureReason`
|
1080
|
+
# @return [String]
|
1081
|
+
attr_accessor :rollout_failure_reason
|
1082
|
+
|
1083
|
+
# State of the auto-rollout process.
|
1084
|
+
# Corresponds to the JSON property `rolloutState`
|
1085
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutState]
|
1086
|
+
attr_accessor :rollout_state
|
1087
|
+
|
1015
1088
|
# Start time of this experiment.
|
1016
1089
|
# Corresponds to the JSON property `startTime`
|
1017
1090
|
# @return [String]
|
1018
1091
|
attr_accessor :start_time
|
1019
1092
|
|
1020
|
-
# The current state of the experiment. Transition triggered by
|
1021
|
-
# StartExperiment:
|
1022
|
-
# CancelExperiment:
|
1093
|
+
# The current state of the experiment. Transition triggered by Experiments.
|
1094
|
+
# StartExperiment: DRAFT->RUNNING. Transition triggered by Experiments.
|
1095
|
+
# CancelExperiment: DRAFT->DONE or RUNNING->DONE.
|
1023
1096
|
# Corresponds to the JSON property `state`
|
1024
1097
|
# @return [String]
|
1025
1098
|
attr_accessor :state
|
@@ -1044,6 +1117,9 @@ module Google
|
|
1044
1117
|
@last_update_time = args[:last_update_time] if args.key?(:last_update_time)
|
1045
1118
|
@name = args[:name] if args.key?(:name)
|
1046
1119
|
@result = args[:result] if args.key?(:result)
|
1120
|
+
@rollout_config = args[:rollout_config] if args.key?(:rollout_config)
|
1121
|
+
@rollout_failure_reason = args[:rollout_failure_reason] if args.key?(:rollout_failure_reason)
|
1122
|
+
@rollout_state = args[:rollout_state] if args.key?(:rollout_state)
|
1047
1123
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1048
1124
|
@state = args[:state] if args.key?(:state)
|
1049
1125
|
@variants_history = args[:variants_history] if args.key?(:variants_history)
|
@@ -3406,6 +3482,15 @@ module Google
|
|
3406
3482
|
attr_accessor :disable_webhook
|
3407
3483
|
alias_method :disable_webhook?, :disable_webhook
|
3408
3484
|
|
3485
|
+
# A list of flow versions to override for the request. Format: `projects//
|
3486
|
+
# locations//agents//flows//versions/`. If version 1 of flow X is included in
|
3487
|
+
# this list, the traffic of flow X will go through version 1 regardless of the
|
3488
|
+
# version configuration in the environment. Each flow can have at most one
|
3489
|
+
# version specified in this list.
|
3490
|
+
# Corresponds to the JSON property `flowVersions`
|
3491
|
+
# @return [Array<String>]
|
3492
|
+
attr_accessor :flow_versions
|
3493
|
+
|
3409
3494
|
# An object that represents a latitude/longitude pair. This is expressed as a
|
3410
3495
|
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
3411
3496
|
# specified otherwise, this object must conform to the WGS84 standard. Values
|
@@ -3473,6 +3558,7 @@ module Google
|
|
3473
3558
|
@analyze_query_text_sentiment = args[:analyze_query_text_sentiment] if args.key?(:analyze_query_text_sentiment)
|
3474
3559
|
@current_page = args[:current_page] if args.key?(:current_page)
|
3475
3560
|
@disable_webhook = args[:disable_webhook] if args.key?(:disable_webhook)
|
3561
|
+
@flow_versions = args[:flow_versions] if args.key?(:flow_versions)
|
3476
3562
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
3477
3563
|
@parameters = args[:parameters] if args.key?(:parameters)
|
3478
3564
|
@payload = args[:payload] if args.key?(:payload)
|
@@ -4008,6 +4094,109 @@ module Google
|
|
4008
4094
|
end
|
4009
4095
|
end
|
4010
4096
|
|
4097
|
+
# The configuration for auto rollout.
|
4098
|
+
class GoogleCloudDialogflowCxV3RolloutConfig
|
4099
|
+
include Google::Apis::Core::Hashable
|
4100
|
+
|
4101
|
+
# The conditions that are used to evaluate the failure of a rollout step. If not
|
4102
|
+
# specified, no rollout steps will fail. E.g. "containment_rate < 10% OR
|
4103
|
+
# average_turn_count < 3". See the [conditions reference](https://cloud.google.
|
4104
|
+
# com/dialogflow/cx/docs/reference/condition).
|
4105
|
+
# Corresponds to the JSON property `failureCondition`
|
4106
|
+
# @return [String]
|
4107
|
+
attr_accessor :failure_condition
|
4108
|
+
|
4109
|
+
# The conditions that are used to evaluate the success of a rollout step. If not
|
4110
|
+
# specified, all rollout steps will proceed to the next one unless failure
|
4111
|
+
# conditions are met. E.g. "containment_rate > 60% AND callback_rate < 20%". See
|
4112
|
+
# the [conditions reference](https://cloud.google.com/dialogflow/cx/docs/
|
4113
|
+
# reference/condition).
|
4114
|
+
# Corresponds to the JSON property `rolloutCondition`
|
4115
|
+
# @return [String]
|
4116
|
+
attr_accessor :rollout_condition
|
4117
|
+
|
4118
|
+
# Steps to roll out a flow version. Steps should be sorted by percentage in
|
4119
|
+
# ascending order.
|
4120
|
+
# Corresponds to the JSON property `rolloutSteps`
|
4121
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutConfigRolloutStep>]
|
4122
|
+
attr_accessor :rollout_steps
|
4123
|
+
|
4124
|
+
def initialize(**args)
|
4125
|
+
update!(**args)
|
4126
|
+
end
|
4127
|
+
|
4128
|
+
# Update properties of this object
|
4129
|
+
def update!(**args)
|
4130
|
+
@failure_condition = args[:failure_condition] if args.key?(:failure_condition)
|
4131
|
+
@rollout_condition = args[:rollout_condition] if args.key?(:rollout_condition)
|
4132
|
+
@rollout_steps = args[:rollout_steps] if args.key?(:rollout_steps)
|
4133
|
+
end
|
4134
|
+
end
|
4135
|
+
|
4136
|
+
# A single rollout step with specified traffic allocation.
|
4137
|
+
class GoogleCloudDialogflowCxV3RolloutConfigRolloutStep
|
4138
|
+
include Google::Apis::Core::Hashable
|
4139
|
+
|
4140
|
+
# The name of the rollout step;
|
4141
|
+
# Corresponds to the JSON property `displayName`
|
4142
|
+
# @return [String]
|
4143
|
+
attr_accessor :display_name
|
4144
|
+
|
4145
|
+
# The minimum time that this step should last. Should be longer than 1 hour. If
|
4146
|
+
# not set, the default minimum duration for each step will be 1 hour.
|
4147
|
+
# Corresponds to the JSON property `minDuration`
|
4148
|
+
# @return [String]
|
4149
|
+
attr_accessor :min_duration
|
4150
|
+
|
4151
|
+
# The percentage of traffic allocated to the flow version of this rollout step. (
|
4152
|
+
# 0%, 100%].
|
4153
|
+
# Corresponds to the JSON property `trafficPercent`
|
4154
|
+
# @return [Fixnum]
|
4155
|
+
attr_accessor :traffic_percent
|
4156
|
+
|
4157
|
+
def initialize(**args)
|
4158
|
+
update!(**args)
|
4159
|
+
end
|
4160
|
+
|
4161
|
+
# Update properties of this object
|
4162
|
+
def update!(**args)
|
4163
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
4164
|
+
@min_duration = args[:min_duration] if args.key?(:min_duration)
|
4165
|
+
@traffic_percent = args[:traffic_percent] if args.key?(:traffic_percent)
|
4166
|
+
end
|
4167
|
+
end
|
4168
|
+
|
4169
|
+
# State of the auto-rollout process.
|
4170
|
+
class GoogleCloudDialogflowCxV3RolloutState
|
4171
|
+
include Google::Apis::Core::Hashable
|
4172
|
+
|
4173
|
+
# Start time of the current step.
|
4174
|
+
# Corresponds to the JSON property `startTime`
|
4175
|
+
# @return [String]
|
4176
|
+
attr_accessor :start_time
|
4177
|
+
|
4178
|
+
# Display name of the current auto rollout step.
|
4179
|
+
# Corresponds to the JSON property `step`
|
4180
|
+
# @return [String]
|
4181
|
+
attr_accessor :step
|
4182
|
+
|
4183
|
+
# Index of the current step in the auto rollout steps list.
|
4184
|
+
# Corresponds to the JSON property `stepIndex`
|
4185
|
+
# @return [Fixnum]
|
4186
|
+
attr_accessor :step_index
|
4187
|
+
|
4188
|
+
def initialize(**args)
|
4189
|
+
update!(**args)
|
4190
|
+
end
|
4191
|
+
|
4192
|
+
# Update properties of this object
|
4193
|
+
def update!(**args)
|
4194
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
4195
|
+
@step = args[:step] if args.key?(:step)
|
4196
|
+
@step_index = args[:step_index] if args.key?(:step_index)
|
4197
|
+
end
|
4198
|
+
end
|
4199
|
+
|
4011
4200
|
# Metadata returned for the Environments.RunContinuousTest long running
|
4012
4201
|
# operation.
|
4013
4202
|
class GoogleCloudDialogflowCxV3RunContinuousTestMetadata
|
@@ -4124,6 +4313,12 @@ module Google
|
|
4124
4313
|
# @return [String]
|
4125
4314
|
attr_accessor :display_name
|
4126
4315
|
|
4316
|
+
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
4317
|
+
# dialogflow/priv/docs/insights).
|
4318
|
+
# Corresponds to the JSON property `insightsExportSettings`
|
4319
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings]
|
4320
|
+
attr_accessor :insights_export_settings
|
4321
|
+
|
4127
4322
|
# [DLP](https://cloud.google.com/dlp/docs) inspect template name. Use this
|
4128
4323
|
# template to define inspect base settings. If empty, we use the default DLP
|
4129
4324
|
# inspect config. The template name will have one of the following formats: `
|
@@ -4172,6 +4367,7 @@ module Google
|
|
4172
4367
|
# Update properties of this object
|
4173
4368
|
def update!(**args)
|
4174
4369
|
@display_name = args[:display_name] if args.key?(:display_name)
|
4370
|
+
@insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
|
4175
4371
|
@inspect_template = args[:inspect_template] if args.key?(:inspect_template)
|
4176
4372
|
@name = args[:name] if args.key?(:name)
|
4177
4373
|
@purge_data_types = args[:purge_data_types] if args.key?(:purge_data_types)
|
@@ -4181,6 +4377,28 @@ module Google
|
|
4181
4377
|
end
|
4182
4378
|
end
|
4183
4379
|
|
4380
|
+
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
4381
|
+
# dialogflow/priv/docs/insights).
|
4382
|
+
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
4383
|
+
include Google::Apis::Core::Hashable
|
4384
|
+
|
4385
|
+
# If enabled, we will automatically exports conversations to Insights and
|
4386
|
+
# Insights runs its analyzers.
|
4387
|
+
# Corresponds to the JSON property `enableInsightsExport`
|
4388
|
+
# @return [Boolean]
|
4389
|
+
attr_accessor :enable_insights_export
|
4390
|
+
alias_method :enable_insights_export?, :enable_insights_export
|
4391
|
+
|
4392
|
+
def initialize(**args)
|
4393
|
+
update!(**args)
|
4394
|
+
end
|
4395
|
+
|
4396
|
+
# Update properties of this object
|
4397
|
+
def update!(**args)
|
4398
|
+
@enable_insights_export = args[:enable_insights_export] if args.key?(:enable_insights_export)
|
4399
|
+
end
|
4400
|
+
end
|
4401
|
+
|
4184
4402
|
# The result of sentiment analysis. Sentiment analysis inspects user input and
|
4185
4403
|
# identifies the prevailing subjective opinion, especially to determine a user's
|
4186
4404
|
# attitude as positive, negative, or neutral.
|
@@ -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.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210802"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,18 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DialogflowV3
|
24
24
|
|
25
|
+
class GoogleCloudDialogflowCxV3AdvancedSettings
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
25
37
|
class GoogleCloudDialogflowCxV3Agent
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
39
|
|
@@ -664,6 +676,24 @@ module Google
|
|
664
676
|
include Google::Apis::Core::JsonObjectSupport
|
665
677
|
end
|
666
678
|
|
679
|
+
class GoogleCloudDialogflowCxV3RolloutConfig
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
|
+
|
682
|
+
include Google::Apis::Core::JsonObjectSupport
|
683
|
+
end
|
684
|
+
|
685
|
+
class GoogleCloudDialogflowCxV3RolloutConfigRolloutStep
|
686
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
687
|
+
|
688
|
+
include Google::Apis::Core::JsonObjectSupport
|
689
|
+
end
|
690
|
+
|
691
|
+
class GoogleCloudDialogflowCxV3RolloutState
|
692
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
693
|
+
|
694
|
+
include Google::Apis::Core::JsonObjectSupport
|
695
|
+
end
|
696
|
+
|
667
697
|
class GoogleCloudDialogflowCxV3RunContinuousTestMetadata
|
668
698
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
699
|
|
@@ -706,6 +736,12 @@ module Google
|
|
706
736
|
include Google::Apis::Core::JsonObjectSupport
|
707
737
|
end
|
708
738
|
|
739
|
+
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
740
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
741
|
+
|
742
|
+
include Google::Apis::Core::JsonObjectSupport
|
743
|
+
end
|
744
|
+
|
709
745
|
class GoogleCloudDialogflowCxV3SentimentAnalysisResult
|
710
746
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
711
747
|
|
@@ -2278,9 +2314,27 @@ module Google
|
|
2278
2314
|
include Google::Apis::Core::JsonObjectSupport
|
2279
2315
|
end
|
2280
2316
|
|
2317
|
+
class GoogleCloudDialogflowCxV3AdvancedSettings
|
2318
|
+
# @private
|
2319
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2320
|
+
property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings::Representation
|
2321
|
+
|
2322
|
+
end
|
2323
|
+
end
|
2324
|
+
|
2325
|
+
class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
|
2326
|
+
# @private
|
2327
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2328
|
+
property :enable_interaction_logging, as: 'enableInteractionLogging'
|
2329
|
+
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
2330
|
+
end
|
2331
|
+
end
|
2332
|
+
|
2281
2333
|
class GoogleCloudDialogflowCxV3Agent
|
2282
2334
|
# @private
|
2283
2335
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2336
|
+
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings::Representation
|
2337
|
+
|
2284
2338
|
property :avatar_uri, as: 'avatarUri'
|
2285
2339
|
property :default_language_code, as: 'defaultLanguageCode'
|
2286
2340
|
property :description, as: 'description'
|
@@ -2548,6 +2602,11 @@ module Google
|
|
2548
2602
|
property :name, as: 'name'
|
2549
2603
|
property :result, as: 'result', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResult::Representation
|
2550
2604
|
|
2605
|
+
property :rollout_config, as: 'rolloutConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutConfig::Representation
|
2606
|
+
|
2607
|
+
property :rollout_failure_reason, as: 'rolloutFailureReason'
|
2608
|
+
property :rollout_state, as: 'rolloutState', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutState, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutState::Representation
|
2609
|
+
|
2551
2610
|
property :start_time, as: 'startTime'
|
2552
2611
|
property :state, as: 'state'
|
2553
2612
|
collection :variants_history, as: 'variantsHistory', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3VariantsHistory, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3VariantsHistory::Representation
|
@@ -3210,6 +3269,7 @@ module Google
|
|
3210
3269
|
property :analyze_query_text_sentiment, as: 'analyzeQueryTextSentiment'
|
3211
3270
|
property :current_page, as: 'currentPage'
|
3212
3271
|
property :disable_webhook, as: 'disableWebhook'
|
3272
|
+
collection :flow_versions, as: 'flowVersions'
|
3213
3273
|
property :geo_location, as: 'geoLocation', class: Google::Apis::DialogflowV3::GoogleTypeLatLng, decorator: Google::Apis::DialogflowV3::GoogleTypeLatLng::Representation
|
3214
3274
|
|
3215
3275
|
hash :parameters, as: 'parameters'
|
@@ -3356,6 +3416,34 @@ module Google
|
|
3356
3416
|
end
|
3357
3417
|
end
|
3358
3418
|
|
3419
|
+
class GoogleCloudDialogflowCxV3RolloutConfig
|
3420
|
+
# @private
|
3421
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3422
|
+
property :failure_condition, as: 'failureCondition'
|
3423
|
+
property :rollout_condition, as: 'rolloutCondition'
|
3424
|
+
collection :rollout_steps, as: 'rolloutSteps', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutConfigRolloutStep, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutConfigRolloutStep::Representation
|
3425
|
+
|
3426
|
+
end
|
3427
|
+
end
|
3428
|
+
|
3429
|
+
class GoogleCloudDialogflowCxV3RolloutConfigRolloutStep
|
3430
|
+
# @private
|
3431
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3432
|
+
property :display_name, as: 'displayName'
|
3433
|
+
property :min_duration, as: 'minDuration'
|
3434
|
+
property :traffic_percent, as: 'trafficPercent'
|
3435
|
+
end
|
3436
|
+
end
|
3437
|
+
|
3438
|
+
class GoogleCloudDialogflowCxV3RolloutState
|
3439
|
+
# @private
|
3440
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3441
|
+
property :start_time, as: 'startTime'
|
3442
|
+
property :step, as: 'step'
|
3443
|
+
property :step_index, as: 'stepIndex'
|
3444
|
+
end
|
3445
|
+
end
|
3446
|
+
|
3359
3447
|
class GoogleCloudDialogflowCxV3RunContinuousTestMetadata
|
3360
3448
|
# @private
|
3361
3449
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3403,6 +3491,8 @@ module Google
|
|
3403
3491
|
# @private
|
3404
3492
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3405
3493
|
property :display_name, as: 'displayName'
|
3494
|
+
property :insights_export_settings, as: 'insightsExportSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings::Representation
|
3495
|
+
|
3406
3496
|
property :inspect_template, as: 'inspectTemplate'
|
3407
3497
|
property :name, as: 'name'
|
3408
3498
|
collection :purge_data_types, as: 'purgeDataTypes'
|
@@ -3412,6 +3502,13 @@ module Google
|
|
3412
3502
|
end
|
3413
3503
|
end
|
3414
3504
|
|
3505
|
+
class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
|
3506
|
+
# @private
|
3507
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3508
|
+
property :enable_insights_export, as: 'enableInsightsExport'
|
3509
|
+
end
|
3510
|
+
end
|
3511
|
+
|
3415
3512
|
class GoogleCloudDialogflowCxV3SentimentAnalysisResult
|
3416
3513
|
# @private
|
3417
3514
|
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.20.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-08-09 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.4'
|
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.4'
|
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/master/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.20.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|