google-apis-dialogflow_v3beta1 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: 9bf3bb384b9ff54d8e08bc9af6c1cc5103acf6230c9a025b431da5e4848f8a07
|
4
|
+
data.tar.gz: d89f4be7146e3788f2d9982e529fae8fcb010e843fef8ba7384fbfa21f3e54f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 248cc7cadb3d81eb6b4062bf0ddfaa8704cb1458f349239be401b8bc876a8e523fbea298545465e2c07702f128b8bc4c3938ca6fd3bbba0e13694be76afaf716
|
7
|
+
data.tar.gz: 8bbd34573b9c971b6becd8a16c5c24884df4125f8c4cb10611b2d2cb26c456b1f32a71f7dc93cf84134878bdcf470ac41b22e63aea51a15369d9b436ca8a9349
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
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
|
@@ -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)
|
@@ -3550,14 +3607,30 @@ module Google
|
|
3550
3607
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResult]
|
3551
3608
|
attr_accessor :result
|
3552
3609
|
|
3610
|
+
# The configuration for auto rollout.
|
3611
|
+
# Corresponds to the JSON property `rolloutConfig`
|
3612
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutConfig]
|
3613
|
+
attr_accessor :rollout_config
|
3614
|
+
|
3615
|
+
# The reason why rollout has failed. Should only be set when state is
|
3616
|
+
# ROLLOUT_FAILED.
|
3617
|
+
# Corresponds to the JSON property `rolloutFailureReason`
|
3618
|
+
# @return [String]
|
3619
|
+
attr_accessor :rollout_failure_reason
|
3620
|
+
|
3621
|
+
# State of the auto-rollout process.
|
3622
|
+
# Corresponds to the JSON property `rolloutState`
|
3623
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutState]
|
3624
|
+
attr_accessor :rollout_state
|
3625
|
+
|
3553
3626
|
# Start time of this experiment.
|
3554
3627
|
# Corresponds to the JSON property `startTime`
|
3555
3628
|
# @return [String]
|
3556
3629
|
attr_accessor :start_time
|
3557
3630
|
|
3558
|
-
# The current state of the experiment. Transition triggered by
|
3559
|
-
# StartExperiment:
|
3560
|
-
# CancelExperiment:
|
3631
|
+
# The current state of the experiment. Transition triggered by Experiments.
|
3632
|
+
# StartExperiment: DRAFT->RUNNING. Transition triggered by Experiments.
|
3633
|
+
# CancelExperiment: DRAFT->DONE or RUNNING->DONE.
|
3561
3634
|
# Corresponds to the JSON property `state`
|
3562
3635
|
# @return [String]
|
3563
3636
|
attr_accessor :state
|
@@ -3582,6 +3655,9 @@ module Google
|
|
3582
3655
|
@last_update_time = args[:last_update_time] if args.key?(:last_update_time)
|
3583
3656
|
@name = args[:name] if args.key?(:name)
|
3584
3657
|
@result = args[:result] if args.key?(:result)
|
3658
|
+
@rollout_config = args[:rollout_config] if args.key?(:rollout_config)
|
3659
|
+
@rollout_failure_reason = args[:rollout_failure_reason] if args.key?(:rollout_failure_reason)
|
3660
|
+
@rollout_state = args[:rollout_state] if args.key?(:rollout_state)
|
3585
3661
|
@start_time = args[:start_time] if args.key?(:start_time)
|
3586
3662
|
@state = args[:state] if args.key?(:state)
|
3587
3663
|
@variants_history = args[:variants_history] if args.key?(:variants_history)
|
@@ -5944,6 +6020,15 @@ module Google
|
|
5944
6020
|
attr_accessor :disable_webhook
|
5945
6021
|
alias_method :disable_webhook?, :disable_webhook
|
5946
6022
|
|
6023
|
+
# A list of flow versions to override for the request. Format: `projects//
|
6024
|
+
# locations//agents//flows//versions/`. If version 1 of flow X is included in
|
6025
|
+
# this list, the traffic of flow X will go through version 1 regardless of the
|
6026
|
+
# version configuration in the environment. Each flow can have at most one
|
6027
|
+
# version specified in this list.
|
6028
|
+
# Corresponds to the JSON property `flowVersions`
|
6029
|
+
# @return [Array<String>]
|
6030
|
+
attr_accessor :flow_versions
|
6031
|
+
|
5947
6032
|
# An object that represents a latitude/longitude pair. This is expressed as a
|
5948
6033
|
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
5949
6034
|
# specified otherwise, this object must conform to the WGS84 standard. Values
|
@@ -6011,6 +6096,7 @@ module Google
|
|
6011
6096
|
@analyze_query_text_sentiment = args[:analyze_query_text_sentiment] if args.key?(:analyze_query_text_sentiment)
|
6012
6097
|
@current_page = args[:current_page] if args.key?(:current_page)
|
6013
6098
|
@disable_webhook = args[:disable_webhook] if args.key?(:disable_webhook)
|
6099
|
+
@flow_versions = args[:flow_versions] if args.key?(:flow_versions)
|
6014
6100
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
6015
6101
|
@parameters = args[:parameters] if args.key?(:parameters)
|
6016
6102
|
@payload = args[:payload] if args.key?(:payload)
|
@@ -6546,6 +6632,109 @@ module Google
|
|
6546
6632
|
end
|
6547
6633
|
end
|
6548
6634
|
|
6635
|
+
# The configuration for auto rollout.
|
6636
|
+
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
6637
|
+
include Google::Apis::Core::Hashable
|
6638
|
+
|
6639
|
+
# The conditions that are used to evaluate the failure of a rollout step. If not
|
6640
|
+
# specified, no rollout steps will fail. E.g. "containment_rate < 10% OR
|
6641
|
+
# average_turn_count < 3". See the [conditions reference](https://cloud.google.
|
6642
|
+
# com/dialogflow/cx/docs/reference/condition).
|
6643
|
+
# Corresponds to the JSON property `failureCondition`
|
6644
|
+
# @return [String]
|
6645
|
+
attr_accessor :failure_condition
|
6646
|
+
|
6647
|
+
# The conditions that are used to evaluate the success of a rollout step. If not
|
6648
|
+
# specified, all rollout steps will proceed to the next one unless failure
|
6649
|
+
# conditions are met. E.g. "containment_rate > 60% AND callback_rate < 20%". See
|
6650
|
+
# the [conditions reference](https://cloud.google.com/dialogflow/cx/docs/
|
6651
|
+
# reference/condition).
|
6652
|
+
# Corresponds to the JSON property `rolloutCondition`
|
6653
|
+
# @return [String]
|
6654
|
+
attr_accessor :rollout_condition
|
6655
|
+
|
6656
|
+
# Steps to roll out a flow version. Steps should be sorted by percentage in
|
6657
|
+
# ascending order.
|
6658
|
+
# Corresponds to the JSON property `rolloutSteps`
|
6659
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep>]
|
6660
|
+
attr_accessor :rollout_steps
|
6661
|
+
|
6662
|
+
def initialize(**args)
|
6663
|
+
update!(**args)
|
6664
|
+
end
|
6665
|
+
|
6666
|
+
# Update properties of this object
|
6667
|
+
def update!(**args)
|
6668
|
+
@failure_condition = args[:failure_condition] if args.key?(:failure_condition)
|
6669
|
+
@rollout_condition = args[:rollout_condition] if args.key?(:rollout_condition)
|
6670
|
+
@rollout_steps = args[:rollout_steps] if args.key?(:rollout_steps)
|
6671
|
+
end
|
6672
|
+
end
|
6673
|
+
|
6674
|
+
# A single rollout step with specified traffic allocation.
|
6675
|
+
class GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep
|
6676
|
+
include Google::Apis::Core::Hashable
|
6677
|
+
|
6678
|
+
# The name of the rollout step;
|
6679
|
+
# Corresponds to the JSON property `displayName`
|
6680
|
+
# @return [String]
|
6681
|
+
attr_accessor :display_name
|
6682
|
+
|
6683
|
+
# The minimum time that this step should last. Should be longer than 1 hour. If
|
6684
|
+
# not set, the default minimum duration for each step will be 1 hour.
|
6685
|
+
# Corresponds to the JSON property `minDuration`
|
6686
|
+
# @return [String]
|
6687
|
+
attr_accessor :min_duration
|
6688
|
+
|
6689
|
+
# The percentage of traffic allocated to the flow version of this rollout step. (
|
6690
|
+
# 0%, 100%].
|
6691
|
+
# Corresponds to the JSON property `trafficPercent`
|
6692
|
+
# @return [Fixnum]
|
6693
|
+
attr_accessor :traffic_percent
|
6694
|
+
|
6695
|
+
def initialize(**args)
|
6696
|
+
update!(**args)
|
6697
|
+
end
|
6698
|
+
|
6699
|
+
# Update properties of this object
|
6700
|
+
def update!(**args)
|
6701
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6702
|
+
@min_duration = args[:min_duration] if args.key?(:min_duration)
|
6703
|
+
@traffic_percent = args[:traffic_percent] if args.key?(:traffic_percent)
|
6704
|
+
end
|
6705
|
+
end
|
6706
|
+
|
6707
|
+
# State of the auto-rollout process.
|
6708
|
+
class GoogleCloudDialogflowCxV3beta1RolloutState
|
6709
|
+
include Google::Apis::Core::Hashable
|
6710
|
+
|
6711
|
+
# Start time of the current step.
|
6712
|
+
# Corresponds to the JSON property `startTime`
|
6713
|
+
# @return [String]
|
6714
|
+
attr_accessor :start_time
|
6715
|
+
|
6716
|
+
# Display name of the current auto rollout step.
|
6717
|
+
# Corresponds to the JSON property `step`
|
6718
|
+
# @return [String]
|
6719
|
+
attr_accessor :step
|
6720
|
+
|
6721
|
+
# Index of the current step in the auto rollout steps list.
|
6722
|
+
# Corresponds to the JSON property `stepIndex`
|
6723
|
+
# @return [Fixnum]
|
6724
|
+
attr_accessor :step_index
|
6725
|
+
|
6726
|
+
def initialize(**args)
|
6727
|
+
update!(**args)
|
6728
|
+
end
|
6729
|
+
|
6730
|
+
# Update properties of this object
|
6731
|
+
def update!(**args)
|
6732
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
6733
|
+
@step = args[:step] if args.key?(:step)
|
6734
|
+
@step_index = args[:step_index] if args.key?(:step_index)
|
6735
|
+
end
|
6736
|
+
end
|
6737
|
+
|
6549
6738
|
# Metadata returned for the Environments.RunContinuousTest long running
|
6550
6739
|
# operation.
|
6551
6740
|
class GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata
|
@@ -6662,6 +6851,12 @@ module Google
|
|
6662
6851
|
# @return [String]
|
6663
6852
|
attr_accessor :display_name
|
6664
6853
|
|
6854
|
+
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
6855
|
+
# dialogflow/priv/docs/insights).
|
6856
|
+
# Corresponds to the JSON property `insightsExportSettings`
|
6857
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings]
|
6858
|
+
attr_accessor :insights_export_settings
|
6859
|
+
|
6665
6860
|
# [DLP](https://cloud.google.com/dlp/docs) inspect template name. Use this
|
6666
6861
|
# template to define inspect base settings. If empty, we use the default DLP
|
6667
6862
|
# inspect config. The template name will have one of the following formats: `
|
@@ -6710,6 +6905,7 @@ module Google
|
|
6710
6905
|
# Update properties of this object
|
6711
6906
|
def update!(**args)
|
6712
6907
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6908
|
+
@insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings)
|
6713
6909
|
@inspect_template = args[:inspect_template] if args.key?(:inspect_template)
|
6714
6910
|
@name = args[:name] if args.key?(:name)
|
6715
6911
|
@purge_data_types = args[:purge_data_types] if args.key?(:purge_data_types)
|
@@ -6719,6 +6915,28 @@ module Google
|
|
6719
6915
|
end
|
6720
6916
|
end
|
6721
6917
|
|
6918
|
+
# Settings for exporting conversations to [Insights](https://cloud.google.com/
|
6919
|
+
# dialogflow/priv/docs/insights).
|
6920
|
+
class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
|
6921
|
+
include Google::Apis::Core::Hashable
|
6922
|
+
|
6923
|
+
# If enabled, we will automatically exports conversations to Insights and
|
6924
|
+
# Insights runs its analyzers.
|
6925
|
+
# Corresponds to the JSON property `enableInsightsExport`
|
6926
|
+
# @return [Boolean]
|
6927
|
+
attr_accessor :enable_insights_export
|
6928
|
+
alias_method :enable_insights_export?, :enable_insights_export
|
6929
|
+
|
6930
|
+
def initialize(**args)
|
6931
|
+
update!(**args)
|
6932
|
+
end
|
6933
|
+
|
6934
|
+
# Update properties of this object
|
6935
|
+
def update!(**args)
|
6936
|
+
@enable_insights_export = args[:enable_insights_export] if args.key?(:enable_insights_export)
|
6937
|
+
end
|
6938
|
+
end
|
6939
|
+
|
6722
6940
|
# The result of sentiment analysis. Sentiment analysis inspects user input and
|
6723
6941
|
# identifies the prevailing subjective opinion, especially to determine a user's
|
6724
6942
|
# 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.
|
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
|
@@ -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
|
|
@@ -1102,6 +1114,24 @@ module Google
|
|
1102
1114
|
include Google::Apis::Core::JsonObjectSupport
|
1103
1115
|
end
|
1104
1116
|
|
1117
|
+
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1119
|
+
|
1120
|
+
include Google::Apis::Core::JsonObjectSupport
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
class GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep
|
1124
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1125
|
+
|
1126
|
+
include Google::Apis::Core::JsonObjectSupport
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
class GoogleCloudDialogflowCxV3beta1RolloutState
|
1130
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1131
|
+
|
1132
|
+
include Google::Apis::Core::JsonObjectSupport
|
1133
|
+
end
|
1134
|
+
|
1105
1135
|
class GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata
|
1106
1136
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1107
1137
|
|
@@ -1144,6 +1174,12 @@ module Google
|
|
1144
1174
|
include Google::Apis::Core::JsonObjectSupport
|
1145
1175
|
end
|
1146
1176
|
|
1177
|
+
class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
|
1178
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1179
|
+
|
1180
|
+
include Google::Apis::Core::JsonObjectSupport
|
1181
|
+
end
|
1182
|
+
|
1147
1183
|
class GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult
|
1148
1184
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1149
1185
|
|
@@ -2990,9 +3026,27 @@ module Google
|
|
2990
3026
|
end
|
2991
3027
|
end
|
2992
3028
|
|
3029
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettings
|
3030
|
+
# @private
|
3031
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3032
|
+
property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings::Representation
|
3033
|
+
|
3034
|
+
end
|
3035
|
+
end
|
3036
|
+
|
3037
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
|
3038
|
+
# @private
|
3039
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3040
|
+
property :enable_interaction_logging, as: 'enableInteractionLogging'
|
3041
|
+
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
3042
|
+
end
|
3043
|
+
end
|
3044
|
+
|
2993
3045
|
class GoogleCloudDialogflowCxV3beta1Agent
|
2994
3046
|
# @private
|
2995
3047
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3048
|
+
property :advanced_settings, as: 'advancedSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings::Representation
|
3049
|
+
|
2996
3050
|
property :avatar_uri, as: 'avatarUri'
|
2997
3051
|
property :default_language_code, as: 'defaultLanguageCode'
|
2998
3052
|
property :description, as: 'description'
|
@@ -3260,6 +3314,11 @@ module Google
|
|
3260
3314
|
property :name, as: 'name'
|
3261
3315
|
property :result, as: 'result', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResult, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResult::Representation
|
3262
3316
|
|
3317
|
+
property :rollout_config, as: 'rolloutConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutConfig::Representation
|
3318
|
+
|
3319
|
+
property :rollout_failure_reason, as: 'rolloutFailureReason'
|
3320
|
+
property :rollout_state, as: 'rolloutState', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutState, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutState::Representation
|
3321
|
+
|
3263
3322
|
property :start_time, as: 'startTime'
|
3264
3323
|
property :state, as: 'state'
|
3265
3324
|
collection :variants_history, as: 'variantsHistory', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1VariantsHistory, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1VariantsHistory::Representation
|
@@ -3922,6 +3981,7 @@ module Google
|
|
3922
3981
|
property :analyze_query_text_sentiment, as: 'analyzeQueryTextSentiment'
|
3923
3982
|
property :current_page, as: 'currentPage'
|
3924
3983
|
property :disable_webhook, as: 'disableWebhook'
|
3984
|
+
collection :flow_versions, as: 'flowVersions'
|
3925
3985
|
property :geo_location, as: 'geoLocation', class: Google::Apis::DialogflowV3beta1::GoogleTypeLatLng, decorator: Google::Apis::DialogflowV3beta1::GoogleTypeLatLng::Representation
|
3926
3986
|
|
3927
3987
|
hash :parameters, as: 'parameters'
|
@@ -4068,6 +4128,34 @@ module Google
|
|
4068
4128
|
end
|
4069
4129
|
end
|
4070
4130
|
|
4131
|
+
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
4132
|
+
# @private
|
4133
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4134
|
+
property :failure_condition, as: 'failureCondition'
|
4135
|
+
property :rollout_condition, as: 'rolloutCondition'
|
4136
|
+
collection :rollout_steps, as: 'rolloutSteps', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep::Representation
|
4137
|
+
|
4138
|
+
end
|
4139
|
+
end
|
4140
|
+
|
4141
|
+
class GoogleCloudDialogflowCxV3beta1RolloutConfigRolloutStep
|
4142
|
+
# @private
|
4143
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4144
|
+
property :display_name, as: 'displayName'
|
4145
|
+
property :min_duration, as: 'minDuration'
|
4146
|
+
property :traffic_percent, as: 'trafficPercent'
|
4147
|
+
end
|
4148
|
+
end
|
4149
|
+
|
4150
|
+
class GoogleCloudDialogflowCxV3beta1RolloutState
|
4151
|
+
# @private
|
4152
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4153
|
+
property :start_time, as: 'startTime'
|
4154
|
+
property :step, as: 'step'
|
4155
|
+
property :step_index, as: 'stepIndex'
|
4156
|
+
end
|
4157
|
+
end
|
4158
|
+
|
4071
4159
|
class GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata
|
4072
4160
|
# @private
|
4073
4161
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4115,6 +4203,8 @@ module Google
|
|
4115
4203
|
# @private
|
4116
4204
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4117
4205
|
property :display_name, as: 'displayName'
|
4206
|
+
property :insights_export_settings, as: 'insightsExportSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings::Representation
|
4207
|
+
|
4118
4208
|
property :inspect_template, as: 'inspectTemplate'
|
4119
4209
|
property :name, as: 'name'
|
4120
4210
|
collection :purge_data_types, as: 'purgeDataTypes'
|
@@ -4124,6 +4214,13 @@ module Google
|
|
4124
4214
|
end
|
4125
4215
|
end
|
4126
4216
|
|
4217
|
+
class GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings
|
4218
|
+
# @private
|
4219
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4220
|
+
property :enable_insights_export, as: 'enableInsightsExport'
|
4221
|
+
end
|
4222
|
+
end
|
4223
|
+
|
4127
4224
|
class GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult
|
4128
4225
|
# @private
|
4129
4226
|
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.
|
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_v3beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.20.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: []
|