aws-sdk-agentregistry 1.0.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.
@@ -0,0 +1,61 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ require 'aws-sdk-core'
12
+ require 'aws-sigv4'
13
+
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:agentregistry)
15
+
16
+ # This module provides support for Agent Registry. This module is available in the
17
+ # `aws-sdk-agentregistry` gem.
18
+ #
19
+ # # Client
20
+ #
21
+ # The {Client} class provides one method for each API operation. Operation
22
+ # methods each accept a hash of request parameters and return a response
23
+ # structure.
24
+ #
25
+ # agent_registry = Aws::AgentRegistry::Client.new
26
+ # resp = agent_registry.batch_get_discoverable_registry_record(params)
27
+ #
28
+ # See {Client} for more information.
29
+ #
30
+ # # Errors
31
+ #
32
+ # Errors returned from Agent Registry are defined in the
33
+ # {Errors} module and all extend {Errors::ServiceError}.
34
+ #
35
+ # begin
36
+ # # do stuff
37
+ # rescue Aws::AgentRegistry::Errors::ServiceError
38
+ # # rescues all Agent Registry API errors
39
+ # end
40
+ #
41
+ # See {Errors} for more information.
42
+ #
43
+ # @!group service
44
+ module Aws::AgentRegistry
45
+ autoload :Types, 'aws-sdk-agentregistry/types'
46
+ autoload :ClientApi, 'aws-sdk-agentregistry/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-agentregistry/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-agentregistry/client'
51
+ autoload :Errors, 'aws-sdk-agentregistry/errors'
52
+ autoload :Resource, 'aws-sdk-agentregistry/resource'
53
+ autoload :EndpointParameters, 'aws-sdk-agentregistry/endpoint_parameters'
54
+ autoload :EndpointProvider, 'aws-sdk-agentregistry/endpoint_provider'
55
+ autoload :Endpoints, 'aws-sdk-agentregistry/endpoints'
56
+
57
+ GEM_VERSION = '1.0.0'
58
+
59
+ end
60
+
61
+ require_relative 'aws-sdk-agentregistry/customizations'
data/sig/client.rbs ADDED
@@ -0,0 +1,132 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module AgentRegistry
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AgentRegistry/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
22
+ ?client_side_monitoring: bool,
23
+ ?client_side_monitoring_client_id: String,
24
+ ?client_side_monitoring_host: String,
25
+ ?client_side_monitoring_port: Integer,
26
+ ?client_side_monitoring_publisher: untyped,
27
+ ?convert_params: bool,
28
+ ?correct_clock_skew: bool,
29
+ ?defaults_mode: String,
30
+ ?disable_host_prefix_injection: bool,
31
+ ?disable_request_compression: bool,
32
+ ?endpoint: String,
33
+ ?endpoint_cache_max_entries: Integer,
34
+ ?endpoint_cache_max_threads: Integer,
35
+ ?endpoint_cache_poll_interval: Integer,
36
+ ?endpoint_discovery: bool,
37
+ ?ignore_configured_endpoint_urls: bool,
38
+ ?log_formatter: untyped,
39
+ ?log_level: Symbol,
40
+ ?logger: untyped,
41
+ ?max_attempts: Integer,
42
+ ?profile: String,
43
+ ?request_checksum_calculation: String,
44
+ ?request_min_compression_size_bytes: Integer,
45
+ ?response_checksum_validation: String,
46
+ ?retry_backoff: Proc,
47
+ ?retry_base_delay: Float,
48
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
49
+ ?retry_limit: Integer,
50
+ ?retry_max_delay: Integer,
51
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
52
+ ?sdk_ua_app_id: String,
53
+ ?secret_access_key: String,
54
+ ?session_token: String,
55
+ ?sigv4a_signing_region_set: Array[String],
56
+ ?stub_responses: untyped,
57
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
58
+ ?token_provider: untyped,
59
+ ?use_dualstack_endpoint: bool,
60
+ ?use_fips_endpoint: bool,
61
+ ?validate_params: bool,
62
+ ?endpoint_provider: untyped,
63
+ ?http_proxy: String,
64
+ ?http_open_timeout: (Float | Integer),
65
+ ?http_read_timeout: (Float | Integer),
66
+ ?http_idle_timeout: (Float | Integer),
67
+ ?http_continue_timeout: (Float | Integer),
68
+ ?ssl_timeout: (Float | Integer | nil),
69
+ ?http_wire_trace: bool,
70
+ ?ssl_verify_peer: bool,
71
+ ?ssl_ca_bundle: String,
72
+ ?ssl_ca_directory: String,
73
+ ?ssl_ca_store: String,
74
+ ?on_chunk_received: Proc,
75
+ ?on_chunk_sent: Proc,
76
+ ?raise_response_errors: bool
77
+ ) -> instance
78
+ | (?Hash[Symbol, untyped]) -> instance
79
+
80
+
81
+ interface _BatchGetDiscoverableRegistryRecordResponseSuccess
82
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetDiscoverableRegistryRecordResponse]
83
+ def registry_records: () -> ::Array[Types::RegistryRecordSummary]
84
+ def errors: () -> ::Array[Types::BatchGetDiscoverableRegistryRecordError]
85
+ end
86
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AgentRegistry/Client.html#batch_get_discoverable_registry_record-instance_method
87
+ def batch_get_discoverable_registry_record: (
88
+ entries: Array[
89
+ {
90
+ registry_id: ::String,
91
+ record_ids: Array[::String]
92
+ }
93
+ ]
94
+ ) -> _BatchGetDiscoverableRegistryRecordResponseSuccess
95
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetDiscoverableRegistryRecordResponseSuccess
96
+
97
+ interface _ListDiscoverableRegistryRecordsResponseSuccess
98
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDiscoverableRegistryRecordsResponse]
99
+ def registry_records: () -> ::Array[Types::DiscoverableRegistryRecordSummary]
100
+ def next_token: () -> ::String
101
+ end
102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AgentRegistry/Client.html#list_discoverable_registry_records-instance_method
103
+ def list_discoverable_registry_records: (
104
+ registry_id: ::String,
105
+ ?max_results: ::Integer,
106
+ ?next_token: ::String,
107
+ ?filters: Array[
108
+ {
109
+ name: ("recordType" | "descriptorType"),
110
+ values: Array[::String]
111
+ }
112
+ ]
113
+ ) -> _ListDiscoverableRegistryRecordsResponseSuccess
114
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDiscoverableRegistryRecordsResponseSuccess
115
+
116
+ interface _SearchDiscoverableRegistryRecordsResponseSuccess
117
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchDiscoverableRegistryRecordsResponse]
118
+ def registry_records: () -> ::Array[Types::RegistryRecordSummary]
119
+ end
120
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AgentRegistry/Client.html#search_discoverable_registry_records-instance_method
121
+ def search_discoverable_registry_records: (
122
+ search_query: ::String,
123
+ registry_ids: Array[::String],
124
+ ?max_results: ::Integer,
125
+ ?filters: {
126
+ }
127
+ ) -> _SearchDiscoverableRegistryRecordsResponseSuccess
128
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchDiscoverableRegistryRecordsResponseSuccess
129
+ end
130
+ end
131
+ end
132
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,36 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module AgentRegistry
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class InternalServerException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class ThrottlingException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class UnauthorizedException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class ValidationException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ def reason: () -> ::String
32
+ def field_list: () -> ::String
33
+ end
34
+ end
35
+ end
36
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,85 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module AgentRegistry
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AgentRegistry/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AgentRegistry/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
22
+ ?client_side_monitoring: bool,
23
+ ?client_side_monitoring_client_id: String,
24
+ ?client_side_monitoring_host: String,
25
+ ?client_side_monitoring_port: Integer,
26
+ ?client_side_monitoring_publisher: untyped,
27
+ ?convert_params: bool,
28
+ ?correct_clock_skew: bool,
29
+ ?defaults_mode: String,
30
+ ?disable_host_prefix_injection: bool,
31
+ ?disable_request_compression: bool,
32
+ ?endpoint: String,
33
+ ?endpoint_cache_max_entries: Integer,
34
+ ?endpoint_cache_max_threads: Integer,
35
+ ?endpoint_cache_poll_interval: Integer,
36
+ ?endpoint_discovery: bool,
37
+ ?ignore_configured_endpoint_urls: bool,
38
+ ?log_formatter: untyped,
39
+ ?log_level: Symbol,
40
+ ?logger: untyped,
41
+ ?max_attempts: Integer,
42
+ ?profile: String,
43
+ ?request_checksum_calculation: String,
44
+ ?request_min_compression_size_bytes: Integer,
45
+ ?response_checksum_validation: String,
46
+ ?retry_backoff: Proc,
47
+ ?retry_base_delay: Float,
48
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
49
+ ?retry_limit: Integer,
50
+ ?retry_max_delay: Integer,
51
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
52
+ ?sdk_ua_app_id: String,
53
+ ?secret_access_key: String,
54
+ ?session_token: String,
55
+ ?sigv4a_signing_region_set: Array[String],
56
+ ?stub_responses: untyped,
57
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
58
+ ?token_provider: untyped,
59
+ ?use_dualstack_endpoint: bool,
60
+ ?use_fips_endpoint: bool,
61
+ ?validate_params: bool,
62
+ ?endpoint_provider: untyped,
63
+ ?http_proxy: String,
64
+ ?http_open_timeout: (Float | Integer),
65
+ ?http_read_timeout: (Float | Integer),
66
+ ?http_idle_timeout: (Float | Integer),
67
+ ?http_continue_timeout: (Float | Integer),
68
+ ?ssl_timeout: (Float | Integer | nil),
69
+ ?http_wire_trace: bool,
70
+ ?ssl_verify_peer: bool,
71
+ ?ssl_ca_bundle: String,
72
+ ?ssl_ca_directory: String,
73
+ ?ssl_ca_store: String,
74
+ ?on_chunk_received: Proc,
75
+ ?on_chunk_sent: Proc,
76
+ ?raise_response_errors: bool
77
+ ) -> void
78
+ | (?Hash[Symbol, untyped]) -> void
79
+
80
+ def client: () -> Client
81
+
82
+
83
+ end
84
+ end
85
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,206 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::AgentRegistry
9
+ module Types
10
+
11
+ class A2aAgentCardDescriptor
12
+ attr_accessor data: ::String
13
+ attr_accessor data_schema_version: ::String
14
+ attr_accessor source: Types::DescriptorSource
15
+ SENSITIVE: [:data]
16
+ end
17
+
18
+ class AccessDeniedException
19
+ attr_accessor message: ::String
20
+ SENSITIVE: []
21
+ end
22
+
23
+ class AgentSkillsAdditionalData
24
+ attr_accessor skill_md: Types::AgentSkillsMdDescriptor
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class AgentSkillsDefinitionDescriptor
29
+ attr_accessor data: ::String
30
+ attr_accessor data_schema_version: ::String
31
+ attr_accessor additional_data: Types::AgentSkillsAdditionalData
32
+ SENSITIVE: [:data]
33
+ end
34
+
35
+ class AgentSkillsMdDescriptor
36
+ attr_accessor data: ::String
37
+ attr_accessor data_schema_version: ::String
38
+ attr_accessor source: Types::DescriptorSource
39
+ SENSITIVE: [:data]
40
+ end
41
+
42
+ class BatchGetDiscoverableRegistryRecordError
43
+ attr_accessor registry_id: ::String
44
+ attr_accessor record_id: ::String
45
+ attr_accessor error_code: ("RESOURCE_NOT_FOUND" | "ACCESS_DENIED" | "INTERNAL_ERROR")
46
+ attr_accessor message: ::String
47
+ SENSITIVE: []
48
+ end
49
+
50
+ class BatchGetDiscoverableRegistryRecordRequest
51
+ attr_accessor entries: ::Array[Types::RegistryRecordsEntry]
52
+ SENSITIVE: []
53
+ end
54
+
55
+ class BatchGetDiscoverableRegistryRecordResponse
56
+ attr_accessor registry_records: ::Array[Types::RegistryRecordSummary]
57
+ attr_accessor errors: ::Array[Types::BatchGetDiscoverableRegistryRecordError]
58
+ SENSITIVE: []
59
+ end
60
+
61
+ class CustomDescriptor
62
+ attr_accessor data: ::String
63
+ SENSITIVE: [:data]
64
+ end
65
+
66
+ class DescriptorSource
67
+ attr_accessor from_url: Types::DescriptorSourceFromUrl
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class DescriptorSourceFromUrl
72
+ attr_accessor url: ::String
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class Descriptors
77
+ attr_accessor mcp_server: Types::McpServerDescriptor
78
+ attr_accessor a2a_agent_card: Types::A2aAgentCardDescriptor
79
+ attr_accessor agent_skills_definition: Types::AgentSkillsDefinitionDescriptor
80
+ attr_accessor custom: Types::CustomDescriptor
81
+ SENSITIVE: []
82
+ end
83
+
84
+ class DiscoverableRegistryRecordSummary
85
+ attr_accessor registry_arn: ::String
86
+ attr_accessor record_arn: ::String
87
+ attr_accessor record_id: ::String
88
+ attr_accessor name: ::String
89
+ attr_accessor description: ::String
90
+ attr_accessor display_name: ::String
91
+ attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
92
+ attr_accessor record_version: ::String
93
+ attr_accessor status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
94
+ attr_accessor created_at: ::Time
95
+ attr_accessor updated_at: ::Time
96
+ SENSITIVE: [:description]
97
+ end
98
+
99
+ class InternalServerException
100
+ attr_accessor message: ::String
101
+ SENSITIVE: []
102
+ end
103
+
104
+ class ListDiscoverableRegistryRecordsRequest
105
+ attr_accessor registry_id: ::String
106
+ attr_accessor max_results: ::Integer
107
+ attr_accessor next_token: ::String
108
+ attr_accessor filters: ::Array[Types::RegistryRecordFilter]
109
+ SENSITIVE: []
110
+ end
111
+
112
+ class ListDiscoverableRegistryRecordsResponse
113
+ attr_accessor registry_records: ::Array[Types::DiscoverableRegistryRecordSummary]
114
+ attr_accessor next_token: ::String
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class McpServerAdditionalData
119
+ attr_accessor tools: Types::McpToolsDescriptor
120
+ SENSITIVE: []
121
+ end
122
+
123
+ class McpServerDescriptor
124
+ attr_accessor data: ::String
125
+ attr_accessor data_schema_version: ::String
126
+ attr_accessor additional_data: Types::McpServerAdditionalData
127
+ attr_accessor source: Types::DescriptorSource
128
+ SENSITIVE: [:data]
129
+ end
130
+
131
+ class McpToolsDescriptor
132
+ attr_accessor data: ::String
133
+ attr_accessor data_schema_version: ::String
134
+ SENSITIVE: [:data]
135
+ end
136
+
137
+ class RegistryRecordFilter
138
+ attr_accessor name: ("recordType" | "descriptorType")
139
+ attr_accessor values: ::Array[::String]
140
+ SENSITIVE: []
141
+ end
142
+
143
+ class RegistryRecordSummary
144
+ attr_accessor registry_arn: ::String
145
+ attr_accessor record_arn: ::String
146
+ attr_accessor record_id: ::String
147
+ attr_accessor name: ::String
148
+ attr_accessor description: ::String
149
+ attr_accessor display_name: ::String
150
+ attr_accessor record_type: ("MCP" | "AGENT" | "CUSTOM" | "SKILL")
151
+ attr_accessor descriptors: Types::Descriptors
152
+ attr_accessor record_version: ::String
153
+ attr_accessor status: ("DRAFT" | "PENDING_APPROVAL" | "APPROVED" | "REJECTED" | "DEPRECATED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
154
+ attr_accessor created_at: ::Time
155
+ attr_accessor updated_at: ::Time
156
+ SENSITIVE: [:description]
157
+ end
158
+
159
+ class RegistryRecordsEntry
160
+ attr_accessor registry_id: ::String
161
+ attr_accessor record_ids: ::Array[::String]
162
+ SENSITIVE: []
163
+ end
164
+
165
+ class ResourceNotFoundException
166
+ attr_accessor message: ::String
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class SearchDiscoverableRegistryRecordsRequest
171
+ attr_accessor search_query: ::String
172
+ attr_accessor registry_ids: ::Array[::String]
173
+ attr_accessor max_results: ::Integer
174
+ attr_accessor filters: untyped
175
+ SENSITIVE: [:search_query, :filters]
176
+ end
177
+
178
+ class SearchDiscoverableRegistryRecordsResponse
179
+ attr_accessor registry_records: ::Array[Types::RegistryRecordSummary]
180
+ SENSITIVE: []
181
+ end
182
+
183
+ class ThrottlingException
184
+ attr_accessor message: ::String
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class UnauthorizedException
189
+ attr_accessor message: ::String
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class ValidationException
194
+ attr_accessor message: ::String
195
+ attr_accessor reason: ("CannotParse" | "FieldValidationFailed" | "IdempotentParameterMismatchException" | "EventInOtherSession" | "ResourceConflict")
196
+ attr_accessor field_list: ::Array[Types::ValidationExceptionField]
197
+ SENSITIVE: []
198
+ end
199
+
200
+ class ValidationExceptionField
201
+ attr_accessor name: ::String
202
+ attr_accessor message: ::String
203
+ SENSITIVE: []
204
+ end
205
+ end
206
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aws-sdk-agentregistry
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Amazon Web Services
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: aws-sdk-core
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '3'
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: 3.254.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '3'
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 3.254.0
32
+ - !ruby/object:Gem::Dependency
33
+ name: aws-sigv4
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - "~>"
37
+ - !ruby/object:Gem::Version
38
+ version: '1.5'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - "~>"
44
+ - !ruby/object:Gem::Version
45
+ version: '1.5'
46
+ description: Official AWS Ruby gem for Agent Registry. This gem is part of the AWS
47
+ SDK for Ruby.
48
+ email:
49
+ - aws-dr-rubygems@amazon.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - CHANGELOG.md
55
+ - LICENSE.txt
56
+ - VERSION
57
+ - lib/aws-sdk-agentregistry.rb
58
+ - lib/aws-sdk-agentregistry/client.rb
59
+ - lib/aws-sdk-agentregistry/client_api.rb
60
+ - lib/aws-sdk-agentregistry/customizations.rb
61
+ - lib/aws-sdk-agentregistry/endpoint_parameters.rb
62
+ - lib/aws-sdk-agentregistry/endpoint_provider.rb
63
+ - lib/aws-sdk-agentregistry/endpoints.rb
64
+ - lib/aws-sdk-agentregistry/errors.rb
65
+ - lib/aws-sdk-agentregistry/plugins/endpoints.rb
66
+ - lib/aws-sdk-agentregistry/resource.rb
67
+ - lib/aws-sdk-agentregistry/types.rb
68
+ - sig/client.rbs
69
+ - sig/errors.rbs
70
+ - sig/resource.rbs
71
+ - sig/types.rbs
72
+ homepage: https://github.com/aws/aws-sdk-ruby
73
+ licenses:
74
+ - Apache-2.0
75
+ metadata:
76
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-agentregistry
77
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-agentregistry/CHANGELOG.md
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '2.7'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubygems_version: 3.6.7
93
+ specification_version: 4
94
+ summary: AWS SDK for Ruby - Agent Registry
95
+ test_files: []