google-apis-dialogflow_v3beta1 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: 708c2efd8188774776380f19516c1e824f50df985b889afb2674b7491f31bc65
4
- data.tar.gz: 17877b4f0c20b31bce8b6cfb1b3bc5aff647f23352c28e44fe7c20a17acc7593
3
+ metadata.gz: 07750cfe952eb3b2656bdb0c6d66e096a54f9224c562b6f84eb7bc1c4155a948
4
+ data.tar.gz: 20b730243069d55694048585e0e93f5abe3664d8515a4826a219e5c5fd476749
5
5
  SHA512:
6
- metadata.gz: a8550f4d6f60d8ba233c03cb729eff68660562c5ce9b8f3ba7c8bb020208bdd2360c02166d8a1dce73357563f1e9be849757bd11367d87838990a45ed65005be
7
- data.tar.gz: 39794049f36d5aea3f1d15c4b40c8400b7f32741c45cbcf81b8a928b4e85a5d5f854273dae24e46cf5acb5aaed96694e44dddb7e9bcb410e25896870f724ba37
6
+ metadata.gz: 60b5586320fb568e89b34cec99c042393442aa8e1501c525ffcee42e25471080a869e829f98326dab5a8b5c4767a58349983bad03b859f6cd395b142cc11e4b6
7
+ data.tar.gz: f9fc149bef0f4a91e7f2643c53d5131c482edd2ebe4dade3289c41c41ff51c30271c11c205121a4d0829a0d8f5e7b389f838f8dbe95c379d171511cd73f6fe79
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
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
@@ -2560,6 +2560,54 @@ module Google
2560
2560
  end
2561
2561
  end
2562
2562
 
2563
+ # Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
2564
+ # Settings exposed at lower level overrides the settings exposed at higher level.
2565
+ # Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
2566
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettings
2567
+ include Google::Apis::Core::Hashable
2568
+
2569
+ # Define behaviors on logging.
2570
+ # Corresponds to the JSON property `loggingSettings`
2571
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings]
2572
+ attr_accessor :logging_settings
2573
+
2574
+ def initialize(**args)
2575
+ update!(**args)
2576
+ end
2577
+
2578
+ # Update properties of this object
2579
+ def update!(**args)
2580
+ @logging_settings = args[:logging_settings] if args.key?(:logging_settings)
2581
+ end
2582
+ end
2583
+
2584
+ # Define behaviors on logging.
2585
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
2586
+ include Google::Apis::Core::Hashable
2587
+
2588
+ # If true, DF Interaction logging is currently enabled.
2589
+ # Corresponds to the JSON property `enableInteractionLogging`
2590
+ # @return [Boolean]
2591
+ attr_accessor :enable_interaction_logging
2592
+ alias_method :enable_interaction_logging?, :enable_interaction_logging
2593
+
2594
+ # If true, StackDriver logging is currently enabled.
2595
+ # Corresponds to the JSON property `enableStackdriverLogging`
2596
+ # @return [Boolean]
2597
+ attr_accessor :enable_stackdriver_logging
2598
+ alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
2599
+
2600
+ def initialize(**args)
2601
+ update!(**args)
2602
+ end
2603
+
2604
+ # Update properties of this object
2605
+ def update!(**args)
2606
+ @enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
2607
+ @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
2608
+ end
2609
+ end
2610
+
2563
2611
  # Agents are best described as Natural Language Understanding (NLU) modules that
2564
2612
  # transform user requests into actionable data. You can include agents in your
2565
2613
  # app, product, or service to determine user intent and respond to the user in a
@@ -2568,6 +2616,13 @@ module Google
2568
2616
  class GoogleCloudDialogflowCxV3beta1Agent
2569
2617
  include Google::Apis::Core::Hashable
2570
2618
 
2619
+ # Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
2620
+ # Settings exposed at lower level overrides the settings exposed at higher level.
2621
+ # Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
2622
+ # Corresponds to the JSON property `advancedSettings`
2623
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings]
2624
+ attr_accessor :advanced_settings
2625
+
2571
2626
  # The URI of the agent's avatar. Avatars are used throughout the Dialogflow
2572
2627
  # console and in the self-hosted [Web Demo](https://cloud.google.com/dialogflow/
2573
2628
  # docs/integrations/web-demo) integration.
@@ -2600,7 +2655,8 @@ module Google
2600
2655
  attr_accessor :enable_spell_correction
2601
2656
  alias_method :enable_spell_correction?, :enable_spell_correction
2602
2657
 
2603
- # Indicates if stackdriver logging is enabled for the agent.
2658
+ # Indicates if stackdriver logging is enabled for the agent. Please use agent.
2659
+ # advanced_settings instead.
2604
2660
  # Corresponds to the JSON property `enableStackdriverLogging`
2605
2661
  # @return [Boolean]
2606
2662
  attr_accessor :enable_stackdriver_logging
@@ -2649,6 +2705,7 @@ module Google
2649
2705
 
2650
2706
  # Update properties of this object
2651
2707
  def update!(**args)
2708
+ @advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
2652
2709
  @avatar_uri = args[:avatar_uri] if args.key?(:avatar_uri)
2653
2710
  @default_language_code = args[:default_language_code] if args.key?(:default_language_code)
2654
2711
  @description = args[:description] if args.key?(:description)
@@ -5946,6 +6003,15 @@ module Google
5946
6003
  attr_accessor :disable_webhook
5947
6004
  alias_method :disable_webhook?, :disable_webhook
5948
6005
 
6006
+ # A list of flow versions to override for the request. Format: `projects//
6007
+ # locations//agents//flows//versions/`. If version 1 of flow X is included in
6008
+ # this list, the traffic of flow X will go through version 1 regardless of the
6009
+ # version configuration in the environment. Each flow can have at most one
6010
+ # version specified in this list.
6011
+ # Corresponds to the JSON property `flowVersions`
6012
+ # @return [Array<String>]
6013
+ attr_accessor :flow_versions
6014
+
5949
6015
  # An object that represents a latitude/longitude pair. This is expressed as a
5950
6016
  # pair of doubles to represent degrees latitude and degrees longitude. Unless
5951
6017
  # specified otherwise, this object must conform to the WGS84 standard. Values
@@ -6013,6 +6079,7 @@ module Google
6013
6079
  @analyze_query_text_sentiment = args[:analyze_query_text_sentiment] if args.key?(:analyze_query_text_sentiment)
6014
6080
  @current_page = args[:current_page] if args.key?(:current_page)
6015
6081
  @disable_webhook = args[:disable_webhook] if args.key?(:disable_webhook)
6082
+ @flow_versions = args[:flow_versions] if args.key?(:flow_versions)
6016
6083
  @geo_location = args[:geo_location] if args.key?(:geo_location)
6017
6084
  @parameters = args[:parameters] if args.key?(:parameters)
6018
6085
  @payload = args[:payload] if args.key?(:payload)
@@ -6664,6 +6731,12 @@ module Google
6664
6731
  # @return [String]
6665
6732
  attr_accessor :display_name
6666
6733
 
6734
+ # Settings for exporting conversations to [Insights](https://cloud.google.com/
6735
+ # dialogflow/priv/docs/insights).
6736
+ # Corresponds to the JSON property `insightsExportSettings`
6737
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings]
6738
+ attr_accessor :insights_export_settings
6739
+
6667
6740
  # [DLP](https://cloud.google.com/dlp/docs) inspect template name. Use this
6668
6741
  # template to define inspect base settings. If empty, we use the default DLP
6669
6742
  # inspect config. The template name will have one of the following formats: `
@@ -6712,6 +6785,7 @@ module Google
6712
6785
  # Update properties of this object
6713
6786
  def update!(**args)
6714
6787
  @display_name = args[:display_name] if args.key?(:display_name)
6788
+ @insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
6715
6789
  @inspect_template = args[:inspect_template] if args.key?(:inspect_template)
6716
6790
  @name = args[:name] if args.key?(:name)
6717
6791
  @purge_data_types = args[:purge_data_types] if args.key?(:purge_data_types)
@@ -6721,6 +6795,28 @@ module Google
6721
6795
  end
6722
6796
  end
6723
6797
 
6798
+ # Settings for exporting conversations to [Insights](https://cloud.google.com/
6799
+ # dialogflow/priv/docs/insights).
6800
+ class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
6801
+ include Google::Apis::Core::Hashable
6802
+
6803
+ # If enabled, we will automatically exports conversations to Insights and
6804
+ # Insights runs its analyzers.
6805
+ # Corresponds to the JSON property `enableInsightsExport`
6806
+ # @return [Boolean]
6807
+ attr_accessor :enable_insights_export
6808
+ alias_method :enable_insights_export?, :enable_insights_export
6809
+
6810
+ def initialize(**args)
6811
+ update!(**args)
6812
+ end
6813
+
6814
+ # Update properties of this object
6815
+ def update!(**args)
6816
+ @enable_insights_export = args[:enable_insights_export] if args.key?(:enable_insights_export)
6817
+ end
6818
+ end
6819
+
6724
6820
  # The result of sentiment analysis. Sentiment analysis inspects user input and
6725
6821
  # identifies the prevailing subjective opinion, especially to determine a user's
6726
6822
  # attitude as positive, negative, or neutral.
@@ -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.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
@@ -460,6 +460,18 @@ module Google
460
460
  include Google::Apis::Core::JsonObjectSupport
461
461
  end
462
462
 
463
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettings
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
469
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
463
475
  class GoogleCloudDialogflowCxV3beta1Agent
464
476
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
477
 
@@ -1144,6 +1156,12 @@ module Google
1144
1156
  include Google::Apis::Core::JsonObjectSupport
1145
1157
  end
1146
1158
 
1159
+ class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
1160
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1161
+
1162
+ include Google::Apis::Core::JsonObjectSupport
1163
+ end
1164
+
1147
1165
  class GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult
1148
1166
  class Representation < Google::Apis::Core::JsonRepresentation; end
1149
1167
 
@@ -2990,9 +3008,27 @@ module Google
2990
3008
  end
2991
3009
  end
2992
3010
 
3011
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettings
3012
+ # @private
3013
+ class Representation < Google::Apis::Core::JsonRepresentation
3014
+ property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings::Representation
3015
+
3016
+ end
3017
+ end
3018
+
3019
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
3020
+ # @private
3021
+ class Representation < Google::Apis::Core::JsonRepresentation
3022
+ property :enable_interaction_logging, as: 'enableInteractionLogging'
3023
+ property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
3024
+ end
3025
+ end
3026
+
2993
3027
  class GoogleCloudDialogflowCxV3beta1Agent
2994
3028
  # @private
2995
3029
  class Representation < Google::Apis::Core::JsonRepresentation
3030
+ property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings::Representation
3031
+
2996
3032
  property :avatar_uri, as: 'avatarUri'
2997
3033
  property :default_language_code, as: 'defaultLanguageCode'
2998
3034
  property :description, as: 'description'
@@ -3922,6 +3958,7 @@ module Google
3922
3958
  property :analyze_query_text_sentiment, as: 'analyzeQueryTextSentiment'
3923
3959
  property :current_page, as: 'currentPage'
3924
3960
  property :disable_webhook, as: 'disableWebhook'
3961
+ collection :flow_versions, as: 'flowVersions'
3925
3962
  property :geo_location, as: 'geoLocation', class: Google::Apis::DialogflowV3beta1::GoogleTypeLatLng, decorator: Google::Apis::DialogflowV3beta1::GoogleTypeLatLng::Representation
3926
3963
 
3927
3964
  hash :parameters, as: 'parameters'
@@ -4115,6 +4152,8 @@ module Google
4115
4152
  # @private
4116
4153
  class Representation < Google::Apis::Core::JsonRepresentation
4117
4154
  property :display_name, as: 'displayName'
4155
+ property :insights_export_settings, as: 'insightsExportSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings::Representation
4156
+
4118
4157
  property :inspect_template, as: 'inspectTemplate'
4119
4158
  property :name, as: 'name'
4120
4159
  collection :purge_data_types, as: 'purgeDataTypes'
@@ -4124,6 +4163,13 @@ module Google
4124
4163
  end
4125
4164
  end
4126
4165
 
4166
+ class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
4167
+ # @private
4168
+ class Representation < Google::Apis::Core::JsonRepresentation
4169
+ property :enable_insights_export, as: 'enableInsightsExport'
4170
+ end
4171
+ end
4172
+
4127
4173
  class GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult
4128
4174
  # @private
4129
4175
  class Representation < Google::Apis::Core::JsonRepresentation
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.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_v3beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3beta1
63
63
  post_install_message:
64
64
  rdoc_options: []