google-apis-dialogflow_v2 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: 6c46731162868997c9e2e4c7c7692acc3150642abe06dade6243d28efd72e333
|
4
|
+
data.tar.gz: f9fcfd929646f3bef1526f0b6382c4a477cf9be6803243ed517035eec5b67caa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87ff0514e344685b4700610a552fa68c17371e1db293a907e471200dac593871a95dfd284ab508521a9f0def0fd8a3a7380628b1cd5f9663eeea31f9530185cb
|
7
|
+
data.tar.gz: 2976e22adfd19e8b62b30ced1029f67490417919be61e4a24758ce33a401b7fdeead315682f512c9644f59c06006894d5daab379c8f6262810787d2e05f234ae
|
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
|
|
@@ -3730,7 +3738,8 @@ module Google
|
|
3730
3738
|
class GoogleCloudDialogflowCxV3beta1ExportAgentResponse
|
3731
3739
|
include Google::Apis::Core::Hashable
|
3732
3740
|
|
3733
|
-
# Uncompressed raw byte content for agent.
|
3741
|
+
# Uncompressed raw byte content for agent. This field is populated if none of `
|
3742
|
+
# agent_uri` and `git_destination` are specified in ExportAgentRequest.
|
3734
3743
|
# Corresponds to the JSON property `agentContent`
|
3735
3744
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
3736
3745
|
# @return [String]
|
@@ -3742,6 +3751,12 @@ module Google
|
|
3742
3751
|
# @return [String]
|
3743
3752
|
attr_accessor :agent_uri
|
3744
3753
|
|
3754
|
+
# Commit SHA of the git push. This field is populated if `git_destination` are
|
3755
|
+
# specified in ExportAgentRequest.
|
3756
|
+
# Corresponds to the JSON property `commitSha`
|
3757
|
+
# @return [String]
|
3758
|
+
attr_accessor :commit_sha
|
3759
|
+
|
3745
3760
|
def initialize(**args)
|
3746
3761
|
update!(**args)
|
3747
3762
|
end
|
@@ -3750,6 +3765,7 @@ module Google
|
|
3750
3765
|
def update!(**args)
|
3751
3766
|
@agent_content = args[:agent_content] if args.key?(:agent_content)
|
3752
3767
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
3768
|
+
@commit_sha = args[:commit_sha] if args.key?(:commit_sha)
|
3753
3769
|
end
|
3754
3770
|
end
|
3755
3771
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2
|
18
18
|
# Version of the google-apis-dialogflow_v2 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
|
@@ -3030,6 +3030,7 @@ module Google
|
|
3030
3030
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3031
3031
|
property :agent_content, :base64 => true, as: 'agentContent'
|
3032
3032
|
property :agent_uri, as: 'agentUri'
|
3033
|
+
property :commit_sha, as: 'commitSha'
|
3033
3034
|
end
|
3034
3035
|
end
|
3035
3036
|
|
@@ -3874,6 +3875,7 @@ module Google
|
|
3874
3875
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3875
3876
|
property :agent_content, :base64 => true, as: 'agentContent'
|
3876
3877
|
property :agent_uri, as: 'agentUri'
|
3878
|
+
property :commit_sha, as: 'commitSha'
|
3877
3879
|
end
|
3878
3880
|
end
|
3879
3881
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2
|
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-
|
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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.64.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|