google-apis-dialogflow_v3beta1 0.63.0 → 0.64.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2af9739ecde011bfcf2343667370cf67903244189284a6256f83d0f88a9d3aa
|
4
|
+
data.tar.gz: bc133976f775536f0bfde75fa733ab602ae9d02023c5991db3cf614e36bc14e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8176bd04daafb39c575f3ce425b325aec210e8114f376e8a5bc3e8a4db9bc81a2f3895e14e4ed32140b5c10d9044e58c463f99a25d4d4c420cb3ca97f1548f7f
|
7
|
+
data.tar.gz: 39639cee093ff962e308a0ad88aca1831eae1f77bedca4cee6ce798322832f4e2acb29fa3eb6756284b21b757d82e2f8a39b996341f1b870d2f30dc30a8e81d8
|
data/CHANGELOG.md
CHANGED
@@ -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` are
|
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
|
|
@@ -3218,6 +3226,11 @@ module Google
|
|
3218
3226
|
attr_accessor :enable_stackdriver_logging
|
3219
3227
|
alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
|
3220
3228
|
|
3229
|
+
# Settings for connecting to Git repository for an agent.
|
3230
|
+
# Corresponds to the JSON property `gitIntegrationSettings`
|
3231
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings]
|
3232
|
+
attr_accessor :git_integration_settings
|
3233
|
+
|
3221
3234
|
# Indicates whether the agent is locked for changes. If the agent is locked,
|
3222
3235
|
# modifications to the agent will be rejected except for RestoreAgent.
|
3223
3236
|
# Corresponds to the JSON property `locked`
|
@@ -3280,6 +3293,7 @@ module Google
|
|
3280
3293
|
@display_name = args[:display_name] if args.key?(:display_name)
|
3281
3294
|
@enable_spell_correction = args[:enable_spell_correction] if args.key?(:enable_spell_correction)
|
3282
3295
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
3296
|
+
@git_integration_settings = args[:git_integration_settings] if args.key?(:git_integration_settings)
|
3283
3297
|
@locked = args[:locked] if args.key?(:locked)
|
3284
3298
|
@name = args[:name] if args.key?(:name)
|
3285
3299
|
@security_settings = args[:security_settings] if args.key?(:security_settings)
|
@@ -3291,6 +3305,68 @@ module Google
|
|
3291
3305
|
end
|
3292
3306
|
end
|
3293
3307
|
|
3308
|
+
# Settings for connecting to Git repository for an agent.
|
3309
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings
|
3310
|
+
include Google::Apis::Core::Hashable
|
3311
|
+
|
3312
|
+
# Settings of integration with GitHub.
|
3313
|
+
# Corresponds to the JSON property `githubSettings`
|
3314
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings]
|
3315
|
+
attr_accessor :github_settings
|
3316
|
+
|
3317
|
+
def initialize(**args)
|
3318
|
+
update!(**args)
|
3319
|
+
end
|
3320
|
+
|
3321
|
+
# Update properties of this object
|
3322
|
+
def update!(**args)
|
3323
|
+
@github_settings = args[:github_settings] if args.key?(:github_settings)
|
3324
|
+
end
|
3325
|
+
end
|
3326
|
+
|
3327
|
+
# Settings of integration with GitHub.
|
3328
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings
|
3329
|
+
include Google::Apis::Core::Hashable
|
3330
|
+
|
3331
|
+
# The access token used to authenticate the access to the GitHub repository.
|
3332
|
+
# Corresponds to the JSON property `accessToken`
|
3333
|
+
# @return [String]
|
3334
|
+
attr_accessor :access_token
|
3335
|
+
|
3336
|
+
# A list of branches configured to be used from Dialogflow.
|
3337
|
+
# Corresponds to the JSON property `branches`
|
3338
|
+
# @return [Array<String>]
|
3339
|
+
attr_accessor :branches
|
3340
|
+
|
3341
|
+
# The unique repository display name for the GitHub repository.
|
3342
|
+
# Corresponds to the JSON property `displayName`
|
3343
|
+
# @return [String]
|
3344
|
+
attr_accessor :display_name
|
3345
|
+
|
3346
|
+
# The GitHub repository URI related to the agent.
|
3347
|
+
# Corresponds to the JSON property `repositoryUri`
|
3348
|
+
# @return [String]
|
3349
|
+
attr_accessor :repository_uri
|
3350
|
+
|
3351
|
+
# The branch of GitHub repository tracked for this agent.
|
3352
|
+
# Corresponds to the JSON property `trackingBranch`
|
3353
|
+
# @return [String]
|
3354
|
+
attr_accessor :tracking_branch
|
3355
|
+
|
3356
|
+
def initialize(**args)
|
3357
|
+
update!(**args)
|
3358
|
+
end
|
3359
|
+
|
3360
|
+
# Update properties of this object
|
3361
|
+
def update!(**args)
|
3362
|
+
@access_token = args[:access_token] if args.key?(:access_token)
|
3363
|
+
@branches = args[:branches] if args.key?(:branches)
|
3364
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
3365
|
+
@repository_uri = args[:repository_uri] if args.key?(:repository_uri)
|
3366
|
+
@tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
|
3367
|
+
end
|
3368
|
+
end
|
3369
|
+
|
3294
3370
|
# The response message for Agents.GetAgentValidationResult.
|
3295
3371
|
class GoogleCloudDialogflowCxV3beta1AgentValidationResult
|
3296
3372
|
include Google::Apis::Core::Hashable
|
@@ -4794,6 +4870,11 @@ module Google
|
|
4794
4870
|
# @return [String]
|
4795
4871
|
attr_accessor :environment
|
4796
4872
|
|
4873
|
+
# Settings for exporting to a git branch.
|
4874
|
+
# Corresponds to the JSON property `gitDestination`
|
4875
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination]
|
4876
|
+
attr_accessor :git_destination
|
4877
|
+
|
4797
4878
|
# Optional. Whether to include BigQuery Export setting.
|
4798
4879
|
# Corresponds to the JSON property `includeBigqueryExportSettings`
|
4799
4880
|
# @return [Boolean]
|
@@ -4809,15 +4890,42 @@ module Google
|
|
4809
4890
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
4810
4891
|
@data_format = args[:data_format] if args.key?(:data_format)
|
4811
4892
|
@environment = args[:environment] if args.key?(:environment)
|
4893
|
+
@git_destination = args[:git_destination] if args.key?(:git_destination)
|
4812
4894
|
@include_bigquery_export_settings = args[:include_bigquery_export_settings] if args.key?(:include_bigquery_export_settings)
|
4813
4895
|
end
|
4814
4896
|
end
|
4815
4897
|
|
4898
|
+
# Settings for exporting to a git branch.
|
4899
|
+
class GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination
|
4900
|
+
include Google::Apis::Core::Hashable
|
4901
|
+
|
4902
|
+
# Commit message for the git push.
|
4903
|
+
# Corresponds to the JSON property `commitMessage`
|
4904
|
+
# @return [String]
|
4905
|
+
attr_accessor :commit_message
|
4906
|
+
|
4907
|
+
# Tracking branch for the git push.
|
4908
|
+
# Corresponds to the JSON property `trackingBranch`
|
4909
|
+
# @return [String]
|
4910
|
+
attr_accessor :tracking_branch
|
4911
|
+
|
4912
|
+
def initialize(**args)
|
4913
|
+
update!(**args)
|
4914
|
+
end
|
4915
|
+
|
4916
|
+
# Update properties of this object
|
4917
|
+
def update!(**args)
|
4918
|
+
@commit_message = args[:commit_message] if args.key?(:commit_message)
|
4919
|
+
@tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
|
4920
|
+
end
|
4921
|
+
end
|
4922
|
+
|
4816
4923
|
# The response message for Agents.ExportAgent.
|
4817
4924
|
class GoogleCloudDialogflowCxV3beta1ExportAgentResponse
|
4818
4925
|
include Google::Apis::Core::Hashable
|
4819
4926
|
|
4820
|
-
# Uncompressed raw byte content for agent.
|
4927
|
+
# Uncompressed raw byte content for agent. This field is populated if none of `
|
4928
|
+
# agent_uri` and `git_destination` are specified in ExportAgentRequest.
|
4821
4929
|
# Corresponds to the JSON property `agentContent`
|
4822
4930
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
4823
4931
|
# @return [String]
|
@@ -4829,6 +4937,12 @@ module Google
|
|
4829
4937
|
# @return [String]
|
4830
4938
|
attr_accessor :agent_uri
|
4831
4939
|
|
4940
|
+
# Commit SHA of the git push. This field is populated if `git_destination` are
|
4941
|
+
# specified in ExportAgentRequest.
|
4942
|
+
# Corresponds to the JSON property `commitSha`
|
4943
|
+
# @return [String]
|
4944
|
+
attr_accessor :commit_sha
|
4945
|
+
|
4832
4946
|
def initialize(**args)
|
4833
4947
|
update!(**args)
|
4834
4948
|
end
|
@@ -4837,6 +4951,7 @@ module Google
|
|
4837
4951
|
def update!(**args)
|
4838
4952
|
@agent_content = args[:agent_content] if args.key?(:agent_content)
|
4839
4953
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
4954
|
+
@commit_sha = args[:commit_sha] if args.key?(:commit_sha)
|
4840
4955
|
end
|
4841
4956
|
end
|
4842
4957
|
|
@@ -7754,6 +7869,11 @@ module Google
|
|
7754
7869
|
# @return [String]
|
7755
7870
|
attr_accessor :agent_uri
|
7756
7871
|
|
7872
|
+
# Settings for restoring from a git branch
|
7873
|
+
# Corresponds to the JSON property `gitSource`
|
7874
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource]
|
7875
|
+
attr_accessor :git_source
|
7876
|
+
|
7757
7877
|
# Agent restore mode. If not specified, `KEEP` is assumed.
|
7758
7878
|
# Corresponds to the JSON property `restoreOption`
|
7759
7879
|
# @return [String]
|
@@ -7767,10 +7887,30 @@ module Google
|
|
7767
7887
|
def update!(**args)
|
7768
7888
|
@agent_content = args[:agent_content] if args.key?(:agent_content)
|
7769
7889
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
7890
|
+
@git_source = args[:git_source] if args.key?(:git_source)
|
7770
7891
|
@restore_option = args[:restore_option] if args.key?(:restore_option)
|
7771
7892
|
end
|
7772
7893
|
end
|
7773
7894
|
|
7895
|
+
# Settings for restoring from a git branch
|
7896
|
+
class GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource
|
7897
|
+
include Google::Apis::Core::Hashable
|
7898
|
+
|
7899
|
+
# tracking branch for the git pull
|
7900
|
+
# Corresponds to the JSON property `trackingBranch`
|
7901
|
+
# @return [String]
|
7902
|
+
attr_accessor :tracking_branch
|
7903
|
+
|
7904
|
+
def initialize(**args)
|
7905
|
+
update!(**args)
|
7906
|
+
end
|
7907
|
+
|
7908
|
+
# Update properties of this object
|
7909
|
+
def update!(**args)
|
7910
|
+
@tracking_branch = args[:tracking_branch] if args.key?(:tracking_branch)
|
7911
|
+
end
|
7912
|
+
end
|
7913
|
+
|
7774
7914
|
# The configuration for auto rollout.
|
7775
7915
|
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
7776
7916
|
include Google::Apis::Core::Hashable
|
@@ -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.64.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 = "20230705"
|
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
|
|
@@ -3553,6 +3578,8 @@ module Google
|
|
3553
3578
|
property :display_name, as: 'displayName'
|
3554
3579
|
property :enable_spell_correction, as: 'enableSpellCorrection'
|
3555
3580
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
3581
|
+
property :git_integration_settings, as: 'gitIntegrationSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings::Representation
|
3582
|
+
|
3556
3583
|
property :locked, as: 'locked'
|
3557
3584
|
property :name, as: 'name'
|
3558
3585
|
property :security_settings, as: 'securitySettings'
|
@@ -3566,6 +3593,25 @@ module Google
|
|
3566
3593
|
end
|
3567
3594
|
end
|
3568
3595
|
|
3596
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettings
|
3597
|
+
# @private
|
3598
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3599
|
+
property :github_settings, as: 'githubSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings::Representation
|
3600
|
+
|
3601
|
+
end
|
3602
|
+
end
|
3603
|
+
|
3604
|
+
class GoogleCloudDialogflowCxV3beta1AgentGitIntegrationSettingsGithubSettings
|
3605
|
+
# @private
|
3606
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3607
|
+
property :access_token, as: 'accessToken'
|
3608
|
+
collection :branches, as: 'branches'
|
3609
|
+
property :display_name, as: 'displayName'
|
3610
|
+
property :repository_uri, as: 'repositoryUri'
|
3611
|
+
property :tracking_branch, as: 'trackingBranch'
|
3612
|
+
end
|
3613
|
+
end
|
3614
|
+
|
3569
3615
|
class GoogleCloudDialogflowCxV3beta1AgentValidationResult
|
3570
3616
|
# @private
|
3571
3617
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3989,15 +4035,26 @@ module Google
|
|
3989
4035
|
property :agent_uri, as: 'agentUri'
|
3990
4036
|
property :data_format, as: 'dataFormat'
|
3991
4037
|
property :environment, as: 'environment'
|
4038
|
+
property :git_destination, as: 'gitDestination', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination::Representation
|
4039
|
+
|
3992
4040
|
property :include_bigquery_export_settings, as: 'includeBigqueryExportSettings'
|
3993
4041
|
end
|
3994
4042
|
end
|
3995
4043
|
|
4044
|
+
class GoogleCloudDialogflowCxV3beta1ExportAgentRequestGitDestination
|
4045
|
+
# @private
|
4046
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4047
|
+
property :commit_message, as: 'commitMessage'
|
4048
|
+
property :tracking_branch, as: 'trackingBranch'
|
4049
|
+
end
|
4050
|
+
end
|
4051
|
+
|
3996
4052
|
class GoogleCloudDialogflowCxV3beta1ExportAgentResponse
|
3997
4053
|
# @private
|
3998
4054
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3999
4055
|
property :agent_content, :base64 => true, as: 'agentContent'
|
4000
4056
|
property :agent_uri, as: 'agentUri'
|
4057
|
+
property :commit_sha, as: 'commitSha'
|
4001
4058
|
end
|
4002
4059
|
end
|
4003
4060
|
|
@@ -4774,10 +4831,19 @@ module Google
|
|
4774
4831
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4775
4832
|
property :agent_content, :base64 => true, as: 'agentContent'
|
4776
4833
|
property :agent_uri, as: 'agentUri'
|
4834
|
+
property :git_source, as: 'gitSource', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource::Representation
|
4835
|
+
|
4777
4836
|
property :restore_option, as: 'restoreOption'
|
4778
4837
|
end
|
4779
4838
|
end
|
4780
4839
|
|
4840
|
+
class GoogleCloudDialogflowCxV3beta1RestoreAgentRequestGitSource
|
4841
|
+
# @private
|
4842
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4843
|
+
property :tracking_branch, as: 'trackingBranch'
|
4844
|
+
end
|
4845
|
+
end
|
4846
|
+
|
4781
4847
|
class GoogleCloudDialogflowCxV3beta1RolloutConfig
|
4782
4848
|
# @private
|
4783
4849
|
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.64.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-09 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.64.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: []
|