google-apis-connectors_v2 0.26.0 → 0.27.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: f3257402f462f66cfd3672a3c3e5de7f06c1b3cebbee37bfc047554518dfa261
|
4
|
+
data.tar.gz: 455cfb87565d4e670e616f110afdf59736222ae95adc9b8d5280917eecfa0ed3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6404a9627938cbf44ce5b7b86a6a3305df6c35178ac548b1e3af53aac48f600b87c8d1f1057828fe9514dae6f092da920cbb5878b399fd1b02f5e8f585350f85
|
7
|
+
data.tar.gz: e66fb2e752c6ceb36e9d61bb143a17f3bbe02a1f317f5d533261de0326cfb7c31d9a8ce2828d1d8fe887abf94352159dc352dc48922898600879b2521891b8b4
|
data/CHANGELOG.md
CHANGED
@@ -1747,6 +1747,11 @@ module Google
|
|
1747
1747
|
class Tool
|
1748
1748
|
include Google::Apis::Core::Hashable
|
1749
1749
|
|
1750
|
+
# List of tool names that this tool depends on.
|
1751
|
+
# Corresponds to the JSON property `dependsOn`
|
1752
|
+
# @return [Array<String>]
|
1753
|
+
attr_accessor :depends_on
|
1754
|
+
|
1750
1755
|
# Description of the tool.
|
1751
1756
|
# Corresponds to the JSON property `description`
|
1752
1757
|
# @return [String]
|
@@ -1773,6 +1778,7 @@ module Google
|
|
1773
1778
|
|
1774
1779
|
# Update properties of this object
|
1775
1780
|
def update!(**args)
|
1781
|
+
@depends_on = args[:depends_on] if args.key?(:depends_on)
|
1776
1782
|
@description = args[:description] if args.key?(:description)
|
1777
1783
|
@input_schema = args[:input_schema] if args.key?(:input_schema)
|
1778
1784
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConnectorsV2
|
18
18
|
# Version of the google-apis-connectors_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250826"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -784,6 +784,7 @@ module Google
|
|
784
784
|
class Tool
|
785
785
|
# @private
|
786
786
|
class Representation < Google::Apis::Core::JsonRepresentation
|
787
|
+
collection :depends_on, as: 'dependsOn'
|
787
788
|
property :description, as: 'description'
|
788
789
|
property :input_schema, as: 'inputSchema', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
789
790
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-connectors_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.27.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|