@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,783 @@
|
|
|
1
|
+
const _AACD = "A2aAgentCardDescriptor";
|
|
2
|
+
const _AC = "ApprovalConfiguration";
|
|
3
|
+
const _ACMVT = "AuthorizingClaimMatchValueType";
|
|
4
|
+
const _ACu = "AuthorizerConfiguration";
|
|
5
|
+
const _ADE = "AccessDeniedException";
|
|
6
|
+
const _ASAD = "AgentSkillsAdditionalData";
|
|
7
|
+
const _ASDD = "AgentSkillsDefinitionDescriptor";
|
|
8
|
+
const _ASMD = "AgentSkillsMdDescriptor";
|
|
9
|
+
const _CCVT = "CustomClaimValidationType";
|
|
10
|
+
const _CCVTu = "CustomClaimValidationsType";
|
|
11
|
+
const _CD = "CustomDescriptor";
|
|
12
|
+
const _CE = "ConflictException";
|
|
13
|
+
const _CJWTAC = "CustomJWTAuthorizerConfiguration";
|
|
14
|
+
const _CMVT = "ClaimMatchValueType";
|
|
15
|
+
const _CR = "CreateRegistry";
|
|
16
|
+
const _CRR = "CreateRegistryRequest";
|
|
17
|
+
const _CRRR = "CreateRegistryRecordRequest";
|
|
18
|
+
const _CRRRr = "CreateRegistryRecordResponse";
|
|
19
|
+
const _CRRr = "CreateRegistryResponse";
|
|
20
|
+
const _CRRre = "CreateRegistryRecord";
|
|
21
|
+
const _D = "Description";
|
|
22
|
+
const _DC = "DiscoveryConfiguration";
|
|
23
|
+
const _DD = "DescriptorData";
|
|
24
|
+
const _DR = "DeleteRegistry";
|
|
25
|
+
const _DRR = "DeleteRegistryRequest";
|
|
26
|
+
const _DRRR = "DeleteRegistryRecordRequest";
|
|
27
|
+
const _DRRRe = "DeleteRegistryRecordResponse";
|
|
28
|
+
const _DRRe = "DeleteRegistryResponse";
|
|
29
|
+
const _DRRel = "DeleteRegistryRecord";
|
|
30
|
+
const _DS = "DescriptorSource";
|
|
31
|
+
const _DSFU = "DescriptorSourceFromUrl";
|
|
32
|
+
const _De = "Descriptors";
|
|
33
|
+
const _GR = "GetRegistry";
|
|
34
|
+
const _GRR = "GetRegistryRequest";
|
|
35
|
+
const _GRRR = "GetRegistryRecordRequest";
|
|
36
|
+
const _GRRRe = "GetRegistryRecordResponse";
|
|
37
|
+
const _GRRe = "GetRegistryResponse";
|
|
38
|
+
const _GRRet = "GetRegistryRecord";
|
|
39
|
+
const _ISE = "InternalServerException";
|
|
40
|
+
const _LR = "ListRegistries";
|
|
41
|
+
const _LRR = "ListRegistriesRequest";
|
|
42
|
+
const _LRRR = "ListRegistryRecordsRequest";
|
|
43
|
+
const _LRRRi = "ListRegistryRecordsResponse";
|
|
44
|
+
const _LRRi = "ListRegistriesResponse";
|
|
45
|
+
const _LRRis = "ListRegistryRecords";
|
|
46
|
+
const _LTFR = "ListTagsForResource";
|
|
47
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
48
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
49
|
+
const _MSAD = "McpServerAdditionalData";
|
|
50
|
+
const _MSD = "McpServerDescriptor";
|
|
51
|
+
const _MTD = "McpToolsDescriptor";
|
|
52
|
+
const _MVR = "ManagedVpcResource";
|
|
53
|
+
const _PE = "PrivateEndpoint";
|
|
54
|
+
const _PEO = "PrivateEndpointOverride";
|
|
55
|
+
const _PEOr = "PrivateEndpointOverrides";
|
|
56
|
+
const _RF = "RegistryFilter";
|
|
57
|
+
const _RFL = "RegistryFilterList";
|
|
58
|
+
const _RNFE = "ResourceNotFoundException";
|
|
59
|
+
const _RRCPC = "RegistryRecordCredentialProviderConfiguration";
|
|
60
|
+
const _RRCPCL = "RegistryRecordCredentialProviderConfigurationList";
|
|
61
|
+
const _RRCPU = "RegistryRecordCredentialProviderUnion";
|
|
62
|
+
const _RRF = "RegistryRecordFilter";
|
|
63
|
+
const _RRFL = "RegistryRecordFilterList";
|
|
64
|
+
const _RRICP = "RegistryRecordIamCredentialProvider";
|
|
65
|
+
const _RROACP = "RegistryRecordOAuthCredentialProvider";
|
|
66
|
+
const _RRS = "RegistryRecordSummary";
|
|
67
|
+
const _RRSL = "RegistryRecordSummaryList";
|
|
68
|
+
const _RS = "RegistrySummary";
|
|
69
|
+
const _RSL = "RegistrySummaryList";
|
|
70
|
+
const _SMLR = "SelfManagedLatticeResource";
|
|
71
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
72
|
+
const _SRRFA = "SubmitRegistryRecordForApproval";
|
|
73
|
+
const _SRRFAR = "SubmitRegistryRecordForApprovalRequest";
|
|
74
|
+
const _SRRFARu = "SubmitRegistryRecordForApprovalResponse";
|
|
75
|
+
const _TE = "ThrottlingException";
|
|
76
|
+
const _TR = "TagResource";
|
|
77
|
+
const _TRR = "TagResourceRequest";
|
|
78
|
+
const _TRRa = "TagResourceResponse";
|
|
79
|
+
const _UAACD = "UpdatedA2aAgentCardDescriptor";
|
|
80
|
+
const _UAACDF = "UpdatedA2aAgentCardDescriptorFields";
|
|
81
|
+
const _UAC = "UpdatedApprovalConfiguration";
|
|
82
|
+
const _UACp = "UpdatedAuthorizerConfiguration";
|
|
83
|
+
const _UASAD = "UpdatedAgentSkillsAdditionalData";
|
|
84
|
+
const _UASADF = "UpdatedAgentSkillsAdditionalDataFields";
|
|
85
|
+
const _UASDD = "UpdatedAgentSkillsDefinitionDescriptor";
|
|
86
|
+
const _UASDDF = "UpdatedAgentSkillsDefinitionDescriptorFields";
|
|
87
|
+
const _UASMD = "UpdatedAgentSkillsMdDescriptor";
|
|
88
|
+
const _UASMDF = "UpdatedAgentSkillsMdDescriptorFields";
|
|
89
|
+
const _UCD = "UpdatedCustomDescriptor";
|
|
90
|
+
const _UCDF = "UpdatedCustomDescriptorFields";
|
|
91
|
+
const _UD = "UpdatedDescription";
|
|
92
|
+
const _UDC = "UpdatedDiscoveryConfiguration";
|
|
93
|
+
const _UDD = "UpdatedDescriptorData";
|
|
94
|
+
const _UDF = "UpdatedDescriptorsFields";
|
|
95
|
+
const _UDN = "UpdatedDisplayName";
|
|
96
|
+
const _UDS = "UpdatedDescriptorSource";
|
|
97
|
+
const _UDSV = "UpdatedDataSchemaVersion";
|
|
98
|
+
const _UDp = "UpdatedDescriptors";
|
|
99
|
+
const _UMSAD = "UpdatedMcpServerAdditionalData";
|
|
100
|
+
const _UMSADF = "UpdatedMcpServerAdditionalDataFields";
|
|
101
|
+
const _UMSD = "UpdatedMcpServerDescriptor";
|
|
102
|
+
const _UMSDF = "UpdatedMcpServerDescriptorFields";
|
|
103
|
+
const _UMTD = "UpdatedMcpToolsDescriptor";
|
|
104
|
+
const _UMTDF = "UpdatedMcpToolsDescriptorFields";
|
|
105
|
+
const _UR = "UntagResource";
|
|
106
|
+
const _URR = "UntagResourceRequest";
|
|
107
|
+
const _URRR = "UpdateRegistryRecordRequest";
|
|
108
|
+
const _URRRp = "UpdateRegistryRecordResponse";
|
|
109
|
+
const _URRS = "UpdateRegistryRecordStatus";
|
|
110
|
+
const _URRSR = "UpdateRegistryRecordStatusRequest";
|
|
111
|
+
const _URRSRp = "UpdateRegistryRecordStatusResponse";
|
|
112
|
+
const _URRn = "UntagResourceResponse";
|
|
113
|
+
const _URRp = "UpdateRegistryRequest";
|
|
114
|
+
const _URRpd = "UpdateRegistryResponse";
|
|
115
|
+
const _URRpda = "UpdateRegistryRecord";
|
|
116
|
+
const _URp = "UpdateRegistry";
|
|
117
|
+
const _VE = "ValidationException";
|
|
118
|
+
const _VEF = "ValidationExceptionField";
|
|
119
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
120
|
+
const _aA = "allowedAudience";
|
|
121
|
+
const _aAC = "a2aAgentCard";
|
|
122
|
+
const _aAR = "autoApprovalRules";
|
|
123
|
+
const _aC = "approvalConfiguration";
|
|
124
|
+
const _aCMV = "authorizingClaimMatchValue";
|
|
125
|
+
const _aCl = "allowedClients";
|
|
126
|
+
const _aCu = "authorizerConfiguration";
|
|
127
|
+
const _aD = "additionalData";
|
|
128
|
+
const _aS = "allowedScopes";
|
|
129
|
+
const _aSD = "agentSkillsDefinition";
|
|
130
|
+
const _aT = "authorizerType";
|
|
131
|
+
const _c = "client";
|
|
132
|
+
const _cA = "createdAt";
|
|
133
|
+
const _cC = "customClaims";
|
|
134
|
+
const _cJWTA = "customJWTAuthorizer";
|
|
135
|
+
const _cMO = "claimMatchOperator";
|
|
136
|
+
const _cMV = "claimMatchValue";
|
|
137
|
+
const _cP = "credentialProvider";
|
|
138
|
+
const _cPC = "credentialProviderConfigurations";
|
|
139
|
+
const _cPT = "credentialProviderType";
|
|
140
|
+
const _cPu = "customParameters";
|
|
141
|
+
const _cT = "clientToken";
|
|
142
|
+
const _cu = "custom";
|
|
143
|
+
const _d = "data";
|
|
144
|
+
const _dC = "discoveryConfiguration";
|
|
145
|
+
const _dN = "displayName";
|
|
146
|
+
const _dSV = "dataSchemaVersion";
|
|
147
|
+
const _dU = "discoveryUrl";
|
|
148
|
+
const _de = "descriptors";
|
|
149
|
+
const _des = "description";
|
|
150
|
+
const _do = "domain";
|
|
151
|
+
const _e = "error";
|
|
152
|
+
const _eIAT = "endpointIpAddressType";
|
|
153
|
+
const _f = "filters";
|
|
154
|
+
const _fL = "fieldList";
|
|
155
|
+
const _fU = "fromUrl";
|
|
156
|
+
const _gT = "grantType";
|
|
157
|
+
const _h = "http";
|
|
158
|
+
const _hE = "httpError";
|
|
159
|
+
const _hQ = "httpQuery";
|
|
160
|
+
const _iCP = "iamCredentialProvider";
|
|
161
|
+
const _iTCN = "inboundTokenClaimName";
|
|
162
|
+
const _iTCVT = "inboundTokenClaimValueType";
|
|
163
|
+
const _m = "message";
|
|
164
|
+
const _mR = "maxResults";
|
|
165
|
+
const _mS = "mcpServer";
|
|
166
|
+
const _mVR = "managedVpcResource";
|
|
167
|
+
const _mVS = "matchValueString";
|
|
168
|
+
const _mVSL = "matchValueStringList";
|
|
169
|
+
const _n = "name";
|
|
170
|
+
const _nT = "nextToken";
|
|
171
|
+
const _oCP = "oauthCredentialProvider";
|
|
172
|
+
const _oV = "optionalValue";
|
|
173
|
+
const _pA = "providerArn";
|
|
174
|
+
const _pE = "privateEndpoint";
|
|
175
|
+
const _pEO = "privateEndpointOverrides";
|
|
176
|
+
const _r = "reason";
|
|
177
|
+
const _rA = "recordArn";
|
|
178
|
+
const _rAe = "registryArn";
|
|
179
|
+
const _rAes = "resourceArn";
|
|
180
|
+
const _rAo = "roleArn";
|
|
181
|
+
const _rCI = "resourceConfigurationIdentifier";
|
|
182
|
+
const _rD = "routingDomain";
|
|
183
|
+
const _rI = "registryId";
|
|
184
|
+
const _rIe = "recordId";
|
|
185
|
+
const _rR = "registryRecords";
|
|
186
|
+
const _rT = "recordType";
|
|
187
|
+
const _rV = "recordVersion";
|
|
188
|
+
const _re = "registries";
|
|
189
|
+
const _reg = "region";
|
|
190
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.agentregistrycontrol";
|
|
191
|
+
const _sGI = "securityGroupIds";
|
|
192
|
+
const _sI = "subnetIds";
|
|
193
|
+
const _sM = "skillMd";
|
|
194
|
+
const _sMLR = "selfManagedLatticeResource";
|
|
195
|
+
const _sR = "statusReason";
|
|
196
|
+
const _sc = "scopes";
|
|
197
|
+
const _se = "server";
|
|
198
|
+
const _ser = "service";
|
|
199
|
+
const _so = "source";
|
|
200
|
+
const _st = "status";
|
|
201
|
+
const _t = "tags";
|
|
202
|
+
const _tK = "tagKeys";
|
|
203
|
+
const _tS = "triggerSynchronization";
|
|
204
|
+
const _to = "tools";
|
|
205
|
+
const _u = "url";
|
|
206
|
+
const _uA = "updatedAt";
|
|
207
|
+
const _v = "values";
|
|
208
|
+
const _vI = "vpcIdentifier";
|
|
209
|
+
const n0 = "com.amazonaws.agentregistrycontrol";
|
|
210
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
211
|
+
import { AgentRegistryControlServiceException } from "../models/AgentRegistryControlServiceException";
|
|
212
|
+
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
213
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
214
|
+
export var AgentRegistryControlServiceException$ = [-3, _s, "AgentRegistryControlServiceException", 0, [], []];
|
|
215
|
+
_s_registry.registerError(AgentRegistryControlServiceException$, AgentRegistryControlServiceException);
|
|
216
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
217
|
+
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
218
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
219
|
+
[_m],
|
|
220
|
+
[0]
|
|
221
|
+
];
|
|
222
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
223
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
224
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
225
|
+
[_m],
|
|
226
|
+
[0]
|
|
227
|
+
];
|
|
228
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
229
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
230
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
231
|
+
[_m],
|
|
232
|
+
[0]
|
|
233
|
+
];
|
|
234
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
235
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
236
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
237
|
+
[_m],
|
|
238
|
+
[0]
|
|
239
|
+
];
|
|
240
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
241
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
242
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
243
|
+
[_m],
|
|
244
|
+
[0]
|
|
245
|
+
];
|
|
246
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
247
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
248
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
249
|
+
[_m],
|
|
250
|
+
[0]
|
|
251
|
+
];
|
|
252
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
253
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
254
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
255
|
+
[_m, _r, _fL],
|
|
256
|
+
[0, 0, () => ValidationExceptionFieldList], 2
|
|
257
|
+
];
|
|
258
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
259
|
+
export const errorTypeRegistries = [
|
|
260
|
+
_s_registry,
|
|
261
|
+
n0_registry,
|
|
262
|
+
];
|
|
263
|
+
var Description = [0, n0, _D, 8, 0];
|
|
264
|
+
var DescriptorData = [0, n0, _DD, 8, 0];
|
|
265
|
+
export var A2aAgentCardDescriptor$ = [3, n0, _AACD,
|
|
266
|
+
0,
|
|
267
|
+
[_d, _dSV, _so],
|
|
268
|
+
[[() => DescriptorData, 0], 0, () => DescriptorSource$]
|
|
269
|
+
];
|
|
270
|
+
export var AgentSkillsAdditionalData$ = [3, n0, _ASAD,
|
|
271
|
+
0,
|
|
272
|
+
[_sM],
|
|
273
|
+
[[() => AgentSkillsMdDescriptor$, 0]]
|
|
274
|
+
];
|
|
275
|
+
export var AgentSkillsDefinitionDescriptor$ = [3, n0, _ASDD,
|
|
276
|
+
0,
|
|
277
|
+
[_d, _dSV, _aD],
|
|
278
|
+
[[() => DescriptorData, 0], 0, [() => AgentSkillsAdditionalData$, 0]]
|
|
279
|
+
];
|
|
280
|
+
export var AgentSkillsMdDescriptor$ = [3, n0, _ASMD,
|
|
281
|
+
0,
|
|
282
|
+
[_d, _dSV, _so],
|
|
283
|
+
[[() => DescriptorData, 0], 0, () => DescriptorSource$]
|
|
284
|
+
];
|
|
285
|
+
export var ApprovalConfiguration$ = [3, n0, _AC,
|
|
286
|
+
0,
|
|
287
|
+
[_aAR],
|
|
288
|
+
[64 | 0]
|
|
289
|
+
];
|
|
290
|
+
export var AuthorizingClaimMatchValueType$ = [3, n0, _ACMVT,
|
|
291
|
+
0,
|
|
292
|
+
[_cMV, _cMO],
|
|
293
|
+
[() => ClaimMatchValueType$, 0], 2
|
|
294
|
+
];
|
|
295
|
+
export var CreateRegistryRecordRequest$ = [3, n0, _CRRR,
|
|
296
|
+
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
|
|
299
|
+
];
|
|
300
|
+
export var CreateRegistryRecordResponse$ = [3, n0, _CRRRr,
|
|
301
|
+
0,
|
|
302
|
+
[_rA, _st],
|
|
303
|
+
[0, 0], 2
|
|
304
|
+
];
|
|
305
|
+
export var CreateRegistryRequest$ = [3, n0, _CRR,
|
|
306
|
+
0,
|
|
307
|
+
[_n, _des, _dC, _cT, _t, _aC],
|
|
308
|
+
[0, [() => Description, 0], () => DiscoveryConfiguration$, [0, 4], 128 | 0, () => ApprovalConfiguration$], 1
|
|
309
|
+
];
|
|
310
|
+
export var CreateRegistryResponse$ = [3, n0, _CRRr,
|
|
311
|
+
0,
|
|
312
|
+
[_rAe],
|
|
313
|
+
[0], 1
|
|
314
|
+
];
|
|
315
|
+
export var CustomClaimValidationType$ = [3, n0, _CCVT,
|
|
316
|
+
0,
|
|
317
|
+
[_iTCN, _iTCVT, _aCMV],
|
|
318
|
+
[0, 0, () => AuthorizingClaimMatchValueType$], 3
|
|
319
|
+
];
|
|
320
|
+
export var CustomDescriptor$ = [3, n0, _CD,
|
|
321
|
+
0,
|
|
322
|
+
[_d],
|
|
323
|
+
[[() => DescriptorData, 0]]
|
|
324
|
+
];
|
|
325
|
+
export var CustomJWTAuthorizerConfiguration$ = [3, n0, _CJWTAC,
|
|
326
|
+
0,
|
|
327
|
+
[_dU, _aA, _aCl, _aS, _cC, _pE, _pEO],
|
|
328
|
+
[0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType, () => PrivateEndpoint$, () => PrivateEndpointOverrides], 1
|
|
329
|
+
];
|
|
330
|
+
export var DeleteRegistryRecordRequest$ = [3, n0, _DRRR,
|
|
331
|
+
0,
|
|
332
|
+
[_rI, _rIe],
|
|
333
|
+
[[0, 1], [0, 1]], 2
|
|
334
|
+
];
|
|
335
|
+
export var DeleteRegistryRecordResponse$ = [3, n0, _DRRRe,
|
|
336
|
+
0,
|
|
337
|
+
[],
|
|
338
|
+
[]
|
|
339
|
+
];
|
|
340
|
+
export var DeleteRegistryRequest$ = [3, n0, _DRR,
|
|
341
|
+
0,
|
|
342
|
+
[_rI],
|
|
343
|
+
[[0, 1]], 1
|
|
344
|
+
];
|
|
345
|
+
export var DeleteRegistryResponse$ = [3, n0, _DRRe,
|
|
346
|
+
0,
|
|
347
|
+
[_st],
|
|
348
|
+
[0], 1
|
|
349
|
+
];
|
|
350
|
+
export var Descriptors$ = [3, n0, _De,
|
|
351
|
+
0,
|
|
352
|
+
[_mS, _aAC, _aSD, _cu],
|
|
353
|
+
[[() => McpServerDescriptor$, 0], [() => A2aAgentCardDescriptor$, 0], [() => AgentSkillsDefinitionDescriptor$, 0], [() => CustomDescriptor$, 0]]
|
|
354
|
+
];
|
|
355
|
+
export var DescriptorSource$ = [3, n0, _DS,
|
|
356
|
+
0,
|
|
357
|
+
[_fU],
|
|
358
|
+
[() => DescriptorSourceFromUrl$]
|
|
359
|
+
];
|
|
360
|
+
export var DescriptorSourceFromUrl$ = [3, n0, _DSFU,
|
|
361
|
+
0,
|
|
362
|
+
[_u, _cPC],
|
|
363
|
+
[0, () => RegistryRecordCredentialProviderConfigurationList], 1
|
|
364
|
+
];
|
|
365
|
+
export var DiscoveryConfiguration$ = [3, n0, _DC,
|
|
366
|
+
0,
|
|
367
|
+
[_aCu, _aT],
|
|
368
|
+
[() => AuthorizerConfiguration$, 0]
|
|
369
|
+
];
|
|
370
|
+
export var GetRegistryRecordRequest$ = [3, n0, _GRRR,
|
|
371
|
+
0,
|
|
372
|
+
[_rI, _rIe],
|
|
373
|
+
[[0, 1], [0, 1]], 2
|
|
374
|
+
];
|
|
375
|
+
export var GetRegistryRecordResponse$ = [3, n0, _GRRRe,
|
|
376
|
+
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
|
|
379
|
+
];
|
|
380
|
+
export var GetRegistryRequest$ = [3, n0, _GRR,
|
|
381
|
+
0,
|
|
382
|
+
[_rI],
|
|
383
|
+
[[0, 1]], 1
|
|
384
|
+
];
|
|
385
|
+
export var GetRegistryResponse$ = [3, n0, _GRRe,
|
|
386
|
+
0,
|
|
387
|
+
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _aC, _sR],
|
|
388
|
+
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, () => ApprovalConfiguration$, 0], 6
|
|
389
|
+
];
|
|
390
|
+
export var ListRegistriesRequest$ = [3, n0, _LRR,
|
|
391
|
+
0,
|
|
392
|
+
[_mR, _nT, _f],
|
|
393
|
+
[1, 0, () => RegistryFilterList]
|
|
394
|
+
];
|
|
395
|
+
export var ListRegistriesResponse$ = [3, n0, _LRRi,
|
|
396
|
+
0,
|
|
397
|
+
[_re, _nT],
|
|
398
|
+
[[() => RegistrySummaryList, 0], 0], 1
|
|
399
|
+
];
|
|
400
|
+
export var ListRegistryRecordsRequest$ = [3, n0, _LRRR,
|
|
401
|
+
0,
|
|
402
|
+
[_rI, _mR, _nT, _f],
|
|
403
|
+
[[0, 1], 1, 0, () => RegistryRecordFilterList], 1
|
|
404
|
+
];
|
|
405
|
+
export var ListRegistryRecordsResponse$ = [3, n0, _LRRRi,
|
|
406
|
+
0,
|
|
407
|
+
[_rR, _nT],
|
|
408
|
+
[[() => RegistryRecordSummaryList, 0], 0], 1
|
|
409
|
+
];
|
|
410
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
411
|
+
0,
|
|
412
|
+
[_rAes],
|
|
413
|
+
[[0, 1]], 1
|
|
414
|
+
];
|
|
415
|
+
export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
416
|
+
0,
|
|
417
|
+
[_t],
|
|
418
|
+
[128 | 0]
|
|
419
|
+
];
|
|
420
|
+
export var ManagedVpcResource$ = [3, n0, _MVR,
|
|
421
|
+
0,
|
|
422
|
+
[_vI, _sI, _eIAT, _sGI, _t, _rD],
|
|
423
|
+
[0, 64 | 0, 0, 64 | 0, 128 | 0, 0], 3
|
|
424
|
+
];
|
|
425
|
+
export var McpServerAdditionalData$ = [3, n0, _MSAD,
|
|
426
|
+
0,
|
|
427
|
+
[_to],
|
|
428
|
+
[[() => McpToolsDescriptor$, 0]]
|
|
429
|
+
];
|
|
430
|
+
export var McpServerDescriptor$ = [3, n0, _MSD,
|
|
431
|
+
0,
|
|
432
|
+
[_d, _dSV, _aD, _so],
|
|
433
|
+
[[() => DescriptorData, 0], 0, [() => McpServerAdditionalData$, 0], () => DescriptorSource$]
|
|
434
|
+
];
|
|
435
|
+
export var McpToolsDescriptor$ = [3, n0, _MTD,
|
|
436
|
+
0,
|
|
437
|
+
[_d, _dSV],
|
|
438
|
+
[[() => DescriptorData, 0], 0]
|
|
439
|
+
];
|
|
440
|
+
export var PrivateEndpointOverride$ = [3, n0, _PEO,
|
|
441
|
+
0,
|
|
442
|
+
[_do, _pE],
|
|
443
|
+
[0, () => PrivateEndpoint$], 2
|
|
444
|
+
];
|
|
445
|
+
export var RegistryFilter$ = [3, n0, _RF,
|
|
446
|
+
0,
|
|
447
|
+
[_n, _v],
|
|
448
|
+
[0, 64 | 0], 2
|
|
449
|
+
];
|
|
450
|
+
export var RegistryRecordCredentialProviderConfiguration$ = [3, n0, _RRCPC,
|
|
451
|
+
0,
|
|
452
|
+
[_cPT, _cP],
|
|
453
|
+
[0, () => RegistryRecordCredentialProviderUnion$], 2
|
|
454
|
+
];
|
|
455
|
+
export var RegistryRecordFilter$ = [3, n0, _RRF,
|
|
456
|
+
0,
|
|
457
|
+
[_n, _v],
|
|
458
|
+
[0, 64 | 0], 2
|
|
459
|
+
];
|
|
460
|
+
export var RegistryRecordIamCredentialProvider$ = [3, n0, _RRICP,
|
|
461
|
+
0,
|
|
462
|
+
[_rAo, _ser, _reg],
|
|
463
|
+
[0, 0, 0]
|
|
464
|
+
];
|
|
465
|
+
export var RegistryRecordOAuthCredentialProvider$ = [3, n0, _RROACP,
|
|
466
|
+
0,
|
|
467
|
+
[_pA, _gT, _sc, _cPu],
|
|
468
|
+
[0, 0, 64 | 0, 128 | 0], 1
|
|
469
|
+
];
|
|
470
|
+
export var RegistryRecordSummary$ = [3, n0, _RRS,
|
|
471
|
+
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
|
|
474
|
+
];
|
|
475
|
+
export var RegistrySummary$ = [3, n0, _RS,
|
|
476
|
+
0,
|
|
477
|
+
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _sR],
|
|
478
|
+
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, 0], 6
|
|
479
|
+
];
|
|
480
|
+
export var SubmitRegistryRecordForApprovalRequest$ = [3, n0, _SRRFAR,
|
|
481
|
+
0,
|
|
482
|
+
[_rI, _rIe],
|
|
483
|
+
[[0, 1], [0, 1]], 2
|
|
484
|
+
];
|
|
485
|
+
export var SubmitRegistryRecordForApprovalResponse$ = [3, n0, _SRRFARu,
|
|
486
|
+
0,
|
|
487
|
+
[_rAe, _rA, _rIe, _st, _uA],
|
|
488
|
+
[0, 0, 0, 0, 5], 5
|
|
489
|
+
];
|
|
490
|
+
export var TagResourceRequest$ = [3, n0, _TRR,
|
|
491
|
+
0,
|
|
492
|
+
[_rAes, _t],
|
|
493
|
+
[[0, 1], 128 | 0], 2
|
|
494
|
+
];
|
|
495
|
+
export var TagResourceResponse$ = [3, n0, _TRRa,
|
|
496
|
+
0,
|
|
497
|
+
[],
|
|
498
|
+
[]
|
|
499
|
+
];
|
|
500
|
+
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
501
|
+
0,
|
|
502
|
+
[_rAes, _tK],
|
|
503
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
504
|
+
];
|
|
505
|
+
export var UntagResourceResponse$ = [3, n0, _URRn,
|
|
506
|
+
0,
|
|
507
|
+
[],
|
|
508
|
+
[]
|
|
509
|
+
];
|
|
510
|
+
export var UpdatedA2aAgentCardDescriptor$ = [3, n0, _UAACD,
|
|
511
|
+
0,
|
|
512
|
+
[_oV],
|
|
513
|
+
[[() => UpdatedA2aAgentCardDescriptorFields$, 0]]
|
|
514
|
+
];
|
|
515
|
+
export var UpdatedA2aAgentCardDescriptorFields$ = [3, n0, _UAACDF,
|
|
516
|
+
0,
|
|
517
|
+
[_d, _dSV, _so],
|
|
518
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$, () => UpdatedDescriptorSource$]
|
|
519
|
+
];
|
|
520
|
+
export var UpdatedAgentSkillsAdditionalData$ = [3, n0, _UASAD,
|
|
521
|
+
0,
|
|
522
|
+
[_oV],
|
|
523
|
+
[[() => UpdatedAgentSkillsAdditionalDataFields$, 0]]
|
|
524
|
+
];
|
|
525
|
+
export var UpdatedAgentSkillsAdditionalDataFields$ = [3, n0, _UASADF,
|
|
526
|
+
0,
|
|
527
|
+
[_sM],
|
|
528
|
+
[[() => UpdatedAgentSkillsMdDescriptor$, 0]]
|
|
529
|
+
];
|
|
530
|
+
export var UpdatedAgentSkillsDefinitionDescriptor$ = [3, n0, _UASDD,
|
|
531
|
+
0,
|
|
532
|
+
[_oV],
|
|
533
|
+
[[() => UpdatedAgentSkillsDefinitionDescriptorFields$, 0]]
|
|
534
|
+
];
|
|
535
|
+
export var UpdatedAgentSkillsDefinitionDescriptorFields$ = [3, n0, _UASDDF,
|
|
536
|
+
0,
|
|
537
|
+
[_d, _dSV, _aD],
|
|
538
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$, [() => UpdatedAgentSkillsAdditionalData$, 0]]
|
|
539
|
+
];
|
|
540
|
+
export var UpdatedAgentSkillsMdDescriptor$ = [3, n0, _UASMD,
|
|
541
|
+
0,
|
|
542
|
+
[_oV],
|
|
543
|
+
[[() => UpdatedAgentSkillsMdDescriptorFields$, 0]]
|
|
544
|
+
];
|
|
545
|
+
export var UpdatedAgentSkillsMdDescriptorFields$ = [3, n0, _UASMDF,
|
|
546
|
+
0,
|
|
547
|
+
[_d, _dSV, _so],
|
|
548
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$, () => UpdatedDescriptorSource$]
|
|
549
|
+
];
|
|
550
|
+
export var UpdatedApprovalConfiguration$ = [3, n0, _UAC,
|
|
551
|
+
0,
|
|
552
|
+
[_oV],
|
|
553
|
+
[() => ApprovalConfiguration$]
|
|
554
|
+
];
|
|
555
|
+
export var UpdatedAuthorizerConfiguration$ = [3, n0, _UACp,
|
|
556
|
+
0,
|
|
557
|
+
[_oV],
|
|
558
|
+
[() => AuthorizerConfiguration$]
|
|
559
|
+
];
|
|
560
|
+
export var UpdatedCustomDescriptor$ = [3, n0, _UCD,
|
|
561
|
+
0,
|
|
562
|
+
[_oV],
|
|
563
|
+
[[() => UpdatedCustomDescriptorFields$, 0]]
|
|
564
|
+
];
|
|
565
|
+
export var UpdatedCustomDescriptorFields$ = [3, n0, _UCDF,
|
|
566
|
+
0,
|
|
567
|
+
[_d],
|
|
568
|
+
[[() => UpdatedDescriptorData$, 0]]
|
|
569
|
+
];
|
|
570
|
+
export var UpdatedDataSchemaVersion$ = [3, n0, _UDSV,
|
|
571
|
+
0,
|
|
572
|
+
[_oV],
|
|
573
|
+
[0]
|
|
574
|
+
];
|
|
575
|
+
export var UpdatedDescription$ = [3, n0, _UD,
|
|
576
|
+
0,
|
|
577
|
+
[_oV],
|
|
578
|
+
[[() => Description, 0]]
|
|
579
|
+
];
|
|
580
|
+
export var UpdatedDescriptorData$ = [3, n0, _UDD,
|
|
581
|
+
0,
|
|
582
|
+
[_oV],
|
|
583
|
+
[[() => DescriptorData, 0]]
|
|
584
|
+
];
|
|
585
|
+
export var UpdatedDescriptors$ = [3, n0, _UDp,
|
|
586
|
+
0,
|
|
587
|
+
[_oV],
|
|
588
|
+
[[() => UpdatedDescriptorsFields$, 0]]
|
|
589
|
+
];
|
|
590
|
+
export var UpdatedDescriptorsFields$ = [3, n0, _UDF,
|
|
591
|
+
0,
|
|
592
|
+
[_mS, _aAC, _aSD, _cu],
|
|
593
|
+
[[() => UpdatedMcpServerDescriptor$, 0], [() => UpdatedA2aAgentCardDescriptor$, 0], [() => UpdatedAgentSkillsDefinitionDescriptor$, 0], [() => UpdatedCustomDescriptor$, 0]]
|
|
594
|
+
];
|
|
595
|
+
export var UpdatedDescriptorSource$ = [3, n0, _UDS,
|
|
596
|
+
0,
|
|
597
|
+
[_oV],
|
|
598
|
+
[() => DescriptorSource$]
|
|
599
|
+
];
|
|
600
|
+
export var UpdatedDiscoveryConfiguration$ = [3, n0, _UDC,
|
|
601
|
+
0,
|
|
602
|
+
[_aCu],
|
|
603
|
+
[() => UpdatedAuthorizerConfiguration$]
|
|
604
|
+
];
|
|
605
|
+
export var UpdatedDisplayName$ = [3, n0, _UDN,
|
|
606
|
+
0,
|
|
607
|
+
[_oV],
|
|
608
|
+
[0]
|
|
609
|
+
];
|
|
610
|
+
export var UpdatedMcpServerAdditionalData$ = [3, n0, _UMSAD,
|
|
611
|
+
0,
|
|
612
|
+
[_oV],
|
|
613
|
+
[[() => UpdatedMcpServerAdditionalDataFields$, 0]]
|
|
614
|
+
];
|
|
615
|
+
export var UpdatedMcpServerAdditionalDataFields$ = [3, n0, _UMSADF,
|
|
616
|
+
0,
|
|
617
|
+
[_to],
|
|
618
|
+
[[() => UpdatedMcpToolsDescriptor$, 0]]
|
|
619
|
+
];
|
|
620
|
+
export var UpdatedMcpServerDescriptor$ = [3, n0, _UMSD,
|
|
621
|
+
0,
|
|
622
|
+
[_oV],
|
|
623
|
+
[[() => UpdatedMcpServerDescriptorFields$, 0]]
|
|
624
|
+
];
|
|
625
|
+
export var UpdatedMcpServerDescriptorFields$ = [3, n0, _UMSDF,
|
|
626
|
+
0,
|
|
627
|
+
[_d, _dSV, _so, _aD],
|
|
628
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$, () => UpdatedDescriptorSource$, [() => UpdatedMcpServerAdditionalData$, 0]]
|
|
629
|
+
];
|
|
630
|
+
export var UpdatedMcpToolsDescriptor$ = [3, n0, _UMTD,
|
|
631
|
+
0,
|
|
632
|
+
[_oV],
|
|
633
|
+
[[() => UpdatedMcpToolsDescriptorFields$, 0]]
|
|
634
|
+
];
|
|
635
|
+
export var UpdatedMcpToolsDescriptorFields$ = [3, n0, _UMTDF,
|
|
636
|
+
0,
|
|
637
|
+
[_d, _dSV],
|
|
638
|
+
[[() => UpdatedDescriptorData$, 0], () => UpdatedDataSchemaVersion$]
|
|
639
|
+
];
|
|
640
|
+
export var UpdateRegistryRecordRequest$ = [3, n0, _URRR,
|
|
641
|
+
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
|
|
644
|
+
];
|
|
645
|
+
export var UpdateRegistryRecordResponse$ = [3, n0, _URRRp,
|
|
646
|
+
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
|
|
649
|
+
];
|
|
650
|
+
export var UpdateRegistryRecordStatusRequest$ = [3, n0, _URRSR,
|
|
651
|
+
0,
|
|
652
|
+
[_rI, _rIe, _st, _sR],
|
|
653
|
+
[[0, 1], [0, 1], 0, 0], 4
|
|
654
|
+
];
|
|
655
|
+
export var UpdateRegistryRecordStatusResponse$ = [3, n0, _URRSRp,
|
|
656
|
+
0,
|
|
657
|
+
[_rAe, _rA, _rIe, _st, _sR, _uA],
|
|
658
|
+
[0, 0, 0, 0, 0, 5], 6
|
|
659
|
+
];
|
|
660
|
+
export var UpdateRegistryRequest$ = [3, n0, _URRp,
|
|
661
|
+
0,
|
|
662
|
+
[_rI, _n, _des, _dC, _aC],
|
|
663
|
+
[[0, 1], 0, [() => UpdatedDescription$, 0], () => UpdatedDiscoveryConfiguration$, () => UpdatedApprovalConfiguration$], 1
|
|
664
|
+
];
|
|
665
|
+
export var UpdateRegistryResponse$ = [3, n0, _URRpd,
|
|
666
|
+
0,
|
|
667
|
+
[_n, _rI, _rAe, _st, _cA, _uA, _des, _dC, _aC, _sR],
|
|
668
|
+
[0, 0, 0, 0, 5, 5, [() => Description, 0], () => DiscoveryConfiguration$, () => ApprovalConfiguration$, 0], 6
|
|
669
|
+
];
|
|
670
|
+
export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
671
|
+
0,
|
|
672
|
+
[_n, _m],
|
|
673
|
+
[0, 0], 2
|
|
674
|
+
];
|
|
675
|
+
var AllowedAudienceList = 64 | 0;
|
|
676
|
+
var AllowedClientsList = 64 | 0;
|
|
677
|
+
var AllowedScopesType = 64 | 0;
|
|
678
|
+
var AutoApprovalRuleList = 64 | 0;
|
|
679
|
+
var CustomClaimValidationsType = [1, n0, _CCVTu,
|
|
680
|
+
0, () => CustomClaimValidationType$
|
|
681
|
+
];
|
|
682
|
+
var FilterValues = 64 | 0;
|
|
683
|
+
var MatchValueStringList = 64 | 0;
|
|
684
|
+
var PrivateEndpointOverrides = [1, n0, _PEOr,
|
|
685
|
+
0, () => PrivateEndpointOverride$
|
|
686
|
+
];
|
|
687
|
+
var RegistryFilterList = [1, n0, _RFL,
|
|
688
|
+
0, () => RegistryFilter$
|
|
689
|
+
];
|
|
690
|
+
var RegistryRecordCredentialProviderConfigurationList = [1, n0, _RRCPCL,
|
|
691
|
+
0, () => RegistryRecordCredentialProviderConfiguration$
|
|
692
|
+
];
|
|
693
|
+
var RegistryRecordFilterList = [1, n0, _RRFL,
|
|
694
|
+
0, () => RegistryRecordFilter$
|
|
695
|
+
];
|
|
696
|
+
var RegistryRecordSummaryList = [1, n0, _RRSL,
|
|
697
|
+
0, [() => RegistryRecordSummary$,
|
|
698
|
+
0]
|
|
699
|
+
];
|
|
700
|
+
var RegistrySummaryList = [1, n0, _RSL,
|
|
701
|
+
0, [() => RegistrySummary$,
|
|
702
|
+
0]
|
|
703
|
+
];
|
|
704
|
+
var ScopeList = 64 | 0;
|
|
705
|
+
var SecurityGroupIds = 64 | 0;
|
|
706
|
+
var SubnetIds = 64 | 0;
|
|
707
|
+
var TagKeyList = 64 | 0;
|
|
708
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
709
|
+
0, () => ValidationExceptionField$
|
|
710
|
+
];
|
|
711
|
+
var CustomParameterMap = 128 | 0;
|
|
712
|
+
var ResourceTagsMap = 128 | 0;
|
|
713
|
+
var TagsMap = 128 | 0;
|
|
714
|
+
export var AuthorizerConfiguration$ = [4, n0, _ACu,
|
|
715
|
+
0,
|
|
716
|
+
[_cJWTA],
|
|
717
|
+
[() => CustomJWTAuthorizerConfiguration$]
|
|
718
|
+
];
|
|
719
|
+
export var ClaimMatchValueType$ = [4, n0, _CMVT,
|
|
720
|
+
0,
|
|
721
|
+
[_mVS, _mVSL],
|
|
722
|
+
[0, 64 | 0]
|
|
723
|
+
];
|
|
724
|
+
export var PrivateEndpoint$ = [4, n0, _PE,
|
|
725
|
+
0,
|
|
726
|
+
[_sMLR, _mVR],
|
|
727
|
+
[() => SelfManagedLatticeResource$, () => ManagedVpcResource$]
|
|
728
|
+
];
|
|
729
|
+
export var RegistryRecordCredentialProviderUnion$ = [4, n0, _RRCPU,
|
|
730
|
+
0,
|
|
731
|
+
[_oCP, _iCP],
|
|
732
|
+
[() => RegistryRecordOAuthCredentialProvider$, () => RegistryRecordIamCredentialProvider$]
|
|
733
|
+
];
|
|
734
|
+
export var SelfManagedLatticeResource$ = [4, n0, _SMLR,
|
|
735
|
+
0,
|
|
736
|
+
[_rCI],
|
|
737
|
+
[0]
|
|
738
|
+
];
|
|
739
|
+
export var CreateRegistry$ = [9, n0, _CR,
|
|
740
|
+
{ [_h]: ["POST", "/registries", 202] }, () => CreateRegistryRequest$, () => CreateRegistryResponse$
|
|
741
|
+
];
|
|
742
|
+
export var CreateRegistryRecord$ = [9, n0, _CRRre,
|
|
743
|
+
{ [_h]: ["POST", "/registries/{registryId}/records", 202] }, () => CreateRegistryRecordRequest$, () => CreateRegistryRecordResponse$
|
|
744
|
+
];
|
|
745
|
+
export var DeleteRegistry$ = [9, n0, _DR,
|
|
746
|
+
{ [_h]: ["DELETE", "/registries/{registryId}", 202] }, () => DeleteRegistryRequest$, () => DeleteRegistryResponse$
|
|
747
|
+
];
|
|
748
|
+
export var DeleteRegistryRecord$ = [9, n0, _DRRel,
|
|
749
|
+
{ [_h]: ["DELETE", "/registries/{registryId}/records/{recordId}", 200] }, () => DeleteRegistryRecordRequest$, () => DeleteRegistryRecordResponse$
|
|
750
|
+
];
|
|
751
|
+
export var GetRegistry$ = [9, n0, _GR,
|
|
752
|
+
{ [_h]: ["GET", "/registries/{registryId}", 200] }, () => GetRegistryRequest$, () => GetRegistryResponse$
|
|
753
|
+
];
|
|
754
|
+
export var GetRegistryRecord$ = [9, n0, _GRRet,
|
|
755
|
+
{ [_h]: ["GET", "/registries/{registryId}/records/{recordId}", 200] }, () => GetRegistryRecordRequest$, () => GetRegistryRecordResponse$
|
|
756
|
+
];
|
|
757
|
+
export var ListRegistries$ = [9, n0, _LR,
|
|
758
|
+
{ [_h]: ["POST", "/registries-list", 200] }, () => ListRegistriesRequest$, () => ListRegistriesResponse$
|
|
759
|
+
];
|
|
760
|
+
export var ListRegistryRecords$ = [9, n0, _LRRis,
|
|
761
|
+
{ [_h]: ["POST", "/registries/{registryId}/records-list", 200] }, () => ListRegistryRecordsRequest$, () => ListRegistryRecordsResponse$
|
|
762
|
+
];
|
|
763
|
+
export var ListTagsForResource$ = [9, n0, _LTFR,
|
|
764
|
+
{ [_h]: ["GET", "/tags/{resourceArn+}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
765
|
+
];
|
|
766
|
+
export var SubmitRegistryRecordForApproval$ = [9, n0, _SRRFA,
|
|
767
|
+
{ [_h]: ["POST", "/registries/{registryId}/records/{recordId}/submit-for-approval", 202] }, () => SubmitRegistryRecordForApprovalRequest$, () => SubmitRegistryRecordForApprovalResponse$
|
|
768
|
+
];
|
|
769
|
+
export var TagResource$ = [9, n0, _TR,
|
|
770
|
+
{ [_h]: ["POST", "/tags/{resourceArn+}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
771
|
+
];
|
|
772
|
+
export var UntagResource$ = [9, n0, _UR,
|
|
773
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn+}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
774
|
+
];
|
|
775
|
+
export var UpdateRegistry$ = [9, n0, _URp,
|
|
776
|
+
{ [_h]: ["PATCH", "/registries/{registryId}", 202] }, () => UpdateRegistryRequest$, () => UpdateRegistryResponse$
|
|
777
|
+
];
|
|
778
|
+
export var UpdateRegistryRecord$ = [9, n0, _URRpda,
|
|
779
|
+
{ [_h]: ["PATCH", "/registries/{registryId}/records/{recordId}", 202] }, () => UpdateRegistryRecordRequest$, () => UpdateRegistryRecordResponse$
|
|
780
|
+
];
|
|
781
|
+
export var UpdateRegistryRecordStatus$ = [9, n0, _URRS,
|
|
782
|
+
{ [_h]: ["PATCH", "/registries/{registryId}/records/{recordId}/status", 202] }, () => UpdateRegistryRecordStatusRequest$, () => UpdateRegistryRecordStatusResponse$
|
|
783
|
+
];
|