google-apis-dialogflow_v3 0.18.0 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a3704f48a0dbb0af0f10b1efa8021d4271435cc49edd54e2f7b6c497e2dbf0a
4
- data.tar.gz: 5486a7c0efd09b4ff213635a21b15d7e4d9dec7c46b17fa74f43d0a6b557b63f
3
+ metadata.gz: 9f673a4ce54d1db6f0d7a915c211436e14f38b57550625bc870d054b6647168d
4
+ data.tar.gz: 0fe671071c1b1bf071e31b4dc0b851df976fc0a9d151a39596a3a4db195d0763
5
5
  SHA512:
6
- metadata.gz: 74225d26c0e5ddee71cbf3a2ba87b223448ea7d5d248b446ca86c3b25b41427a52ac0d2b7280ab76504cbb7d4b72979610dd1a07e5a82b1a43e1c2dcba0065a4
7
- data.tar.gz: 402a763abd63cdb2b448c00b9dbdb68686e7ab9e7673bc80f60fe9c0aeef9cfec641b484325e56bd09fce6af7e74c19f63015936dd2b5d3935aeccb4d56ab3fc
6
+ metadata.gz: 348209a7a31b68be93c4ec093b51a27a2775ad6a9807ac98c6798e6ef937dac1ee24489251899792094f38698e02b309cc05ed6d3bfb77d9294cfdf607e9cc1a
7
+ data.tar.gz: 38b96573c88579c0b0988c9aac96afb53b7c765543651bc1ae39ea549506c36eddcab48f529f87eb6803ba88acd9dffd945c5f3c6bcdff990453d83a8b1c832a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.19.0 (2021-07-30)
4
+
5
+ * Regenerated from discovery document revision 20210727
6
+
3
7
  ### v0.18.0 (2021-07-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20210706
@@ -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)
@@ -3408,6 +3465,15 @@ module Google
3408
3465
  attr_accessor :disable_webhook
3409
3466
  alias_method :disable_webhook?, :disable_webhook
3410
3467
 
3468
+ # A list of flow versions to override for the request. Format: `projects//
3469
+ # locations//agents//flows//versions/`. If version 1 of flow X is included in
3470
+ # this list, the traffic of flow X will go through version 1 regardless of the
3471
+ # version configuration in the environment. Each flow can have at most one
3472
+ # version specified in this list.
3473
+ # Corresponds to the JSON property `flowVersions`
3474
+ # @return [Array<String>]
3475
+ attr_accessor :flow_versions
3476
+
3411
3477
  # An object that represents a latitude/longitude pair. This is expressed as a
3412
3478
  # pair of doubles to represent degrees latitude and degrees longitude. Unless
3413
3479
  # specified otherwise, this object must conform to the WGS84 standard. Values
@@ -3475,6 +3541,7 @@ module Google
3475
3541
  @analyze_query_text_sentiment = args[:analyze_query_text_sentiment] if args.key?(:analyze_query_text_sentiment)
3476
3542
  @current_page = args[:current_page] if args.key?(:current_page)
3477
3543
  @disable_webhook = args[:disable_webhook] if args.key?(:disable_webhook)
3544
+ @flow_versions = args[:flow_versions] if args.key?(:flow_versions)
3478
3545
  @geo_location = args[:geo_location] if args.key?(:geo_location)
3479
3546
  @parameters = args[:parameters] if args.key?(:parameters)
3480
3547
  @payload = args[:payload] if args.key?(:payload)
@@ -4126,6 +4193,12 @@ module Google
4126
4193
  # @return [String]
4127
4194
  attr_accessor :display_name
4128
4195
 
4196
+ # Settings for exporting conversations to [Insights](https://cloud.google.com/
4197
+ # dialogflow/priv/docs/insights).
4198
+ # Corresponds to the JSON property `insightsExportSettings`
4199
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings]
4200
+ attr_accessor :insights_export_settings
4201
+
4129
4202
  # [DLP](https://cloud.google.com/dlp/docs) inspect template name. Use this
4130
4203
  # template to define inspect base settings. If empty, we use the default DLP
4131
4204
  # inspect config. The template name will have one of the following formats: `
@@ -4174,6 +4247,7 @@ module Google
4174
4247
  # Update properties of this object
4175
4248
  def update!(**args)
4176
4249
  @display_name = args[:display_name] if args.key?(:display_name)
4250
+ @insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
4177
4251
  @inspect_template = args[:inspect_template] if args.key?(:inspect_template)
4178
4252
  @name = args[:name] if args.key?(:name)
4179
4253
  @purge_data_types = args[:purge_data_types] if args.key?(:purge_data_types)
@@ -4183,6 +4257,28 @@ module Google
4183
4257
  end
4184
4258
  end
4185
4259
 
4260
+ # Settings for exporting conversations to [Insights](https://cloud.google.com/
4261
+ # dialogflow/priv/docs/insights).
4262
+ class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
4263
+ include Google::Apis::Core::Hashable
4264
+
4265
+ # If enabled, we will automatically exports conversations to Insights and
4266
+ # Insights runs its analyzers.
4267
+ # Corresponds to the JSON property `enableInsightsExport`
4268
+ # @return [Boolean]
4269
+ attr_accessor :enable_insights_export
4270
+ alias_method :enable_insights_export?, :enable_insights_export
4271
+
4272
+ def initialize(**args)
4273
+ update!(**args)
4274
+ end
4275
+
4276
+ # Update properties of this object
4277
+ def update!(**args)
4278
+ @enable_insights_export = args[:enable_insights_export] if args.key?(:enable_insights_export)
4279
+ end
4280
+ end
4281
+
4186
4282
  # The result of sentiment analysis. Sentiment analysis inspects user input and
4187
4283
  # identifies the prevailing subjective opinion, especially to determine a user's
4188
4284
  # 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.18.0"
19
+ GEM_VERSION = "0.19.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 = "20210706"
25
+ REVISION = "20210727"
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
 
@@ -706,6 +718,12 @@ module Google
706
718
  include Google::Apis::Core::JsonObjectSupport
707
719
  end
708
720
 
721
+ class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
722
+ class Representation < Google::Apis::Core::JsonRepresentation; end
723
+
724
+ include Google::Apis::Core::JsonObjectSupport
725
+ end
726
+
709
727
  class GoogleCloudDialogflowCxV3SentimentAnalysisResult
710
728
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
729
 
@@ -2278,9 +2296,27 @@ module Google
2278
2296
  include Google::Apis::Core::JsonObjectSupport
2279
2297
  end
2280
2298
 
2299
+ class GoogleCloudDialogflowCxV3AdvancedSettings
2300
+ # @private
2301
+ class Representation < Google::Apis::Core::JsonRepresentation
2302
+ property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings::Representation
2303
+
2304
+ end
2305
+ end
2306
+
2307
+ class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
2308
+ # @private
2309
+ class Representation < Google::Apis::Core::JsonRepresentation
2310
+ property :enable_interaction_logging, as: 'enableInteractionLogging'
2311
+ property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
2312
+ end
2313
+ end
2314
+
2281
2315
  class GoogleCloudDialogflowCxV3Agent
2282
2316
  # @private
2283
2317
  class Representation < Google::Apis::Core::JsonRepresentation
2318
+ property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings::Representation
2319
+
2284
2320
  property :avatar_uri, as: 'avatarUri'
2285
2321
  property :default_language_code, as: 'defaultLanguageCode'
2286
2322
  property :description, as: 'description'
@@ -3210,6 +3246,7 @@ module Google
3210
3246
  property :analyze_query_text_sentiment, as: 'analyzeQueryTextSentiment'
3211
3247
  property :current_page, as: 'currentPage'
3212
3248
  property :disable_webhook, as: 'disableWebhook'
3249
+ collection :flow_versions, as: 'flowVersions'
3213
3250
  property :geo_location, as: 'geoLocation', class: Google::Apis::DialogflowV3::GoogleTypeLatLng, decorator: Google::Apis::DialogflowV3::GoogleTypeLatLng::Representation
3214
3251
 
3215
3252
  hash :parameters, as: 'parameters'
@@ -3403,6 +3440,8 @@ module Google
3403
3440
  # @private
3404
3441
  class Representation < Google::Apis::Core::JsonRepresentation
3405
3442
  property :display_name, as: 'displayName'
3443
+ property :insights_export_settings, as: 'insightsExportSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings::Representation
3444
+
3406
3445
  property :inspect_template, as: 'inspectTemplate'
3407
3446
  property :name, as: 'name'
3408
3447
  collection :purge_data_types, as: 'purgeDataTypes'
@@ -3412,6 +3451,13 @@ module Google
3412
3451
  end
3413
3452
  end
3414
3453
 
3454
+ class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
3455
+ # @private
3456
+ class Representation < Google::Apis::Core::JsonRepresentation
3457
+ property :enable_insights_export, as: 'enableInsightsExport'
3458
+ end
3459
+ end
3460
+
3415
3461
  class GoogleCloudDialogflowCxV3SentimentAnalysisResult
3416
3462
  # @private
3417
3463
  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.18.0
4
+ version: 0.19.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-07-12 00:00:00.000000000 Z
11
+ date: 2021-08-02 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_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.19.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: []