google-apis-dialogflow_v3beta1 0.9.0 → 0.14.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 +21 -0
- data/lib/google/apis/dialogflow_v3beta1/classes.rb +566 -41
- data/lib/google/apis/dialogflow_v3beta1/gem_version.rb +3 -3
- data/lib/google/apis/dialogflow_v3beta1/representations.rb +233 -0
- data/lib/google/apis/dialogflow_v3beta1/service.rb +235 -65
- metadata +4 -4
@@ -778,6 +778,77 @@ module Google
|
|
778
778
|
execute_or_queue_command(command, &block)
|
779
779
|
end
|
780
780
|
|
781
|
+
# Kicks off a continuous test under the specified Environment.
|
782
|
+
# @param [String] environment
|
783
|
+
# Required. Format: `projects//locations//agents//environments/`.
|
784
|
+
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RunContinuousTestRequest] google_cloud_dialogflow_cx_v3beta1_run_continuous_test_request_object
|
785
|
+
# @param [String] fields
|
786
|
+
# Selector specifying which fields to include in a partial response.
|
787
|
+
# @param [String] quota_user
|
788
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
789
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
790
|
+
# @param [Google::Apis::RequestOptions] options
|
791
|
+
# Request-specific options
|
792
|
+
#
|
793
|
+
# @yield [result, err] Result & error if block supplied
|
794
|
+
# @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation] parsed result object
|
795
|
+
# @yieldparam err [StandardError] error object if request failed
|
796
|
+
#
|
797
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation]
|
798
|
+
#
|
799
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
800
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
801
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
802
|
+
def run_project_location_agent_environment_continuous_test(environment, google_cloud_dialogflow_cx_v3beta1_run_continuous_test_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
803
|
+
command = make_simple_command(:post, 'v3beta1/{+environment}:runContinuousTest', options)
|
804
|
+
command.request_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RunContinuousTestRequest::Representation
|
805
|
+
command.request_object = google_cloud_dialogflow_cx_v3beta1_run_continuous_test_request_object
|
806
|
+
command.response_representation = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation::Representation
|
807
|
+
command.response_class = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation
|
808
|
+
command.params['environment'] = environment unless environment.nil?
|
809
|
+
command.query['fields'] = fields unless fields.nil?
|
810
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
811
|
+
execute_or_queue_command(command, &block)
|
812
|
+
end
|
813
|
+
|
814
|
+
# Fetches a list of continuous test results for a given environment.
|
815
|
+
# @param [String] parent
|
816
|
+
# Required. The environment to list results for. Format: `projects//locations//
|
817
|
+
# agents// environments/`.
|
818
|
+
# @param [Fixnum] page_size
|
819
|
+
# The maximum number of items to return in a single page. By default 100 and at
|
820
|
+
# most 1000.
|
821
|
+
# @param [String] page_token
|
822
|
+
# The next_page_token value returned from a previous list request.
|
823
|
+
# @param [String] fields
|
824
|
+
# Selector specifying which fields to include in a partial response.
|
825
|
+
# @param [String] quota_user
|
826
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
827
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
828
|
+
# @param [Google::Apis::RequestOptions] options
|
829
|
+
# Request-specific options
|
830
|
+
#
|
831
|
+
# @yield [result, err] Result & error if block supplied
|
832
|
+
# @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse] parsed result object
|
833
|
+
# @yieldparam err [StandardError] error object if request failed
|
834
|
+
#
|
835
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse]
|
836
|
+
#
|
837
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
838
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
839
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
840
|
+
def list_project_location_agent_environment_continuous_test_results(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
841
|
+
command = make_simple_command(:get, 'v3beta1/{+parent}/continuousTestResults', options)
|
842
|
+
command.response_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse::Representation
|
843
|
+
command.response_class = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListContinuousTestResultsResponse
|
844
|
+
command.params['parent'] = parent unless parent.nil?
|
845
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
846
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
847
|
+
command.query['fields'] = fields unless fields.nil?
|
848
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
849
|
+
execute_or_queue_command(command, &block)
|
850
|
+
end
|
851
|
+
|
781
852
|
# Creates an Experiment in the specified Environment.
|
782
853
|
# @param [String] parent
|
783
854
|
# Required. The Agent to create an Environment for. Format: `projects//locations/
|
@@ -1335,11 +1406,12 @@ module Google
|
|
1335
1406
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Flow] google_cloud_dialogflow_cx_v3beta1_flow_object
|
1336
1407
|
# @param [String] language_code
|
1337
1408
|
# The language of the following fields in `flow`: * `Flow.event_handlers.
|
1338
|
-
# trigger_fulfillment.messages` * `Flow.
|
1339
|
-
#
|
1340
|
-
#
|
1341
|
-
#
|
1342
|
-
#
|
1409
|
+
# trigger_fulfillment.messages` * `Flow.event_handlers.trigger_fulfillment.
|
1410
|
+
# conditional_cases` * `Flow.transition_routes.trigger_fulfillment.messages` * `
|
1411
|
+
# Flow.transition_routes.trigger_fulfillment.conditional_cases` If not specified,
|
1412
|
+
# the agent's default language is used. [Many languages](https://cloud.google.
|
1413
|
+
# com/dialogflow/cx/docs/reference/language) are supported. Note: languages must
|
1414
|
+
# be enabled in the agent before they can be used.
|
1343
1415
|
# @param [String] fields
|
1344
1416
|
# Selector specifying which fields to include in a partial response.
|
1345
1417
|
# @param [String] quota_user
|
@@ -1409,6 +1481,41 @@ module Google
|
|
1409
1481
|
execute_or_queue_command(command, &block)
|
1410
1482
|
end
|
1411
1483
|
|
1484
|
+
# Exports the specified flow to a binary file. Note that resources (e.g. intents,
|
1485
|
+
# entities, webhooks) that the flow references will also be exported.
|
1486
|
+
# @param [String] name
|
1487
|
+
# Required. The name of the flow to export. Format: `projects//locations//agents/
|
1488
|
+
# /flows/`.
|
1489
|
+
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportFlowRequest] google_cloud_dialogflow_cx_v3beta1_export_flow_request_object
|
1490
|
+
# @param [String] fields
|
1491
|
+
# Selector specifying which fields to include in a partial response.
|
1492
|
+
# @param [String] quota_user
|
1493
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1494
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1495
|
+
# @param [Google::Apis::RequestOptions] options
|
1496
|
+
# Request-specific options
|
1497
|
+
#
|
1498
|
+
# @yield [result, err] Result & error if block supplied
|
1499
|
+
# @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation] parsed result object
|
1500
|
+
# @yieldparam err [StandardError] error object if request failed
|
1501
|
+
#
|
1502
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation]
|
1503
|
+
#
|
1504
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1505
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1506
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1507
|
+
def export_project_location_agent_flow(name, google_cloud_dialogflow_cx_v3beta1_export_flow_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1508
|
+
command = make_simple_command(:post, 'v3beta1/{+name}:export', options)
|
1509
|
+
command.request_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportFlowRequest::Representation
|
1510
|
+
command.request_object = google_cloud_dialogflow_cx_v3beta1_export_flow_request_object
|
1511
|
+
command.response_representation = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation::Representation
|
1512
|
+
command.response_class = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation
|
1513
|
+
command.params['name'] = name unless name.nil?
|
1514
|
+
command.query['fields'] = fields unless fields.nil?
|
1515
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1516
|
+
execute_or_queue_command(command, &block)
|
1517
|
+
end
|
1518
|
+
|
1412
1519
|
# Retrieves the specified flow.
|
1413
1520
|
# @param [String] name
|
1414
1521
|
# Required. The name of the flow to get. Format: `projects//locations//agents//
|
@@ -1416,10 +1523,12 @@ module Google
|
|
1416
1523
|
# @param [String] language_code
|
1417
1524
|
# The language to retrieve the flow for. The following fields are language
|
1418
1525
|
# dependent: * `Flow.event_handlers.trigger_fulfillment.messages` * `Flow.
|
1419
|
-
#
|
1420
|
-
#
|
1421
|
-
#
|
1422
|
-
#
|
1526
|
+
# event_handlers.trigger_fulfillment.conditional_cases` * `Flow.
|
1527
|
+
# transition_routes.trigger_fulfillment.messages` * `Flow.transition_routes.
|
1528
|
+
# trigger_fulfillment.conditional_cases` If not specified, the agent's default
|
1529
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
1530
|
+
# reference/language) are supported. Note: languages must be enabled in the
|
1531
|
+
# agent before they can be used.
|
1423
1532
|
# @param [String] fields
|
1424
1533
|
# Selector specifying which fields to include in a partial response.
|
1425
1534
|
# @param [String] quota_user
|
@@ -1483,17 +1592,53 @@ module Google
|
|
1483
1592
|
execute_or_queue_command(command, &block)
|
1484
1593
|
end
|
1485
1594
|
|
1595
|
+
# Imports the specified flow to the specified agent from a binary file.
|
1596
|
+
# @param [String] parent
|
1597
|
+
# Required. The agent to import the flow into. Format: `projects//locations//
|
1598
|
+
# agents/`.
|
1599
|
+
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportFlowRequest] google_cloud_dialogflow_cx_v3beta1_import_flow_request_object
|
1600
|
+
# @param [String] fields
|
1601
|
+
# Selector specifying which fields to include in a partial response.
|
1602
|
+
# @param [String] quota_user
|
1603
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1604
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1605
|
+
# @param [Google::Apis::RequestOptions] options
|
1606
|
+
# Request-specific options
|
1607
|
+
#
|
1608
|
+
# @yield [result, err] Result & error if block supplied
|
1609
|
+
# @yieldparam result [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation] parsed result object
|
1610
|
+
# @yieldparam err [StandardError] error object if request failed
|
1611
|
+
#
|
1612
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation]
|
1613
|
+
#
|
1614
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1615
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1616
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1617
|
+
def import_project_location_agent_flow(parent, google_cloud_dialogflow_cx_v3beta1_import_flow_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1618
|
+
command = make_simple_command(:post, 'v3beta1/{+parent}/flows:import', options)
|
1619
|
+
command.request_representation = Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportFlowRequest::Representation
|
1620
|
+
command.request_object = google_cloud_dialogflow_cx_v3beta1_import_flow_request_object
|
1621
|
+
command.response_representation = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation::Representation
|
1622
|
+
command.response_class = Google::Apis::DialogflowV3beta1::GoogleLongrunningOperation
|
1623
|
+
command.params['parent'] = parent unless parent.nil?
|
1624
|
+
command.query['fields'] = fields unless fields.nil?
|
1625
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1626
|
+
execute_or_queue_command(command, &block)
|
1627
|
+
end
|
1628
|
+
|
1486
1629
|
# Returns the list of all flows in the specified agent.
|
1487
1630
|
# @param [String] parent
|
1488
1631
|
# Required. The agent containing the flows. Format: `projects//locations//agents/
|
1489
1632
|
# `.
|
1490
1633
|
# @param [String] language_code
|
1491
1634
|
# The language to list flows for. The following fields are language dependent: *
|
1492
|
-
# `Flow.event_handlers.trigger_fulfillment.messages` * `Flow.
|
1493
|
-
# trigger_fulfillment.
|
1494
|
-
#
|
1495
|
-
#
|
1496
|
-
#
|
1635
|
+
# `Flow.event_handlers.trigger_fulfillment.messages` * `Flow.event_handlers.
|
1636
|
+
# trigger_fulfillment.conditional_cases` * `Flow.transition_routes.
|
1637
|
+
# trigger_fulfillment.messages` * `Flow.transition_routes.trigger_fulfillment.
|
1638
|
+
# conditional_cases` If not specified, the agent's default language is used. [
|
1639
|
+
# Many languages](https://cloud.google.com/dialogflow/cx/docs/reference/language)
|
1640
|
+
# are supported. Note: languages must be enabled in the agent before they can
|
1641
|
+
# be used.
|
1497
1642
|
# @param [Fixnum] page_size
|
1498
1643
|
# The maximum number of items to return in a single page. By default 100 and at
|
1499
1644
|
# most 1000.
|
@@ -1536,11 +1681,12 @@ module Google
|
|
1536
1681
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Flow] google_cloud_dialogflow_cx_v3beta1_flow_object
|
1537
1682
|
# @param [String] language_code
|
1538
1683
|
# The language of the following fields in `flow`: * `Flow.event_handlers.
|
1539
|
-
# trigger_fulfillment.messages` * `Flow.
|
1540
|
-
#
|
1541
|
-
#
|
1542
|
-
#
|
1543
|
-
#
|
1684
|
+
# trigger_fulfillment.messages` * `Flow.event_handlers.trigger_fulfillment.
|
1685
|
+
# conditional_cases` * `Flow.transition_routes.trigger_fulfillment.messages` * `
|
1686
|
+
# Flow.transition_routes.trigger_fulfillment.conditional_cases` If not specified,
|
1687
|
+
# the agent's default language is used. [Many languages](https://cloud.google.
|
1688
|
+
# com/dialogflow/cx/docs/reference/language) are supported. Note: languages must
|
1689
|
+
# be enabled in the agent before they can be used.
|
1544
1690
|
# @param [String] update_mask
|
1545
1691
|
# Required. The mask to control which fields get updated. If `update_mask` is
|
1546
1692
|
# not specified, an error will be returned.
|
@@ -1651,13 +1797,18 @@ module Google
|
|
1651
1797
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Page] google_cloud_dialogflow_cx_v3beta1_page_object
|
1652
1798
|
# @param [String] language_code
|
1653
1799
|
# The language of the following fields in `page`: * `Page.entry_fulfillment.
|
1654
|
-
# messages` * `Page.
|
1655
|
-
# messages` * `Page.
|
1656
|
-
#
|
1657
|
-
#
|
1658
|
-
#
|
1659
|
-
#
|
1660
|
-
#
|
1800
|
+
# messages` * `Page.entry_fulfillment.conditional_cases` * `Page.event_handlers.
|
1801
|
+
# trigger_fulfillment.messages` * `Page.event_handlers.trigger_fulfillment.
|
1802
|
+
# conditional_cases` * `Page.form.parameters.fill_behavior.
|
1803
|
+
# initial_prompt_fulfillment.messages` * `Page.form.parameters.fill_behavior.
|
1804
|
+
# initial_prompt_fulfillment.conditional_cases` * `Page.form.parameters.
|
1805
|
+
# fill_behavior.reprompt_event_handlers.messages` * `Page.form.parameters.
|
1806
|
+
# fill_behavior.reprompt_event_handlers.conditional_cases` * `Page.
|
1807
|
+
# transition_routes.trigger_fulfillment.messages` * `Page.transition_routes.
|
1808
|
+
# trigger_fulfillment.conditional_cases` If not specified, the agent's default
|
1809
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
1810
|
+
# reference/language) are supported. Note: languages must be enabled in the
|
1811
|
+
# agent before they can be used.
|
1661
1812
|
# @param [String] fields
|
1662
1813
|
# Selector specifying which fields to include in a partial response.
|
1663
1814
|
# @param [String] quota_user
|
@@ -1733,14 +1884,18 @@ module Google
|
|
1733
1884
|
# pages/`.
|
1734
1885
|
# @param [String] language_code
|
1735
1886
|
# The language to retrieve the page for. The following fields are language
|
1736
|
-
# dependent: * `Page.entry_fulfillment.messages` * `Page.
|
1737
|
-
#
|
1738
|
-
#
|
1739
|
-
#
|
1740
|
-
#
|
1741
|
-
#
|
1742
|
-
#
|
1743
|
-
#
|
1887
|
+
# dependent: * `Page.entry_fulfillment.messages` * `Page.entry_fulfillment.
|
1888
|
+
# conditional_cases` * `Page.event_handlers.trigger_fulfillment.messages` * `
|
1889
|
+
# Page.event_handlers.trigger_fulfillment.conditional_cases` * `Page.form.
|
1890
|
+
# parameters.fill_behavior.initial_prompt_fulfillment.messages` * `Page.form.
|
1891
|
+
# parameters.fill_behavior.initial_prompt_fulfillment.conditional_cases` * `Page.
|
1892
|
+
# form.parameters.fill_behavior.reprompt_event_handlers.messages` * `Page.form.
|
1893
|
+
# parameters.fill_behavior.reprompt_event_handlers.conditional_cases` * `Page.
|
1894
|
+
# transition_routes.trigger_fulfillment.messages` * `Page.transition_routes.
|
1895
|
+
# trigger_fulfillment.conditional_cases` If not specified, the agent's default
|
1896
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
1897
|
+
# reference/language) are supported. Note: languages must be enabled in the
|
1898
|
+
# agent before they can be used.
|
1744
1899
|
# @param [String] fields
|
1745
1900
|
# Selector specifying which fields to include in a partial response.
|
1746
1901
|
# @param [String] quota_user
|
@@ -1775,14 +1930,18 @@ module Google
|
|
1775
1930
|
# /flows/`.
|
1776
1931
|
# @param [String] language_code
|
1777
1932
|
# The language to list pages for. The following fields are language dependent: *
|
1778
|
-
# `Page.entry_fulfillment.messages` * `Page.
|
1933
|
+
# `Page.entry_fulfillment.messages` * `Page.entry_fulfillment.conditional_cases`
|
1934
|
+
# * `Page.event_handlers.trigger_fulfillment.messages` * `Page.event_handlers.
|
1935
|
+
# trigger_fulfillment.conditional_cases` * `Page.form.parameters.fill_behavior.
|
1779
1936
|
# initial_prompt_fulfillment.messages` * `Page.form.parameters.fill_behavior.
|
1780
|
-
#
|
1781
|
-
#
|
1782
|
-
#
|
1783
|
-
#
|
1784
|
-
#
|
1785
|
-
#
|
1937
|
+
# initial_prompt_fulfillment.conditional_cases` * `Page.form.parameters.
|
1938
|
+
# fill_behavior.reprompt_event_handlers.messages` * `Page.form.parameters.
|
1939
|
+
# fill_behavior.reprompt_event_handlers.conditional_cases` * `Page.
|
1940
|
+
# transition_routes.trigger_fulfillment.messages` * `Page.transition_routes.
|
1941
|
+
# trigger_fulfillment.conditional_cases` If not specified, the agent's default
|
1942
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
1943
|
+
# reference/language) are supported. Note: languages must be enabled in the
|
1944
|
+
# agent before they can be used.
|
1786
1945
|
# @param [Fixnum] page_size
|
1787
1946
|
# The maximum number of items to return in a single page. By default 100 and at
|
1788
1947
|
# most 1000.
|
@@ -1826,13 +1985,18 @@ module Google
|
|
1826
1985
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Page] google_cloud_dialogflow_cx_v3beta1_page_object
|
1827
1986
|
# @param [String] language_code
|
1828
1987
|
# The language of the following fields in `page`: * `Page.entry_fulfillment.
|
1829
|
-
# messages` * `Page.
|
1830
|
-
# messages` * `Page.
|
1831
|
-
#
|
1832
|
-
#
|
1833
|
-
#
|
1834
|
-
#
|
1835
|
-
#
|
1988
|
+
# messages` * `Page.entry_fulfillment.conditional_cases` * `Page.event_handlers.
|
1989
|
+
# trigger_fulfillment.messages` * `Page.event_handlers.trigger_fulfillment.
|
1990
|
+
# conditional_cases` * `Page.form.parameters.fill_behavior.
|
1991
|
+
# initial_prompt_fulfillment.messages` * `Page.form.parameters.fill_behavior.
|
1992
|
+
# initial_prompt_fulfillment.conditional_cases` * `Page.form.parameters.
|
1993
|
+
# fill_behavior.reprompt_event_handlers.messages` * `Page.form.parameters.
|
1994
|
+
# fill_behavior.reprompt_event_handlers.conditional_cases` * `Page.
|
1995
|
+
# transition_routes.trigger_fulfillment.messages` * `Page.transition_routes.
|
1996
|
+
# trigger_fulfillment.conditional_cases` If not specified, the agent's default
|
1997
|
+
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
1998
|
+
# reference/language) are supported. Note: languages must be enabled in the
|
1999
|
+
# agent before they can be used.
|
1836
2000
|
# @param [String] update_mask
|
1837
2001
|
# The mask to control which fields get updated. If the mask is not present, all
|
1838
2002
|
# fields will be updated.
|
@@ -1873,11 +2037,12 @@ module Google
|
|
1873
2037
|
# locations//agents//flows/`.
|
1874
2038
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroup] google_cloud_dialogflow_cx_v3beta1_transition_route_group_object
|
1875
2039
|
# @param [String] language_code
|
1876
|
-
# The language
|
1877
|
-
#
|
1878
|
-
#
|
1879
|
-
#
|
1880
|
-
#
|
2040
|
+
# The language of the following fields in `TransitionRouteGroup`: * `
|
2041
|
+
# TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` * `
|
2042
|
+
# TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases`
|
2043
|
+
# If not specified, the agent's default language is used. [Many languages](https:
|
2044
|
+
# //cloud.google.com/dialogflow/cx/docs/reference/language) are supported. Note:
|
2045
|
+
# languages must be enabled in the agent before they can be used.
|
1881
2046
|
# @param [String] fields
|
1882
2047
|
# Selector specifying which fields to include in a partial response.
|
1883
2048
|
# @param [String] quota_user
|
@@ -1951,8 +2116,10 @@ module Google
|
|
1951
2116
|
# Required. The name of the TransitionRouteGroup. Format: `projects//locations//
|
1952
2117
|
# agents//flows//transitionRouteGroups/`.
|
1953
2118
|
# @param [String] language_code
|
1954
|
-
# The language to
|
1955
|
-
#
|
2119
|
+
# The language to retrieve the transition route group for. The following fields
|
2120
|
+
# are language dependent: * `TransitionRouteGroup.transition_routes.
|
2121
|
+
# trigger_fulfillment.messages` * `TransitionRouteGroup.transition_routes.
|
2122
|
+
# trigger_fulfillment.conditional_cases` If not specified, the agent's default
|
1956
2123
|
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
1957
2124
|
# reference/language) are supported. Note: languages must be enabled in the
|
1958
2125
|
# agent before they can be used.
|
@@ -1989,8 +2156,10 @@ module Google
|
|
1989
2156
|
# Required. The flow to list all transition route groups for. Format: `projects//
|
1990
2157
|
# locations//agents//flows/`.
|
1991
2158
|
# @param [String] language_code
|
1992
|
-
# The language to list transition route groups for. The
|
1993
|
-
#
|
2159
|
+
# The language to list transition route groups for. The following fields are
|
2160
|
+
# language dependent: * `TransitionRouteGroup.transition_routes.
|
2161
|
+
# trigger_fulfillment.messages` * `TransitionRouteGroup.transition_routes.
|
2162
|
+
# trigger_fulfillment.conditional_cases` If not specified, the agent's default
|
1994
2163
|
# language is used. [Many languages](https://cloud.google.com/dialogflow/cx/docs/
|
1995
2164
|
# reference/language) are supported. Note: languages must be enabled in the
|
1996
2165
|
# agent before they can be used.
|
@@ -2036,11 +2205,12 @@ module Google
|
|
2036
2205
|
# /locations//agents//flows//transitionRouteGroups/`.
|
2037
2206
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroup] google_cloud_dialogflow_cx_v3beta1_transition_route_group_object
|
2038
2207
|
# @param [String] language_code
|
2039
|
-
# The language
|
2040
|
-
#
|
2041
|
-
#
|
2042
|
-
#
|
2043
|
-
#
|
2208
|
+
# The language of the following fields in `TransitionRouteGroup`: * `
|
2209
|
+
# TransitionRouteGroup.transition_routes.trigger_fulfillment.messages` * `
|
2210
|
+
# TransitionRouteGroup.transition_routes.trigger_fulfillment.conditional_cases`
|
2211
|
+
# If not specified, the agent's default language is used. [Many languages](https:
|
2212
|
+
# //cloud.google.com/dialogflow/cx/docs/reference/language) are supported. Note:
|
2213
|
+
# languages must be enabled in the agent before they can be used.
|
2044
2214
|
# @param [String] update_mask
|
2045
2215
|
# The mask to control which fields get updated.
|
2046
2216
|
# @param [String] fields
|
@@ -2208,10 +2378,10 @@ module Google
|
|
2208
2378
|
execute_or_queue_command(command, &block)
|
2209
2379
|
end
|
2210
2380
|
|
2211
|
-
# Loads
|
2381
|
+
# Loads resources in the specified version to the draft flow.
|
2212
2382
|
# @param [String] name
|
2213
|
-
# Required. The Version to be loaded to draft
|
2214
|
-
#
|
2383
|
+
# Required. The Version to be loaded to draft flow. Format: `projects//locations/
|
2384
|
+
# /agents//flows//versions/`.
|
2215
2385
|
# @param [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LoadVersionRequest] google_cloud_dialogflow_cx_v3beta1_load_version_request_object
|
2216
2386
|
# @param [String] fields
|
2217
2387
|
# Selector specifying which fields to include in a partial response.
|
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.14.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-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.14.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Dialogflow API V3beta1
|