google-apis-dialogflow_v2beta1 0.62.0 → 0.63.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: 7c48304084bbf56e046a01897e013d53d1917b9b34cd25ab0923e1d713ea75c0
4
- data.tar.gz: 369ebc4537789eaf04e4d4c10883989e5e8cc68aa3469d2f354087f63f214218
3
+ metadata.gz: 2c44833e8375bda9a5b95defbcda394ec8643c2e56101dbb5c322c8d4522f2a7
4
+ data.tar.gz: 21216484f122692edf009221e4d81f69487b2d349224c40f846ac246c1b52c42
5
5
  SHA512:
6
- metadata.gz: 134328cd5828aa14f44f39ea9ca7c3da8bb3ba0137b4151074ff2942f2b2cf55a82702178afdc467055d3607de3a50b472595c7e5b5930fc862825d19adaa9e9
7
- data.tar.gz: bbf5fe1ca4c829d4f46f57078ca35f392d996658bdb5e53f0f4b0e9ff5c7b2832fd39614e1e2a9f68b15c1f3b0682703b9b8e25a44e451b4c66104828e404eb4
6
+ metadata.gz: 737bfd5a755f554de3d9d0822868c4f34da1ee4f30ef4f10046a25b75d3e38d6f46c2754ad03ae04a6a0adfecd8020324cd9fb2c125a0651c8ea4662c0515286
7
+ data.tar.gz: ff327b3f7a041bf732389a56480663a5995eaebae0d748d3a1fe9a3e5293707cd4cc4d94c2a2d68d1288f359e21d6fcf0f27142d3dd6140a60ed2c7910bbdf43
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.63.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230705
6
+
3
7
  ### v0.62.0 (2023-07-02)
4
8
 
5
9
  * 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` 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 DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.62.0"
19
+ GEM_VERSION = "0.63.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 = "20230626"
25
+ REVISION = "20230705"
26
26
  end
27
27
  end
28
28
  end
@@ -3072,6 +3072,7 @@ module Google
3072
3072
  class Representation < Google::Apis::Core::JsonRepresentation
3073
3073
  property :agent_content, :base64 => true, as: 'agentContent'
3074
3074
  property :agent_uri, as: 'agentUri'
3075
+ property :commit_sha, as: 'commitSha'
3075
3076
  end
3076
3077
  end
3077
3078
 
@@ -3916,6 +3917,7 @@ module Google
3916
3917
  class Representation < Google::Apis::Core::JsonRepresentation
3917
3918
  property :agent_content, :base64 => true, as: 'agentContent'
3918
3919
  property :agent_uri, as: 'agentUri'
3920
+ property :commit_sha, as: 'commitSha'
3919
3921
  end
3920
3922
  end
3921
3923
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.62.0
4
+ version: 0.63.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-02 00:00:00.000000000 Z
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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.63.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []