google-apis-dialogflow_v3beta1 0.63.0 → 0.65.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: b502da6bb276eafb7fadf63eba5cf22b7cea428e105f636f916b251b7b6c173c
|
4
|
+
data.tar.gz: 57ea1e20a8575f26f397dbc60faf7296eeec401fd8dd0e335231df60c31bb6dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c8f9361eacf0a0a463585727197f34895a1c983daef28c65714be7fa24d2f1a2d8ffa85c6ba6e54aced4901cee7ab7ad46ff68f3975972843a9dad536154d22
|
7
|
+
data.tar.gz: 4f5732d9ed0fed93afa0299614175d3cf6b3ef5338df655d1b464e0226b76c45a5feb40c8554a99fdb310c3391058f839fdf82d2a4e5cc3c8c3768e65f6ef40e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
2
2
|
|
3
|
+
### v0.65.0 (2023-07-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230717
|
6
|
+
|
7
|
+
### v0.64.0 (2023-07-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230705
|
10
|
+
|
3
11
|
### v0.63.0 (2023-07-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230626
|
@@ -653,7 +653,8 @@ module Google
|
|
653
653
|
class GoogleCloudDialogflowCxV3ExportAgentResponse
|
654
654
|
include Google::Apis::Core::Hashable
|
655
655
|
|
656
|
-
# Uncompressed raw byte content for agent.
|
656
|
+
# Uncompressed raw byte content for agent. This field is populated if none of `
|
657
|
+
# agent_uri` and `git_destination` are specified in ExportAgentRequest.
|
657
658
|
# Corresponds to the JSON property `agentContent`
|
658
659
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
659
660
|
# @return [String]
|
@@ -665,6 +666,12 @@ module Google
|
|
665
666
|
# @return [String]
|
666
667
|
attr_accessor :agent_uri
|
667
668
|
|
669
|
+
# Commit SHA of the git push. This field is populated if `git_destination` is
|
670
|
+
# specified in ExportAgentRequest.
|
671
|
+
# Corresponds to the JSON property `commitSha`
|
672
|
+
# @return [String]
|
673
|
+
attr_accessor :commit_sha
|
674
|
+
|
668
675
|
def initialize(**args)
|
669
676
|
update!(**args)
|
670
677
|
end
|
@@ -673,6 +680,7 @@ module Google
|
|
673
680
|
def update!(**args)
|
674
681
|
@agent_content = args[:agent_content] if args.key?(:agent_content)
|
675
682
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
683
|
+
@commit_sha = args[:commit_sha] if args.key?(:commit_sha)
|
676
684
|
end
|
677
685
|
end
|
678
686
|
|
@@ -1828,6 +1836,11 @@ module Google
|
|
1828
1836
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio]
|
1829
1837
|
attr_accessor :play_audio
|
1830
1838
|
|
1839
|
+
# Response type.
|
1840
|
+
# Corresponds to the JSON property `responseType`
|
1841
|
+
# @return [String]
|
1842
|
+
attr_accessor :response_type
|
1843
|
+
|
1831
1844
|
# Represents the signal that telles the client to transfer the phone call
|
1832
1845
|
# connected to the agent to a third-party endpoint.
|
1833
1846
|
# Corresponds to the JSON property `telephonyTransferCall`
|
@@ -1853,6 +1866,7 @@ module Google
|
|
1853
1866
|
@output_audio_text = args[:output_audio_text] if args.key?(:output_audio_text)
|
1854
1867
|
@payload = args[:payload] if args.key?(:payload)
|
1855
1868
|
@play_audio = args[:play_audio] if args.key?(:play_audio)
|
1869
|
+
@response_type = args[:response_type] if args.key?(:response_type)
|
1856
1870
|
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
1857
1871
|
@text = args[:text] if args.key?(:text)
|
1858
1872
|
end
|
@@ -3218,6 +3232,11 @@ module Google
|
|
3218
3232
|
attr_accessor :enable_stackdriver_logging
|
3219
3233
|
alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
|
3220
3234
|
|
3235
|
+
# Settings for connecting to Git repository for an agent.
|
3236
|
+
# Corresponds to the JSON property `gitIntegrationSettings`
|
3237
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings]
|
3238
|
+
attr_accessor :git_integration_settings
|
3239
|
+
|
3221
3240
|
# Indicates whether the agent is locked for changes. If the agent is locked,
|
3222
3241
|
# modifications to the agent will be rejected except for RestoreAgent.
|
3223
3242
|
# Corresponds to the JSON property `locked`
|
@@ -3280,6 +3299,7 @@ module Google
|
|
3280
3299
|
@display_name = args[:display_name] if args.key?(:display_name)
|
3281
3300
|
@enable_spell_correction = args[:enable_spell_correction] if args.key?(:enable_spell_correction)
|
3282
3301
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
3302
|
+
@git_integration_settings = args[:git_integration_settings] if args.key?(:git_integration_settings)
|
3283
3303
|
@locked = args[:locked] if args.key?(:locked)
|
3284
3304
|
@name = args[:name] if args.key?(:name)
|
3285
3305
|
@security_settings = args[:security_settings] if args.key?(:security_settings)
|
@@ -3291,6 +3311,68 @@ module Google
|
|
3291
3311
|
end
|
3292
3312
|
end
|
3293
3313
|
|
3314
|
+
# Settings for connecting to Git repository for an agent.
|
3315
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings
|
3316
|
+
include Google::Apis::Core::Hashable
|
3317
|
+
|
3318
|
+
# Settings of integration with GitHub.
|
3319
|
+
# Corresponds to the JSON property `githubSettings`
|
3320
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings]
|
3321
|
+
attr_accessor :github_settings
|
3322
|
+
|
3323
|
+
def initialize(**args)
|
3324
|
+
update!(**args)
|
3325
|
+
end
|
3326
|
+
|
3327
|
+
# Update properties of this object
|
3328
|
+
def update!(**args)
|
3329
|
+
@github_settings = args[:github_settings] if args.key?(:github_settings)
|
3330
|
+
end
|
3331
|
+
end
|
3332
|
+
|
3333
|
+
# Settings of integration with GitHub.
|
3334
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings
|
3335
|
+
include Google::Apis::Core::Hashable
|
3336
|
+
|
3337
|
+
# The access token used to authenticate the access to the GitHub repository.
|
3338
|
+
# Corresponds to the JSON property `accessToken`
|
3339
|
+
# @return [String]
|
3340
|
+
attr_accessor :access_token
|
3341
|
+
|
3342
|
+
# A list of branches configured to be used from Dialogflow.
|
3343
|
+
# Corresponds to the JSON property `branches`
|
3344
|
+
# @return [Array<String>]
|
3345
|
+
attr_accessor :branches
|
3346
|
+
|
3347
|
+
# The unique repository display name for the GitHub repository.
|
3348
|
+
# Corresponds to the JSON property `displayName`
|
3349
|
+
# @return [String]
|
3350
|
+
attr_accessor :display_name
|
3351
|
+
|
3352
|
+
# The GitHub repository URI related to the agent.
|
3353
|
+
# Corresponds to the JSON property `repositoryUri`
|
3354
|
+
# @return [String]
|
3355
|
+
attr_accessor :repository_uri
|
3356
|
+
|
3357
|
+
# The branch of the GitHub repository tracked for this agent.
|
3358
|
+
# Corresponds to the JSON property `trackingBranch`
|
3359
|
+
# @return [String]
|
3360
|
+
attr_accessor :tracking_branch
|
3361
|
+
|
3362
|
+
def initialize(**args)
|
3363
|
+
update!(**args)
|
3364
|
+
end
|
3365
|
+
|
3366
|
+
# Update properties of this object
|
3367
|
+
def update!(**args)
|
3368
|
+
@access_token = args[:access_token] if args.key?(:access_token)
|
3369
|
+
@branches = args[:branches] if args.key?(:branches)
|
3370
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
3371
|
+
@repository_uri = args[:repository_uri] if args.key?(:repository_uri)
|
3372
|
+
@tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
|
3373
|
+
end
|
3374
|
+
end
|
3375
|
+
|
3294
3376
|
# The response message for Agents.GetAgentValidationResult.
|
3295
3377
|
class GoogleCloudDialogflowCxV3beta1AgentValidationResult
|
3296
3378
|
include Google::Apis::Core::Hashable
|
@@ -4794,6 +4876,11 @@ module Google
|
|
4794
4876
|
# @return [String]
|
4795
4877
|
attr_accessor :environment
|
4796
4878
|
|
4879
|
+
# Settings for exporting to a git branch.
|
4880
|
+
# Corresponds to the JSON property `gitDestination`
|
4881
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination]
|
4882
|
+
attr_accessor :git_destination
|
4883
|
+
|
4797
4884
|
# Optional. Whether to include BigQuery Export setting.
|
4798
4885
|
# Corresponds to the JSON property `includeBigqueryExportSettings`
|
4799
4886
|
# @return [Boolean]
|
@@ -4809,15 +4896,42 @@ module Google
|
|
4809
4896
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
4810
4897
|
@data_format = args[:data_format] if args.key?(:data_format)
|
4811
4898
|
@environment = args[:environment] if args.key?(:environment)
|
4899
|
+
@git_destination = args[:git_destination] if args.key?(:git_destination)
|
4812
4900
|
@include_bigquery_export_settings = args[:include_bigquery_export_settings] if args.key?(:include_bigquery_export_settings)
|
4813
4901
|
end
|
4814
4902
|
end
|
4815
4903
|
|
4904
|
+
# Settings for exporting to a git branch.
|
4905
|
+
class GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination
|
4906
|
+
include Google::Apis::Core::Hashable
|
4907
|
+
|
4908
|
+
# Commit message for the git push.
|
4909
|
+
# Corresponds to the JSON property `commitMessage`
|
4910
|
+
# @return [String]
|
4911
|
+
attr_accessor :commit_message
|
4912
|
+
|
4913
|
+
# Tracking branch for the git push.
|
4914
|
+
# Corresponds to the JSON property `trackingBranch`
|
4915
|
+
# @return [String]
|
4916
|
+
attr_accessor :tracking_branch
|
4917
|
+
|
4918
|
+
def initialize(**args)
|
4919
|
+
update!(**args)
|
4920
|
+
end
|
4921
|
+
|
4922
|
+
# Update properties of this object
|
4923
|
+
def update!(**args)
|
4924
|
+
@commit_message = args[:commit_message] if args.key?(:commit_message)
|
4925
|
+
@tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
|
4926
|
+
end
|
4927
|
+
end
|
4928
|
+
|
4816
4929
|
# The response message for Agents.ExportAgent.
|
4817
4930
|
class GoogleCloudDialogflowCxV3beta1ExportAgentResponse
|
4818
4931
|
include Google::Apis::Core::Hashable
|
4819
4932
|
|
4820
|
-
# Uncompressed raw byte content for agent.
|
4933
|
+
# Uncompressed raw byte content for agent. This field is populated if none of `
|
4934
|
+
# agent_uri` and `git_destination` are specified in ExportAgentRequest.
|
4821
4935
|
# Corresponds to the JSON property `agentContent`
|
4822
4936
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
4823
4937
|
# @return [String]
|
@@ -4829,6 +4943,12 @@ module Google
|
|
4829
4943
|
# @return [String]
|
4830
4944
|
attr_accessor :agent_uri
|
4831
4945
|
|
4946
|
+
# Commit SHA of the git push. This field is populated if `git_destination` is
|
4947
|
+
# specified in ExportAgentRequest.
|
4948
|
+
# Corresponds to the JSON property `commitSha`
|
4949
|
+
# @return [String]
|
4950
|
+
attr_accessor :commit_sha
|
4951
|
+
|
4832
4952
|
def initialize(**args)
|
4833
4953
|
update!(**args)
|
4834
4954
|
end
|
@@ -4837,6 +4957,7 @@ module Google
|
|
4837
4957
|
def update!(**args)
|
4838
4958
|
@agent_content = args[:agent_content] if args.key?(:agent_content)
|
4839
4959
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
4960
|
+
@commit_sha = args[:commit_sha] if args.key?(:commit_sha)
|
4840
4961
|
end
|
4841
4962
|
end
|
4842
4963
|
|
@@ -7754,6 +7875,11 @@ module Google
|
|
7754
7875
|
# @return [String]
|
7755
7876
|
attr_accessor :agent_uri
|
7756
7877
|
|
7878
|
+
# Settings for restoring from a git branch
|
7879
|
+
# Corresponds to the JSON property `gitSource`
|
7880
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource]
|
7881
|
+
attr_accessor :git_source
|
7882
|
+
|
7757
7883
|
# Agent restore mode. If not specified, `KEEP` is assumed.
|
7758
7884
|
# Corresponds to the JSON property `restoreOption`
|
7759
7885
|
# @return [String]
|
@@ -7767,10 +7893,30 @@ module Google
|
|
7767
7893
|
def update!(**args)
|
7768
7894
|
@agent_content = args[:agent_content] if args.key?(:agent_content)
|
7769
7895
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
7896
|
+
@git_source = args[:git_source] if args.key?(:git_source)
|
7770
7897
|
@restore_option = args[:restore_option] if args.key?(:restore_option)
|
7771
7898
|
end
|
7772
7899
|
end
|
7773
7900
|
|
7901
|
+
# Settings for restoring from a git branch
|
7902
|
+
class GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource
|
7903
|
+
include Google::Apis::Core::Hashable
|
7904
|
+
|
7905
|
+
# tracking branch for the git pull
|
7906
|
+
# Corresponds to the JSON property `trackingBranch`
|
7907
|
+
# @return [String]
|
7908
|
+
attr_accessor :tracking_branch
|
7909
|
+
|
7910
|
+
def initialize(**args)
|
7911
|
+
update!(**args)
|
7912
|
+
end
|
7913
|
+
|
7914
|
+
# Update properties of this object
|
7915
|
+
def update!(**args)
|
7916
|
+
@tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
|
7917
|
+
end
|
7918
|
+
end
|
7919
|
+
|
7774
7920
|
# The configuration for auto rollout.
|
7775
7921
|
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
7776
7922
|
include Google::Apis::Core::Hashable
|
@@ -10009,7 +10155,7 @@ module Google
|
|
10009
10155
|
# Required. The unique identifier of the context. Format: `projects//agent/
|
10010
10156
|
# sessions//contexts/`, or `projects//agent/environments//users//sessions//
|
10011
10157
|
# contexts/`. The `Context ID` is always converted to lowercase, may only
|
10012
|
-
# contain characters in a-zA-Z0-9_
|
10158
|
+
# contain characters in `a-zA-Z0-9_-%` and may be at most 250 bytes long. If `
|
10013
10159
|
# Environment ID` is not specified, we assume default 'draft' environment. If `
|
10014
10160
|
# User ID` is not specified, we assume default '-' user. The following context
|
10015
10161
|
# names are reserved for internal use by Dialogflow. You should not use these
|
@@ -10022,12 +10168,12 @@ module Google
|
|
10022
10168
|
# Optional. The collection of parameters associated with this context. Depending
|
10023
10169
|
# on your protocol or client library language, this is a map, associative array,
|
10024
10170
|
# symbol table, dictionary, or JSON object composed of a collection of (MapKey,
|
10025
|
-
# MapValue) pairs:
|
10026
|
-
# MapValue type:
|
10027
|
-
# depending on parameter value type, could be one of string,
|
10028
|
-
# null, list or map
|
10029
|
-
# composite entity
|
10030
|
-
#
|
10171
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
10172
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
10173
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
10174
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
10175
|
+
# type is a composite entity then use map from composite entity property names
|
10176
|
+
# to property values, otherwise, use parameter value.
|
10031
10177
|
# Corresponds to the JSON property `parameters`
|
10032
10178
|
# @return [Hash<String,Object>]
|
10033
10179
|
attr_accessor :parameters
|
@@ -10430,12 +10576,12 @@ module Google
|
|
10430
10576
|
# The collection of parameters associated with the event. Depending on your
|
10431
10577
|
# protocol or client library language, this is a map, associative array, symbol
|
10432
10578
|
# table, dictionary, or JSON object composed of a collection of (MapKey,
|
10433
|
-
# MapValue) pairs:
|
10434
|
-
# MapValue type:
|
10435
|
-
# depending on parameter value type, could be one of string,
|
10436
|
-
# null, list or map
|
10437
|
-
# composite entity
|
10438
|
-
#
|
10579
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
10580
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
10581
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
10582
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
10583
|
+
# type is a composite entity then use map from composite entity property names
|
10584
|
+
# to property values, otherwise, use parameter value.
|
10439
10585
|
# Corresponds to the JSON property `parameters`
|
10440
10586
|
# @return [Hash<String,Object>]
|
10441
10587
|
attr_accessor :parameters
|
@@ -10556,8 +10702,8 @@ module Google
|
|
10556
10702
|
class GoogleCloudDialogflowV2GcsDestination
|
10557
10703
|
include Google::Apis::Core::Hashable
|
10558
10704
|
|
10559
|
-
# The Google Cloud Storage URIs for the output. A URI is of the form: gs://
|
10560
|
-
# bucket/object-prefix-or-name Whether a prefix or name is used depends on the
|
10705
|
+
# The Google Cloud Storage URIs for the output. A URI is of the form: `gs://
|
10706
|
+
# bucket/object-prefix-or-name` Whether a prefix or name is used depends on the
|
10561
10707
|
# use case. The requesting user must have "write-permission" to the bucket.
|
10562
10708
|
# Corresponds to the JSON property `uri`
|
10563
10709
|
# @return [String]
|
@@ -12216,12 +12362,13 @@ module Google
|
|
12216
12362
|
|
12217
12363
|
# The collection of extracted parameters. Depending on your protocol or client
|
12218
12364
|
# library language, this is a map, associative array, symbol table, dictionary,
|
12219
|
-
# or JSON object composed of a collection of (MapKey, MapValue) pairs:
|
12220
|
-
# type: string
|
12221
|
-
# entity type is a composite entity
|
12222
|
-
# type, could be one of string, number, boolean, null, list
|
12223
|
-
# value:
|
12224
|
-
# entity property names to property values
|
12365
|
+
# or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey
|
12366
|
+
# type: string * MapKey value: parameter name * MapValue type: If parameter's
|
12367
|
+
# entity type is a composite entity then use map, otherwise, depending on the
|
12368
|
+
# parameter value type, it could be one of string, number, boolean, null, list
|
12369
|
+
# or map. * MapValue value: If parameter's entity type is a composite entity
|
12370
|
+
# then use map from composite entity property names to property values,
|
12371
|
+
# otherwise, use parameter value.
|
12225
12372
|
# Corresponds to the JSON property `parameters`
|
12226
12373
|
# @return [Hash<String,Object>]
|
12227
12374
|
attr_accessor :parameters
|
@@ -12977,7 +13124,7 @@ module Google
|
|
12977
13124
|
# /agent/sessions//contexts/`, - `projects//locations//agent/sessions//contexts/`
|
12978
13125
|
# , - `projects//agent/environments//users//sessions//contexts/`, - `projects//
|
12979
13126
|
# locations//agent/environments//users//sessions//contexts/`, The `Context ID`
|
12980
|
-
# is always converted to lowercase, may only contain characters in a-zA-Z0-9_
|
13127
|
+
# is always converted to lowercase, may only contain characters in `a-zA-Z0-9_-%`
|
12981
13128
|
# and may be at most 250 bytes long. If `Environment ID` is not specified, we
|
12982
13129
|
# assume default 'draft' environment. If `User ID` is not specified, we assume
|
12983
13130
|
# default '-' user. The following context names are reserved for internal use by
|
@@ -12990,12 +13137,12 @@ module Google
|
|
12990
13137
|
# Optional. The collection of parameters associated with this context. Depending
|
12991
13138
|
# on your protocol or client library language, this is a map, associative array,
|
12992
13139
|
# symbol table, dictionary, or JSON object composed of a collection of (MapKey,
|
12993
|
-
# MapValue) pairs:
|
12994
|
-
# MapValue type:
|
12995
|
-
# depending on parameter value type, could be one of string,
|
12996
|
-
# null, list or map
|
12997
|
-
# composite entity
|
12998
|
-
#
|
13140
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
13141
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
13142
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
13143
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
13144
|
+
# type is a composite entity then use map from composite entity property names
|
13145
|
+
# to property values, otherwise, use parameter value.
|
12999
13146
|
# Corresponds to the JSON property `parameters`
|
13000
13147
|
# @return [Hash<String,Object>]
|
13001
13148
|
attr_accessor :parameters
|
@@ -13206,12 +13353,12 @@ module Google
|
|
13206
13353
|
# The collection of parameters associated with the event. Depending on your
|
13207
13354
|
# protocol or client library language, this is a map, associative array, symbol
|
13208
13355
|
# table, dictionary, or JSON object composed of a collection of (MapKey,
|
13209
|
-
# MapValue) pairs:
|
13210
|
-
# MapValue type:
|
13211
|
-
# depending on parameter value type, could be one of string,
|
13212
|
-
# null, list or map
|
13213
|
-
# composite entity
|
13214
|
-
#
|
13356
|
+
# MapValue) pairs: * MapKey type: string * MapKey value: parameter name *
|
13357
|
+
# MapValue type: If parameter's entity type is a composite entity then use map,
|
13358
|
+
# otherwise, depending on the parameter value type, it could be one of string,
|
13359
|
+
# number, boolean, null, list or map. * MapValue value: If parameter's entity
|
13360
|
+
# type is a composite entity then use map from composite entity property names
|
13361
|
+
# to property values, otherwise, use parameter value.
|
13215
13362
|
# Corresponds to the JSON property `parameters`
|
13216
13363
|
# @return [Hash<String,Object>]
|
13217
13364
|
attr_accessor :parameters
|
@@ -13332,8 +13479,8 @@ module Google
|
|
13332
13479
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
13333
13480
|
include Google::Apis::Core::Hashable
|
13334
13481
|
|
13335
|
-
# Required. The Google Cloud Storage URIs for the output. A URI is of the form:
|
13336
|
-
# gs://bucket/object-prefix-or-name Whether a prefix or name is used depends on
|
13482
|
+
# Required. The Google Cloud Storage URIs for the output. A URI is of the form: `
|
13483
|
+
# gs://bucket/object-prefix-or-name` Whether a prefix or name is used depends on
|
13337
13484
|
# the use case. The requesting user must have "write-permission" to the bucket.
|
13338
13485
|
# Corresponds to the JSON property `uri`
|
13339
13486
|
# @return [String]
|
@@ -15500,12 +15647,13 @@ module Google
|
|
15500
15647
|
|
15501
15648
|
# The collection of extracted parameters. Depending on your protocol or client
|
15502
15649
|
# library language, this is a map, associative array, symbol table, dictionary,
|
15503
|
-
# or JSON object composed of a collection of (MapKey, MapValue) pairs:
|
15504
|
-
# type: string
|
15505
|
-
# entity type is a composite entity
|
15506
|
-
# type, could be one of string, number, boolean, null, list
|
15507
|
-
# value:
|
15508
|
-
# entity property names to property values
|
15650
|
+
# or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey
|
15651
|
+
# type: string * MapKey value: parameter name * MapValue type: If parameter's
|
15652
|
+
# entity type is a composite entity then use map, otherwise, depending on the
|
15653
|
+
# parameter value type, it could be one of string, number, boolean, null, list
|
15654
|
+
# or map. * MapValue value: If parameter's entity type is a composite entity
|
15655
|
+
# then use map from composite entity property names to property values,
|
15656
|
+
# otherwise, use parameter value.
|
15509
15657
|
# Corresponds to the JSON property `parameters`
|
15510
15658
|
# @return [Hash<String,Object>]
|
15511
15659
|
attr_accessor :parameters
|
@@ -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.65.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230717"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -550,6 +550,18 @@ module Google
|
|
550
550
|
include Google::Apis::Core::JsonObjectSupport
|
551
551
|
end
|
552
552
|
|
553
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
|
+
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
557
|
+
end
|
558
|
+
|
559
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings
|
560
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
|
+
|
562
|
+
include Google::Apis::Core::JsonObjectSupport
|
563
|
+
end
|
564
|
+
|
553
565
|
class GoogleCloudDialogflowCxV3beta1AgentValidationResult
|
554
566
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
567
|
|
@@ -802,6 +814,12 @@ module Google
|
|
802
814
|
include Google::Apis::Core::JsonObjectSupport
|
803
815
|
end
|
804
816
|
|
817
|
+
class GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination
|
818
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
819
|
+
|
820
|
+
include Google::Apis::Core::JsonObjectSupport
|
821
|
+
end
|
822
|
+
|
805
823
|
class GoogleCloudDialogflowCxV3beta1ExportAgentResponse
|
806
824
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
807
825
|
|
@@ -1276,6 +1294,12 @@ module Google
|
|
1276
1294
|
include Google::Apis::Core::JsonObjectSupport
|
1277
1295
|
end
|
1278
1296
|
|
1297
|
+
class GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource
|
1298
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1299
|
+
|
1300
|
+
include Google::Apis::Core::JsonObjectSupport
|
1301
|
+
end
|
1302
|
+
|
1279
1303
|
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
1280
1304
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1281
1305
|
|
@@ -2874,6 +2898,7 @@ module Google
|
|
2874
2898
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2875
2899
|
property :agent_content, :base64 => true, as: 'agentContent'
|
2876
2900
|
property :agent_uri, as: 'agentUri'
|
2901
|
+
property :commit_sha, as: 'commitSha'
|
2877
2902
|
end
|
2878
2903
|
end
|
2879
2904
|
|
@@ -3178,6 +3203,7 @@ module Google
|
|
3178
3203
|
hash :payload, as: 'payload'
|
3179
3204
|
property :play_audio, as: 'playAudio', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio::Representation
|
3180
3205
|
|
3206
|
+
property :response_type, as: 'responseType'
|
3181
3207
|
property :telephony_transfer_call, as: 'telephonyTransferCall', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall::Representation
|
3182
3208
|
|
3183
3209
|
property :text, as: 'text', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageText, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageText::Representation
|
@@ -3553,6 +3579,8 @@ module Google
|
|
3553
3579
|
property :display_name, as: 'displayName'
|
3554
3580
|
property :enable_spell_correction, as: 'enableSpellCorrection'
|
3555
3581
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
3582
|
+
property :git_integration_settings, as: 'gitIntegrationSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings::Representation
|
3583
|
+
|
3556
3584
|
property :locked, as: 'locked'
|
3557
3585
|
property :name, as: 'name'
|
3558
3586
|
property :security_settings, as: 'securitySettings'
|
@@ -3566,6 +3594,25 @@ module Google
|
|
3566
3594
|
end
|
3567
3595
|
end
|
3568
3596
|
|
3597
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings
|
3598
|
+
# @private
|
3599
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3600
|
+
property :github_settings, as: 'githubSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings::Representation
|
3601
|
+
|
3602
|
+
end
|
3603
|
+
end
|
3604
|
+
|
3605
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings
|
3606
|
+
# @private
|
3607
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3608
|
+
property :access_token, as: 'accessToken'
|
3609
|
+
collection :branches, as: 'branches'
|
3610
|
+
property :display_name, as: 'displayName'
|
3611
|
+
property :repository_uri, as: 'repositoryUri'
|
3612
|
+
property :tracking_branch, as: 'trackingBranch'
|
3613
|
+
end
|
3614
|
+
end
|
3615
|
+
|
3569
3616
|
class GoogleCloudDialogflowCxV3beta1AgentValidationResult
|
3570
3617
|
# @private
|
3571
3618
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3989,15 +4036,26 @@ module Google
|
|
3989
4036
|
property :agent_uri, as: 'agentUri'
|
3990
4037
|
property :data_format, as: 'dataFormat'
|
3991
4038
|
property :environment, as: 'environment'
|
4039
|
+
property :git_destination, as: 'gitDestination', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination::Representation
|
4040
|
+
|
3992
4041
|
property :include_bigquery_export_settings, as: 'includeBigqueryExportSettings'
|
3993
4042
|
end
|
3994
4043
|
end
|
3995
4044
|
|
4045
|
+
class GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination
|
4046
|
+
# @private
|
4047
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4048
|
+
property :commit_message, as: 'commitMessage'
|
4049
|
+
property :tracking_branch, as: 'trackingBranch'
|
4050
|
+
end
|
4051
|
+
end
|
4052
|
+
|
3996
4053
|
class GoogleCloudDialogflowCxV3beta1ExportAgentResponse
|
3997
4054
|
# @private
|
3998
4055
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3999
4056
|
property :agent_content, :base64 => true, as: 'agentContent'
|
4000
4057
|
property :agent_uri, as: 'agentUri'
|
4058
|
+
property :commit_sha, as: 'commitSha'
|
4001
4059
|
end
|
4002
4060
|
end
|
4003
4061
|
|
@@ -4774,10 +4832,19 @@ module Google
|
|
4774
4832
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4775
4833
|
property :agent_content, :base64 => true, as: 'agentContent'
|
4776
4834
|
property :agent_uri, as: 'agentUri'
|
4835
|
+
property :git_source, as: 'gitSource', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource::Representation
|
4836
|
+
|
4777
4837
|
property :restore_option, as: 'restoreOption'
|
4778
4838
|
end
|
4779
4839
|
end
|
4780
4840
|
|
4841
|
+
class GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource
|
4842
|
+
# @private
|
4843
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4844
|
+
property :tracking_branch, as: 'trackingBranch'
|
4845
|
+
end
|
4846
|
+
end
|
4847
|
+
|
4781
4848
|
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
4782
4849
|
# @private
|
4783
4850
|
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.65.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: 2023-07-
|
11
|
+
date: 2023-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/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.65.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|