google-apis-agentregistry_v1alpha 0.3.0 → 0.4.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: f2aaa05c9d0922d4fa4c7c0a19972f2b73707381d2385bb43cd3910974dfbe13
|
|
4
|
+
data.tar.gz: 3f346a2f655de90092f650dcbe7b775857899a499c63d5aaa8cd4e560bb739f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 178586a6c3364930d600527f5dd243e9b6d66b58e321a6135353e203ada6778bc697f24c91c092cb0b66c58b30ba5c03a76ed2dcfe585302336a70fd95d0dc6d
|
|
7
|
+
data.tar.gz: a5cc66b1688720b6407e12114269942dc39d1f5729e65979307620a3838fcf46d31429a4a5470de0c708e309220b8986a53e01cc2cb1b9f08f099170acdec956
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-agentregistry_v1alpha
|
|
2
2
|
|
|
3
|
+
### v0.4.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260608
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.3.0 (2026-05-10)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260430
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://docs.cloud.google.com/agent-registry/overvie
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -22,6 +22,49 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module AgentregistryV1alpha
|
|
24
24
|
|
|
25
|
+
# Represents the skills of an Agent.
|
|
26
|
+
class A2ASkill
|
|
27
|
+
include Google::Apis::Core::Hashable
|
|
28
|
+
|
|
29
|
+
# Output only. A more detailed description of the skill.
|
|
30
|
+
# Corresponds to the JSON property `description`
|
|
31
|
+
# @return [String]
|
|
32
|
+
attr_accessor :description
|
|
33
|
+
|
|
34
|
+
# Output only. Example prompts or scenarios this skill can handle.
|
|
35
|
+
# Corresponds to the JSON property `examples`
|
|
36
|
+
# @return [Array<String>]
|
|
37
|
+
attr_accessor :examples
|
|
38
|
+
|
|
39
|
+
# Output only. A unique identifier for the agent's skill.
|
|
40
|
+
# Corresponds to the JSON property `id`
|
|
41
|
+
# @return [String]
|
|
42
|
+
attr_accessor :id
|
|
43
|
+
|
|
44
|
+
# Output only. A human-readable name for the agent's skill.
|
|
45
|
+
# Corresponds to the JSON property `name`
|
|
46
|
+
# @return [String]
|
|
47
|
+
attr_accessor :name
|
|
48
|
+
|
|
49
|
+
# Output only. Keywords describing the skill.
|
|
50
|
+
# Corresponds to the JSON property `tags`
|
|
51
|
+
# @return [Array<String>]
|
|
52
|
+
attr_accessor :tags
|
|
53
|
+
|
|
54
|
+
def initialize(**args)
|
|
55
|
+
update!(**args)
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Update properties of this object
|
|
59
|
+
def update!(**args)
|
|
60
|
+
@description = args[:description] if args.key?(:description)
|
|
61
|
+
@examples = args[:examples] if args.key?(:examples)
|
|
62
|
+
@id = args[:id] if args.key?(:id)
|
|
63
|
+
@name = args[:name] if args.key?(:name)
|
|
64
|
+
@tags = args[:tags] if args.key?(:tags)
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
25
68
|
# Represents an Agent. "A2A" below refers to the Agent-to-Agent protocol.
|
|
26
69
|
class Agent
|
|
27
70
|
include Google::Apis::Core::Hashable
|
|
@@ -85,7 +128,7 @@ module Google
|
|
|
85
128
|
# Output only. Skills the agent possesses, often obtained from the A2A Agent
|
|
86
129
|
# Card.
|
|
87
130
|
# Corresponds to the JSON property `skills`
|
|
88
|
-
# @return [Array<Google::Apis::AgentregistryV1alpha::
|
|
131
|
+
# @return [Array<Google::Apis::AgentregistryV1alpha::A2ASkill>]
|
|
89
132
|
attr_accessor :skills
|
|
90
133
|
|
|
91
134
|
# Output only. A universally unique identifier for the Agent.
|
|
@@ -1234,49 +1277,6 @@ module Google
|
|
|
1234
1277
|
end
|
|
1235
1278
|
end
|
|
1236
1279
|
|
|
1237
|
-
# Represents the skills of an Agent.
|
|
1238
|
-
class Skill
|
|
1239
|
-
include Google::Apis::Core::Hashable
|
|
1240
|
-
|
|
1241
|
-
# Output only. A more detailed description of the skill.
|
|
1242
|
-
# Corresponds to the JSON property `description`
|
|
1243
|
-
# @return [String]
|
|
1244
|
-
attr_accessor :description
|
|
1245
|
-
|
|
1246
|
-
# Output only. Example prompts or scenarios this skill can handle.
|
|
1247
|
-
# Corresponds to the JSON property `examples`
|
|
1248
|
-
# @return [Array<String>]
|
|
1249
|
-
attr_accessor :examples
|
|
1250
|
-
|
|
1251
|
-
# Output only. A unique identifier for the agent's skill.
|
|
1252
|
-
# Corresponds to the JSON property `id`
|
|
1253
|
-
# @return [String]
|
|
1254
|
-
attr_accessor :id
|
|
1255
|
-
|
|
1256
|
-
# Output only. A human-readable name for the agent's skill.
|
|
1257
|
-
# Corresponds to the JSON property `name`
|
|
1258
|
-
# @return [String]
|
|
1259
|
-
attr_accessor :name
|
|
1260
|
-
|
|
1261
|
-
# Output only. Keywords describing the skill.
|
|
1262
|
-
# Corresponds to the JSON property `tags`
|
|
1263
|
-
# @return [Array<String>]
|
|
1264
|
-
attr_accessor :tags
|
|
1265
|
-
|
|
1266
|
-
def initialize(**args)
|
|
1267
|
-
update!(**args)
|
|
1268
|
-
end
|
|
1269
|
-
|
|
1270
|
-
# Update properties of this object
|
|
1271
|
-
def update!(**args)
|
|
1272
|
-
@description = args[:description] if args.key?(:description)
|
|
1273
|
-
@examples = args[:examples] if args.key?(:examples)
|
|
1274
|
-
@id = args[:id] if args.key?(:id)
|
|
1275
|
-
@name = args[:name] if args.key?(:name)
|
|
1276
|
-
@tags = args[:tags] if args.key?(:tags)
|
|
1277
|
-
end
|
|
1278
|
-
end
|
|
1279
|
-
|
|
1280
1280
|
# The source of the Binding.
|
|
1281
1281
|
class Source
|
|
1282
1282
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AgentregistryV1alpha
|
|
18
18
|
# Version of the google-apis-agentregistry_v1alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.4.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260608"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,6 +22,12 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module AgentregistryV1alpha
|
|
24
24
|
|
|
25
|
+
class A2ASkill
|
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
+
|
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
+
end
|
|
30
|
+
|
|
25
31
|
class Agent
|
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
33
|
|
|
@@ -202,12 +208,6 @@ module Google
|
|
|
202
208
|
include Google::Apis::Core::JsonObjectSupport
|
|
203
209
|
end
|
|
204
210
|
|
|
205
|
-
class Skill
|
|
206
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
207
|
-
|
|
208
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
209
|
-
end
|
|
210
|
-
|
|
211
211
|
class Source
|
|
212
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
213
213
|
|
|
@@ -232,6 +232,17 @@ module Google
|
|
|
232
232
|
include Google::Apis::Core::JsonObjectSupport
|
|
233
233
|
end
|
|
234
234
|
|
|
235
|
+
class A2ASkill
|
|
236
|
+
# @private
|
|
237
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
238
|
+
property :description, as: 'description'
|
|
239
|
+
collection :examples, as: 'examples'
|
|
240
|
+
property :id, as: 'id'
|
|
241
|
+
property :name, as: 'name'
|
|
242
|
+
collection :tags, as: 'tags'
|
|
243
|
+
end
|
|
244
|
+
end
|
|
245
|
+
|
|
235
246
|
class Agent
|
|
236
247
|
# @private
|
|
237
248
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -246,7 +257,7 @@ module Google
|
|
|
246
257
|
property :name, as: 'name'
|
|
247
258
|
collection :protocols, as: 'protocols', class: Google::Apis::AgentregistryV1alpha::Protocol, decorator: Google::Apis::AgentregistryV1alpha::Protocol::Representation
|
|
248
259
|
|
|
249
|
-
collection :skills, as: 'skills', class: Google::Apis::AgentregistryV1alpha::
|
|
260
|
+
collection :skills, as: 'skills', class: Google::Apis::AgentregistryV1alpha::A2ASkill, decorator: Google::Apis::AgentregistryV1alpha::A2ASkill::Representation
|
|
250
261
|
|
|
251
262
|
property :uid, as: 'uid'
|
|
252
263
|
property :update_time, as: 'updateTime'
|
|
@@ -550,17 +561,6 @@ module Google
|
|
|
550
561
|
end
|
|
551
562
|
end
|
|
552
563
|
|
|
553
|
-
class Skill
|
|
554
|
-
# @private
|
|
555
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
556
|
-
property :description, as: 'description'
|
|
557
|
-
collection :examples, as: 'examples'
|
|
558
|
-
property :id, as: 'id'
|
|
559
|
-
property :name, as: 'name'
|
|
560
|
-
collection :tags, as: 'tags'
|
|
561
|
-
end
|
|
562
|
-
end
|
|
563
|
-
|
|
564
564
|
class Source
|
|
565
565
|
# @private
|
|
566
566
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-agentregistry_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.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-agentregistry_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-agentregistry_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-agentregistry_v1alpha/v0.4.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-agentregistry_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|