@aws-sdk/client-bedrock-agentcore-control 3.1027.0 → 3.1029.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 +84 -0
- package/dist-cjs/index.js +223 -0
- package/dist-cjs/schemas/schemas_0.js +502 -56
- package/dist-es/BedrockAgentCoreControl.js +28 -0
- package/dist-es/commands/CreateRegistryCommand.js +16 -0
- package/dist-es/commands/CreateRegistryRecordCommand.js +16 -0
- package/dist-es/commands/DeleteRegistryCommand.js +16 -0
- package/dist-es/commands/DeleteRegistryRecordCommand.js +16 -0
- package/dist-es/commands/GetRegistryCommand.js +16 -0
- package/dist-es/commands/GetRegistryRecordCommand.js +16 -0
- package/dist-es/commands/ListRegistriesCommand.js +16 -0
- package/dist-es/commands/ListRegistryRecordsCommand.js +16 -0
- package/dist-es/commands/SubmitRegistryRecordForApprovalCommand.js +16 -0
- package/dist-es/commands/UpdateRegistryCommand.js +16 -0
- package/dist-es/commands/UpdateRegistryRecordCommand.js +16 -0
- package/dist-es/commands/UpdateRegistryRecordStatusCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +40 -0
- package/dist-es/pagination/ListRegistriesPaginator.js +4 -0
- package/dist-es/pagination/ListRegistryRecordsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +491 -46
- package/dist-types/BedrockAgentCoreControl.d.ts +99 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +1 -2
- package/dist-types/commands/CreateRegistryCommand.d.ts +127 -0
- package/dist-types/commands/CreateRegistryRecordCommand.d.ts +159 -0
- package/dist-types/commands/DeleteRegistryCommand.d.ts +92 -0
- package/dist-types/commands/DeleteRegistryRecordCommand.d.ts +91 -0
- package/dist-types/commands/GetRegistryCommand.d.ts +129 -0
- package/dist-types/commands/GetRegistryRecordCommand.d.ts +161 -0
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -1
- package/dist-types/commands/ListRegistriesCommand.d.ts +101 -0
- package/dist-types/commands/ListRegistryRecordsCommand.d.ts +111 -0
- package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +97 -0
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRegistryCommand.d.ts +175 -0
- package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +248 -0
- package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +96 -0
- package/dist-types/models/models_0.d.ts +70 -176
- package/dist-types/models/models_1.d.ts +1438 -6
- 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 +2 -0
- package/dist-types/schemas/schemas_0.d.ts +71 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +219 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateRegistryRecordCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteRegistryRecordCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetRegistryRecordCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +54 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -40
- package/dist-types/ts3.4/models/models_1.d.ts +378 -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 +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +71 -0
- package/package.json +1 -1
|
@@ -14,6 +14,8 @@ import { CreateOauth2CredentialProviderCommand, } from "./commands/CreateOauth2C
|
|
|
14
14
|
import { CreateOnlineEvaluationConfigCommand, } from "./commands/CreateOnlineEvaluationConfigCommand";
|
|
15
15
|
import { CreatePolicyCommand, } from "./commands/CreatePolicyCommand";
|
|
16
16
|
import { CreatePolicyEngineCommand, } from "./commands/CreatePolicyEngineCommand";
|
|
17
|
+
import { CreateRegistryCommand, } from "./commands/CreateRegistryCommand";
|
|
18
|
+
import { CreateRegistryRecordCommand, } from "./commands/CreateRegistryRecordCommand";
|
|
17
19
|
import { CreateWorkloadIdentityCommand, } from "./commands/CreateWorkloadIdentityCommand";
|
|
18
20
|
import { DeleteAgentRuntimeCommand, } from "./commands/DeleteAgentRuntimeCommand";
|
|
19
21
|
import { DeleteAgentRuntimeEndpointCommand, } from "./commands/DeleteAgentRuntimeEndpointCommand";
|
|
@@ -29,6 +31,8 @@ import { DeleteOauth2CredentialProviderCommand, } from "./commands/DeleteOauth2C
|
|
|
29
31
|
import { DeleteOnlineEvaluationConfigCommand, } from "./commands/DeleteOnlineEvaluationConfigCommand";
|
|
30
32
|
import { DeletePolicyCommand, } from "./commands/DeletePolicyCommand";
|
|
31
33
|
import { DeletePolicyEngineCommand, } from "./commands/DeletePolicyEngineCommand";
|
|
34
|
+
import { DeleteRegistryCommand, } from "./commands/DeleteRegistryCommand";
|
|
35
|
+
import { DeleteRegistryRecordCommand, } from "./commands/DeleteRegistryRecordCommand";
|
|
32
36
|
import { DeleteResourcePolicyCommand, } from "./commands/DeleteResourcePolicyCommand";
|
|
33
37
|
import { DeleteWorkloadIdentityCommand, } from "./commands/DeleteWorkloadIdentityCommand";
|
|
34
38
|
import { GetAgentRuntimeCommand, } from "./commands/GetAgentRuntimeCommand";
|
|
@@ -46,6 +50,8 @@ import { GetOnlineEvaluationConfigCommand, } from "./commands/GetOnlineEvaluatio
|
|
|
46
50
|
import { GetPolicyCommand } from "./commands/GetPolicyCommand";
|
|
47
51
|
import { GetPolicyEngineCommand, } from "./commands/GetPolicyEngineCommand";
|
|
48
52
|
import { GetPolicyGenerationCommand, } from "./commands/GetPolicyGenerationCommand";
|
|
53
|
+
import { GetRegistryCommand, } from "./commands/GetRegistryCommand";
|
|
54
|
+
import { GetRegistryRecordCommand, } from "./commands/GetRegistryRecordCommand";
|
|
49
55
|
import { GetResourcePolicyCommand, } from "./commands/GetResourcePolicyCommand";
|
|
50
56
|
import { GetTokenVaultCommand, } from "./commands/GetTokenVaultCommand";
|
|
51
57
|
import { GetWorkloadIdentityCommand, } from "./commands/GetWorkloadIdentityCommand";
|
|
@@ -66,11 +72,14 @@ import { ListPoliciesCommand, } from "./commands/ListPoliciesCommand";
|
|
|
66
72
|
import { ListPolicyEnginesCommand, } from "./commands/ListPolicyEnginesCommand";
|
|
67
73
|
import { ListPolicyGenerationAssetsCommand, } from "./commands/ListPolicyGenerationAssetsCommand";
|
|
68
74
|
import { ListPolicyGenerationsCommand, } from "./commands/ListPolicyGenerationsCommand";
|
|
75
|
+
import { ListRegistriesCommand, } from "./commands/ListRegistriesCommand";
|
|
76
|
+
import { ListRegistryRecordsCommand, } from "./commands/ListRegistryRecordsCommand";
|
|
69
77
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
70
78
|
import { ListWorkloadIdentitiesCommand, } from "./commands/ListWorkloadIdentitiesCommand";
|
|
71
79
|
import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
72
80
|
import { SetTokenVaultCMKCommand, } from "./commands/SetTokenVaultCMKCommand";
|
|
73
81
|
import { StartPolicyGenerationCommand, } from "./commands/StartPolicyGenerationCommand";
|
|
82
|
+
import { SubmitRegistryRecordForApprovalCommand, } from "./commands/SubmitRegistryRecordForApprovalCommand";
|
|
74
83
|
import { SynchronizeGatewayTargetsCommand, } from "./commands/SynchronizeGatewayTargetsCommand";
|
|
75
84
|
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
76
85
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
@@ -85,6 +94,9 @@ import { UpdateOauth2CredentialProviderCommand, } from "./commands/UpdateOauth2C
|
|
|
85
94
|
import { UpdateOnlineEvaluationConfigCommand, } from "./commands/UpdateOnlineEvaluationConfigCommand";
|
|
86
95
|
import { UpdatePolicyCommand, } from "./commands/UpdatePolicyCommand";
|
|
87
96
|
import { UpdatePolicyEngineCommand, } from "./commands/UpdatePolicyEngineCommand";
|
|
97
|
+
import { UpdateRegistryCommand, } from "./commands/UpdateRegistryCommand";
|
|
98
|
+
import { UpdateRegistryRecordCommand, } from "./commands/UpdateRegistryRecordCommand";
|
|
99
|
+
import { UpdateRegistryRecordStatusCommand, } from "./commands/UpdateRegistryRecordStatusCommand";
|
|
88
100
|
import { UpdateWorkloadIdentityCommand, } from "./commands/UpdateWorkloadIdentityCommand";
|
|
89
101
|
import { paginateListAgentRuntimeEndpoints } from "./pagination/ListAgentRuntimeEndpointsPaginator";
|
|
90
102
|
import { paginateListAgentRuntimes } from "./pagination/ListAgentRuntimesPaginator";
|
|
@@ -103,6 +115,8 @@ import { paginateListPolicies } from "./pagination/ListPoliciesPaginator";
|
|
|
103
115
|
import { paginateListPolicyEngines } from "./pagination/ListPolicyEnginesPaginator";
|
|
104
116
|
import { paginateListPolicyGenerationAssets } from "./pagination/ListPolicyGenerationAssetsPaginator";
|
|
105
117
|
import { paginateListPolicyGenerations } from "./pagination/ListPolicyGenerationsPaginator";
|
|
118
|
+
import { paginateListRegistries } from "./pagination/ListRegistriesPaginator";
|
|
119
|
+
import { paginateListRegistryRecords } from "./pagination/ListRegistryRecordsPaginator";
|
|
106
120
|
import { paginateListWorkloadIdentities } from "./pagination/ListWorkloadIdentitiesPaginator";
|
|
107
121
|
import { waitUntilMemoryCreated } from "./waiters/waitForMemoryCreated";
|
|
108
122
|
import { waitUntilPolicyActive } from "./waiters/waitForPolicyActive";
|
|
@@ -125,6 +139,8 @@ const commands = {
|
|
|
125
139
|
CreateOnlineEvaluationConfigCommand,
|
|
126
140
|
CreatePolicyCommand,
|
|
127
141
|
CreatePolicyEngineCommand,
|
|
142
|
+
CreateRegistryCommand,
|
|
143
|
+
CreateRegistryRecordCommand,
|
|
128
144
|
CreateWorkloadIdentityCommand,
|
|
129
145
|
DeleteAgentRuntimeCommand,
|
|
130
146
|
DeleteAgentRuntimeEndpointCommand,
|
|
@@ -140,6 +156,8 @@ const commands = {
|
|
|
140
156
|
DeleteOnlineEvaluationConfigCommand,
|
|
141
157
|
DeletePolicyCommand,
|
|
142
158
|
DeletePolicyEngineCommand,
|
|
159
|
+
DeleteRegistryCommand,
|
|
160
|
+
DeleteRegistryRecordCommand,
|
|
143
161
|
DeleteResourcePolicyCommand,
|
|
144
162
|
DeleteWorkloadIdentityCommand,
|
|
145
163
|
GetAgentRuntimeCommand,
|
|
@@ -157,6 +175,8 @@ const commands = {
|
|
|
157
175
|
GetPolicyCommand,
|
|
158
176
|
GetPolicyEngineCommand,
|
|
159
177
|
GetPolicyGenerationCommand,
|
|
178
|
+
GetRegistryCommand,
|
|
179
|
+
GetRegistryRecordCommand,
|
|
160
180
|
GetResourcePolicyCommand,
|
|
161
181
|
GetTokenVaultCommand,
|
|
162
182
|
GetWorkloadIdentityCommand,
|
|
@@ -177,11 +197,14 @@ const commands = {
|
|
|
177
197
|
ListPolicyEnginesCommand,
|
|
178
198
|
ListPolicyGenerationAssetsCommand,
|
|
179
199
|
ListPolicyGenerationsCommand,
|
|
200
|
+
ListRegistriesCommand,
|
|
201
|
+
ListRegistryRecordsCommand,
|
|
180
202
|
ListTagsForResourceCommand,
|
|
181
203
|
ListWorkloadIdentitiesCommand,
|
|
182
204
|
PutResourcePolicyCommand,
|
|
183
205
|
SetTokenVaultCMKCommand,
|
|
184
206
|
StartPolicyGenerationCommand,
|
|
207
|
+
SubmitRegistryRecordForApprovalCommand,
|
|
185
208
|
SynchronizeGatewayTargetsCommand,
|
|
186
209
|
TagResourceCommand,
|
|
187
210
|
UntagResourceCommand,
|
|
@@ -196,6 +219,9 @@ const commands = {
|
|
|
196
219
|
UpdateOnlineEvaluationConfigCommand,
|
|
197
220
|
UpdatePolicyCommand,
|
|
198
221
|
UpdatePolicyEngineCommand,
|
|
222
|
+
UpdateRegistryCommand,
|
|
223
|
+
UpdateRegistryRecordCommand,
|
|
224
|
+
UpdateRegistryRecordStatusCommand,
|
|
199
225
|
UpdateWorkloadIdentityCommand,
|
|
200
226
|
};
|
|
201
227
|
const paginators = {
|
|
@@ -216,6 +242,8 @@ const paginators = {
|
|
|
216
242
|
paginateListPolicyEngines,
|
|
217
243
|
paginateListPolicyGenerationAssets,
|
|
218
244
|
paginateListPolicyGenerations,
|
|
245
|
+
paginateListRegistries,
|
|
246
|
+
paginateListRegistryRecords,
|
|
219
247
|
paginateListWorkloadIdentities,
|
|
220
248
|
};
|
|
221
249
|
const waiters = {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateRegistry$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateRegistryCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "CreateRegistry", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "CreateRegistryCommand")
|
|
14
|
+
.sc(CreateRegistry$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateRegistryRecord$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateRegistryRecordCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "CreateRegistryRecord", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "CreateRegistryRecordCommand")
|
|
14
|
+
.sc(CreateRegistryRecord$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteRegistry$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteRegistryCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "DeleteRegistry", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "DeleteRegistryCommand")
|
|
14
|
+
.sc(DeleteRegistry$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteRegistryRecord$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteRegistryRecordCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "DeleteRegistryRecord", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "DeleteRegistryRecordCommand")
|
|
14
|
+
.sc(DeleteRegistryRecord$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetRegistry$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetRegistryCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "GetRegistry", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "GetRegistryCommand")
|
|
14
|
+
.sc(GetRegistry$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetRegistryRecord$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetRegistryRecordCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "GetRegistryRecord", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "GetRegistryRecordCommand")
|
|
14
|
+
.sc(GetRegistryRecord$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListRegistries$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListRegistriesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "ListRegistries", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "ListRegistriesCommand")
|
|
14
|
+
.sc(ListRegistries$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListRegistryRecords$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListRegistryRecordsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "ListRegistryRecords", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "ListRegistryRecordsCommand")
|
|
14
|
+
.sc(ListRegistryRecords$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { SubmitRegistryRecordForApproval$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class SubmitRegistryRecordForApprovalCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "SubmitRegistryRecordForApproval", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "SubmitRegistryRecordForApprovalCommand")
|
|
14
|
+
.sc(SubmitRegistryRecordForApproval$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateRegistry$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateRegistryCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateRegistry", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "UpdateRegistryCommand")
|
|
14
|
+
.sc(UpdateRegistry$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateRegistryRecord$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateRegistryRecordCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateRegistryRecord", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "UpdateRegistryRecordCommand")
|
|
14
|
+
.sc(UpdateRegistryRecord$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateRegistryRecordStatus$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateRegistryRecordStatusCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonBedrockAgentCoreControl", "UpdateRegistryRecordStatus", {})
|
|
13
|
+
.n("BedrockAgentCoreControlClient", "UpdateRegistryRecordStatusCommand")
|
|
14
|
+
.sc(UpdateRegistryRecordStatus$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -12,6 +12,8 @@ export * from "./CreateOauth2CredentialProviderCommand";
|
|
|
12
12
|
export * from "./CreateOnlineEvaluationConfigCommand";
|
|
13
13
|
export * from "./CreatePolicyCommand";
|
|
14
14
|
export * from "./CreatePolicyEngineCommand";
|
|
15
|
+
export * from "./CreateRegistryCommand";
|
|
16
|
+
export * from "./CreateRegistryRecordCommand";
|
|
15
17
|
export * from "./CreateWorkloadIdentityCommand";
|
|
16
18
|
export * from "./DeleteAgentRuntimeCommand";
|
|
17
19
|
export * from "./DeleteAgentRuntimeEndpointCommand";
|
|
@@ -27,6 +29,8 @@ export * from "./DeleteOauth2CredentialProviderCommand";
|
|
|
27
29
|
export * from "./DeleteOnlineEvaluationConfigCommand";
|
|
28
30
|
export * from "./DeletePolicyCommand";
|
|
29
31
|
export * from "./DeletePolicyEngineCommand";
|
|
32
|
+
export * from "./DeleteRegistryCommand";
|
|
33
|
+
export * from "./DeleteRegistryRecordCommand";
|
|
30
34
|
export * from "./DeleteResourcePolicyCommand";
|
|
31
35
|
export * from "./DeleteWorkloadIdentityCommand";
|
|
32
36
|
export * from "./GetAgentRuntimeCommand";
|
|
@@ -44,6 +48,8 @@ export * from "./GetOnlineEvaluationConfigCommand";
|
|
|
44
48
|
export * from "./GetPolicyCommand";
|
|
45
49
|
export * from "./GetPolicyEngineCommand";
|
|
46
50
|
export * from "./GetPolicyGenerationCommand";
|
|
51
|
+
export * from "./GetRegistryCommand";
|
|
52
|
+
export * from "./GetRegistryRecordCommand";
|
|
47
53
|
export * from "./GetResourcePolicyCommand";
|
|
48
54
|
export * from "./GetTokenVaultCommand";
|
|
49
55
|
export * from "./GetWorkloadIdentityCommand";
|
|
@@ -64,11 +70,14 @@ export * from "./ListPoliciesCommand";
|
|
|
64
70
|
export * from "./ListPolicyEnginesCommand";
|
|
65
71
|
export * from "./ListPolicyGenerationAssetsCommand";
|
|
66
72
|
export * from "./ListPolicyGenerationsCommand";
|
|
73
|
+
export * from "./ListRegistriesCommand";
|
|
74
|
+
export * from "./ListRegistryRecordsCommand";
|
|
67
75
|
export * from "./ListTagsForResourceCommand";
|
|
68
76
|
export * from "./ListWorkloadIdentitiesCommand";
|
|
69
77
|
export * from "./PutResourcePolicyCommand";
|
|
70
78
|
export * from "./SetTokenVaultCMKCommand";
|
|
71
79
|
export * from "./StartPolicyGenerationCommand";
|
|
80
|
+
export * from "./SubmitRegistryRecordForApprovalCommand";
|
|
72
81
|
export * from "./SynchronizeGatewayTargetsCommand";
|
|
73
82
|
export * from "./TagResourceCommand";
|
|
74
83
|
export * from "./UntagResourceCommand";
|
|
@@ -83,4 +92,7 @@ export * from "./UpdateOauth2CredentialProviderCommand";
|
|
|
83
92
|
export * from "./UpdateOnlineEvaluationConfigCommand";
|
|
84
93
|
export * from "./UpdatePolicyCommand";
|
|
85
94
|
export * from "./UpdatePolicyEngineCommand";
|
|
95
|
+
export * from "./UpdateRegistryCommand";
|
|
96
|
+
export * from "./UpdateRegistryRecordCommand";
|
|
97
|
+
export * from "./UpdateRegistryRecordStatusCommand";
|
|
86
98
|
export * from "./UpdateWorkloadIdentityCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -308,3 +308,43 @@ export const PolicyStatus = {
|
|
|
308
308
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
309
309
|
UPDATING: "UPDATING",
|
|
310
310
|
};
|
|
311
|
+
export const DescriptorType = {
|
|
312
|
+
A2A: "A2A",
|
|
313
|
+
AGENT_SKILLS: "AGENT_SKILLS",
|
|
314
|
+
CUSTOM: "CUSTOM",
|
|
315
|
+
MCP: "MCP",
|
|
316
|
+
};
|
|
317
|
+
export const RegistryRecordOAuthGrantType = {
|
|
318
|
+
CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",
|
|
319
|
+
};
|
|
320
|
+
export const RegistryRecordCredentialProviderType = {
|
|
321
|
+
IAM: "IAM",
|
|
322
|
+
OAUTH: "OAUTH",
|
|
323
|
+
};
|
|
324
|
+
export const SynchronizationType = {
|
|
325
|
+
URL: "URL",
|
|
326
|
+
};
|
|
327
|
+
export const RegistryRecordStatus = {
|
|
328
|
+
APPROVED: "APPROVED",
|
|
329
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
330
|
+
CREATING: "CREATING",
|
|
331
|
+
DEPRECATED: "DEPRECATED",
|
|
332
|
+
DRAFT: "DRAFT",
|
|
333
|
+
PENDING_APPROVAL: "PENDING_APPROVAL",
|
|
334
|
+
REJECTED: "REJECTED",
|
|
335
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
336
|
+
UPDATING: "UPDATING",
|
|
337
|
+
};
|
|
338
|
+
export const RegistryAuthorizerType = {
|
|
339
|
+
AWS_IAM: "AWS_IAM",
|
|
340
|
+
CUSTOM_JWT: "CUSTOM_JWT",
|
|
341
|
+
};
|
|
342
|
+
export const RegistryStatus = {
|
|
343
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
344
|
+
CREATING: "CREATING",
|
|
345
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
346
|
+
DELETING: "DELETING",
|
|
347
|
+
READY: "READY",
|
|
348
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
349
|
+
UPDATING: "UPDATING",
|
|
350
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListRegistriesCommand, } from "../commands/ListRegistriesCommand";
|
|
4
|
+
export const paginateListRegistries = createPaginator(BedrockAgentCoreControlClient, ListRegistriesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListRegistryRecordsCommand, } from "../commands/ListRegistryRecordsCommand";
|
|
4
|
+
export const paginateListRegistryRecords = createPaginator(BedrockAgentCoreControlClient, ListRegistryRecordsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -16,4 +16,6 @@ export * from "./ListPoliciesPaginator";
|
|
|
16
16
|
export * from "./ListPolicyEnginesPaginator";
|
|
17
17
|
export * from "./ListPolicyGenerationAssetsPaginator";
|
|
18
18
|
export * from "./ListPolicyGenerationsPaginator";
|
|
19
|
+
export * from "./ListRegistriesPaginator";
|
|
20
|
+
export * from "./ListRegistryRecordsPaginator";
|
|
19
21
|
export * from "./ListWorkloadIdentitiesPaginator";
|