@aws-sdk/client-agent-registry-control 3.1120.0 → 3.1122.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/README.md +1 -1
- package/dist-cjs/index.js +223 -43
- package/dist-es/models/enums.js +36 -12
- package/dist-es/schemas/schemas_0.js +163 -30
- package/dist-types/AgentRegistryControl.d.ts +1 -1
- package/dist-types/AgentRegistryControlClient.d.ts +1 -1
- package/dist-types/commands/CreateRegistryCommand.d.ts +7 -0
- package/dist-types/commands/CreateRegistryRecordCommand.d.ts +228 -4
- package/dist-types/commands/GetRegistryCommand.d.ts +11 -0
- package/dist-types/commands/GetRegistryRecordCommand.d.ts +229 -1
- package/dist-types/commands/ListRegistriesCommand.d.ts +8 -0
- package/dist-types/commands/ListRegistryRecordsCommand.d.ts +10 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRegistryCommand.d.ts +17 -0
- package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +464 -2
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +101 -29
- package/dist-types/models/models_0.d.ts +773 -362
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/models/enums.d.ts +50 -18
- package/dist-types/ts3.4/models/models_0.d.ts +231 -115
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +1 -1
package/dist-es/models/enums.js
CHANGED
|
@@ -5,6 +5,28 @@ export const RegistryRecordCredentialProviderType = {
|
|
|
5
5
|
IAM: "IAM",
|
|
6
6
|
OAUTH: "OAUTH",
|
|
7
7
|
};
|
|
8
|
+
export const AgentCoreGatewayProtocolType = {
|
|
9
|
+
MCP: "MCP",
|
|
10
|
+
};
|
|
11
|
+
export const ClaimMatchOperatorType = {
|
|
12
|
+
CONTAINS: "CONTAINS",
|
|
13
|
+
CONTAINS_ANY: "CONTAINS_ANY",
|
|
14
|
+
EQUALS: "EQUALS",
|
|
15
|
+
};
|
|
16
|
+
export const InboundTokenClaimValueType = {
|
|
17
|
+
STRING: "STRING",
|
|
18
|
+
STRING_ARRAY: "STRING_ARRAY",
|
|
19
|
+
};
|
|
20
|
+
export const EndpointIpAddressType = {
|
|
21
|
+
IPV4: "IPV4",
|
|
22
|
+
IPV6: "IPV6",
|
|
23
|
+
};
|
|
24
|
+
export const AgentCoreRuntimeServerProtocol = {
|
|
25
|
+
A2A: "A2A",
|
|
26
|
+
AGUI: "AGUI",
|
|
27
|
+
HTTP: "HTTP",
|
|
28
|
+
MCP: "MCP",
|
|
29
|
+
};
|
|
8
30
|
export const ValidationExceptionReason = {
|
|
9
31
|
CANNOT_PARSE: "CannotParse",
|
|
10
32
|
FIELD_VALIDATION_FAILED: "FieldValidationFailed",
|
|
@@ -12,9 +34,17 @@ export const ValidationExceptionReason = {
|
|
|
12
34
|
RESOURCE_CONFLICT: "ResourceConflict",
|
|
13
35
|
ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession",
|
|
14
36
|
};
|
|
37
|
+
export const ProvenanceRelation = {
|
|
38
|
+
DETECTED_FROM: "DETECTED_FROM",
|
|
39
|
+
};
|
|
40
|
+
export const SourceType = {
|
|
41
|
+
AWS_BEDROCK_AGENTCORE_GATEWAY: "AWS::BedrockAgentCore::Gateway",
|
|
42
|
+
AWS_BEDROCK_AGENTCORE_RUNTIME: "AWS::BedrockAgentCore::Runtime",
|
|
43
|
+
};
|
|
15
44
|
export const RecordType = {
|
|
16
45
|
AGENT: "AGENT",
|
|
17
46
|
CUSTOM: "CUSTOM",
|
|
47
|
+
GATEWAY: "GATEWAY",
|
|
18
48
|
MCP: "MCP",
|
|
19
49
|
SKILL: "SKILL",
|
|
20
50
|
};
|
|
@@ -37,18 +67,8 @@ export const RegistryRecordFilterName = {
|
|
|
37
67
|
export const AutoApprovalRule = {
|
|
38
68
|
APPROVE_ALL: "APPROVE_ALL",
|
|
39
69
|
};
|
|
40
|
-
export const
|
|
41
|
-
|
|
42
|
-
CONTAINS_ANY: "CONTAINS_ANY",
|
|
43
|
-
EQUALS: "EQUALS",
|
|
44
|
-
};
|
|
45
|
-
export const InboundTokenClaimValueType = {
|
|
46
|
-
STRING: "STRING",
|
|
47
|
-
STRING_ARRAY: "STRING_ARRAY",
|
|
48
|
-
};
|
|
49
|
-
export const EndpointIpAddressType = {
|
|
50
|
-
IPV4: "IPV4",
|
|
51
|
-
IPV6: "IPV6",
|
|
70
|
+
export const AutoDetectionScope = {
|
|
71
|
+
ORGANIZATION: "ORGANIZATION",
|
|
52
72
|
};
|
|
53
73
|
export const RegistryAuthorizerType = {
|
|
54
74
|
AWS_IAM: "AWS_IAM",
|
|
@@ -63,6 +83,10 @@ export const RegistryStatus = {
|
|
|
63
83
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
64
84
|
UPDATING: "UPDATING",
|
|
65
85
|
};
|
|
86
|
+
export const AutoDetectionStatus = {
|
|
87
|
+
ACTIVE: "ACTIVE",
|
|
88
|
+
INACTIVE: "INACTIVE",
|
|
89
|
+
};
|
|
66
90
|
export const RegistryFilterName = {
|
|
67
91
|
DISCOVERY_CONFIGURATION_AUTHORIZER_TYPE: "discoveryConfiguration.authorizerType",
|
|
68
92
|
STATUS: "status",
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
const _AACD = "A2aAgentCardDescriptor";
|
|
2
2
|
const _AC = "ApprovalConfiguration";
|
|
3
|
+
const _ACGSD = "AgentCoreGatewaySourceDetails";
|
|
3
4
|
const _ACMVT = "AuthorizingClaimMatchValueType";
|
|
5
|
+
const _ACRPC = "AgentCoreRuntimeProtocolConfiguration";
|
|
6
|
+
const _ACRSD = "AgentCoreRuntimeSourceDetails";
|
|
4
7
|
const _ACu = "AuthorizerConfiguration";
|
|
8
|
+
const _AD = "AutoDetection";
|
|
9
|
+
const _ADC = "AutoDetectionConfiguration";
|
|
5
10
|
const _ADE = "AccessDeniedException";
|
|
6
11
|
const _ASAD = "AgentSkillsAdditionalData";
|
|
7
12
|
const _ASDD = "AgentSkillsDefinitionDescriptor";
|
|
8
13
|
const _ASMD = "AgentSkillsMdDescriptor";
|
|
14
|
+
const _AUD = "AgUiDescriptor";
|
|
9
15
|
const _CCVT = "CustomClaimValidationType";
|
|
10
16
|
const _CCVTu = "CustomClaimValidationsType";
|
|
11
17
|
const _CD = "CustomDescriptor";
|
|
@@ -30,12 +36,14 @@ const _DRRel = "DeleteRegistryRecord";
|
|
|
30
36
|
const _DS = "DescriptorSource";
|
|
31
37
|
const _DSFU = "DescriptorSourceFromUrl";
|
|
32
38
|
const _De = "Descriptors";
|
|
39
|
+
const _EC = "EncryptionConfiguration";
|
|
33
40
|
const _GR = "GetRegistry";
|
|
34
41
|
const _GRR = "GetRegistryRequest";
|
|
35
42
|
const _GRRR = "GetRegistryRecordRequest";
|
|
36
43
|
const _GRRRe = "GetRegistryRecordResponse";
|
|
37
44
|
const _GRRe = "GetRegistryResponse";
|
|
38
45
|
const _GRRet = "GetRegistryRecord";
|
|
46
|
+
const _HD = "HttpDescriptor";
|
|
39
47
|
const _ISE = "InternalServerException";
|
|
40
48
|
const _LR = "ListRegistries";
|
|
41
49
|
const _LRR = "ListRegistriesRequest";
|
|
@@ -50,9 +58,13 @@ const _MSAD = "McpServerAdditionalData";
|
|
|
50
58
|
const _MSD = "McpServerDescriptor";
|
|
51
59
|
const _MTD = "McpToolsDescriptor";
|
|
52
60
|
const _MVR = "ManagedVpcResource";
|
|
61
|
+
const _P = "Provenance";
|
|
53
62
|
const _PE = "PrivateEndpoint";
|
|
54
63
|
const _PEO = "PrivateEndpointOverride";
|
|
55
64
|
const _PEOr = "PrivateEndpointOverrides";
|
|
65
|
+
const _PL = "ProvenanceList";
|
|
66
|
+
const _PS = "ProvenanceSummary";
|
|
67
|
+
const _PSL = "ProvenanceSummaryList";
|
|
56
68
|
const _RF = "RegistryFilter";
|
|
57
69
|
const _RFL = "RegistryFilterList";
|
|
58
70
|
const _RNFE = "ResourceNotFoundException";
|
|
@@ -67,6 +79,7 @@ const _RRS = "RegistryRecordSummary";
|
|
|
67
79
|
const _RRSL = "RegistryRecordSummaryList";
|
|
68
80
|
const _RS = "RegistrySummary";
|
|
69
81
|
const _RSL = "RegistrySummaryList";
|
|
82
|
+
const _SD = "SourceDetails";
|
|
70
83
|
const _SMLR = "SelfManagedLatticeResource";
|
|
71
84
|
const _SQEE = "ServiceQuotaExceededException";
|
|
72
85
|
const _SRRFA = "SubmitRegistryRecordForApproval";
|
|
@@ -80,12 +93,15 @@ const _UAACD = "UpdatedA2aAgentCardDescriptor";
|
|
|
80
93
|
const _UAACDF = "UpdatedA2aAgentCardDescriptorFields";
|
|
81
94
|
const _UAC = "UpdatedApprovalConfiguration";
|
|
82
95
|
const _UACp = "UpdatedAuthorizerConfiguration";
|
|
96
|
+
const _UADC = "UpdatedAutoDetectionConfiguration";
|
|
83
97
|
const _UASAD = "UpdatedAgentSkillsAdditionalData";
|
|
84
98
|
const _UASADF = "UpdatedAgentSkillsAdditionalDataFields";
|
|
85
99
|
const _UASDD = "UpdatedAgentSkillsDefinitionDescriptor";
|
|
86
100
|
const _UASDDF = "UpdatedAgentSkillsDefinitionDescriptorFields";
|
|
87
101
|
const _UASMD = "UpdatedAgentSkillsMdDescriptor";
|
|
88
102
|
const _UASMDF = "UpdatedAgentSkillsMdDescriptorFields";
|
|
103
|
+
const _UAUD = "UpdatedAgUiDescriptor";
|
|
104
|
+
const _UAUDF = "UpdatedAgUiDescriptorFields";
|
|
89
105
|
const _UCD = "UpdatedCustomDescriptor";
|
|
90
106
|
const _UCDF = "UpdatedCustomDescriptorFields";
|
|
91
107
|
const _UD = "UpdatedDescription";
|
|
@@ -96,6 +112,8 @@ const _UDN = "UpdatedDisplayName";
|
|
|
96
112
|
const _UDS = "UpdatedDescriptorSource";
|
|
97
113
|
const _UDSV = "UpdatedDataSchemaVersion";
|
|
98
114
|
const _UDp = "UpdatedDescriptors";
|
|
115
|
+
const _UHD = "UpdatedHttpDescriptor";
|
|
116
|
+
const _UHDF = "UpdatedHttpDescriptorFields";
|
|
99
117
|
const _UMSAD = "UpdatedMcpServerAdditionalData";
|
|
100
118
|
const _UMSADF = "UpdatedMcpServerAdditionalDataFields";
|
|
101
119
|
const _UMSD = "UpdatedMcpServerDescriptor";
|
|
@@ -117,19 +135,27 @@ const _URp = "UpdateRegistry";
|
|
|
117
135
|
const _VE = "ValidationException";
|
|
118
136
|
const _VEF = "ValidationExceptionField";
|
|
119
137
|
const _VEFL = "ValidationExceptionFieldList";
|
|
138
|
+
const _WID = "WorkloadIdentityDetails";
|
|
139
|
+
const _a = "agui";
|
|
120
140
|
const _aA = "allowedAudience";
|
|
121
141
|
const _aAC = "a2aAgentCard";
|
|
122
142
|
const _aAR = "autoApprovalRules";
|
|
123
|
-
const _aC = "
|
|
143
|
+
const _aC = "authorizerConfiguration";
|
|
124
144
|
const _aCMV = "authorizingClaimMatchValue";
|
|
125
145
|
const _aCl = "allowedClients";
|
|
126
|
-
const
|
|
146
|
+
const _aCp = "approvalConfiguration";
|
|
127
147
|
const _aD = "additionalData";
|
|
148
|
+
const _aDC = "autoDetectionConfiguration";
|
|
149
|
+
const _aDu = "autoDetection";
|
|
150
|
+
const _aG = "agentcoreGateway";
|
|
151
|
+
const _aR = "agentcoreRuntime";
|
|
128
152
|
const _aS = "allowedScopes";
|
|
129
153
|
const _aSD = "agentSkillsDefinition";
|
|
130
154
|
const _aT = "authorizerType";
|
|
131
155
|
const _c = "client";
|
|
132
156
|
const _cA = "createdAt";
|
|
157
|
+
const _cB = "createdBy";
|
|
158
|
+
const _cBAD = "createdByAutoDetection";
|
|
133
159
|
const _cC = "customClaims";
|
|
134
160
|
const _cJWTA = "customJWTAuthorizer";
|
|
135
161
|
const _cMO = "claimMatchOperator";
|
|
@@ -139,6 +165,7 @@ const _cPC = "credentialProviderConfigurations";
|
|
|
139
165
|
const _cPT = "credentialProviderType";
|
|
140
166
|
const _cPu = "customParameters";
|
|
141
167
|
const _cT = "clientToken";
|
|
168
|
+
const _co = "configuration";
|
|
142
169
|
const _cu = "custom";
|
|
143
170
|
const _d = "data";
|
|
144
171
|
const _dC = "discoveryConfiguration";
|
|
@@ -149,7 +176,9 @@ const _de = "descriptors";
|
|
|
149
176
|
const _des = "description";
|
|
150
177
|
const _do = "domain";
|
|
151
178
|
const _e = "error";
|
|
179
|
+
const _eC = "encryptionConfiguration";
|
|
152
180
|
const _eIAT = "endpointIpAddressType";
|
|
181
|
+
const _en = "enabled";
|
|
153
182
|
const _f = "filters";
|
|
154
183
|
const _fL = "fieldList";
|
|
155
184
|
const _fU = "fromUrl";
|
|
@@ -160,6 +189,7 @@ const _hQ = "httpQuery";
|
|
|
160
189
|
const _iCP = "iamCredentialProvider";
|
|
161
190
|
const _iTCN = "inboundTokenClaimName";
|
|
162
191
|
const _iTCVT = "inboundTokenClaimValueType";
|
|
192
|
+
const _kKA = "kmsKeyArn";
|
|
163
193
|
const _m = "message";
|
|
164
194
|
const _mR = "maxResults";
|
|
165
195
|
const _mS = "mcpServer";
|
|
@@ -170,9 +200,13 @@ const _n = "name";
|
|
|
170
200
|
const _nT = "nextToken";
|
|
171
201
|
const _oCP = "oauthCredentialProvider";
|
|
172
202
|
const _oV = "optionalValue";
|
|
203
|
+
const _p = "provenance";
|
|
173
204
|
const _pA = "providerArn";
|
|
205
|
+
const _pC = "protocolConfiguration";
|
|
174
206
|
const _pE = "privateEndpoint";
|
|
175
207
|
const _pEO = "privateEndpointOverrides";
|
|
208
|
+
const _pSL = "provenanceSummaryList";
|
|
209
|
+
const _pT = "protocolType";
|
|
176
210
|
const _r = "reason";
|
|
177
211
|
const _rA = "recordArn";
|
|
178
212
|
const _rAe = "registryArn";
|
|
@@ -187,13 +221,19 @@ const _rT = "recordType";
|
|
|
187
221
|
const _rV = "recordVersion";
|
|
188
222
|
const _re = "registries";
|
|
189
223
|
const _reg = "region";
|
|
224
|
+
const _rel = "relation";
|
|
190
225
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.agentregistrycontrol";
|
|
226
|
+
const _sD = "sourceDetails";
|
|
191
227
|
const _sGI = "securityGroupIds";
|
|
192
228
|
const _sI = "subnetIds";
|
|
229
|
+
const _sIo = "sourceId";
|
|
193
230
|
const _sM = "skillMd";
|
|
194
231
|
const _sMLR = "selfManagedLatticeResource";
|
|
232
|
+
const _sP = "serverProtocol";
|
|
195
233
|
const _sR = "statusReason";
|
|
196
|
-
const
|
|
234
|
+
const _sT = "sourceType";
|
|
235
|
+
const _sc = "scope";
|
|
236
|
+
const _sco = "scopes";
|
|
197
237
|
const _se = "server";
|
|
198
238
|
const _ser = "service";
|
|
199
239
|
const _so = "source";
|
|
@@ -206,6 +246,8 @@ const _u = "url";
|
|
|
206
246
|
const _uA = "updatedAt";
|
|
207
247
|
const _v = "values";
|
|
208
248
|
const _vI = "vpcIdentifier";
|
|
249
|
+
const _wIA = "workloadIdentityArn";
|
|
250
|
+
const _wID = "workloadIdentityDetails";
|
|
209
251
|
const n0 = "com.amazonaws.agentregistrycontrol";
|
|
210
252
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
211
253
|
import { AgentRegistryControlServiceException } from "../models/AgentRegistryControlServiceException";
|
|
@@ -267,6 +309,21 @@ export var A2aAgentCardDescriptor$ = [3, n0, _AACD,
|
|
|
267
309
|
[_d, _dSV, _so],
|
|
268
310
|
[[() => DescriptorData, 0], 0, () => DescriptorSource$]
|
|
269
311
|
];
|
|
312
|
+
export var AgentCoreGatewaySourceDetails$ = [3, n0, _ACGSD,
|
|
313
|
+
0,
|
|
314
|
+
[_pT, _aT, _aC, _wID],
|
|
315
|
+
[0, 0, () => AuthorizerConfiguration$, () => WorkloadIdentityDetails$]
|
|
316
|
+
];
|
|
317
|
+
export var AgentCoreRuntimeProtocolConfiguration$ = [3, n0, _ACRPC,
|
|
318
|
+
0,
|
|
319
|
+
[_sP],
|
|
320
|
+
[0]
|
|
321
|
+
];
|
|
322
|
+
export var AgentCoreRuntimeSourceDetails$ = [3, n0, _ACRSD,
|
|
323
|
+
0,
|
|
324
|
+
[_pC, _aC, _wID],
|
|
325
|
+
[() => AgentCoreRuntimeProtocolConfiguration$, () => AuthorizerConfiguration$, () => WorkloadIdentityDetails$]
|
|
326
|
+
];
|
|
270
327
|
export var AgentSkillsAdditionalData$ = [3, n0, _ASAD,
|
|
271
328
|
0,
|
|
272
329
|
[_sM],
|
|
@@ -282,6 +339,11 @@ export var AgentSkillsMdDescriptor$ = [3, n0, _ASMD,
|
|
|
282
339
|
[_d, _dSV, _so],
|
|
283
340
|
[[() => DescriptorData, 0], 0, () => DescriptorSource$]
|
|
284
341
|
];
|
|
342
|
+
export var AgUiDescriptor$ = [3, n0, _AUD,
|
|
343
|
+
0,
|
|
344
|
+
[_so],
|
|
345
|
+
[() => DescriptorSource$]
|
|
346
|
+
];
|
|
285
347
|
export var ApprovalConfiguration$ = [3, n0, _AC,
|
|
286
348
|
0,
|
|
287
349
|
[_aAR],
|
|
@@ -292,10 +354,20 @@ export var AuthorizingClaimMatchValueType$ = [3, n0, _ACMVT,
|
|
|
292
354
|
[_cMV, _cMO],
|
|
293
355
|
[() => ClaimMatchValueType$, 0], 2
|
|
294
356
|
];
|
|
357
|
+
export var AutoDetection$ = [3, n0, _AD,
|
|
358
|
+
0,
|
|
359
|
+
[_co, _st, _sR],
|
|
360
|
+
[() => AutoDetectionConfiguration$, 0, 0], 2
|
|
361
|
+
];
|
|
362
|
+
export var AutoDetectionConfiguration$ = [3, n0, _ADC,
|
|
363
|
+
0,
|
|
364
|
+
[_sc, _en],
|
|
365
|
+
[0, 2], 2
|
|
366
|
+
];
|
|
295
367
|
export var CreateRegistryRecordRequest$ = [3, n0, _CRRR,
|
|
296
368
|
0,
|
|
297
|
-
[_rI, _n, _rT, _de, _dN, _des, _rV, _cT, _t],
|
|
298
|
-
[[0, 1], 0, 0, [() => Descriptors$, 0], 0, [() => Description, 0], 0, [0, 4], 128 | 0], 4
|
|
369
|
+
[_rI, _n, _rT, _de, _dN, _des, _rV, _cT, _p, _t],
|
|
370
|
+
[[0, 1], 0, 0, [() => Descriptors$, 0], 0, [() => Description, 0], 0, [0, 4], () => ProvenanceList, 128 | 0], 4
|
|
299
371
|
];
|
|
300
372
|
export var CreateRegistryRecordResponse$ = [3, n0, _CRRRr,
|
|
301
373
|
0,
|
|
@@ -304,8 +376,8 @@ export var CreateRegistryRecordResponse$ = [3, n0, _CRRRr,
|
|
|
304
376
|
];
|
|
305
377
|
export var CreateRegistryRequest$ = [3, n0, _CRR,
|
|
306
378
|
0,
|
|
307
|
-
[_n, _des, _dC, _cT, _t,
|
|
308
|
-
[0, [() => Description, 0], () => DiscoveryConfiguration$, [0, 4], 128 | 0, () => ApprovalConfiguration$], 1
|
|
379
|
+
[_n, _des, _eC, _dC, _cT, _t, _aCp, _aDC],
|
|
380
|
+
[0, [() => Description, 0], () => EncryptionConfiguration$, () => DiscoveryConfiguration$, [0, 4], 128 | 0, () => ApprovalConfiguration$, () => AutoDetectionConfiguration$], 1
|
|
309
381
|
];
|
|
310
382
|
export var CreateRegistryResponse$ = [3, n0, _CRRr,
|
|
311
383
|
0,
|
|
@@ -349,8 +421,8 @@ export var DeleteRegistryResponse$ = [3, n0, _DRRe,
|
|
|
349
421
|
];
|
|
350
422
|
export var Descriptors$ = [3, n0, _De,
|
|
351
423
|
0,
|
|
352
|
-
[_mS, _aAC, _aSD, _cu],
|
|
353
|
-
[[() => McpServerDescriptor$, 0], [() => A2aAgentCardDescriptor$, 0], [() => AgentSkillsDefinitionDescriptor$, 0], [() => CustomDescriptor$, 0]]
|
|
424
|
+
[_mS, _aAC, _aSD, _cu, _h, _a],
|
|
425
|
+
[[() => McpServerDescriptor$, 0], [() => A2aAgentCardDescriptor$, 0], [() => AgentSkillsDefinitionDescriptor$, 0], [() => CustomDescriptor$, 0], () => HttpDescriptor$, () => AgUiDescriptor$]
|
|
354
426
|
];
|
|
355
427
|
export var DescriptorSource$ = [3, n0, _DS,
|
|
356
428
|
0,
|
|
@@ -364,9 +436,14 @@ export var DescriptorSourceFromUrl$ = [3, n0, _DSFU,
|
|
|
364
436
|
];
|
|
365
437
|
export var DiscoveryConfiguration$ = [3, n0, _DC,
|
|
366
438
|
0,
|
|
367
|
-
[
|
|
439
|
+
[_aC, _aT],
|
|
368
440
|
[() => AuthorizerConfiguration$, 0]
|
|
369
441
|
];
|
|
442
|
+
export var EncryptionConfiguration$ = [3, n0, _EC,
|
|
443
|
+
0,
|
|
444
|
+
[_kKA],
|
|
445
|
+
[0], 1
|
|
446
|
+
];
|
|
370
447
|
export var GetRegistryRecordRequest$ = [3, n0, _GRRR,
|
|
371
448
|
0,
|
|
372
449
|
[_rI, _rIe],
|
|
@@ -374,8 +451,8 @@ export var GetRegistryRecordRequest$ = [3, n0, _GRRR,
|
|
|
374
451
|
];
|
|
375
452
|
export var GetRegistryRecordResponse$ = [3, n0, _GRRRe,
|
|
376
453
|
0,
|
|
377
|
-
[_rAe, _rA, _rIe, _n, _rT, _st, _cA, _uA, _dN, _des, _de, _rV, _sR],
|
|
378
|
-
[0, 0, 0, 0, 0, 0, 5, 5, 0, [() => Description, 0], [() => Descriptors$, 0], 0, 0], 8
|
|
454
|
+
[_rAe, _rA, _rIe, _n, _rT, _st, _cA, _uA, _dN, _des, _de, _rV, _sR, _p, _cBAD, _cB],
|
|
455
|
+
[0, 0, 0, 0, 0, 0, 5, 5, 0, [() => Description, 0], [() => Descriptors$, 0], 0, 0, () => ProvenanceList, 2, 0], 8
|
|
379
456
|
];
|
|
380
457
|
export var GetRegistryRequest$ = [3, n0, _GRR,
|
|
381
458
|
0,
|
|
@@ -384,8 +461,13 @@ export var GetRegistryRequest$ = [3, n0, _GRR,
|
|
|
384
461
|
];
|
|
385
462
|
export var GetRegistryResponse$ = [3, n0, _GRRe,
|
|
386
463
|
0,
|
|
387
|
-
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC,
|
|
388
|
-
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, () => ApprovalConfiguration$, 0], 6
|
|
464
|
+
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _eC, _aCp, _sR, _aDu],
|
|
465
|
+
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, () => EncryptionConfiguration$, () => ApprovalConfiguration$, 0, () => AutoDetection$], 6
|
|
466
|
+
];
|
|
467
|
+
export var HttpDescriptor$ = [3, n0, _HD,
|
|
468
|
+
0,
|
|
469
|
+
[_so],
|
|
470
|
+
[() => DescriptorSource$]
|
|
389
471
|
];
|
|
390
472
|
export var ListRegistriesRequest$ = [3, n0, _LRR,
|
|
391
473
|
0,
|
|
@@ -442,6 +524,16 @@ export var PrivateEndpointOverride$ = [3, n0, _PEO,
|
|
|
442
524
|
[_do, _pE],
|
|
443
525
|
[0, () => PrivateEndpoint$], 2
|
|
444
526
|
];
|
|
527
|
+
export var Provenance$ = [3, n0, _P,
|
|
528
|
+
0,
|
|
529
|
+
[_rel, _sIo, _sT, _sD],
|
|
530
|
+
[0, 0, 0, () => SourceDetails$], 2
|
|
531
|
+
];
|
|
532
|
+
export var ProvenanceSummary$ = [3, n0, _PS,
|
|
533
|
+
0,
|
|
534
|
+
[_rel, _sIo, _sT],
|
|
535
|
+
[0, 0, 0], 2
|
|
536
|
+
];
|
|
445
537
|
export var RegistryFilter$ = [3, n0, _RF,
|
|
446
538
|
0,
|
|
447
539
|
[_n, _v],
|
|
@@ -464,18 +556,18 @@ export var RegistryRecordIamCredentialProvider$ = [3, n0, _RRICP,
|
|
|
464
556
|
];
|
|
465
557
|
export var RegistryRecordOAuthCredentialProvider$ = [3, n0, _RROACP,
|
|
466
558
|
0,
|
|
467
|
-
[_pA, _gT,
|
|
559
|
+
[_pA, _gT, _sco, _cPu],
|
|
468
560
|
[0, 0, 64 | 0, 128 | 0], 1
|
|
469
561
|
];
|
|
470
562
|
export var RegistryRecordSummary$ = [3, n0, _RRS,
|
|
471
563
|
0,
|
|
472
|
-
[_rAe, _rA, _rIe, _n, _rT, _rV, _st, _cA, _uA, _dN, _des],
|
|
473
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, [() => Description, 0]], 9
|
|
564
|
+
[_rAe, _rA, _rIe, _n, _rT, _rV, _st, _cA, _uA, _dN, _des, _cBAD, _cB, _pSL],
|
|
565
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, [() => Description, 0], 2, 0, () => ProvenanceSummaryList], 9
|
|
474
566
|
];
|
|
475
567
|
export var RegistrySummary$ = [3, n0, _RS,
|
|
476
568
|
0,
|
|
477
|
-
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _sR],
|
|
478
|
-
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, 0], 6
|
|
569
|
+
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _sR, _aDu],
|
|
570
|
+
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, 0, () => AutoDetection$], 6
|
|
479
571
|
];
|
|
480
572
|
export var SubmitRegistryRecordForApprovalRequest$ = [3, n0, _SRRFAR,
|
|
481
573
|
0,
|
|
@@ -547,6 +639,16 @@ export var UpdatedAgentSkillsMdDescriptorFields$ = [3, n0, _UASMDF,
|
|
|
547
639
|
[_d, _dSV, _so],
|
|
548
640
|
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$, () => UpdatedDescriptorSource$]
|
|
549
641
|
];
|
|
642
|
+
export var UpdatedAgUiDescriptor$ = [3, n0, _UAUD,
|
|
643
|
+
0,
|
|
644
|
+
[_oV],
|
|
645
|
+
[() => UpdatedAgUiDescriptorFields$]
|
|
646
|
+
];
|
|
647
|
+
export var UpdatedAgUiDescriptorFields$ = [3, n0, _UAUDF,
|
|
648
|
+
0,
|
|
649
|
+
[_so],
|
|
650
|
+
[() => UpdatedDescriptorSource$]
|
|
651
|
+
];
|
|
550
652
|
export var UpdatedApprovalConfiguration$ = [3, n0, _UAC,
|
|
551
653
|
0,
|
|
552
654
|
[_oV],
|
|
@@ -557,6 +659,11 @@ export var UpdatedAuthorizerConfiguration$ = [3, n0, _UACp,
|
|
|
557
659
|
[_oV],
|
|
558
660
|
[() => AuthorizerConfiguration$]
|
|
559
661
|
];
|
|
662
|
+
export var UpdatedAutoDetectionConfiguration$ = [3, n0, _UADC,
|
|
663
|
+
0,
|
|
664
|
+
[_oV],
|
|
665
|
+
[() => AutoDetectionConfiguration$]
|
|
666
|
+
];
|
|
560
667
|
export var UpdatedCustomDescriptor$ = [3, n0, _UCD,
|
|
561
668
|
0,
|
|
562
669
|
[_oV],
|
|
@@ -589,8 +696,8 @@ export var UpdatedDescriptors$ = [3, n0, _UDp,
|
|
|
589
696
|
];
|
|
590
697
|
export var UpdatedDescriptorsFields$ = [3, n0, _UDF,
|
|
591
698
|
0,
|
|
592
|
-
[_mS, _aAC, _aSD, _cu],
|
|
593
|
-
[[() => UpdatedMcpServerDescriptor$, 0], [() => UpdatedA2aAgentCardDescriptor$, 0], [() => UpdatedAgentSkillsDefinitionDescriptor$, 0], [() => UpdatedCustomDescriptor$, 0]]
|
|
699
|
+
[_mS, _aAC, _aSD, _cu, _h, _a],
|
|
700
|
+
[[() => UpdatedMcpServerDescriptor$, 0], [() => UpdatedA2aAgentCardDescriptor$, 0], [() => UpdatedAgentSkillsDefinitionDescriptor$, 0], [() => UpdatedCustomDescriptor$, 0], () => UpdatedHttpDescriptor$, () => UpdatedAgUiDescriptor$]
|
|
594
701
|
];
|
|
595
702
|
export var UpdatedDescriptorSource$ = [3, n0, _UDS,
|
|
596
703
|
0,
|
|
@@ -599,7 +706,7 @@ export var UpdatedDescriptorSource$ = [3, n0, _UDS,
|
|
|
599
706
|
];
|
|
600
707
|
export var UpdatedDiscoveryConfiguration$ = [3, n0, _UDC,
|
|
601
708
|
0,
|
|
602
|
-
[
|
|
709
|
+
[_aC],
|
|
603
710
|
[() => UpdatedAuthorizerConfiguration$]
|
|
604
711
|
];
|
|
605
712
|
export var UpdatedDisplayName$ = [3, n0, _UDN,
|
|
@@ -607,6 +714,16 @@ export var UpdatedDisplayName$ = [3, n0, _UDN,
|
|
|
607
714
|
[_oV],
|
|
608
715
|
[0]
|
|
609
716
|
];
|
|
717
|
+
export var UpdatedHttpDescriptor$ = [3, n0, _UHD,
|
|
718
|
+
0,
|
|
719
|
+
[_oV],
|
|
720
|
+
[() => UpdatedHttpDescriptorFields$]
|
|
721
|
+
];
|
|
722
|
+
export var UpdatedHttpDescriptorFields$ = [3, n0, _UHDF,
|
|
723
|
+
0,
|
|
724
|
+
[_so],
|
|
725
|
+
[() => UpdatedDescriptorSource$]
|
|
726
|
+
];
|
|
610
727
|
export var UpdatedMcpServerAdditionalData$ = [3, n0, _UMSAD,
|
|
611
728
|
0,
|
|
612
729
|
[_oV],
|
|
@@ -639,13 +756,13 @@ export var UpdatedMcpToolsDescriptorFields$ = [3, n0, _UMTDF,
|
|
|
639
756
|
];
|
|
640
757
|
export var UpdateRegistryRecordRequest$ = [3, n0, _URRR,
|
|
641
758
|
0,
|
|
642
|
-
[_rI, _rIe, _n, _dN, _des, _rT, _de, _rV, _tS],
|
|
643
|
-
[[0, 1], [0, 1], 0, () => UpdatedDisplayName$, [() => UpdatedDescription$, 0], 0, [() => UpdatedDescriptors$, 0], 0, 2], 2
|
|
759
|
+
[_rI, _rIe, _n, _dN, _des, _rT, _de, _rV, _tS, _p],
|
|
760
|
+
[[0, 1], [0, 1], 0, () => UpdatedDisplayName$, [() => UpdatedDescription$, 0], 0, [() => UpdatedDescriptors$, 0], 0, 2, () => ProvenanceList], 2
|
|
644
761
|
];
|
|
645
762
|
export var UpdateRegistryRecordResponse$ = [3, n0, _URRRp,
|
|
646
763
|
0,
|
|
647
|
-
[_rAe, _rA, _rIe, _n, _rT, _st, _cA, _uA, _dN, _des, _de, _rV, _sR],
|
|
648
|
-
[0, 0, 0, 0, 0, 0, 5, 5, 0, [() => Description, 0], [() => Descriptors$, 0], 0, 0], 8
|
|
764
|
+
[_rAe, _rA, _rIe, _n, _rT, _st, _cA, _uA, _dN, _des, _de, _rV, _sR, _p, _cBAD, _cB],
|
|
765
|
+
[0, 0, 0, 0, 0, 0, 5, 5, 0, [() => Description, 0], [() => Descriptors$, 0], 0, 0, () => ProvenanceList, 2, 0], 8
|
|
649
766
|
];
|
|
650
767
|
export var UpdateRegistryRecordStatusRequest$ = [3, n0, _URRSR,
|
|
651
768
|
0,
|
|
@@ -659,19 +776,24 @@ export var UpdateRegistryRecordStatusResponse$ = [3, n0, _URRSRp,
|
|
|
659
776
|
];
|
|
660
777
|
export var UpdateRegistryRequest$ = [3, n0, _URRp,
|
|
661
778
|
0,
|
|
662
|
-
[_rI, _n, _des, _dC,
|
|
663
|
-
[[0, 1], 0, [() => UpdatedDescription$, 0], () => UpdatedDiscoveryConfiguration$, () => UpdatedApprovalConfiguration$], 1
|
|
779
|
+
[_rI, _n, _des, _dC, _aCp, _aDC],
|
|
780
|
+
[[0, 1], 0, [() => UpdatedDescription$, 0], () => UpdatedDiscoveryConfiguration$, () => UpdatedApprovalConfiguration$, () => UpdatedAutoDetectionConfiguration$], 1
|
|
664
781
|
];
|
|
665
782
|
export var UpdateRegistryResponse$ = [3, n0, _URRpd,
|
|
666
783
|
0,
|
|
667
|
-
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC,
|
|
668
|
-
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, () => ApprovalConfiguration$, 0], 6
|
|
784
|
+
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _eC, _aCp, _sR, _aDu],
|
|
785
|
+
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, () => EncryptionConfiguration$, () => ApprovalConfiguration$, 0, () => AutoDetection$], 6
|
|
669
786
|
];
|
|
670
787
|
export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
671
788
|
0,
|
|
672
789
|
[_n, _m],
|
|
673
790
|
[0, 0], 2
|
|
674
791
|
];
|
|
792
|
+
export var WorkloadIdentityDetails$ = [3, n0, _WID,
|
|
793
|
+
0,
|
|
794
|
+
[_wIA],
|
|
795
|
+
[0], 1
|
|
796
|
+
];
|
|
675
797
|
var AllowedAudienceList = 64 | 0;
|
|
676
798
|
var AllowedClientsList = 64 | 0;
|
|
677
799
|
var AllowedScopesType = 64 | 0;
|
|
@@ -684,6 +806,12 @@ var MatchValueStringList = 64 | 0;
|
|
|
684
806
|
var PrivateEndpointOverrides = [1, n0, _PEOr,
|
|
685
807
|
0, () => PrivateEndpointOverride$
|
|
686
808
|
];
|
|
809
|
+
var ProvenanceList = [1, n0, _PL,
|
|
810
|
+
0, () => Provenance$
|
|
811
|
+
];
|
|
812
|
+
var ProvenanceSummaryList = [1, n0, _PSL,
|
|
813
|
+
0, () => ProvenanceSummary$
|
|
814
|
+
];
|
|
687
815
|
var RegistryFilterList = [1, n0, _RFL,
|
|
688
816
|
0, () => RegistryFilter$
|
|
689
817
|
];
|
|
@@ -736,6 +864,11 @@ export var SelfManagedLatticeResource$ = [4, n0, _SMLR,
|
|
|
736
864
|
[_rCI],
|
|
737
865
|
[0]
|
|
738
866
|
];
|
|
867
|
+
export var SourceDetails$ = [4, n0, _SD,
|
|
868
|
+
0,
|
|
869
|
+
[_aR, _aG],
|
|
870
|
+
[() => AgentCoreRuntimeSourceDetails$, () => AgentCoreGatewaySourceDetails$]
|
|
871
|
+
];
|
|
739
872
|
export var CreateRegistry$ = [9, n0, _CR,
|
|
740
873
|
{ [_h]: ["POST", "/registries", 202] }, () => CreateRegistryRequest$, () => CreateRegistryResponse$
|
|
741
874
|
];
|
|
@@ -136,7 +136,7 @@ export interface AgentRegistryControl {
|
|
|
136
136
|
waitUntilRegistryRecordApproved(args: GetRegistryRecordCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AgentRegistryControl>, "client">): Promise<WaiterResult<GetRegistryRecordCommandOutput>>;
|
|
137
137
|
}
|
|
138
138
|
/**
|
|
139
|
-
* <p>
|
|
139
|
+
* <p>Amazon Web Services Agent Registry is a managed catalog for publishing and discovering resources such as MCP servers, agents, and agent skills. Agent Registry Control is its control-plane API: use it to create and manage registries and the records they contain, configure discovery and authorization, govern record approval and curation workflows, and manage automatic detection of resources. Data-plane search and MCP invocation operations are provided by the companion Agent Registry API.</p>
|
|
140
140
|
* @public
|
|
141
141
|
*/
|
|
142
142
|
export declare class AgentRegistryControl extends AgentRegistryControlClient implements AgentRegistryControl {
|
|
@@ -183,7 +183,7 @@ export type AgentRegistryControlClientResolvedConfigType = __SmithyResolvedConfi
|
|
|
183
183
|
export interface AgentRegistryControlClientResolvedConfig extends AgentRegistryControlClientResolvedConfigType {
|
|
184
184
|
}
|
|
185
185
|
/**
|
|
186
|
-
* <p>
|
|
186
|
+
* <p>Amazon Web Services Agent Registry is a managed catalog for publishing and discovering resources such as MCP servers, agents, and agent skills. Agent Registry Control is its control-plane API: use it to create and manage registries and the records they contain, configure discovery and authorization, govern record approval and curation workflows, and manage automatic detection of resources. Data-plane search and MCP invocation operations are provided by the companion Agent Registry API.</p>
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
189
|
export declare class AgentRegistryControlClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AgentRegistryControlClientResolvedConfig> {
|
|
@@ -36,6 +36,9 @@ declare const CreateRegistryCommand_base: {
|
|
|
36
36
|
* const input = { // CreateRegistryRequest
|
|
37
37
|
* name: "STRING_VALUE", // required
|
|
38
38
|
* description: "STRING_VALUE",
|
|
39
|
+
* encryptionConfiguration: { // EncryptionConfiguration
|
|
40
|
+
* kmsKeyArn: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
39
42
|
* discoveryConfiguration: { // DiscoveryConfiguration
|
|
40
43
|
* authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
|
|
41
44
|
* customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
|
|
@@ -118,6 +121,10 @@ declare const CreateRegistryCommand_base: {
|
|
|
118
121
|
* "APPROVE_ALL",
|
|
119
122
|
* ],
|
|
120
123
|
* },
|
|
124
|
+
* autoDetectionConfiguration: { // AutoDetectionConfiguration
|
|
125
|
+
* scope: "ORGANIZATION", // required
|
|
126
|
+
* enabled: true || false, // required
|
|
127
|
+
* },
|
|
121
128
|
* };
|
|
122
129
|
* const command = new CreateRegistryCommand(input);
|
|
123
130
|
* const response = await client.send(command);
|