google-apis-dialogflow_v3beta1 0.93.0 → 0.94.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 +4 -0
- data/lib/google/apis/dialogflow_v3beta1/classes.rb +59 -163
- data/lib/google/apis/dialogflow_v3beta1/gem_version.rb +2 -2
- data/lib/google/apis/dialogflow_v3beta1/representations.rb +3 -71
- data/lib/google/apis/dialogflow_v3beta1/service.rb +0 -104
- 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: a406a2f81ad668124c160f8ab3f21be2a539fabcabcc4c1383b383767993df17
|
4
|
+
data.tar.gz: c7b3d1b1f8992f07c1dc557e04ed7d201d5bc3c8fa394c2c34365ee72d477c10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5a60c6b275def86e573c70b99a57d97813b578cf4bc70611b47aa9e397ec73872b7e3237d76e90fec33778ab8077d9187aa17741c0a9d990e280983cba0ab00
|
7
|
+
data.tar.gz: 6c972dbcf1fee253a5748e547bbdadacb36488c8ba3c6ce0321c396347fd8383b594d8ca66c1af202b9390e9bc20623820a4980153698619cfb77fcd2c4f363b
|
data/CHANGELOG.md
CHANGED
@@ -174,8 +174,8 @@ module Google
|
|
174
174
|
# @return [String]
|
175
175
|
attr_accessor :no_speech_timeout
|
176
176
|
|
177
|
-
# Use timeout based endpointing, interpreting endpointer
|
178
|
-
# timeout value.
|
177
|
+
# Use timeout based endpointing, interpreting endpointer sensitivity as seconds
|
178
|
+
# of timeout value.
|
179
179
|
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
180
180
|
# @return [Boolean]
|
181
181
|
attr_accessor :use_timeout_based_endpointing
|
@@ -547,6 +547,13 @@ module Google
|
|
547
547
|
# @return [String]
|
548
548
|
attr_accessor :data_store_type
|
549
549
|
|
550
|
+
# The document processing mode for the data store connection. Should only be set
|
551
|
+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
|
552
|
+
# DOCUMENTS, as this is the legacy mode.
|
553
|
+
# Corresponds to the JSON property `documentProcessingMode`
|
554
|
+
# @return [String]
|
555
|
+
attr_accessor :document_processing_mode
|
556
|
+
|
550
557
|
def initialize(**args)
|
551
558
|
update!(**args)
|
552
559
|
end
|
@@ -555,6 +562,7 @@ module Google
|
|
555
562
|
def update!(**args)
|
556
563
|
@data_store = args[:data_store] if args.key?(:data_store)
|
557
564
|
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
|
565
|
+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
|
558
566
|
end
|
559
567
|
end
|
560
568
|
|
@@ -2134,7 +2142,7 @@ module Google
|
|
2134
2142
|
|
2135
2143
|
# A list of transitions for the transition rules of this page. They route the
|
2136
2144
|
# conversation to another page in the same flow, or another flow. When we are in
|
2137
|
-
# a certain page, the TransitionRoutes are
|
2145
|
+
# a certain page, the TransitionRoutes are evaluated in the following order: *
|
2138
2146
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
2139
2147
|
# defined in the transition route groups with intent specified. *
|
2140
2148
|
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
@@ -3390,7 +3398,7 @@ module Google
|
|
3390
3398
|
# @return [String]
|
3391
3399
|
attr_accessor :client_id
|
3392
3400
|
|
3393
|
-
#
|
3401
|
+
# Optional. The client secret provided by the 3rd party platform.
|
3394
3402
|
# Corresponds to the JSON property `clientSecret`
|
3395
3403
|
# @return [String]
|
3396
3404
|
attr_accessor :client_secret
|
@@ -3947,8 +3955,8 @@ module Google
|
|
3947
3955
|
# @return [String]
|
3948
3956
|
attr_accessor :no_speech_timeout
|
3949
3957
|
|
3950
|
-
# Use timeout based endpointing, interpreting endpointer
|
3951
|
-
# timeout value.
|
3958
|
+
# Use timeout based endpointing, interpreting endpointer sensitivity as seconds
|
3959
|
+
# of timeout value.
|
3952
3960
|
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
3953
3961
|
# @return [Boolean]
|
3954
3962
|
attr_accessor :use_timeout_based_endpointing
|
@@ -4629,7 +4637,7 @@ module Google
|
|
4629
4637
|
include Google::Apis::Core::Hashable
|
4630
4638
|
|
4631
4639
|
# Optional. Condition boost specifications. If a document matches multiple
|
4632
|
-
# conditions in the
|
4640
|
+
# conditions in the specifications, boost scores from these specifications are
|
4633
4641
|
# all applied and combined in a non-linear way. Maximum number of specifications
|
4634
4642
|
# is 20.
|
4635
4643
|
# Corresponds to the JSON property `conditionBoostSpecs`
|
@@ -5604,6 +5612,13 @@ module Google
|
|
5604
5612
|
# @return [String]
|
5605
5613
|
attr_accessor :data_store_type
|
5606
5614
|
|
5615
|
+
# The document processing mode for the data store connection. Should only be set
|
5616
|
+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
|
5617
|
+
# DOCUMENTS, as this is the legacy mode.
|
5618
|
+
# Corresponds to the JSON property `documentProcessingMode`
|
5619
|
+
# @return [String]
|
5620
|
+
attr_accessor :document_processing_mode
|
5621
|
+
|
5607
5622
|
def initialize(**args)
|
5608
5623
|
update!(**args)
|
5609
5624
|
end
|
@@ -5612,6 +5627,7 @@ module Google
|
|
5612
5627
|
def update!(**args)
|
5613
5628
|
@data_store = args[:data_store] if args.key?(:data_store)
|
5614
5629
|
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
|
5630
|
+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
|
5615
5631
|
end
|
5616
5632
|
end
|
5617
5633
|
|
@@ -7264,38 +7280,6 @@ module Google
|
|
7264
7280
|
end
|
7265
7281
|
end
|
7266
7282
|
|
7267
|
-
# The request message for Playbooks.ExportPlaybook.
|
7268
|
-
class GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest
|
7269
|
-
include Google::Apis::Core::Hashable
|
7270
|
-
|
7271
|
-
# Optional. The data format of the exported agent. If not specified, `BLOB` is
|
7272
|
-
# assumed.
|
7273
|
-
# Corresponds to the JSON property `dataFormat`
|
7274
|
-
# @return [String]
|
7275
|
-
attr_accessor :data_format
|
7276
|
-
|
7277
|
-
# Optional. The [Google Cloud Storage](https://cloud.google.com/storage/docs/)
|
7278
|
-
# URI to export the playbook to. The format of this URI must be `gs:///`. If
|
7279
|
-
# left unspecified, the serialized playbook is returned inline. Dialogflow
|
7280
|
-
# performs a write operation for the Cloud Storage object on the caller's behalf,
|
7281
|
-
# so your request authentication must have write permissions for the object.
|
7282
|
-
# For more information, see [Dialogflow access control](https://cloud.google.com/
|
7283
|
-
# dialogflow/cx/docs/concept/access-control#storage).
|
7284
|
-
# Corresponds to the JSON property `playbookUri`
|
7285
|
-
# @return [String]
|
7286
|
-
attr_accessor :playbook_uri
|
7287
|
-
|
7288
|
-
def initialize(**args)
|
7289
|
-
update!(**args)
|
7290
|
-
end
|
7291
|
-
|
7292
|
-
# Update properties of this object
|
7293
|
-
def update!(**args)
|
7294
|
-
@data_format = args[:data_format] if args.key?(:data_format)
|
7295
|
-
@playbook_uri = args[:playbook_uri] if args.key?(:playbook_uri)
|
7296
|
-
end
|
7297
|
-
end
|
7298
|
-
|
7299
7283
|
# Metadata returned for the TestCases.ExportTestCases long running operation.
|
7300
7284
|
# This message currently has no fields.
|
7301
7285
|
class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
|
@@ -7546,7 +7530,7 @@ module Google
|
|
7546
7530
|
# every page's transition routes and can support use cases such as the user
|
7547
7531
|
# saying "help" or "can I talk to a human?", which can be handled in a common
|
7548
7532
|
# way regardless of the current page. Transition routes defined in the page have
|
7549
|
-
# higher priority than those defined in the flow. TransitionRoutes are
|
7533
|
+
# higher priority than those defined in the flow. TransitionRoutes are evaluated
|
7550
7534
|
# in the following order: * TransitionRoutes with intent specified. *
|
7551
7535
|
# TransitionRoutes with only condition specified. TransitionRoutes with intent
|
7552
7536
|
# specified are inherited by pages in the flow.
|
@@ -8761,40 +8745,6 @@ module Google
|
|
8761
8745
|
end
|
8762
8746
|
end
|
8763
8747
|
|
8764
|
-
# The request message for Playbooks.ImportPlaybook.
|
8765
|
-
class GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest
|
8766
|
-
include Google::Apis::Core::Hashable
|
8767
|
-
|
8768
|
-
# The playbook import strategy used for resource conflict resolution associated
|
8769
|
-
# with an ImportPlaybookRequest.
|
8770
|
-
# Corresponds to the JSON property `importStrategy`
|
8771
|
-
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy]
|
8772
|
-
attr_accessor :import_strategy
|
8773
|
-
|
8774
|
-
# Uncompressed raw byte content for playbook.
|
8775
|
-
# Corresponds to the JSON property `playbookContent`
|
8776
|
-
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
8777
|
-
# @return [String]
|
8778
|
-
attr_accessor :playbook_content
|
8779
|
-
|
8780
|
-
# [Dialogflow access control] (https://cloud.google.com/dialogflow/cx/docs/
|
8781
|
-
# concept/access-control#storage).
|
8782
|
-
# Corresponds to the JSON property `playbookUri`
|
8783
|
-
# @return [String]
|
8784
|
-
attr_accessor :playbook_uri
|
8785
|
-
|
8786
|
-
def initialize(**args)
|
8787
|
-
update!(**args)
|
8788
|
-
end
|
8789
|
-
|
8790
|
-
# Update properties of this object
|
8791
|
-
def update!(**args)
|
8792
|
-
@import_strategy = args[:import_strategy] if args.key?(:import_strategy)
|
8793
|
-
@playbook_content = args[:playbook_content] if args.key?(:playbook_content)
|
8794
|
-
@playbook_uri = args[:playbook_uri] if args.key?(:playbook_uri)
|
8795
|
-
end
|
8796
|
-
end
|
8797
|
-
|
8798
8748
|
# Metadata returned for the TestCases.ImportTestCases long running operation.
|
8799
8749
|
class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
|
8800
8750
|
include Google::Apis::Core::Hashable
|
@@ -10426,7 +10376,7 @@ module Google
|
|
10426
10376
|
|
10427
10377
|
# A list of transitions for the transition rules of this page. They route the
|
10428
10378
|
# conversation to another page in the same flow, or another flow. When we are in
|
10429
|
-
# a certain page, the TransitionRoutes are
|
10379
|
+
# a certain page, the TransitionRoutes are evaluated in the following order: *
|
10430
10380
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
10431
10381
|
# defined in the transition route groups with intent specified. *
|
10432
10382
|
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
@@ -10643,6 +10593,8 @@ module Google
|
|
10643
10593
|
attr_accessor :display_name
|
10644
10594
|
|
10645
10595
|
# Required. High level description of the goal the playbook intend to accomplish.
|
10596
|
+
# A goal should be concise since it's visible to other playbooks that may
|
10597
|
+
# reference this playbook.
|
10646
10598
|
# Corresponds to the JSON property `goal`
|
10647
10599
|
# @return [String]
|
10648
10600
|
attr_accessor :goal
|
@@ -10731,43 +10683,6 @@ module Google
|
|
10731
10683
|
end
|
10732
10684
|
end
|
10733
10685
|
|
10734
|
-
# The playbook import strategy used for resource conflict resolution associated
|
10735
|
-
# with an ImportPlaybookRequest.
|
10736
|
-
class GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy
|
10737
|
-
include Google::Apis::Core::Hashable
|
10738
|
-
|
10739
|
-
# Optional. Specifies the import strategy used when resolving conflicts with the
|
10740
|
-
# main playbook. If not specified, 'CREATE_NEW' is assumed.
|
10741
|
-
# Corresponds to the JSON property `mainPlaybookImportStrategy`
|
10742
|
-
# @return [String]
|
10743
|
-
attr_accessor :main_playbook_import_strategy
|
10744
|
-
|
10745
|
-
# Optional. Specifies the import strategy used when resolving referenced
|
10746
|
-
# playbook/flow conflicts. If not specified, 'CREATE_NEW' is assumed.
|
10747
|
-
# Corresponds to the JSON property `nestedResourceImportStrategy`
|
10748
|
-
# @return [String]
|
10749
|
-
attr_accessor :nested_resource_import_strategy
|
10750
|
-
|
10751
|
-
# Optional. Specifies the import strategy used when resolving tool conflicts. If
|
10752
|
-
# not specified, 'CREATE_NEW' is assumed. This will be applied after the main
|
10753
|
-
# playbook and nested resource import strategies, meaning if the playbook that
|
10754
|
-
# references the tool is skipped, the tool will also be skipped.
|
10755
|
-
# Corresponds to the JSON property `toolImportStrategy`
|
10756
|
-
# @return [String]
|
10757
|
-
attr_accessor :tool_import_strategy
|
10758
|
-
|
10759
|
-
def initialize(**args)
|
10760
|
-
update!(**args)
|
10761
|
-
end
|
10762
|
-
|
10763
|
-
# Update properties of this object
|
10764
|
-
def update!(**args)
|
10765
|
-
@main_playbook_import_strategy = args[:main_playbook_import_strategy] if args.key?(:main_playbook_import_strategy)
|
10766
|
-
@nested_resource_import_strategy = args[:nested_resource_import_strategy] if args.key?(:nested_resource_import_strategy)
|
10767
|
-
@tool_import_strategy = args[:tool_import_strategy] if args.key?(:tool_import_strategy)
|
10768
|
-
end
|
10769
|
-
end
|
10770
|
-
|
10771
10686
|
# Input of the playbook.
|
10772
10687
|
class GoogleCloudDialogflowCxV3beta1PlaybookInput
|
10773
10688
|
include Google::Apis::Core::Hashable
|
@@ -10798,6 +10713,13 @@ module Google
|
|
10798
10713
|
class GoogleCloudDialogflowCxV3beta1PlaybookInstruction
|
10799
10714
|
include Google::Apis::Core::Hashable
|
10800
10715
|
|
10716
|
+
# General guidelines for the playbook. These are unstructured instructions that
|
10717
|
+
# are not directly part of the goal, e.g. "Always be polite". It's valid for
|
10718
|
+
# this text to be long and used instead of steps altogether.
|
10719
|
+
# Corresponds to the JSON property `guidelines`
|
10720
|
+
# @return [String]
|
10721
|
+
attr_accessor :guidelines
|
10722
|
+
|
10801
10723
|
# Ordered list of step by step execution instructions to accomplish target goal.
|
10802
10724
|
# Corresponds to the JSON property `steps`
|
10803
10725
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookStep>]
|
@@ -10809,6 +10731,7 @@ module Google
|
|
10809
10731
|
|
10810
10732
|
# Update properties of this object
|
10811
10733
|
def update!(**args)
|
10734
|
+
@guidelines = args[:guidelines] if args.key?(:guidelines)
|
10812
10735
|
@steps = args[:steps] if args.key?(:steps)
|
10813
10736
|
end
|
10814
10737
|
end
|
@@ -11888,43 +11811,6 @@ module Google
|
|
11888
11811
|
end
|
11889
11812
|
end
|
11890
11813
|
|
11891
|
-
# The request message for Playbooks.RestorePlaybookVersion.
|
11892
|
-
class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest
|
11893
|
-
include Google::Apis::Core::Hashable
|
11894
|
-
|
11895
|
-
def initialize(**args)
|
11896
|
-
update!(**args)
|
11897
|
-
end
|
11898
|
-
|
11899
|
-
# Update properties of this object
|
11900
|
-
def update!(**args)
|
11901
|
-
end
|
11902
|
-
end
|
11903
|
-
|
11904
|
-
# The response message for Playbooks.RestorePlaybookVersion.
|
11905
|
-
class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse
|
11906
|
-
include Google::Apis::Core::Hashable
|
11907
|
-
|
11908
|
-
# Playbook is the basic building block to instruct the LLM how to execute a
|
11909
|
-
# certain task. A playbook consists of a goal to accomplish, an optional list of
|
11910
|
-
# step by step instructions (the step instruction may refers to name of the
|
11911
|
-
# custom or default plugin tools to use) to perform the task, a list of
|
11912
|
-
# contextual input data to be passed in at the beginning of the invoked, and a
|
11913
|
-
# list of output parameters to store the playbook result.
|
11914
|
-
# Corresponds to the JSON property `playbook`
|
11915
|
-
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Playbook]
|
11916
|
-
attr_accessor :playbook
|
11917
|
-
|
11918
|
-
def initialize(**args)
|
11919
|
-
update!(**args)
|
11920
|
-
end
|
11921
|
-
|
11922
|
-
# Update properties of this object
|
11923
|
-
def update!(**args)
|
11924
|
-
@playbook = args[:playbook] if args.key?(:playbook)
|
11925
|
-
end
|
11926
|
-
end
|
11927
|
-
|
11928
11814
|
# The configuration for auto rollout.
|
11929
11815
|
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
11930
11816
|
include Google::Apis::Core::Hashable
|
@@ -12187,12 +12073,18 @@ module Google
|
|
12187
12073
|
class GoogleCloudDialogflowCxV3beta1SearchConfig
|
12188
12074
|
include Google::Apis::Core::Hashable
|
12189
12075
|
|
12190
|
-
# Optional. Boosting configuration for the datastores.
|
12076
|
+
# Optional. Boosting configuration for the datastores. Maps from datastore name
|
12077
|
+
# to their boost configuration. Do not specify more than one BoostSpecs for each
|
12078
|
+
# datastore name. If multiple BoostSpecs are provided for the same datastore
|
12079
|
+
# name, the behavior is undefined.
|
12191
12080
|
# Corresponds to the JSON property `boostSpecs`
|
12192
12081
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1BoostSpecs>]
|
12193
12082
|
attr_accessor :boost_specs
|
12194
12083
|
|
12195
|
-
# Optional. Filter configuration for the datastores.
|
12084
|
+
# Optional. Filter configuration for the datastores. Maps from datastore name to
|
12085
|
+
# the filter expression for that datastore. Do not specify more than one
|
12086
|
+
# FilterSpecs for each datastore name. If multiple FilterSpecs are provided for
|
12087
|
+
# the same datastore name, the behavior is undefined.
|
12196
12088
|
# Corresponds to the JSON property `filterSpecs`
|
12197
12089
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FilterSpecs>]
|
12198
12090
|
attr_accessor :filter_specs
|
@@ -13025,7 +12917,8 @@ module Google
|
|
13025
12917
|
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationApiKeyConfig
|
13026
12918
|
include Google::Apis::Core::Hashable
|
13027
12919
|
|
13028
|
-
#
|
12920
|
+
# Optional. The API key. If the `secret_version_for_api_key` field is set, this
|
12921
|
+
# field will be ignored.
|
13029
12922
|
# Corresponds to the JSON property `apiKey`
|
13030
12923
|
# @return [String]
|
13031
12924
|
attr_accessor :api_key
|
@@ -13058,7 +12951,7 @@ module Google
|
|
13058
12951
|
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationBearerTokenConfig
|
13059
12952
|
include Google::Apis::Core::Hashable
|
13060
12953
|
|
13061
|
-
#
|
12954
|
+
# Optional. The text token appended to the text `Bearer` to the request
|
13062
12955
|
# Authorization header. [Session parameters reference](https://cloud.google.com/
|
13063
12956
|
# dialogflow/cx/docs/concept/parameter#session-ref) can be used to pass the
|
13064
12957
|
# token dynamically, e.g. `$session.params.parameter-id`.
|
@@ -13085,7 +12978,8 @@ module Google
|
|
13085
12978
|
# @return [String]
|
13086
12979
|
attr_accessor :client_id
|
13087
12980
|
|
13088
|
-
#
|
12981
|
+
# Optional. The client secret from the OAuth provider. If the `
|
12982
|
+
# secret_version_for_client_secret` field is set, this field will be ignored.
|
13089
12983
|
# Corresponds to the JSON property `clientSecret`
|
13090
12984
|
# @return [String]
|
13091
12985
|
attr_accessor :client_secret
|
@@ -14392,7 +14286,7 @@ module Google
|
|
14392
14286
|
# @return [String]
|
14393
14287
|
attr_accessor :client_id
|
14394
14288
|
|
14395
|
-
#
|
14289
|
+
# Optional. The client secret provided by the 3rd party platform.
|
14396
14290
|
# Corresponds to the JSON property `clientSecret`
|
14397
14291
|
# @return [String]
|
14398
14292
|
attr_accessor :client_secret
|
@@ -17262,7 +17156,8 @@ module Google
|
|
17262
17156
|
# @return [String]
|
17263
17157
|
attr_accessor :participant_role
|
17264
17158
|
|
17265
|
-
# Optional. The time when the message was sent.
|
17159
|
+
# Optional. The time when the message was sent. For voice messages, this is the
|
17160
|
+
# time when an utterance started.
|
17266
17161
|
# Corresponds to the JSON property `sendTime`
|
17267
17162
|
# @return [String]
|
17268
17163
|
attr_accessor :send_time
|
@@ -20976,7 +20871,8 @@ module Google
|
|
20976
20871
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ResponseMessage>]
|
20977
20872
|
attr_accessor :response_messages
|
20978
20873
|
|
20979
|
-
# Optional. The time when the message was sent.
|
20874
|
+
# Optional. The time when the message was sent. For voice messages, this is the
|
20875
|
+
# time when an utterance started.
|
20980
20876
|
# Corresponds to the JSON property `sendTime`
|
20981
20877
|
# @return [String]
|
20982
20878
|
attr_accessor :send_time
|
@@ -21263,9 +21159,9 @@ module Google
|
|
21263
21159
|
# Dialogflow only uses this to determine which conversations were handed off to
|
21264
21160
|
# a human agent for measurement purposes. What else to do with this signal is up
|
21265
21161
|
# to you and your handoff procedures. You may set this, for example: * In the
|
21266
|
-
# entry fulfillment of a CX Page if entering the page indicates
|
21267
|
-
# extremely wrong in the conversation. * In a webhook response
|
21268
|
-
# determine that the customer issue can only be handled by a human.
|
21162
|
+
# entry fulfillment of a Dialogflow CX Page if entering the page indicates
|
21163
|
+
# something went extremely wrong in the conversation. * In a webhook response
|
21164
|
+
# when you determine that the customer issue can only be handled by a human.
|
21269
21165
|
# Corresponds to the JSON property `liveAgentHandoff`
|
21270
21166
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff]
|
21271
21167
|
attr_accessor :live_agent_handoff
|
@@ -21324,9 +21220,9 @@ module Google
|
|
21324
21220
|
# Dialogflow only uses this to determine which conversations were handed off to
|
21325
21221
|
# a human agent for measurement purposes. What else to do with this signal is up
|
21326
21222
|
# to you and your handoff procedures. You may set this, for example: * In the
|
21327
|
-
# entry fulfillment of a CX Page if entering the page indicates
|
21328
|
-
# extremely wrong in the conversation. * In a webhook response
|
21329
|
-
# determine that the customer issue can only be handled by a human.
|
21223
|
+
# entry fulfillment of a Dialogflow CX Page if entering the page indicates
|
21224
|
+
# something went extremely wrong in the conversation. * In a webhook response
|
21225
|
+
# when you determine that the customer issue can only be handled by a human.
|
21330
21226
|
class GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff
|
21331
21227
|
include Google::Apis::Core::Hashable
|
21332
21228
|
|
@@ -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.94.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250221"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1156,12 +1156,6 @@ module Google
|
|
1156
1156
|
include Google::Apis::Core::JsonObjectSupport
|
1157
1157
|
end
|
1158
1158
|
|
1159
|
-
class GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest
|
1160
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1161
|
-
|
1162
|
-
include Google::Apis::Core::JsonObjectSupport
|
1163
|
-
end
|
1164
|
-
|
1165
1159
|
class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
|
1166
1160
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1167
1161
|
|
@@ -1396,12 +1390,6 @@ module Google
|
|
1396
1390
|
include Google::Apis::Core::JsonObjectSupport
|
1397
1391
|
end
|
1398
1392
|
|
1399
|
-
class GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest
|
1400
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1401
|
-
|
1402
|
-
include Google::Apis::Core::JsonObjectSupport
|
1403
|
-
end
|
1404
|
-
|
1405
1393
|
class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
|
1406
1394
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1407
1395
|
|
@@ -1726,12 +1714,6 @@ module Google
|
|
1726
1714
|
include Google::Apis::Core::JsonObjectSupport
|
1727
1715
|
end
|
1728
1716
|
|
1729
|
-
class GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy
|
1730
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1731
|
-
|
1732
|
-
include Google::Apis::Core::JsonObjectSupport
|
1733
|
-
end
|
1734
|
-
|
1735
1717
|
class GoogleCloudDialogflowCxV3beta1PlaybookInput
|
1736
1718
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1737
1719
|
|
@@ -1870,18 +1852,6 @@ module Google
|
|
1870
1852
|
include Google::Apis::Core::JsonObjectSupport
|
1871
1853
|
end
|
1872
1854
|
|
1873
|
-
class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest
|
1874
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1875
|
-
|
1876
|
-
include Google::Apis::Core::JsonObjectSupport
|
1877
|
-
end
|
1878
|
-
|
1879
|
-
class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse
|
1880
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1881
|
-
|
1882
|
-
include Google::Apis::Core::JsonObjectSupport
|
1883
|
-
end
|
1884
|
-
|
1885
1855
|
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
1886
1856
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1887
1857
|
|
@@ -3732,6 +3702,7 @@ module Google
|
|
3732
3702
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3733
3703
|
property :data_store, as: 'dataStore'
|
3734
3704
|
property :data_store_type, as: 'dataStoreType'
|
3705
|
+
property :document_processing_mode, as: 'documentProcessingMode'
|
3735
3706
|
end
|
3736
3707
|
end
|
3737
3708
|
|
@@ -5087,6 +5058,7 @@ module Google
|
|
5087
5058
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5088
5059
|
property :data_store, as: 'dataStore'
|
5089
5060
|
property :data_store_type, as: 'dataStoreType'
|
5061
|
+
property :document_processing_mode, as: 'documentProcessingMode'
|
5090
5062
|
end
|
5091
5063
|
end
|
5092
5064
|
|
@@ -5536,14 +5508,6 @@ module Google
|
|
5536
5508
|
end
|
5537
5509
|
end
|
5538
5510
|
|
5539
|
-
class GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest
|
5540
|
-
# @private
|
5541
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5542
|
-
property :data_format, as: 'dataFormat'
|
5543
|
-
property :playbook_uri, as: 'playbookUri'
|
5544
|
-
end
|
5545
|
-
end
|
5546
|
-
|
5547
5511
|
class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
|
5548
5512
|
# @private
|
5549
5513
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5936,16 +5900,6 @@ module Google
|
|
5936
5900
|
end
|
5937
5901
|
end
|
5938
5902
|
|
5939
|
-
class GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest
|
5940
|
-
# @private
|
5941
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5942
|
-
property :import_strategy, as: 'importStrategy', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy::Representation
|
5943
|
-
|
5944
|
-
property :playbook_content, :base64 => true, as: 'playbookContent'
|
5945
|
-
property :playbook_uri, as: 'playbookUri'
|
5946
|
-
end
|
5947
|
-
end
|
5948
|
-
|
5949
5903
|
class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
|
5950
5904
|
# @private
|
5951
5905
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6480,15 +6434,6 @@ module Google
|
|
6480
6434
|
end
|
6481
6435
|
end
|
6482
6436
|
|
6483
|
-
class GoogleCloudDialogflowCxV3beta1PlaybookImportStrategy
|
6484
|
-
# @private
|
6485
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
6486
|
-
property :main_playbook_import_strategy, as: 'mainPlaybookImportStrategy'
|
6487
|
-
property :nested_resource_import_strategy, as: 'nestedResourceImportStrategy'
|
6488
|
-
property :tool_import_strategy, as: 'toolImportStrategy'
|
6489
|
-
end
|
6490
|
-
end
|
6491
|
-
|
6492
6437
|
class GoogleCloudDialogflowCxV3beta1PlaybookInput
|
6493
6438
|
# @private
|
6494
6439
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6500,6 +6445,7 @@ module Google
|
|
6500
6445
|
class GoogleCloudDialogflowCxV3beta1PlaybookInstruction
|
6501
6446
|
# @private
|
6502
6447
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6448
|
+
property :guidelines, as: 'guidelines'
|
6503
6449
|
collection :steps, as: 'steps', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookStep, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookStep::Representation
|
6504
6450
|
|
6505
6451
|
end
|
@@ -6765,20 +6711,6 @@ module Google
|
|
6765
6711
|
end
|
6766
6712
|
end
|
6767
6713
|
|
6768
|
-
class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest
|
6769
|
-
# @private
|
6770
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
6771
|
-
end
|
6772
|
-
end
|
6773
|
-
|
6774
|
-
class GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse
|
6775
|
-
# @private
|
6776
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
6777
|
-
property :playbook, as: 'playbook', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Playbook, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Playbook::Representation
|
6778
|
-
|
6779
|
-
end
|
6780
|
-
end
|
6781
|
-
|
6782
6714
|
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
6783
6715
|
# @private
|
6784
6716
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3658,41 +3658,6 @@ module Google
|
|
3658
3658
|
execute_or_queue_command(command, &block)
|
3659
3659
|
end
|
3660
3660
|
|
3661
|
-
# Exports the specified playbook to a binary file. Note that resources (e.g.
|
3662
|
-
# examples, tools) that the playbook references will also be exported.
|
3663
|
-
# @param [String] name
|
3664
|
-
# Required. The name of the playbook to export. Format: `projects//locations//
|
3665
|
-
# agents//playbooks/`.
|
3666
|
-
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest] google_cloud_dialogflow_cx_v3beta1_export_playbook_request_object
|
3667
|
-
# @param [String] fields
|
3668
|
-
# Selector specifying which fields to include in a partial response.
|
3669
|
-
# @param [String] quota_user
|
3670
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
3671
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3672
|
-
# @param [Google::Apis::RequestOptions] options
|
3673
|
-
# Request-specific options
|
3674
|
-
#
|
3675
|
-
# @yield [result, err] Result & error if block supplied
|
3676
|
-
# @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation] parsed result object
|
3677
|
-
# @yieldparam err [StandardError] error object if request failed
|
3678
|
-
#
|
3679
|
-
# @return [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation]
|
3680
|
-
#
|
3681
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3682
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3683
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3684
|
-
def export_project_location_agent_playbook(name, google_cloud_dialogflow_cx_v3beta1_export_playbook_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
3685
|
-
command = make_simple_command(:post, 'v3beta1/{+name}:export', options)
|
3686
|
-
command.request_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportPlaybookRequest::Representation
|
3687
|
-
command.request_object = google_cloud_dialogflow_cx_v3beta1_export_playbook_request_object
|
3688
|
-
command.response_representation = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation::Representation
|
3689
|
-
command.response_class = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation
|
3690
|
-
command.params['name'] = name unless name.nil?
|
3691
|
-
command.query['fields'] = fields unless fields.nil?
|
3692
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3693
|
-
execute_or_queue_command(command, &block)
|
3694
|
-
end
|
3695
|
-
|
3696
3661
|
# Retrieves the specified Playbook.
|
3697
3662
|
# @param [String] name
|
3698
3663
|
# Required. The name of the playbook. Format: `projects//locations//agents//
|
@@ -3724,40 +3689,6 @@ module Google
|
|
3724
3689
|
execute_or_queue_command(command, &block)
|
3725
3690
|
end
|
3726
3691
|
|
3727
|
-
# Imports the specified playbook to the specified agent from a binary file.
|
3728
|
-
# @param [String] parent
|
3729
|
-
# Required. The agent to import the playbook into. Format: `projects//locations//
|
3730
|
-
# agents/`.
|
3731
|
-
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest] google_cloud_dialogflow_cx_v3beta1_import_playbook_request_object
|
3732
|
-
# @param [String] fields
|
3733
|
-
# Selector specifying which fields to include in a partial response.
|
3734
|
-
# @param [String] quota_user
|
3735
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
3736
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3737
|
-
# @param [Google::Apis::RequestOptions] options
|
3738
|
-
# Request-specific options
|
3739
|
-
#
|
3740
|
-
# @yield [result, err] Result & error if block supplied
|
3741
|
-
# @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation] parsed result object
|
3742
|
-
# @yieldparam err [StandardError] error object if request failed
|
3743
|
-
#
|
3744
|
-
# @return [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation]
|
3745
|
-
#
|
3746
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3747
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3748
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3749
|
-
def import_project_location_agent_playbook(parent, google_cloud_dialogflow_cx_v3beta1_import_playbook_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
3750
|
-
command = make_simple_command(:post, 'v3beta1/{+parent}/playbooks:import', options)
|
3751
|
-
command.request_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportPlaybookRequest::Representation
|
3752
|
-
command.request_object = google_cloud_dialogflow_cx_v3beta1_import_playbook_request_object
|
3753
|
-
command.response_representation = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation::Representation
|
3754
|
-
command.response_class = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation
|
3755
|
-
command.params['parent'] = parent unless parent.nil?
|
3756
|
-
command.query['fields'] = fields unless fields.nil?
|
3757
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3758
|
-
execute_or_queue_command(command, &block)
|
3759
|
-
end
|
3760
|
-
|
3761
3692
|
# Returns a list of playbooks in the specified agent.
|
3762
3693
|
# @param [String] parent
|
3763
3694
|
# Required. The agent to list playbooks from. Format: `projects//locations//
|
@@ -4145,41 +4076,6 @@ module Google
|
|
4145
4076
|
execute_or_queue_command(command, &block)
|
4146
4077
|
end
|
4147
4078
|
|
4148
|
-
# Retrieves the specified version of the Playbook and stores it as the current
|
4149
|
-
# playbook draft, returning the playbook with resources updated.
|
4150
|
-
# @param [String] name
|
4151
|
-
# Required. The name of the playbook version. Format: `projects//locations//
|
4152
|
-
# agents//playbooks//versions/`.
|
4153
|
-
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest] google_cloud_dialogflow_cx_v3beta1_restore_playbook_version_request_object
|
4154
|
-
# @param [String] fields
|
4155
|
-
# Selector specifying which fields to include in a partial response.
|
4156
|
-
# @param [String] quota_user
|
4157
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
4158
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
4159
|
-
# @param [Google::Apis::RequestOptions] options
|
4160
|
-
# Request-specific options
|
4161
|
-
#
|
4162
|
-
# @yield [result, err] Result & error if block supplied
|
4163
|
-
# @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse] parsed result object
|
4164
|
-
# @yieldparam err [StandardError] error object if request failed
|
4165
|
-
#
|
4166
|
-
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse]
|
4167
|
-
#
|
4168
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4169
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4170
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4171
|
-
def restore_project_location_agent_playbook_version(name, google_cloud_dialogflow_cx_v3beta1_restore_playbook_version_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
4172
|
-
command = make_simple_command(:post, 'v3beta1/{+name}:restore', options)
|
4173
|
-
command.request_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionRequest::Representation
|
4174
|
-
command.request_object = google_cloud_dialogflow_cx_v3beta1_restore_playbook_version_request_object
|
4175
|
-
command.response_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse::Representation
|
4176
|
-
command.response_class = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestorePlaybookVersionResponse
|
4177
|
-
command.params['name'] = name unless name.nil?
|
4178
|
-
command.query['fields'] = fields unless fields.nil?
|
4179
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4180
|
-
execute_or_queue_command(command, &block)
|
4181
|
-
end
|
4182
|
-
|
4183
4079
|
# Processes a natural language query and returns structured, actionable data as
|
4184
4080
|
# a result. This method is not idempotent, because it may cause session entity
|
4185
4081
|
# types to be updated, which in turn might affect results of future queries.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.94.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.94.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Dialogflow API V3beta1
|
79
79
|
test_files: []
|