@aws-sdk/client-agent-registry-control 3.1105.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.
- package/LICENSE +201 -0
- package/README.md +286 -0
- package/dist-cjs/index.js +1536 -0
- package/dist-es/AgentRegistryControl.js +49 -0
- package/dist-es/AgentRegistryControlClient.js +47 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CreateRegistryCommand.js +4 -0
- package/dist-es/commands/CreateRegistryRecordCommand.js +4 -0
- package/dist-es/commands/DeleteRegistryCommand.js +4 -0
- package/dist-es/commands/DeleteRegistryRecordCommand.js +4 -0
- package/dist-es/commands/GetRegistryCommand.js +4 -0
- package/dist-es/commands/GetRegistryRecordCommand.js +4 -0
- package/dist-es/commands/ListRegistriesCommand.js +4 -0
- package/dist-es/commands/ListRegistryRecordsCommand.js +4 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +4 -0
- package/dist-es/commands/SubmitRegistryRecordForApprovalCommand.js +4 -0
- package/dist-es/commands/TagResourceCommand.js +4 -0
- package/dist-es/commands/UntagResourceCommand.js +4 -0
- package/dist-es/commands/UpdateRegistryCommand.js +4 -0
- package/dist-es/commands/UpdateRegistryRecordCommand.js +4 -0
- package/dist-es/commands/UpdateRegistryRecordStatusCommand.js +4 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/endpoint/EndpointParameters.js +9 -0
- package/dist-es/endpoint/bdd.js +22 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +11 -0
- package/dist-es/models/AgentRegistryControlServiceException.js +8 -0
- package/dist-es/models/enums.js +69 -0
- package/dist-es/models/errors.js +89 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListRegistriesPaginator.js +4 -0
- package/dist-es/pagination/ListRegistryRecordsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/runtimeConfig.browser.js +29 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +9 -0
- package/dist-es/runtimeConfig.shared.js +40 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +783 -0
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForRegistryReady.js +58 -0
- package/dist-es/waiters/waitForRegistryRecordApproved.js +58 -0
- package/dist-types/AgentRegistryControl.d.ts +143 -0
- package/dist-types/AgentRegistryControlClient.d.ts +201 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CreateRegistryCommand.d.ts +172 -0
- package/dist-types/commands/CreateRegistryRecordCommand.d.ts +212 -0
- package/dist-types/commands/DeleteRegistryCommand.d.ts +89 -0
- package/dist-types/commands/DeleteRegistryRecordCommand.d.ts +88 -0
- package/dist-types/commands/GetRegistryCommand.d.ts +173 -0
- package/dist-types/commands/GetRegistryRecordCommand.d.ts +211 -0
- package/dist-types/commands/ListRegistriesCommand.d.ts +179 -0
- package/dist-types/commands/ListRegistryRecordsCommand.d.ts +114 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
- package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +94 -0
- package/dist-types/commands/TagResourceCommand.d.ts +90 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
- package/dist-types/commands/UpdateRegistryCommand.d.ts +266 -0
- package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +375 -0
- package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +19 -0
- package/dist-types/models/AgentRegistryControlServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +173 -0
- package/dist-types/models/errors.d.ts +98 -0
- package/dist-types/models/models_0.d.ts +1886 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListRegistriesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRegistryRecordsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +57 -0
- package/dist-types/runtimeConfig.d.ts +57 -0
- package/dist-types/runtimeConfig.native.d.ts +56 -0
- package/dist-types/runtimeConfig.shared.d.ts +28 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +118 -0
- package/dist-types/ts3.4/AgentRegistryControl.d.ts +295 -0
- package/dist-types/ts3.4/AgentRegistryControlClient.d.ts +187 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +27 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +40 -0
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateRegistryRecordCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteRegistryRecordCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetRegistryRecordCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +39 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +10 -0
- package/dist-types/ts3.4/index.d.ts +14 -0
- package/dist-types/ts3.4/models/AgentRegistryControlServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +90 -0
- package/dist-types/ts3.4/models/errors.d.ts +41 -0
- package/dist-types/ts3.4/models/models_0.d.ts +528 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist-types/ts3.4/pagination/ListRegistriesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRegistryRecordsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +31 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForRegistryReady.d.ts +12 -0
- package/dist-types/ts3.4/waiters/waitForRegistryRecordApproved.d.ts +15 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForRegistryReady.d.ts +15 -0
- package/dist-types/waiters/waitForRegistryRecordApproved.d.ts +15 -0
- package/package.json +69 -0
|
@@ -0,0 +1,1536 @@
|
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
13
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
14
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
15
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
16
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
17
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
18
|
+
|
|
19
|
+
const defaultAgentRegistryControlHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
20
|
+
return {
|
|
21
|
+
operation: getSmithyContext(context).operation,
|
|
22
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
23
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
24
|
+
})(),
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
28
|
+
return {
|
|
29
|
+
schemeId: "aws.auth#sigv4",
|
|
30
|
+
signingProperties: {
|
|
31
|
+
name: "agent-registry",
|
|
32
|
+
region: authParameters.region,
|
|
33
|
+
},
|
|
34
|
+
propertiesExtractor: (config, context) => ({
|
|
35
|
+
signingProperties: {
|
|
36
|
+
config,
|
|
37
|
+
context,
|
|
38
|
+
},
|
|
39
|
+
}),
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
const defaultAgentRegistryControlHttpAuthSchemeProvider = (authParameters) => {
|
|
43
|
+
const options = [];
|
|
44
|
+
switch (authParameters.operation) {
|
|
45
|
+
default: {
|
|
46
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
return options;
|
|
50
|
+
};
|
|
51
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
52
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
53
|
+
return Object.assign(config_0, {
|
|
54
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
55
|
+
});
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
const resolveClientEndpointParameters = (options) => {
|
|
59
|
+
return Object.assign(options, {
|
|
60
|
+
defaultSigningName: "agent-registry",
|
|
61
|
+
});
|
|
62
|
+
};
|
|
63
|
+
const commonParams = {
|
|
64
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
65
|
+
Region: { type: "builtInParams", name: "region" },
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
var version = "3.0.0";
|
|
69
|
+
var packageInfo = {
|
|
70
|
+
version: version};
|
|
71
|
+
|
|
72
|
+
const a = "isSet", b = { "ref": "Endpoint" };
|
|
73
|
+
const _data = {
|
|
74
|
+
conditions: [
|
|
75
|
+
[a, [b]],
|
|
76
|
+
[a, [{ ref: "Region" }]]
|
|
77
|
+
],
|
|
78
|
+
results: [
|
|
79
|
+
[-1],
|
|
80
|
+
[b, {}],
|
|
81
|
+
["https://agent-registry-control.{Region}.api.aws", {}],
|
|
82
|
+
[-1, "Unable to resolve an Agent Registry Control endpoint: Region was not set and no explicit Endpoint override was provided."]
|
|
83
|
+
]
|
|
84
|
+
};
|
|
85
|
+
const root = 2;
|
|
86
|
+
const r = 100_000_000;
|
|
87
|
+
const nodes = new Int32Array([
|
|
88
|
+
-1, 1, -1,
|
|
89
|
+
0, r + 1, 3,
|
|
90
|
+
1, r + 2, r + 3,
|
|
91
|
+
]);
|
|
92
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
93
|
+
|
|
94
|
+
const cache = new EndpointCache({
|
|
95
|
+
size: 50,
|
|
96
|
+
params: ["Endpoint", "Region"],
|
|
97
|
+
});
|
|
98
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
99
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
100
|
+
endpointParams: endpointParams,
|
|
101
|
+
logger: context.logger,
|
|
102
|
+
}));
|
|
103
|
+
};
|
|
104
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
105
|
+
|
|
106
|
+
class AgentRegistryControlServiceException extends ServiceException {
|
|
107
|
+
constructor(options) {
|
|
108
|
+
super(options);
|
|
109
|
+
Object.setPrototypeOf(this, AgentRegistryControlServiceException.prototype);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
class AccessDeniedException extends AgentRegistryControlServiceException {
|
|
114
|
+
name = "AccessDeniedException";
|
|
115
|
+
$fault = "client";
|
|
116
|
+
constructor(opts) {
|
|
117
|
+
super({
|
|
118
|
+
name: "AccessDeniedException",
|
|
119
|
+
$fault: "client",
|
|
120
|
+
...opts,
|
|
121
|
+
});
|
|
122
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
class InternalServerException extends AgentRegistryControlServiceException {
|
|
126
|
+
name = "InternalServerException";
|
|
127
|
+
$fault = "server";
|
|
128
|
+
constructor(opts) {
|
|
129
|
+
super({
|
|
130
|
+
name: "InternalServerException",
|
|
131
|
+
$fault: "server",
|
|
132
|
+
...opts,
|
|
133
|
+
});
|
|
134
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
class ResourceNotFoundException extends AgentRegistryControlServiceException {
|
|
138
|
+
name = "ResourceNotFoundException";
|
|
139
|
+
$fault = "client";
|
|
140
|
+
constructor(opts) {
|
|
141
|
+
super({
|
|
142
|
+
name: "ResourceNotFoundException",
|
|
143
|
+
$fault: "client",
|
|
144
|
+
...opts,
|
|
145
|
+
});
|
|
146
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
class ThrottlingException extends AgentRegistryControlServiceException {
|
|
150
|
+
name = "ThrottlingException";
|
|
151
|
+
$fault = "client";
|
|
152
|
+
constructor(opts) {
|
|
153
|
+
super({
|
|
154
|
+
name: "ThrottlingException",
|
|
155
|
+
$fault: "client",
|
|
156
|
+
...opts,
|
|
157
|
+
});
|
|
158
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
class ValidationException extends AgentRegistryControlServiceException {
|
|
162
|
+
name = "ValidationException";
|
|
163
|
+
$fault = "client";
|
|
164
|
+
reason;
|
|
165
|
+
fieldList;
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "ValidationException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
173
|
+
this.reason = opts.reason;
|
|
174
|
+
this.fieldList = opts.fieldList;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
class ConflictException extends AgentRegistryControlServiceException {
|
|
178
|
+
name = "ConflictException";
|
|
179
|
+
$fault = "client";
|
|
180
|
+
constructor(opts) {
|
|
181
|
+
super({
|
|
182
|
+
name: "ConflictException",
|
|
183
|
+
$fault: "client",
|
|
184
|
+
...opts,
|
|
185
|
+
});
|
|
186
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
class ServiceQuotaExceededException extends AgentRegistryControlServiceException {
|
|
190
|
+
name = "ServiceQuotaExceededException";
|
|
191
|
+
$fault = "client";
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "ServiceQuotaExceededException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
const _AACD = "A2aAgentCardDescriptor";
|
|
203
|
+
const _AC = "ApprovalConfiguration";
|
|
204
|
+
const _ACMVT = "AuthorizingClaimMatchValueType";
|
|
205
|
+
const _ACu = "AuthorizerConfiguration";
|
|
206
|
+
const _ADE = "AccessDeniedException";
|
|
207
|
+
const _ASAD = "AgentSkillsAdditionalData";
|
|
208
|
+
const _ASDD = "AgentSkillsDefinitionDescriptor";
|
|
209
|
+
const _ASMD = "AgentSkillsMdDescriptor";
|
|
210
|
+
const _CCVT = "CustomClaimValidationType";
|
|
211
|
+
const _CCVTu = "CustomClaimValidationsType";
|
|
212
|
+
const _CD = "CustomDescriptor";
|
|
213
|
+
const _CE = "ConflictException";
|
|
214
|
+
const _CJWTAC = "CustomJWTAuthorizerConfiguration";
|
|
215
|
+
const _CMVT = "ClaimMatchValueType";
|
|
216
|
+
const _CR = "CreateRegistry";
|
|
217
|
+
const _CRR = "CreateRegistryRequest";
|
|
218
|
+
const _CRRR = "CreateRegistryRecordRequest";
|
|
219
|
+
const _CRRRr = "CreateRegistryRecordResponse";
|
|
220
|
+
const _CRRr = "CreateRegistryResponse";
|
|
221
|
+
const _CRRre = "CreateRegistryRecord";
|
|
222
|
+
const _D = "Description";
|
|
223
|
+
const _DC = "DiscoveryConfiguration";
|
|
224
|
+
const _DD = "DescriptorData";
|
|
225
|
+
const _DR = "DeleteRegistry";
|
|
226
|
+
const _DRR = "DeleteRegistryRequest";
|
|
227
|
+
const _DRRR = "DeleteRegistryRecordRequest";
|
|
228
|
+
const _DRRRe = "DeleteRegistryRecordResponse";
|
|
229
|
+
const _DRRe = "DeleteRegistryResponse";
|
|
230
|
+
const _DRRel = "DeleteRegistryRecord";
|
|
231
|
+
const _DS = "DescriptorSource";
|
|
232
|
+
const _DSFU = "DescriptorSourceFromUrl";
|
|
233
|
+
const _De = "Descriptors";
|
|
234
|
+
const _GR = "GetRegistry";
|
|
235
|
+
const _GRR = "GetRegistryRequest";
|
|
236
|
+
const _GRRR = "GetRegistryRecordRequest";
|
|
237
|
+
const _GRRRe = "GetRegistryRecordResponse";
|
|
238
|
+
const _GRRe = "GetRegistryResponse";
|
|
239
|
+
const _GRRet = "GetRegistryRecord";
|
|
240
|
+
const _ISE = "InternalServerException";
|
|
241
|
+
const _LR = "ListRegistries";
|
|
242
|
+
const _LRR = "ListRegistriesRequest";
|
|
243
|
+
const _LRRR = "ListRegistryRecordsRequest";
|
|
244
|
+
const _LRRRi = "ListRegistryRecordsResponse";
|
|
245
|
+
const _LRRi = "ListRegistriesResponse";
|
|
246
|
+
const _LRRis = "ListRegistryRecords";
|
|
247
|
+
const _LTFR = "ListTagsForResource";
|
|
248
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
249
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
250
|
+
const _MSAD = "McpServerAdditionalData";
|
|
251
|
+
const _MSD = "McpServerDescriptor";
|
|
252
|
+
const _MTD = "McpToolsDescriptor";
|
|
253
|
+
const _MVR = "ManagedVpcResource";
|
|
254
|
+
const _PE = "PrivateEndpoint";
|
|
255
|
+
const _PEO = "PrivateEndpointOverride";
|
|
256
|
+
const _PEOr = "PrivateEndpointOverrides";
|
|
257
|
+
const _RF = "RegistryFilter";
|
|
258
|
+
const _RFL = "RegistryFilterList";
|
|
259
|
+
const _RNFE = "ResourceNotFoundException";
|
|
260
|
+
const _RRCPC = "RegistryRecordCredentialProviderConfiguration";
|
|
261
|
+
const _RRCPCL = "RegistryRecordCredentialProviderConfigurationList";
|
|
262
|
+
const _RRCPU = "RegistryRecordCredentialProviderUnion";
|
|
263
|
+
const _RRF = "RegistryRecordFilter";
|
|
264
|
+
const _RRFL = "RegistryRecordFilterList";
|
|
265
|
+
const _RRICP = "RegistryRecordIamCredentialProvider";
|
|
266
|
+
const _RROACP = "RegistryRecordOAuthCredentialProvider";
|
|
267
|
+
const _RRS = "RegistryRecordSummary";
|
|
268
|
+
const _RRSL = "RegistryRecordSummaryList";
|
|
269
|
+
const _RS = "RegistrySummary";
|
|
270
|
+
const _RSL = "RegistrySummaryList";
|
|
271
|
+
const _SMLR = "SelfManagedLatticeResource";
|
|
272
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
273
|
+
const _SRRFA = "SubmitRegistryRecordForApproval";
|
|
274
|
+
const _SRRFAR = "SubmitRegistryRecordForApprovalRequest";
|
|
275
|
+
const _SRRFARu = "SubmitRegistryRecordForApprovalResponse";
|
|
276
|
+
const _TE = "ThrottlingException";
|
|
277
|
+
const _TR = "TagResource";
|
|
278
|
+
const _TRR = "TagResourceRequest";
|
|
279
|
+
const _TRRa = "TagResourceResponse";
|
|
280
|
+
const _UAACD = "UpdatedA2aAgentCardDescriptor";
|
|
281
|
+
const _UAACDF = "UpdatedA2aAgentCardDescriptorFields";
|
|
282
|
+
const _UAC = "UpdatedApprovalConfiguration";
|
|
283
|
+
const _UACp = "UpdatedAuthorizerConfiguration";
|
|
284
|
+
const _UASAD = "UpdatedAgentSkillsAdditionalData";
|
|
285
|
+
const _UASADF = "UpdatedAgentSkillsAdditionalDataFields";
|
|
286
|
+
const _UASDD = "UpdatedAgentSkillsDefinitionDescriptor";
|
|
287
|
+
const _UASDDF = "UpdatedAgentSkillsDefinitionDescriptorFields";
|
|
288
|
+
const _UASMD = "UpdatedAgentSkillsMdDescriptor";
|
|
289
|
+
const _UASMDF = "UpdatedAgentSkillsMdDescriptorFields";
|
|
290
|
+
const _UCD = "UpdatedCustomDescriptor";
|
|
291
|
+
const _UCDF = "UpdatedCustomDescriptorFields";
|
|
292
|
+
const _UD = "UpdatedDescription";
|
|
293
|
+
const _UDC = "UpdatedDiscoveryConfiguration";
|
|
294
|
+
const _UDD = "UpdatedDescriptorData";
|
|
295
|
+
const _UDF = "UpdatedDescriptorsFields";
|
|
296
|
+
const _UDN = "UpdatedDisplayName";
|
|
297
|
+
const _UDS = "UpdatedDescriptorSource";
|
|
298
|
+
const _UDSV = "UpdatedDataSchemaVersion";
|
|
299
|
+
const _UDp = "UpdatedDescriptors";
|
|
300
|
+
const _UMSAD = "UpdatedMcpServerAdditionalData";
|
|
301
|
+
const _UMSADF = "UpdatedMcpServerAdditionalDataFields";
|
|
302
|
+
const _UMSD = "UpdatedMcpServerDescriptor";
|
|
303
|
+
const _UMSDF = "UpdatedMcpServerDescriptorFields";
|
|
304
|
+
const _UMTD = "UpdatedMcpToolsDescriptor";
|
|
305
|
+
const _UMTDF = "UpdatedMcpToolsDescriptorFields";
|
|
306
|
+
const _UR = "UntagResource";
|
|
307
|
+
const _URR = "UntagResourceRequest";
|
|
308
|
+
const _URRR = "UpdateRegistryRecordRequest";
|
|
309
|
+
const _URRRp = "UpdateRegistryRecordResponse";
|
|
310
|
+
const _URRS = "UpdateRegistryRecordStatus";
|
|
311
|
+
const _URRSR = "UpdateRegistryRecordStatusRequest";
|
|
312
|
+
const _URRSRp = "UpdateRegistryRecordStatusResponse";
|
|
313
|
+
const _URRn = "UntagResourceResponse";
|
|
314
|
+
const _URRp = "UpdateRegistryRequest";
|
|
315
|
+
const _URRpd = "UpdateRegistryResponse";
|
|
316
|
+
const _URRpda = "UpdateRegistryRecord";
|
|
317
|
+
const _URp = "UpdateRegistry";
|
|
318
|
+
const _VE = "ValidationException";
|
|
319
|
+
const _VEF = "ValidationExceptionField";
|
|
320
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
321
|
+
const _aA = "allowedAudience";
|
|
322
|
+
const _aAC = "a2aAgentCard";
|
|
323
|
+
const _aAR = "autoApprovalRules";
|
|
324
|
+
const _aC = "approvalConfiguration";
|
|
325
|
+
const _aCMV = "authorizingClaimMatchValue";
|
|
326
|
+
const _aCl = "allowedClients";
|
|
327
|
+
const _aCu = "authorizerConfiguration";
|
|
328
|
+
const _aD = "additionalData";
|
|
329
|
+
const _aS = "allowedScopes";
|
|
330
|
+
const _aSD = "agentSkillsDefinition";
|
|
331
|
+
const _aT = "authorizerType";
|
|
332
|
+
const _c = "client";
|
|
333
|
+
const _cA = "createdAt";
|
|
334
|
+
const _cC = "customClaims";
|
|
335
|
+
const _cJWTA = "customJWTAuthorizer";
|
|
336
|
+
const _cMO = "claimMatchOperator";
|
|
337
|
+
const _cMV = "claimMatchValue";
|
|
338
|
+
const _cP = "credentialProvider";
|
|
339
|
+
const _cPC = "credentialProviderConfigurations";
|
|
340
|
+
const _cPT = "credentialProviderType";
|
|
341
|
+
const _cPu = "customParameters";
|
|
342
|
+
const _cT = "clientToken";
|
|
343
|
+
const _cu = "custom";
|
|
344
|
+
const _d = "data";
|
|
345
|
+
const _dC = "discoveryConfiguration";
|
|
346
|
+
const _dN = "displayName";
|
|
347
|
+
const _dSV = "dataSchemaVersion";
|
|
348
|
+
const _dU = "discoveryUrl";
|
|
349
|
+
const _de = "descriptors";
|
|
350
|
+
const _des = "description";
|
|
351
|
+
const _do = "domain";
|
|
352
|
+
const _e = "error";
|
|
353
|
+
const _eIAT = "endpointIpAddressType";
|
|
354
|
+
const _f = "filters";
|
|
355
|
+
const _fL = "fieldList";
|
|
356
|
+
const _fU = "fromUrl";
|
|
357
|
+
const _gT = "grantType";
|
|
358
|
+
const _h = "http";
|
|
359
|
+
const _hE = "httpError";
|
|
360
|
+
const _hQ = "httpQuery";
|
|
361
|
+
const _iCP = "iamCredentialProvider";
|
|
362
|
+
const _iTCN = "inboundTokenClaimName";
|
|
363
|
+
const _iTCVT = "inboundTokenClaimValueType";
|
|
364
|
+
const _m = "message";
|
|
365
|
+
const _mR = "maxResults";
|
|
366
|
+
const _mS = "mcpServer";
|
|
367
|
+
const _mVR = "managedVpcResource";
|
|
368
|
+
const _mVS = "matchValueString";
|
|
369
|
+
const _mVSL = "matchValueStringList";
|
|
370
|
+
const _n = "name";
|
|
371
|
+
const _nT = "nextToken";
|
|
372
|
+
const _oCP = "oauthCredentialProvider";
|
|
373
|
+
const _oV = "optionalValue";
|
|
374
|
+
const _pA = "providerArn";
|
|
375
|
+
const _pE = "privateEndpoint";
|
|
376
|
+
const _pEO = "privateEndpointOverrides";
|
|
377
|
+
const _r = "reason";
|
|
378
|
+
const _rA = "recordArn";
|
|
379
|
+
const _rAe = "registryArn";
|
|
380
|
+
const _rAes = "resourceArn";
|
|
381
|
+
const _rAo = "roleArn";
|
|
382
|
+
const _rCI = "resourceConfigurationIdentifier";
|
|
383
|
+
const _rD = "routingDomain";
|
|
384
|
+
const _rI = "registryId";
|
|
385
|
+
const _rIe = "recordId";
|
|
386
|
+
const _rR = "registryRecords";
|
|
387
|
+
const _rT = "recordType";
|
|
388
|
+
const _rV = "recordVersion";
|
|
389
|
+
const _re = "registries";
|
|
390
|
+
const _reg = "region";
|
|
391
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.agentregistrycontrol";
|
|
392
|
+
const _sGI = "securityGroupIds";
|
|
393
|
+
const _sI = "subnetIds";
|
|
394
|
+
const _sM = "skillMd";
|
|
395
|
+
const _sMLR = "selfManagedLatticeResource";
|
|
396
|
+
const _sR = "statusReason";
|
|
397
|
+
const _sc = "scopes";
|
|
398
|
+
const _se = "server";
|
|
399
|
+
const _ser = "service";
|
|
400
|
+
const _so = "source";
|
|
401
|
+
const _st = "status";
|
|
402
|
+
const _t = "tags";
|
|
403
|
+
const _tK = "tagKeys";
|
|
404
|
+
const _tS = "triggerSynchronization";
|
|
405
|
+
const _to = "tools";
|
|
406
|
+
const _u = "url";
|
|
407
|
+
const _uA = "updatedAt";
|
|
408
|
+
const _v = "values";
|
|
409
|
+
const _vI = "vpcIdentifier";
|
|
410
|
+
const n0 = "com.amazonaws.agentregistrycontrol";
|
|
411
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
412
|
+
var AgentRegistryControlServiceException$ = [-3, _s, "AgentRegistryControlServiceException", 0, [], []];
|
|
413
|
+
_s_registry.registerError(AgentRegistryControlServiceException$, AgentRegistryControlServiceException);
|
|
414
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
415
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
416
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
417
|
+
[_m],
|
|
418
|
+
[0]
|
|
419
|
+
];
|
|
420
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
421
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
422
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
423
|
+
[_m],
|
|
424
|
+
[0]
|
|
425
|
+
];
|
|
426
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
427
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
428
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
429
|
+
[_m],
|
|
430
|
+
[0]
|
|
431
|
+
];
|
|
432
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
433
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
434
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
435
|
+
[_m],
|
|
436
|
+
[0]
|
|
437
|
+
];
|
|
438
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
439
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
440
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
441
|
+
[_m],
|
|
442
|
+
[0]
|
|
443
|
+
];
|
|
444
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
445
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
446
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
447
|
+
[_m],
|
|
448
|
+
[0]
|
|
449
|
+
];
|
|
450
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
451
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
452
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
453
|
+
[_m, _r, _fL],
|
|
454
|
+
[0, 0, () => ValidationExceptionFieldList], 2
|
|
455
|
+
];
|
|
456
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
457
|
+
const errorTypeRegistries = [
|
|
458
|
+
_s_registry,
|
|
459
|
+
n0_registry,
|
|
460
|
+
];
|
|
461
|
+
var Description = [0, n0, _D, 8, 0];
|
|
462
|
+
var DescriptorData = [0, n0, _DD, 8, 0];
|
|
463
|
+
var A2aAgentCardDescriptor$ = [3, n0, _AACD,
|
|
464
|
+
0,
|
|
465
|
+
[_d, _dSV, _so],
|
|
466
|
+
[[() => DescriptorData, 0], 0, () => DescriptorSource$]
|
|
467
|
+
];
|
|
468
|
+
var AgentSkillsAdditionalData$ = [3, n0, _ASAD,
|
|
469
|
+
0,
|
|
470
|
+
[_sM],
|
|
471
|
+
[[() => AgentSkillsMdDescriptor$, 0]]
|
|
472
|
+
];
|
|
473
|
+
var AgentSkillsDefinitionDescriptor$ = [3, n0, _ASDD,
|
|
474
|
+
0,
|
|
475
|
+
[_d, _dSV, _aD],
|
|
476
|
+
[[() => DescriptorData, 0], 0, [() => AgentSkillsAdditionalData$, 0]]
|
|
477
|
+
];
|
|
478
|
+
var AgentSkillsMdDescriptor$ = [3, n0, _ASMD,
|
|
479
|
+
0,
|
|
480
|
+
[_d, _dSV, _so],
|
|
481
|
+
[[() => DescriptorData, 0], 0, () => DescriptorSource$]
|
|
482
|
+
];
|
|
483
|
+
var ApprovalConfiguration$ = [3, n0, _AC,
|
|
484
|
+
0,
|
|
485
|
+
[_aAR],
|
|
486
|
+
[64 | 0]
|
|
487
|
+
];
|
|
488
|
+
var AuthorizingClaimMatchValueType$ = [3, n0, _ACMVT,
|
|
489
|
+
0,
|
|
490
|
+
[_cMV, _cMO],
|
|
491
|
+
[() => ClaimMatchValueType$, 0], 2
|
|
492
|
+
];
|
|
493
|
+
var CreateRegistryRecordRequest$ = [3, n0, _CRRR,
|
|
494
|
+
0,
|
|
495
|
+
[_rI, _n, _rT, _de, _dN, _des, _rV, _cT, _t],
|
|
496
|
+
[[0, 1], 0, 0, [() => Descriptors$, 0], 0, [() => Description, 0], 0, [0, 4], 128 | 0], 4
|
|
497
|
+
];
|
|
498
|
+
var CreateRegistryRecordResponse$ = [3, n0, _CRRRr,
|
|
499
|
+
0,
|
|
500
|
+
[_rA, _st],
|
|
501
|
+
[0, 0], 2
|
|
502
|
+
];
|
|
503
|
+
var CreateRegistryRequest$ = [3, n0, _CRR,
|
|
504
|
+
0,
|
|
505
|
+
[_n, _des, _dC, _cT, _t, _aC],
|
|
506
|
+
[0, [() => Description, 0], () => DiscoveryConfiguration$, [0, 4], 128 | 0, () => ApprovalConfiguration$], 1
|
|
507
|
+
];
|
|
508
|
+
var CreateRegistryResponse$ = [3, n0, _CRRr,
|
|
509
|
+
0,
|
|
510
|
+
[_rAe],
|
|
511
|
+
[0], 1
|
|
512
|
+
];
|
|
513
|
+
var CustomClaimValidationType$ = [3, n0, _CCVT,
|
|
514
|
+
0,
|
|
515
|
+
[_iTCN, _iTCVT, _aCMV],
|
|
516
|
+
[0, 0, () => AuthorizingClaimMatchValueType$], 3
|
|
517
|
+
];
|
|
518
|
+
var CustomDescriptor$ = [3, n0, _CD,
|
|
519
|
+
0,
|
|
520
|
+
[_d],
|
|
521
|
+
[[() => DescriptorData, 0]]
|
|
522
|
+
];
|
|
523
|
+
var CustomJWTAuthorizerConfiguration$ = [3, n0, _CJWTAC,
|
|
524
|
+
0,
|
|
525
|
+
[_dU, _aA, _aCl, _aS, _cC, _pE, _pEO],
|
|
526
|
+
[0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType, () => PrivateEndpoint$, () => PrivateEndpointOverrides], 1
|
|
527
|
+
];
|
|
528
|
+
var DeleteRegistryRecordRequest$ = [3, n0, _DRRR,
|
|
529
|
+
0,
|
|
530
|
+
[_rI, _rIe],
|
|
531
|
+
[[0, 1], [0, 1]], 2
|
|
532
|
+
];
|
|
533
|
+
var DeleteRegistryRecordResponse$ = [3, n0, _DRRRe,
|
|
534
|
+
0,
|
|
535
|
+
[],
|
|
536
|
+
[]
|
|
537
|
+
];
|
|
538
|
+
var DeleteRegistryRequest$ = [3, n0, _DRR,
|
|
539
|
+
0,
|
|
540
|
+
[_rI],
|
|
541
|
+
[[0, 1]], 1
|
|
542
|
+
];
|
|
543
|
+
var DeleteRegistryResponse$ = [3, n0, _DRRe,
|
|
544
|
+
0,
|
|
545
|
+
[_st],
|
|
546
|
+
[0], 1
|
|
547
|
+
];
|
|
548
|
+
var Descriptors$ = [3, n0, _De,
|
|
549
|
+
0,
|
|
550
|
+
[_mS, _aAC, _aSD, _cu],
|
|
551
|
+
[[() => McpServerDescriptor$, 0], [() => A2aAgentCardDescriptor$, 0], [() => AgentSkillsDefinitionDescriptor$, 0], [() => CustomDescriptor$, 0]]
|
|
552
|
+
];
|
|
553
|
+
var DescriptorSource$ = [3, n0, _DS,
|
|
554
|
+
0,
|
|
555
|
+
[_fU],
|
|
556
|
+
[() => DescriptorSourceFromUrl$]
|
|
557
|
+
];
|
|
558
|
+
var DescriptorSourceFromUrl$ = [3, n0, _DSFU,
|
|
559
|
+
0,
|
|
560
|
+
[_u, _cPC],
|
|
561
|
+
[0, () => RegistryRecordCredentialProviderConfigurationList], 1
|
|
562
|
+
];
|
|
563
|
+
var DiscoveryConfiguration$ = [3, n0, _DC,
|
|
564
|
+
0,
|
|
565
|
+
[_aCu, _aT],
|
|
566
|
+
[() => AuthorizerConfiguration$, 0]
|
|
567
|
+
];
|
|
568
|
+
var GetRegistryRecordRequest$ = [3, n0, _GRRR,
|
|
569
|
+
0,
|
|
570
|
+
[_rI, _rIe],
|
|
571
|
+
[[0, 1], [0, 1]], 2
|
|
572
|
+
];
|
|
573
|
+
var GetRegistryRecordResponse$ = [3, n0, _GRRRe,
|
|
574
|
+
0,
|
|
575
|
+
[_rAe, _rA, _rIe, _n, _rT, _st, _cA, _uA, _dN, _des, _de, _rV, _sR],
|
|
576
|
+
[0, 0, 0, 0, 0, 0, 5, 5, 0, [() => Description, 0], [() => Descriptors$, 0], 0, 0], 8
|
|
577
|
+
];
|
|
578
|
+
var GetRegistryRequest$ = [3, n0, _GRR,
|
|
579
|
+
0,
|
|
580
|
+
[_rI],
|
|
581
|
+
[[0, 1]], 1
|
|
582
|
+
];
|
|
583
|
+
var GetRegistryResponse$ = [3, n0, _GRRe,
|
|
584
|
+
0,
|
|
585
|
+
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _aC, _sR],
|
|
586
|
+
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, () => ApprovalConfiguration$, 0], 6
|
|
587
|
+
];
|
|
588
|
+
var ListRegistriesRequest$ = [3, n0, _LRR,
|
|
589
|
+
0,
|
|
590
|
+
[_mR, _nT, _f],
|
|
591
|
+
[1, 0, () => RegistryFilterList]
|
|
592
|
+
];
|
|
593
|
+
var ListRegistriesResponse$ = [3, n0, _LRRi,
|
|
594
|
+
0,
|
|
595
|
+
[_re, _nT],
|
|
596
|
+
[[() => RegistrySummaryList, 0], 0], 1
|
|
597
|
+
];
|
|
598
|
+
var ListRegistryRecordsRequest$ = [3, n0, _LRRR,
|
|
599
|
+
0,
|
|
600
|
+
[_rI, _mR, _nT, _f],
|
|
601
|
+
[[0, 1], 1, 0, () => RegistryRecordFilterList], 1
|
|
602
|
+
];
|
|
603
|
+
var ListRegistryRecordsResponse$ = [3, n0, _LRRRi,
|
|
604
|
+
0,
|
|
605
|
+
[_rR, _nT],
|
|
606
|
+
[[() => RegistryRecordSummaryList, 0], 0], 1
|
|
607
|
+
];
|
|
608
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
609
|
+
0,
|
|
610
|
+
[_rAes],
|
|
611
|
+
[[0, 1]], 1
|
|
612
|
+
];
|
|
613
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
614
|
+
0,
|
|
615
|
+
[_t],
|
|
616
|
+
[128 | 0]
|
|
617
|
+
];
|
|
618
|
+
var ManagedVpcResource$ = [3, n0, _MVR,
|
|
619
|
+
0,
|
|
620
|
+
[_vI, _sI, _eIAT, _sGI, _t, _rD],
|
|
621
|
+
[0, 64 | 0, 0, 64 | 0, 128 | 0, 0], 3
|
|
622
|
+
];
|
|
623
|
+
var McpServerAdditionalData$ = [3, n0, _MSAD,
|
|
624
|
+
0,
|
|
625
|
+
[_to],
|
|
626
|
+
[[() => McpToolsDescriptor$, 0]]
|
|
627
|
+
];
|
|
628
|
+
var McpServerDescriptor$ = [3, n0, _MSD,
|
|
629
|
+
0,
|
|
630
|
+
[_d, _dSV, _aD, _so],
|
|
631
|
+
[[() => DescriptorData, 0], 0, [() => McpServerAdditionalData$, 0], () => DescriptorSource$]
|
|
632
|
+
];
|
|
633
|
+
var McpToolsDescriptor$ = [3, n0, _MTD,
|
|
634
|
+
0,
|
|
635
|
+
[_d, _dSV],
|
|
636
|
+
[[() => DescriptorData, 0], 0]
|
|
637
|
+
];
|
|
638
|
+
var PrivateEndpointOverride$ = [3, n0, _PEO,
|
|
639
|
+
0,
|
|
640
|
+
[_do, _pE],
|
|
641
|
+
[0, () => PrivateEndpoint$], 2
|
|
642
|
+
];
|
|
643
|
+
var RegistryFilter$ = [3, n0, _RF,
|
|
644
|
+
0,
|
|
645
|
+
[_n, _v],
|
|
646
|
+
[0, 64 | 0], 2
|
|
647
|
+
];
|
|
648
|
+
var RegistryRecordCredentialProviderConfiguration$ = [3, n0, _RRCPC,
|
|
649
|
+
0,
|
|
650
|
+
[_cPT, _cP],
|
|
651
|
+
[0, () => RegistryRecordCredentialProviderUnion$], 2
|
|
652
|
+
];
|
|
653
|
+
var RegistryRecordFilter$ = [3, n0, _RRF,
|
|
654
|
+
0,
|
|
655
|
+
[_n, _v],
|
|
656
|
+
[0, 64 | 0], 2
|
|
657
|
+
];
|
|
658
|
+
var RegistryRecordIamCredentialProvider$ = [3, n0, _RRICP,
|
|
659
|
+
0,
|
|
660
|
+
[_rAo, _ser, _reg],
|
|
661
|
+
[0, 0, 0]
|
|
662
|
+
];
|
|
663
|
+
var RegistryRecordOAuthCredentialProvider$ = [3, n0, _RROACP,
|
|
664
|
+
0,
|
|
665
|
+
[_pA, _gT, _sc, _cPu],
|
|
666
|
+
[0, 0, 64 | 0, 128 | 0], 1
|
|
667
|
+
];
|
|
668
|
+
var RegistryRecordSummary$ = [3, n0, _RRS,
|
|
669
|
+
0,
|
|
670
|
+
[_rAe, _rA, _rIe, _n, _rT, _rV, _st, _cA, _uA, _dN, _des],
|
|
671
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, [() => Description, 0]], 9
|
|
672
|
+
];
|
|
673
|
+
var RegistrySummary$ = [3, n0, _RS,
|
|
674
|
+
0,
|
|
675
|
+
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _sR],
|
|
676
|
+
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, 0], 6
|
|
677
|
+
];
|
|
678
|
+
var SubmitRegistryRecordForApprovalRequest$ = [3, n0, _SRRFAR,
|
|
679
|
+
0,
|
|
680
|
+
[_rI, _rIe],
|
|
681
|
+
[[0, 1], [0, 1]], 2
|
|
682
|
+
];
|
|
683
|
+
var SubmitRegistryRecordForApprovalResponse$ = [3, n0, _SRRFARu,
|
|
684
|
+
0,
|
|
685
|
+
[_rAe, _rA, _rIe, _st, _uA],
|
|
686
|
+
[0, 0, 0, 0, 5], 5
|
|
687
|
+
];
|
|
688
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
689
|
+
0,
|
|
690
|
+
[_rAes, _t],
|
|
691
|
+
[[0, 1], 128 | 0], 2
|
|
692
|
+
];
|
|
693
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
694
|
+
0,
|
|
695
|
+
[],
|
|
696
|
+
[]
|
|
697
|
+
];
|
|
698
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
699
|
+
0,
|
|
700
|
+
[_rAes, _tK],
|
|
701
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
702
|
+
];
|
|
703
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
704
|
+
0,
|
|
705
|
+
[],
|
|
706
|
+
[]
|
|
707
|
+
];
|
|
708
|
+
var UpdatedA2aAgentCardDescriptor$ = [3, n0, _UAACD,
|
|
709
|
+
0,
|
|
710
|
+
[_oV],
|
|
711
|
+
[[() => UpdatedA2aAgentCardDescriptorFields$, 0]]
|
|
712
|
+
];
|
|
713
|
+
var UpdatedA2aAgentCardDescriptorFields$ = [3, n0, _UAACDF,
|
|
714
|
+
0,
|
|
715
|
+
[_d, _dSV, _so],
|
|
716
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$, () => UpdatedDescriptorSource$]
|
|
717
|
+
];
|
|
718
|
+
var UpdatedAgentSkillsAdditionalData$ = [3, n0, _UASAD,
|
|
719
|
+
0,
|
|
720
|
+
[_oV],
|
|
721
|
+
[[() => UpdatedAgentSkillsAdditionalDataFields$, 0]]
|
|
722
|
+
];
|
|
723
|
+
var UpdatedAgentSkillsAdditionalDataFields$ = [3, n0, _UASADF,
|
|
724
|
+
0,
|
|
725
|
+
[_sM],
|
|
726
|
+
[[() => UpdatedAgentSkillsMdDescriptor$, 0]]
|
|
727
|
+
];
|
|
728
|
+
var UpdatedAgentSkillsDefinitionDescriptor$ = [3, n0, _UASDD,
|
|
729
|
+
0,
|
|
730
|
+
[_oV],
|
|
731
|
+
[[() => UpdatedAgentSkillsDefinitionDescriptorFields$, 0]]
|
|
732
|
+
];
|
|
733
|
+
var UpdatedAgentSkillsDefinitionDescriptorFields$ = [3, n0, _UASDDF,
|
|
734
|
+
0,
|
|
735
|
+
[_d, _dSV, _aD],
|
|
736
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$, [() => UpdatedAgentSkillsAdditionalData$, 0]]
|
|
737
|
+
];
|
|
738
|
+
var UpdatedAgentSkillsMdDescriptor$ = [3, n0, _UASMD,
|
|
739
|
+
0,
|
|
740
|
+
[_oV],
|
|
741
|
+
[[() => UpdatedAgentSkillsMdDescriptorFields$, 0]]
|
|
742
|
+
];
|
|
743
|
+
var UpdatedAgentSkillsMdDescriptorFields$ = [3, n0, _UASMDF,
|
|
744
|
+
0,
|
|
745
|
+
[_d, _dSV, _so],
|
|
746
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$, () => UpdatedDescriptorSource$]
|
|
747
|
+
];
|
|
748
|
+
var UpdatedApprovalConfiguration$ = [3, n0, _UAC,
|
|
749
|
+
0,
|
|
750
|
+
[_oV],
|
|
751
|
+
[() => ApprovalConfiguration$]
|
|
752
|
+
];
|
|
753
|
+
var UpdatedAuthorizerConfiguration$ = [3, n0, _UACp,
|
|
754
|
+
0,
|
|
755
|
+
[_oV],
|
|
756
|
+
[() => AuthorizerConfiguration$]
|
|
757
|
+
];
|
|
758
|
+
var UpdatedCustomDescriptor$ = [3, n0, _UCD,
|
|
759
|
+
0,
|
|
760
|
+
[_oV],
|
|
761
|
+
[[() => UpdatedCustomDescriptorFields$, 0]]
|
|
762
|
+
];
|
|
763
|
+
var UpdatedCustomDescriptorFields$ = [3, n0, _UCDF,
|
|
764
|
+
0,
|
|
765
|
+
[_d],
|
|
766
|
+
[[() => UpdatedDescriptorData$, 0]]
|
|
767
|
+
];
|
|
768
|
+
var UpdatedDataSchemaVersion$ = [3, n0, _UDSV,
|
|
769
|
+
0,
|
|
770
|
+
[_oV],
|
|
771
|
+
[0]
|
|
772
|
+
];
|
|
773
|
+
var UpdatedDescription$ = [3, n0, _UD,
|
|
774
|
+
0,
|
|
775
|
+
[_oV],
|
|
776
|
+
[[() => Description, 0]]
|
|
777
|
+
];
|
|
778
|
+
var UpdatedDescriptorData$ = [3, n0, _UDD,
|
|
779
|
+
0,
|
|
780
|
+
[_oV],
|
|
781
|
+
[[() => DescriptorData, 0]]
|
|
782
|
+
];
|
|
783
|
+
var UpdatedDescriptors$ = [3, n0, _UDp,
|
|
784
|
+
0,
|
|
785
|
+
[_oV],
|
|
786
|
+
[[() => UpdatedDescriptorsFields$, 0]]
|
|
787
|
+
];
|
|
788
|
+
var UpdatedDescriptorsFields$ = [3, n0, _UDF,
|
|
789
|
+
0,
|
|
790
|
+
[_mS, _aAC, _aSD, _cu],
|
|
791
|
+
[[() => UpdatedMcpServerDescriptor$, 0], [() => UpdatedA2aAgentCardDescriptor$, 0], [() => UpdatedAgentSkillsDefinitionDescriptor$, 0], [() => UpdatedCustomDescriptor$, 0]]
|
|
792
|
+
];
|
|
793
|
+
var UpdatedDescriptorSource$ = [3, n0, _UDS,
|
|
794
|
+
0,
|
|
795
|
+
[_oV],
|
|
796
|
+
[() => DescriptorSource$]
|
|
797
|
+
];
|
|
798
|
+
var UpdatedDiscoveryConfiguration$ = [3, n0, _UDC,
|
|
799
|
+
0,
|
|
800
|
+
[_aCu],
|
|
801
|
+
[() => UpdatedAuthorizerConfiguration$]
|
|
802
|
+
];
|
|
803
|
+
var UpdatedDisplayName$ = [3, n0, _UDN,
|
|
804
|
+
0,
|
|
805
|
+
[_oV],
|
|
806
|
+
[0]
|
|
807
|
+
];
|
|
808
|
+
var UpdatedMcpServerAdditionalData$ = [3, n0, _UMSAD,
|
|
809
|
+
0,
|
|
810
|
+
[_oV],
|
|
811
|
+
[[() => UpdatedMcpServerAdditionalDataFields$, 0]]
|
|
812
|
+
];
|
|
813
|
+
var UpdatedMcpServerAdditionalDataFields$ = [3, n0, _UMSADF,
|
|
814
|
+
0,
|
|
815
|
+
[_to],
|
|
816
|
+
[[() => UpdatedMcpToolsDescriptor$, 0]]
|
|
817
|
+
];
|
|
818
|
+
var UpdatedMcpServerDescriptor$ = [3, n0, _UMSD,
|
|
819
|
+
0,
|
|
820
|
+
[_oV],
|
|
821
|
+
[[() => UpdatedMcpServerDescriptorFields$, 0]]
|
|
822
|
+
];
|
|
823
|
+
var UpdatedMcpServerDescriptorFields$ = [3, n0, _UMSDF,
|
|
824
|
+
0,
|
|
825
|
+
[_d, _dSV, _so, _aD],
|
|
826
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$, () => UpdatedDescriptorSource$, [() => UpdatedMcpServerAdditionalData$, 0]]
|
|
827
|
+
];
|
|
828
|
+
var UpdatedMcpToolsDescriptor$ = [3, n0, _UMTD,
|
|
829
|
+
0,
|
|
830
|
+
[_oV],
|
|
831
|
+
[[() => UpdatedMcpToolsDescriptorFields$, 0]]
|
|
832
|
+
];
|
|
833
|
+
var UpdatedMcpToolsDescriptorFields$ = [3, n0, _UMTDF,
|
|
834
|
+
0,
|
|
835
|
+
[_d, _dSV],
|
|
836
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$]
|
|
837
|
+
];
|
|
838
|
+
var UpdateRegistryRecordRequest$ = [3, n0, _URRR,
|
|
839
|
+
0,
|
|
840
|
+
[_rI, _rIe, _n, _dN, _des, _rT, _de, _rV, _tS],
|
|
841
|
+
[[0, 1], [0, 1], 0, () => UpdatedDisplayName$, [() => UpdatedDescription$, 0], 0, [() => UpdatedDescriptors$, 0], 0, 2], 2
|
|
842
|
+
];
|
|
843
|
+
var UpdateRegistryRecordResponse$ = [3, n0, _URRRp,
|
|
844
|
+
0,
|
|
845
|
+
[_rAe, _rA, _rIe, _n, _rT, _st, _cA, _uA, _dN, _des, _de, _rV, _sR],
|
|
846
|
+
[0, 0, 0, 0, 0, 0, 5, 5, 0, [() => Description, 0], [() => Descriptors$, 0], 0, 0], 8
|
|
847
|
+
];
|
|
848
|
+
var UpdateRegistryRecordStatusRequest$ = [3, n0, _URRSR,
|
|
849
|
+
0,
|
|
850
|
+
[_rI, _rIe, _st, _sR],
|
|
851
|
+
[[0, 1], [0, 1], 0, 0], 4
|
|
852
|
+
];
|
|
853
|
+
var UpdateRegistryRecordStatusResponse$ = [3, n0, _URRSRp,
|
|
854
|
+
0,
|
|
855
|
+
[_rAe, _rA, _rIe, _st, _sR, _uA],
|
|
856
|
+
[0, 0, 0, 0, 0, 5], 6
|
|
857
|
+
];
|
|
858
|
+
var UpdateRegistryRequest$ = [3, n0, _URRp,
|
|
859
|
+
0,
|
|
860
|
+
[_rI, _n, _des, _dC, _aC],
|
|
861
|
+
[[0, 1], 0, [() => UpdatedDescription$, 0], () => UpdatedDiscoveryConfiguration$, () => UpdatedApprovalConfiguration$], 1
|
|
862
|
+
];
|
|
863
|
+
var UpdateRegistryResponse$ = [3, n0, _URRpd,
|
|
864
|
+
0,
|
|
865
|
+
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _aC, _sR],
|
|
866
|
+
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, () => ApprovalConfiguration$, 0], 6
|
|
867
|
+
];
|
|
868
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
869
|
+
0,
|
|
870
|
+
[_n, _m],
|
|
871
|
+
[0, 0], 2
|
|
872
|
+
];
|
|
873
|
+
var CustomClaimValidationsType = [1, n0, _CCVTu,
|
|
874
|
+
0, () => CustomClaimValidationType$
|
|
875
|
+
];
|
|
876
|
+
var PrivateEndpointOverrides = [1, n0, _PEOr,
|
|
877
|
+
0, () => PrivateEndpointOverride$
|
|
878
|
+
];
|
|
879
|
+
var RegistryFilterList = [1, n0, _RFL,
|
|
880
|
+
0, () => RegistryFilter$
|
|
881
|
+
];
|
|
882
|
+
var RegistryRecordCredentialProviderConfigurationList = [1, n0, _RRCPCL,
|
|
883
|
+
0, () => RegistryRecordCredentialProviderConfiguration$
|
|
884
|
+
];
|
|
885
|
+
var RegistryRecordFilterList = [1, n0, _RRFL,
|
|
886
|
+
0, () => RegistryRecordFilter$
|
|
887
|
+
];
|
|
888
|
+
var RegistryRecordSummaryList = [1, n0, _RRSL,
|
|
889
|
+
0, [() => RegistryRecordSummary$,
|
|
890
|
+
0]
|
|
891
|
+
];
|
|
892
|
+
var RegistrySummaryList = [1, n0, _RSL,
|
|
893
|
+
0, [() => RegistrySummary$,
|
|
894
|
+
0]
|
|
895
|
+
];
|
|
896
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
897
|
+
0, () => ValidationExceptionField$
|
|
898
|
+
];
|
|
899
|
+
var AuthorizerConfiguration$ = [4, n0, _ACu,
|
|
900
|
+
0,
|
|
901
|
+
[_cJWTA],
|
|
902
|
+
[() => CustomJWTAuthorizerConfiguration$]
|
|
903
|
+
];
|
|
904
|
+
var ClaimMatchValueType$ = [4, n0, _CMVT,
|
|
905
|
+
0,
|
|
906
|
+
[_mVS, _mVSL],
|
|
907
|
+
[0, 64 | 0]
|
|
908
|
+
];
|
|
909
|
+
var PrivateEndpoint$ = [4, n0, _PE,
|
|
910
|
+
0,
|
|
911
|
+
[_sMLR, _mVR],
|
|
912
|
+
[() => SelfManagedLatticeResource$, () => ManagedVpcResource$]
|
|
913
|
+
];
|
|
914
|
+
var RegistryRecordCredentialProviderUnion$ = [4, n0, _RRCPU,
|
|
915
|
+
0,
|
|
916
|
+
[_oCP, _iCP],
|
|
917
|
+
[() => RegistryRecordOAuthCredentialProvider$, () => RegistryRecordIamCredentialProvider$]
|
|
918
|
+
];
|
|
919
|
+
var SelfManagedLatticeResource$ = [4, n0, _SMLR,
|
|
920
|
+
0,
|
|
921
|
+
[_rCI],
|
|
922
|
+
[0]
|
|
923
|
+
];
|
|
924
|
+
var CreateRegistry$ = [9, n0, _CR,
|
|
925
|
+
{ [_h]: ["POST", "/registries", 202] }, () => CreateRegistryRequest$, () => CreateRegistryResponse$
|
|
926
|
+
];
|
|
927
|
+
var CreateRegistryRecord$ = [9, n0, _CRRre,
|
|
928
|
+
{ [_h]: ["POST", "/registries/{registryId}/records", 202] }, () => CreateRegistryRecordRequest$, () => CreateRegistryRecordResponse$
|
|
929
|
+
];
|
|
930
|
+
var DeleteRegistry$ = [9, n0, _DR,
|
|
931
|
+
{ [_h]: ["DELETE", "/registries/{registryId}", 202] }, () => DeleteRegistryRequest$, () => DeleteRegistryResponse$
|
|
932
|
+
];
|
|
933
|
+
var DeleteRegistryRecord$ = [9, n0, _DRRel,
|
|
934
|
+
{ [_h]: ["DELETE", "/registries/{registryId}/records/{recordId}", 200] }, () => DeleteRegistryRecordRequest$, () => DeleteRegistryRecordResponse$
|
|
935
|
+
];
|
|
936
|
+
var GetRegistry$ = [9, n0, _GR,
|
|
937
|
+
{ [_h]: ["GET", "/registries/{registryId}", 200] }, () => GetRegistryRequest$, () => GetRegistryResponse$
|
|
938
|
+
];
|
|
939
|
+
var GetRegistryRecord$ = [9, n0, _GRRet,
|
|
940
|
+
{ [_h]: ["GET", "/registries/{registryId}/records/{recordId}", 200] }, () => GetRegistryRecordRequest$, () => GetRegistryRecordResponse$
|
|
941
|
+
];
|
|
942
|
+
var ListRegistries$ = [9, n0, _LR,
|
|
943
|
+
{ [_h]: ["POST", "/registries-list", 200] }, () => ListRegistriesRequest$, () => ListRegistriesResponse$
|
|
944
|
+
];
|
|
945
|
+
var ListRegistryRecords$ = [9, n0, _LRRis,
|
|
946
|
+
{ [_h]: ["POST", "/registries/{registryId}/records-list", 200] }, () => ListRegistryRecordsRequest$, () => ListRegistryRecordsResponse$
|
|
947
|
+
];
|
|
948
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
949
|
+
{ [_h]: ["GET", "/tags/{resourceArn+}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
950
|
+
];
|
|
951
|
+
var SubmitRegistryRecordForApproval$ = [9, n0, _SRRFA,
|
|
952
|
+
{ [_h]: ["POST", "/registries/{registryId}/records/{recordId}/submit-for-approval", 202] }, () => SubmitRegistryRecordForApprovalRequest$, () => SubmitRegistryRecordForApprovalResponse$
|
|
953
|
+
];
|
|
954
|
+
var TagResource$ = [9, n0, _TR,
|
|
955
|
+
{ [_h]: ["POST", "/tags/{resourceArn+}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
956
|
+
];
|
|
957
|
+
var UntagResource$ = [9, n0, _UR,
|
|
958
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn+}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
959
|
+
];
|
|
960
|
+
var UpdateRegistry$ = [9, n0, _URp,
|
|
961
|
+
{ [_h]: ["PATCH", "/registries/{registryId}", 202] }, () => UpdateRegistryRequest$, () => UpdateRegistryResponse$
|
|
962
|
+
];
|
|
963
|
+
var UpdateRegistryRecord$ = [9, n0, _URRpda,
|
|
964
|
+
{ [_h]: ["PATCH", "/registries/{registryId}/records/{recordId}", 202] }, () => UpdateRegistryRecordRequest$, () => UpdateRegistryRecordResponse$
|
|
965
|
+
];
|
|
966
|
+
var UpdateRegistryRecordStatus$ = [9, n0, _URRS,
|
|
967
|
+
{ [_h]: ["PATCH", "/registries/{registryId}/records/{recordId}/status", 202] }, () => UpdateRegistryRecordStatusRequest$, () => UpdateRegistryRecordStatusResponse$
|
|
968
|
+
];
|
|
969
|
+
|
|
970
|
+
const getRuntimeConfig$1 = (config) => {
|
|
971
|
+
return {
|
|
972
|
+
apiVersion: "2025-12-01",
|
|
973
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
974
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
975
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
976
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
977
|
+
extensions: config?.extensions ?? [],
|
|
978
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAgentRegistryControlHttpAuthSchemeProvider,
|
|
979
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
980
|
+
{
|
|
981
|
+
schemeId: "aws.auth#sigv4",
|
|
982
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
983
|
+
signer: new AwsSdkSigV4Signer(),
|
|
984
|
+
},
|
|
985
|
+
],
|
|
986
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
987
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
988
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
989
|
+
defaultNamespace: "com.amazonaws.agentregistrycontrol",
|
|
990
|
+
errorTypeRegistries,
|
|
991
|
+
version: "2025-12-01",
|
|
992
|
+
serviceTarget: "AgentRegistryControl",
|
|
993
|
+
},
|
|
994
|
+
serviceId: config?.serviceId ?? "Agent Registry Control",
|
|
995
|
+
sha256: config?.sha256 ?? Sha256,
|
|
996
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
997
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
998
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
999
|
+
};
|
|
1000
|
+
};
|
|
1001
|
+
|
|
1002
|
+
const getRuntimeConfig = (config) => {
|
|
1003
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1004
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1005
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1006
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1007
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1008
|
+
const loaderConfig = {
|
|
1009
|
+
profile: config?.profile,
|
|
1010
|
+
logger: clientSharedValues.logger,
|
|
1011
|
+
};
|
|
1012
|
+
return {
|
|
1013
|
+
...clientSharedValues,
|
|
1014
|
+
...config,
|
|
1015
|
+
runtime: "node",
|
|
1016
|
+
defaultsMode,
|
|
1017
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1018
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1019
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1020
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1021
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1022
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1023
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1024
|
+
retryMode: config?.retryMode ??
|
|
1025
|
+
loadConfig({
|
|
1026
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1027
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1028
|
+
}, config),
|
|
1029
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1030
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1031
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1032
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1033
|
+
};
|
|
1034
|
+
};
|
|
1035
|
+
|
|
1036
|
+
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
1037
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
1038
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
1039
|
+
let _credentials = runtimeConfig.credentials;
|
|
1040
|
+
return {
|
|
1041
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
1042
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
1043
|
+
if (index === -1) {
|
|
1044
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
1045
|
+
}
|
|
1046
|
+
else {
|
|
1047
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
httpAuthSchemes() {
|
|
1051
|
+
return _httpAuthSchemes;
|
|
1052
|
+
},
|
|
1053
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
1054
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
1055
|
+
},
|
|
1056
|
+
httpAuthSchemeProvider() {
|
|
1057
|
+
return _httpAuthSchemeProvider;
|
|
1058
|
+
},
|
|
1059
|
+
setCredentials(credentials) {
|
|
1060
|
+
_credentials = credentials;
|
|
1061
|
+
},
|
|
1062
|
+
credentials() {
|
|
1063
|
+
return _credentials;
|
|
1064
|
+
},
|
|
1065
|
+
};
|
|
1066
|
+
};
|
|
1067
|
+
const resolveHttpAuthRuntimeConfig = (config) => {
|
|
1068
|
+
return {
|
|
1069
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
1070
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
1071
|
+
credentials: config.credentials(),
|
|
1072
|
+
};
|
|
1073
|
+
};
|
|
1074
|
+
|
|
1075
|
+
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
1076
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
1077
|
+
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
1078
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
1079
|
+
};
|
|
1080
|
+
|
|
1081
|
+
class AgentRegistryControlClient extends Client {
|
|
1082
|
+
config;
|
|
1083
|
+
constructor(...[configuration]) {
|
|
1084
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
1085
|
+
super(_config_0);
|
|
1086
|
+
this.initConfig = _config_0;
|
|
1087
|
+
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
1088
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
1089
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
1090
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
1091
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
1092
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
1093
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
1094
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
1095
|
+
this.config = _config_8;
|
|
1096
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
1097
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
1098
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
1099
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
1100
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
1101
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
1102
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
1103
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
1104
|
+
httpAuthSchemeParametersProvider: defaultAgentRegistryControlHttpAuthSchemeParametersProvider,
|
|
1105
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
1106
|
+
"aws.auth#sigv4": config.credentials,
|
|
1107
|
+
}),
|
|
1108
|
+
}));
|
|
1109
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
1110
|
+
}
|
|
1111
|
+
destroy() {
|
|
1112
|
+
super.destroy();
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
const command = makeBuilder(commonParams, "AgentRegistryControl", "AgentRegistryControlClient", getEndpointPlugin);
|
|
1117
|
+
const _ep0 = {};
|
|
1118
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
1119
|
+
|
|
1120
|
+
class CreateRegistryCommand extends command(_ep0, _mw0, "CreateRegistry", CreateRegistry$) {
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
class CreateRegistryRecordCommand extends command(_ep0, _mw0, "CreateRegistryRecord", CreateRegistryRecord$) {
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
class DeleteRegistryCommand extends command(_ep0, _mw0, "DeleteRegistry", DeleteRegistry$) {
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
class DeleteRegistryRecordCommand extends command(_ep0, _mw0, "DeleteRegistryRecord", DeleteRegistryRecord$) {
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
class GetRegistryCommand extends command(_ep0, _mw0, "GetRegistry", GetRegistry$) {
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
class GetRegistryRecordCommand extends command(_ep0, _mw0, "GetRegistryRecord", GetRegistryRecord$) {
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
class ListRegistriesCommand extends command(_ep0, _mw0, "ListRegistries", ListRegistries$) {
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
class ListRegistryRecordsCommand extends command(_ep0, _mw0, "ListRegistryRecords", ListRegistryRecords$) {
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
class SubmitRegistryRecordForApprovalCommand extends command(_ep0, _mw0, "SubmitRegistryRecordForApproval", SubmitRegistryRecordForApproval$) {
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
class UpdateRegistryCommand extends command(_ep0, _mw0, "UpdateRegistry", UpdateRegistry$) {
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
class UpdateRegistryRecordCommand extends command(_ep0, _mw0, "UpdateRegistryRecord", UpdateRegistryRecord$) {
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
class UpdateRegistryRecordStatusCommand extends command(_ep0, _mw0, "UpdateRegistryRecordStatus", UpdateRegistryRecordStatus$) {
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
const paginateListRegistries = createPaginator(AgentRegistryControlClient, ListRegistriesCommand, "nextToken", "nextToken", "maxResults");
|
|
1166
|
+
|
|
1167
|
+
const paginateListRegistryRecords = createPaginator(AgentRegistryControlClient, ListRegistryRecordsCommand, "nextToken", "nextToken", "maxResults");
|
|
1168
|
+
|
|
1169
|
+
const checkState$1 = async (client, input) => {
|
|
1170
|
+
let reason;
|
|
1171
|
+
try {
|
|
1172
|
+
let result = await client.send(new GetRegistryCommand(input));
|
|
1173
|
+
reason = result;
|
|
1174
|
+
try {
|
|
1175
|
+
const returnComparator = () => {
|
|
1176
|
+
return result.status;
|
|
1177
|
+
};
|
|
1178
|
+
if (returnComparator() === "READY") {
|
|
1179
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1180
|
+
}
|
|
1181
|
+
}
|
|
1182
|
+
catch (e) { }
|
|
1183
|
+
try {
|
|
1184
|
+
const returnComparator = () => {
|
|
1185
|
+
return result.status;
|
|
1186
|
+
};
|
|
1187
|
+
if (returnComparator() === "CREATE_FAILED") {
|
|
1188
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
catch (e) { }
|
|
1192
|
+
try {
|
|
1193
|
+
const returnComparator = () => {
|
|
1194
|
+
return result.status;
|
|
1195
|
+
};
|
|
1196
|
+
if (returnComparator() === "UPDATE_FAILED") {
|
|
1197
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
catch (e) { }
|
|
1201
|
+
try {
|
|
1202
|
+
const returnComparator = () => {
|
|
1203
|
+
return result.status;
|
|
1204
|
+
};
|
|
1205
|
+
if (returnComparator() === "DELETE_FAILED") {
|
|
1206
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
catch (e) { }
|
|
1210
|
+
}
|
|
1211
|
+
catch (exception) {
|
|
1212
|
+
reason = exception;
|
|
1213
|
+
}
|
|
1214
|
+
return { state: WaiterState.RETRY, reason };
|
|
1215
|
+
};
|
|
1216
|
+
const waitForRegistryReady = async (params, input) => {
|
|
1217
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
1218
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1219
|
+
};
|
|
1220
|
+
const waitUntilRegistryReady = async (params, input) => {
|
|
1221
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
1222
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1223
|
+
return checkExceptions(result);
|
|
1224
|
+
};
|
|
1225
|
+
|
|
1226
|
+
const checkState = async (client, input) => {
|
|
1227
|
+
let reason;
|
|
1228
|
+
try {
|
|
1229
|
+
let result = await client.send(new GetRegistryRecordCommand(input));
|
|
1230
|
+
reason = result;
|
|
1231
|
+
try {
|
|
1232
|
+
const returnComparator = () => {
|
|
1233
|
+
return result.status;
|
|
1234
|
+
};
|
|
1235
|
+
if (returnComparator() === "APPROVED") {
|
|
1236
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1237
|
+
}
|
|
1238
|
+
}
|
|
1239
|
+
catch (e) { }
|
|
1240
|
+
try {
|
|
1241
|
+
const returnComparator = () => {
|
|
1242
|
+
return result.status;
|
|
1243
|
+
};
|
|
1244
|
+
if (returnComparator() === "REJECTED") {
|
|
1245
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1246
|
+
}
|
|
1247
|
+
}
|
|
1248
|
+
catch (e) { }
|
|
1249
|
+
try {
|
|
1250
|
+
const returnComparator = () => {
|
|
1251
|
+
return result.status;
|
|
1252
|
+
};
|
|
1253
|
+
if (returnComparator() === "CREATE_FAILED") {
|
|
1254
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1255
|
+
}
|
|
1256
|
+
}
|
|
1257
|
+
catch (e) { }
|
|
1258
|
+
try {
|
|
1259
|
+
const returnComparator = () => {
|
|
1260
|
+
return result.status;
|
|
1261
|
+
};
|
|
1262
|
+
if (returnComparator() === "UPDATE_FAILED") {
|
|
1263
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
catch (e) { }
|
|
1267
|
+
}
|
|
1268
|
+
catch (exception) {
|
|
1269
|
+
reason = exception;
|
|
1270
|
+
}
|
|
1271
|
+
return { state: WaiterState.RETRY, reason };
|
|
1272
|
+
};
|
|
1273
|
+
const waitForRegistryRecordApproved = async (params, input) => {
|
|
1274
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
1275
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1276
|
+
};
|
|
1277
|
+
const waitUntilRegistryRecordApproved = async (params, input) => {
|
|
1278
|
+
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
1279
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1280
|
+
return checkExceptions(result);
|
|
1281
|
+
};
|
|
1282
|
+
|
|
1283
|
+
const commands = {
|
|
1284
|
+
CreateRegistryCommand,
|
|
1285
|
+
CreateRegistryRecordCommand,
|
|
1286
|
+
DeleteRegistryCommand,
|
|
1287
|
+
DeleteRegistryRecordCommand,
|
|
1288
|
+
GetRegistryCommand,
|
|
1289
|
+
GetRegistryRecordCommand,
|
|
1290
|
+
ListRegistriesCommand,
|
|
1291
|
+
ListRegistryRecordsCommand,
|
|
1292
|
+
ListTagsForResourceCommand,
|
|
1293
|
+
SubmitRegistryRecordForApprovalCommand,
|
|
1294
|
+
TagResourceCommand,
|
|
1295
|
+
UntagResourceCommand,
|
|
1296
|
+
UpdateRegistryCommand,
|
|
1297
|
+
UpdateRegistryRecordCommand,
|
|
1298
|
+
UpdateRegistryRecordStatusCommand,
|
|
1299
|
+
};
|
|
1300
|
+
const paginators = {
|
|
1301
|
+
paginateListRegistries,
|
|
1302
|
+
paginateListRegistryRecords,
|
|
1303
|
+
};
|
|
1304
|
+
const waiters = {
|
|
1305
|
+
waitUntilRegistryReady,
|
|
1306
|
+
waitUntilRegistryRecordApproved,
|
|
1307
|
+
};
|
|
1308
|
+
class AgentRegistryControl extends AgentRegistryControlClient {
|
|
1309
|
+
}
|
|
1310
|
+
createAggregatedClient(commands, AgentRegistryControl, { paginators, waiters });
|
|
1311
|
+
|
|
1312
|
+
const RegistryRecordOAuthGrantType = {
|
|
1313
|
+
CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",
|
|
1314
|
+
};
|
|
1315
|
+
const RegistryRecordCredentialProviderType = {
|
|
1316
|
+
IAM: "IAM",
|
|
1317
|
+
OAUTH: "OAUTH",
|
|
1318
|
+
};
|
|
1319
|
+
const ValidationExceptionReason = {
|
|
1320
|
+
CANNOT_PARSE: "CannotParse",
|
|
1321
|
+
FIELD_VALIDATION_FAILED: "FieldValidationFailed",
|
|
1322
|
+
IDEMPOTENT_PARAMETER_MISMATCH_EXCEPTION: "IdempotentParameterMismatchException",
|
|
1323
|
+
RESOURCE_CONFLICT: "ResourceConflict",
|
|
1324
|
+
ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession",
|
|
1325
|
+
};
|
|
1326
|
+
const RecordType = {
|
|
1327
|
+
AGENT: "AGENT",
|
|
1328
|
+
CUSTOM: "CUSTOM",
|
|
1329
|
+
MCP: "MCP",
|
|
1330
|
+
SKILL: "SKILL",
|
|
1331
|
+
};
|
|
1332
|
+
const RegistryRecordStatus = {
|
|
1333
|
+
APPROVED: "APPROVED",
|
|
1334
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
1335
|
+
CREATING: "CREATING",
|
|
1336
|
+
DEPRECATED: "DEPRECATED",
|
|
1337
|
+
DRAFT: "DRAFT",
|
|
1338
|
+
PENDING_APPROVAL: "PENDING_APPROVAL",
|
|
1339
|
+
REJECTED: "REJECTED",
|
|
1340
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
1341
|
+
UPDATING: "UPDATING",
|
|
1342
|
+
};
|
|
1343
|
+
const RegistryRecordFilterName = {
|
|
1344
|
+
NAME: "name",
|
|
1345
|
+
RECORD_TYPE: "recordType",
|
|
1346
|
+
STATUS: "status",
|
|
1347
|
+
};
|
|
1348
|
+
const AutoApprovalRule = {
|
|
1349
|
+
APPROVE_ALL: "APPROVE_ALL",
|
|
1350
|
+
};
|
|
1351
|
+
const ClaimMatchOperatorType = {
|
|
1352
|
+
CONTAINS: "CONTAINS",
|
|
1353
|
+
CONTAINS_ANY: "CONTAINS_ANY",
|
|
1354
|
+
EQUALS: "EQUALS",
|
|
1355
|
+
};
|
|
1356
|
+
const InboundTokenClaimValueType = {
|
|
1357
|
+
STRING: "STRING",
|
|
1358
|
+
STRING_ARRAY: "STRING_ARRAY",
|
|
1359
|
+
};
|
|
1360
|
+
const EndpointIpAddressType = {
|
|
1361
|
+
IPV4: "IPV4",
|
|
1362
|
+
IPV6: "IPV6",
|
|
1363
|
+
};
|
|
1364
|
+
const RegistryAuthorizerType = {
|
|
1365
|
+
AWS_IAM: "AWS_IAM",
|
|
1366
|
+
CUSTOM_JWT: "CUSTOM_JWT",
|
|
1367
|
+
};
|
|
1368
|
+
const RegistryStatus = {
|
|
1369
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
1370
|
+
CREATING: "CREATING",
|
|
1371
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
1372
|
+
DELETING: "DELETING",
|
|
1373
|
+
READY: "READY",
|
|
1374
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
1375
|
+
UPDATING: "UPDATING",
|
|
1376
|
+
};
|
|
1377
|
+
const RegistryFilterName = {
|
|
1378
|
+
DISCOVERY_CONFIGURATION_AUTHORIZER_TYPE: "discoveryConfiguration.authorizerType",
|
|
1379
|
+
STATUS: "status",
|
|
1380
|
+
};
|
|
1381
|
+
|
|
1382
|
+
exports.A2aAgentCardDescriptor$ = A2aAgentCardDescriptor$;
|
|
1383
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1384
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1385
|
+
exports.AgentRegistryControl = AgentRegistryControl;
|
|
1386
|
+
exports.AgentRegistryControlClient = AgentRegistryControlClient;
|
|
1387
|
+
exports.AgentRegistryControlServiceException = AgentRegistryControlServiceException;
|
|
1388
|
+
exports.AgentRegistryControlServiceException$ = AgentRegistryControlServiceException$;
|
|
1389
|
+
exports.AgentSkillsAdditionalData$ = AgentSkillsAdditionalData$;
|
|
1390
|
+
exports.AgentSkillsDefinitionDescriptor$ = AgentSkillsDefinitionDescriptor$;
|
|
1391
|
+
exports.AgentSkillsMdDescriptor$ = AgentSkillsMdDescriptor$;
|
|
1392
|
+
exports.ApprovalConfiguration$ = ApprovalConfiguration$;
|
|
1393
|
+
exports.AuthorizerConfiguration$ = AuthorizerConfiguration$;
|
|
1394
|
+
exports.AuthorizingClaimMatchValueType$ = AuthorizingClaimMatchValueType$;
|
|
1395
|
+
exports.AutoApprovalRule = AutoApprovalRule;
|
|
1396
|
+
exports.ClaimMatchOperatorType = ClaimMatchOperatorType;
|
|
1397
|
+
exports.ClaimMatchValueType$ = ClaimMatchValueType$;
|
|
1398
|
+
exports.ConflictException = ConflictException;
|
|
1399
|
+
exports.ConflictException$ = ConflictException$;
|
|
1400
|
+
exports.CreateRegistry$ = CreateRegistry$;
|
|
1401
|
+
exports.CreateRegistryCommand = CreateRegistryCommand;
|
|
1402
|
+
exports.CreateRegistryRecord$ = CreateRegistryRecord$;
|
|
1403
|
+
exports.CreateRegistryRecordCommand = CreateRegistryRecordCommand;
|
|
1404
|
+
exports.CreateRegistryRecordRequest$ = CreateRegistryRecordRequest$;
|
|
1405
|
+
exports.CreateRegistryRecordResponse$ = CreateRegistryRecordResponse$;
|
|
1406
|
+
exports.CreateRegistryRequest$ = CreateRegistryRequest$;
|
|
1407
|
+
exports.CreateRegistryResponse$ = CreateRegistryResponse$;
|
|
1408
|
+
exports.CustomClaimValidationType$ = CustomClaimValidationType$;
|
|
1409
|
+
exports.CustomDescriptor$ = CustomDescriptor$;
|
|
1410
|
+
exports.CustomJWTAuthorizerConfiguration$ = CustomJWTAuthorizerConfiguration$;
|
|
1411
|
+
exports.DeleteRegistry$ = DeleteRegistry$;
|
|
1412
|
+
exports.DeleteRegistryCommand = DeleteRegistryCommand;
|
|
1413
|
+
exports.DeleteRegistryRecord$ = DeleteRegistryRecord$;
|
|
1414
|
+
exports.DeleteRegistryRecordCommand = DeleteRegistryRecordCommand;
|
|
1415
|
+
exports.DeleteRegistryRecordRequest$ = DeleteRegistryRecordRequest$;
|
|
1416
|
+
exports.DeleteRegistryRecordResponse$ = DeleteRegistryRecordResponse$;
|
|
1417
|
+
exports.DeleteRegistryRequest$ = DeleteRegistryRequest$;
|
|
1418
|
+
exports.DeleteRegistryResponse$ = DeleteRegistryResponse$;
|
|
1419
|
+
exports.DescriptorSource$ = DescriptorSource$;
|
|
1420
|
+
exports.DescriptorSourceFromUrl$ = DescriptorSourceFromUrl$;
|
|
1421
|
+
exports.Descriptors$ = Descriptors$;
|
|
1422
|
+
exports.DiscoveryConfiguration$ = DiscoveryConfiguration$;
|
|
1423
|
+
exports.EndpointIpAddressType = EndpointIpAddressType;
|
|
1424
|
+
exports.GetRegistry$ = GetRegistry$;
|
|
1425
|
+
exports.GetRegistryCommand = GetRegistryCommand;
|
|
1426
|
+
exports.GetRegistryRecord$ = GetRegistryRecord$;
|
|
1427
|
+
exports.GetRegistryRecordCommand = GetRegistryRecordCommand;
|
|
1428
|
+
exports.GetRegistryRecordRequest$ = GetRegistryRecordRequest$;
|
|
1429
|
+
exports.GetRegistryRecordResponse$ = GetRegistryRecordResponse$;
|
|
1430
|
+
exports.GetRegistryRequest$ = GetRegistryRequest$;
|
|
1431
|
+
exports.GetRegistryResponse$ = GetRegistryResponse$;
|
|
1432
|
+
exports.InboundTokenClaimValueType = InboundTokenClaimValueType;
|
|
1433
|
+
exports.InternalServerException = InternalServerException;
|
|
1434
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1435
|
+
exports.ListRegistries$ = ListRegistries$;
|
|
1436
|
+
exports.ListRegistriesCommand = ListRegistriesCommand;
|
|
1437
|
+
exports.ListRegistriesRequest$ = ListRegistriesRequest$;
|
|
1438
|
+
exports.ListRegistriesResponse$ = ListRegistriesResponse$;
|
|
1439
|
+
exports.ListRegistryRecords$ = ListRegistryRecords$;
|
|
1440
|
+
exports.ListRegistryRecordsCommand = ListRegistryRecordsCommand;
|
|
1441
|
+
exports.ListRegistryRecordsRequest$ = ListRegistryRecordsRequest$;
|
|
1442
|
+
exports.ListRegistryRecordsResponse$ = ListRegistryRecordsResponse$;
|
|
1443
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1444
|
+
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1445
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1446
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1447
|
+
exports.ManagedVpcResource$ = ManagedVpcResource$;
|
|
1448
|
+
exports.McpServerAdditionalData$ = McpServerAdditionalData$;
|
|
1449
|
+
exports.McpServerDescriptor$ = McpServerDescriptor$;
|
|
1450
|
+
exports.McpToolsDescriptor$ = McpToolsDescriptor$;
|
|
1451
|
+
exports.PrivateEndpoint$ = PrivateEndpoint$;
|
|
1452
|
+
exports.PrivateEndpointOverride$ = PrivateEndpointOverride$;
|
|
1453
|
+
exports.RecordType = RecordType;
|
|
1454
|
+
exports.RegistryAuthorizerType = RegistryAuthorizerType;
|
|
1455
|
+
exports.RegistryFilter$ = RegistryFilter$;
|
|
1456
|
+
exports.RegistryFilterName = RegistryFilterName;
|
|
1457
|
+
exports.RegistryRecordCredentialProviderConfiguration$ = RegistryRecordCredentialProviderConfiguration$;
|
|
1458
|
+
exports.RegistryRecordCredentialProviderType = RegistryRecordCredentialProviderType;
|
|
1459
|
+
exports.RegistryRecordCredentialProviderUnion$ = RegistryRecordCredentialProviderUnion$;
|
|
1460
|
+
exports.RegistryRecordFilter$ = RegistryRecordFilter$;
|
|
1461
|
+
exports.RegistryRecordFilterName = RegistryRecordFilterName;
|
|
1462
|
+
exports.RegistryRecordIamCredentialProvider$ = RegistryRecordIamCredentialProvider$;
|
|
1463
|
+
exports.RegistryRecordOAuthCredentialProvider$ = RegistryRecordOAuthCredentialProvider$;
|
|
1464
|
+
exports.RegistryRecordOAuthGrantType = RegistryRecordOAuthGrantType;
|
|
1465
|
+
exports.RegistryRecordStatus = RegistryRecordStatus;
|
|
1466
|
+
exports.RegistryRecordSummary$ = RegistryRecordSummary$;
|
|
1467
|
+
exports.RegistryStatus = RegistryStatus;
|
|
1468
|
+
exports.RegistrySummary$ = RegistrySummary$;
|
|
1469
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1470
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1471
|
+
exports.SelfManagedLatticeResource$ = SelfManagedLatticeResource$;
|
|
1472
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1473
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1474
|
+
exports.SubmitRegistryRecordForApproval$ = SubmitRegistryRecordForApproval$;
|
|
1475
|
+
exports.SubmitRegistryRecordForApprovalCommand = SubmitRegistryRecordForApprovalCommand;
|
|
1476
|
+
exports.SubmitRegistryRecordForApprovalRequest$ = SubmitRegistryRecordForApprovalRequest$;
|
|
1477
|
+
exports.SubmitRegistryRecordForApprovalResponse$ = SubmitRegistryRecordForApprovalResponse$;
|
|
1478
|
+
exports.TagResource$ = TagResource$;
|
|
1479
|
+
exports.TagResourceCommand = TagResourceCommand;
|
|
1480
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1481
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1482
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1483
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1484
|
+
exports.UntagResource$ = UntagResource$;
|
|
1485
|
+
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1486
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1487
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1488
|
+
exports.UpdateRegistry$ = UpdateRegistry$;
|
|
1489
|
+
exports.UpdateRegistryCommand = UpdateRegistryCommand;
|
|
1490
|
+
exports.UpdateRegistryRecord$ = UpdateRegistryRecord$;
|
|
1491
|
+
exports.UpdateRegistryRecordCommand = UpdateRegistryRecordCommand;
|
|
1492
|
+
exports.UpdateRegistryRecordRequest$ = UpdateRegistryRecordRequest$;
|
|
1493
|
+
exports.UpdateRegistryRecordResponse$ = UpdateRegistryRecordResponse$;
|
|
1494
|
+
exports.UpdateRegistryRecordStatus$ = UpdateRegistryRecordStatus$;
|
|
1495
|
+
exports.UpdateRegistryRecordStatusCommand = UpdateRegistryRecordStatusCommand;
|
|
1496
|
+
exports.UpdateRegistryRecordStatusRequest$ = UpdateRegistryRecordStatusRequest$;
|
|
1497
|
+
exports.UpdateRegistryRecordStatusResponse$ = UpdateRegistryRecordStatusResponse$;
|
|
1498
|
+
exports.UpdateRegistryRequest$ = UpdateRegistryRequest$;
|
|
1499
|
+
exports.UpdateRegistryResponse$ = UpdateRegistryResponse$;
|
|
1500
|
+
exports.UpdatedA2aAgentCardDescriptor$ = UpdatedA2aAgentCardDescriptor$;
|
|
1501
|
+
exports.UpdatedA2aAgentCardDescriptorFields$ = UpdatedA2aAgentCardDescriptorFields$;
|
|
1502
|
+
exports.UpdatedAgentSkillsAdditionalData$ = UpdatedAgentSkillsAdditionalData$;
|
|
1503
|
+
exports.UpdatedAgentSkillsAdditionalDataFields$ = UpdatedAgentSkillsAdditionalDataFields$;
|
|
1504
|
+
exports.UpdatedAgentSkillsDefinitionDescriptor$ = UpdatedAgentSkillsDefinitionDescriptor$;
|
|
1505
|
+
exports.UpdatedAgentSkillsDefinitionDescriptorFields$ = UpdatedAgentSkillsDefinitionDescriptorFields$;
|
|
1506
|
+
exports.UpdatedAgentSkillsMdDescriptor$ = UpdatedAgentSkillsMdDescriptor$;
|
|
1507
|
+
exports.UpdatedAgentSkillsMdDescriptorFields$ = UpdatedAgentSkillsMdDescriptorFields$;
|
|
1508
|
+
exports.UpdatedApprovalConfiguration$ = UpdatedApprovalConfiguration$;
|
|
1509
|
+
exports.UpdatedAuthorizerConfiguration$ = UpdatedAuthorizerConfiguration$;
|
|
1510
|
+
exports.UpdatedCustomDescriptor$ = UpdatedCustomDescriptor$;
|
|
1511
|
+
exports.UpdatedCustomDescriptorFields$ = UpdatedCustomDescriptorFields$;
|
|
1512
|
+
exports.UpdatedDataSchemaVersion$ = UpdatedDataSchemaVersion$;
|
|
1513
|
+
exports.UpdatedDescription$ = UpdatedDescription$;
|
|
1514
|
+
exports.UpdatedDescriptorData$ = UpdatedDescriptorData$;
|
|
1515
|
+
exports.UpdatedDescriptorSource$ = UpdatedDescriptorSource$;
|
|
1516
|
+
exports.UpdatedDescriptors$ = UpdatedDescriptors$;
|
|
1517
|
+
exports.UpdatedDescriptorsFields$ = UpdatedDescriptorsFields$;
|
|
1518
|
+
exports.UpdatedDiscoveryConfiguration$ = UpdatedDiscoveryConfiguration$;
|
|
1519
|
+
exports.UpdatedDisplayName$ = UpdatedDisplayName$;
|
|
1520
|
+
exports.UpdatedMcpServerAdditionalData$ = UpdatedMcpServerAdditionalData$;
|
|
1521
|
+
exports.UpdatedMcpServerAdditionalDataFields$ = UpdatedMcpServerAdditionalDataFields$;
|
|
1522
|
+
exports.UpdatedMcpServerDescriptor$ = UpdatedMcpServerDescriptor$;
|
|
1523
|
+
exports.UpdatedMcpServerDescriptorFields$ = UpdatedMcpServerDescriptorFields$;
|
|
1524
|
+
exports.UpdatedMcpToolsDescriptor$ = UpdatedMcpToolsDescriptor$;
|
|
1525
|
+
exports.UpdatedMcpToolsDescriptorFields$ = UpdatedMcpToolsDescriptorFields$;
|
|
1526
|
+
exports.ValidationException = ValidationException;
|
|
1527
|
+
exports.ValidationException$ = ValidationException$;
|
|
1528
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1529
|
+
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1530
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1531
|
+
exports.paginateListRegistries = paginateListRegistries;
|
|
1532
|
+
exports.paginateListRegistryRecords = paginateListRegistryRecords;
|
|
1533
|
+
exports.waitForRegistryReady = waitForRegistryReady;
|
|
1534
|
+
exports.waitForRegistryRecordApproved = waitForRegistryRecordApproved;
|
|
1535
|
+
exports.waitUntilRegistryReady = waitUntilRegistryReady;
|
|
1536
|
+
exports.waitUntilRegistryRecordApproved = waitUntilRegistryRecordApproved;
|