@aws-sdk/client-bedrock-agentcore-control 3.940.0 → 3.943.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 +216 -0
- package/dist-cjs/index.js +2140 -143
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- package/dist-es/commands/CreateEvaluatorCommand.js +16 -0
- package/dist-es/commands/CreateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteEvaluatorCommand.js +16 -0
- package/dist-es/commands/DeleteOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeletePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/dist-es/commands/GetEvaluatorCommand.js +16 -0
- package/dist-es/commands/GetOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetPolicyEngineCommand.js +16 -0
- package/dist-es/commands/GetPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/dist-es/commands/ListEvaluatorsCommand.js +16 -0
- package/dist-es/commands/ListOnlineEvaluationConfigsCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListPolicyEnginesCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationAssetsCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationsCommand.js +16 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/dist-es/commands/StartPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/UpdateEvaluatorCommand.js +16 -0
- package/dist-es/commands/UpdateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/models/enums.js +104 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListEvaluatorsPaginator.js +4 -0
- package/dist-es/pagination/ListOnlineEvaluationConfigsPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyEnginesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationAssetsPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/schemas/schemas_0.js +1320 -97
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForPolicyActive.js +58 -0
- package/dist-es/waiters/waitForPolicyDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyEngineActive.js +58 -0
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyGenerationCompleted.js +58 -0
- package/dist-types/BedrockAgentCoreControl.d.ts +192 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +29 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/CreateMemoryCommand.d.ts +52 -5
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +140 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +119 -0
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +103 -0
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +3 -0
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +108 -0
- package/dist-types/commands/DeletePolicyEngineCommand.d.ts +101 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +87 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +19 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +22 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +26 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +27 -5
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +137 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
- package/dist-types/commands/GetPolicyEngineCommand.d.ts +98 -0
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +103 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +89 -0
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +100 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +113 -0
- package/dist-types/commands/ListPolicyEnginesCommand.d.ts +101 -0
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +109 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +109 -0
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +26 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/UpdateMemoryCommand.d.ts +73 -8
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +138 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +115 -0
- package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +102 -0
- package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +162 -0
- package/dist-types/ts3.4/commands/CreateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEvaluatorCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEvaluatorsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +132 -0
- package/dist-types/ts3.4/models/models_0.d.ts +835 -188
- package/dist-types/ts3.4/models/models_1.d.ts +331 -0
- package/dist-types/ts3.4/pagination/ListEvaluatorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyEnginesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForPolicyActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +14 -0
- package/package.json +5 -5
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
ListPolicyEnginesRequest,
|
|
10
|
+
ListPolicyEnginesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListPolicyEnginesCommandInput
|
|
15
|
+
extends ListPolicyEnginesRequest {}
|
|
16
|
+
export interface ListPolicyEnginesCommandOutput
|
|
17
|
+
extends ListPolicyEnginesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListPolicyEnginesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListPolicyEnginesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListPolicyEnginesCommandInput,
|
|
24
|
+
ListPolicyEnginesCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListPolicyEnginesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListPolicyEnginesCommandInput,
|
|
33
|
+
ListPolicyEnginesCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListPolicyEnginesCommand extends ListPolicyEnginesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListPolicyEnginesRequest;
|
|
44
|
+
output: ListPolicyEnginesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListPolicyEnginesCommandInput;
|
|
48
|
+
output: ListPolicyEnginesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
ListPolicyGenerationAssetsRequest,
|
|
10
|
+
ListPolicyGenerationAssetsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListPolicyGenerationAssetsCommandInput
|
|
15
|
+
extends ListPolicyGenerationAssetsRequest {}
|
|
16
|
+
export interface ListPolicyGenerationAssetsCommandOutput
|
|
17
|
+
extends ListPolicyGenerationAssetsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListPolicyGenerationAssetsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListPolicyGenerationAssetsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListPolicyGenerationAssetsCommandInput,
|
|
24
|
+
ListPolicyGenerationAssetsCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListPolicyGenerationAssetsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListPolicyGenerationAssetsCommandInput,
|
|
33
|
+
ListPolicyGenerationAssetsCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListPolicyGenerationAssetsCommand extends ListPolicyGenerationAssetsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListPolicyGenerationAssetsRequest;
|
|
44
|
+
output: ListPolicyGenerationAssetsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListPolicyGenerationAssetsCommandInput;
|
|
48
|
+
output: ListPolicyGenerationAssetsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
ListPolicyGenerationsRequest,
|
|
10
|
+
ListPolicyGenerationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListPolicyGenerationsCommandInput
|
|
15
|
+
extends ListPolicyGenerationsRequest {}
|
|
16
|
+
export interface ListPolicyGenerationsCommandOutput
|
|
17
|
+
extends ListPolicyGenerationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListPolicyGenerationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListPolicyGenerationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListPolicyGenerationsCommandInput,
|
|
24
|
+
ListPolicyGenerationsCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListPolicyGenerationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListPolicyGenerationsCommandInput,
|
|
33
|
+
ListPolicyGenerationsCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListPolicyGenerationsCommand extends ListPolicyGenerationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListPolicyGenerationsRequest;
|
|
44
|
+
output: ListPolicyGenerationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListPolicyGenerationsCommandInput;
|
|
48
|
+
output: ListPolicyGenerationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
PutResourcePolicyRequest,
|
|
10
|
+
PutResourcePolicyResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutResourcePolicyCommandInput
|
|
15
|
+
extends PutResourcePolicyRequest {}
|
|
16
|
+
export interface PutResourcePolicyCommandOutput
|
|
17
|
+
extends PutResourcePolicyResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutResourcePolicyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutResourcePolicyCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutResourcePolicyCommandInput,
|
|
24
|
+
PutResourcePolicyCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PutResourcePolicyCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutResourcePolicyCommandInput,
|
|
33
|
+
PutResourcePolicyCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutResourcePolicyCommand extends PutResourcePolicyCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutResourcePolicyRequest;
|
|
44
|
+
output: PutResourcePolicyResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutResourcePolicyCommandInput;
|
|
48
|
+
output: PutResourcePolicyCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
SetTokenVaultCMKRequest,
|
|
10
10
|
SetTokenVaultCMKResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface SetTokenVaultCMKCommandInput extends SetTokenVaultCMKRequest {}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
StartPolicyGenerationRequest,
|
|
10
|
+
StartPolicyGenerationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartPolicyGenerationCommandInput
|
|
15
|
+
extends StartPolicyGenerationRequest {}
|
|
16
|
+
export interface StartPolicyGenerationCommandOutput
|
|
17
|
+
extends StartPolicyGenerationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartPolicyGenerationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartPolicyGenerationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartPolicyGenerationCommandInput,
|
|
24
|
+
StartPolicyGenerationCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StartPolicyGenerationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartPolicyGenerationCommandInput,
|
|
33
|
+
StartPolicyGenerationCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartPolicyGenerationCommand extends StartPolicyGenerationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartPolicyGenerationRequest;
|
|
44
|
+
output: StartPolicyGenerationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartPolicyGenerationCommandInput;
|
|
48
|
+
output: StartPolicyGenerationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../BedrockAgentCoreControlClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
SynchronizeGatewayTargetsResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { SynchronizeGatewayTargetsRequest } from "../models/models_0";
|
|
9
|
+
import { SynchronizeGatewayTargetsResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface SynchronizeGatewayTargetsCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../BedrockAgentCoreControlClient";
|
|
8
|
-
import { TagResourceRequest, TagResourceResponse } from "../models/
|
|
8
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UntagResourceRequest,
|
|
10
10
|
UntagResourceResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateEvaluatorRequest,
|
|
10
|
+
UpdateEvaluatorResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateEvaluatorCommandInput extends UpdateEvaluatorRequest {}
|
|
15
|
+
export interface UpdateEvaluatorCommandOutput
|
|
16
|
+
extends UpdateEvaluatorResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateEvaluatorCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateEvaluatorCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateEvaluatorCommandInput,
|
|
23
|
+
UpdateEvaluatorCommandOutput,
|
|
24
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: UpdateEvaluatorCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateEvaluatorCommandInput,
|
|
32
|
+
UpdateEvaluatorCommandOutput,
|
|
33
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateEvaluatorCommand extends UpdateEvaluatorCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateEvaluatorRequest;
|
|
43
|
+
output: UpdateEvaluatorResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateEvaluatorCommandInput;
|
|
47
|
+
output: UpdateEvaluatorCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateOnlineEvaluationConfigRequest,
|
|
10
|
+
UpdateOnlineEvaluationConfigResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateOnlineEvaluationConfigCommandInput
|
|
15
|
+
extends UpdateOnlineEvaluationConfigRequest {}
|
|
16
|
+
export interface UpdateOnlineEvaluationConfigCommandOutput
|
|
17
|
+
extends UpdateOnlineEvaluationConfigResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateOnlineEvaluationConfigCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateOnlineEvaluationConfigCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateOnlineEvaluationConfigCommandInput,
|
|
24
|
+
UpdateOnlineEvaluationConfigCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateOnlineEvaluationConfigCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateOnlineEvaluationConfigCommandInput,
|
|
33
|
+
UpdateOnlineEvaluationConfigCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateOnlineEvaluationConfigCommand extends UpdateOnlineEvaluationConfigCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateOnlineEvaluationConfigRequest;
|
|
44
|
+
output: UpdateOnlineEvaluationConfigResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateOnlineEvaluationConfigCommandInput;
|
|
48
|
+
output: UpdateOnlineEvaluationConfigCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import { UpdatePolicyRequest, UpdatePolicyResponse } from "../models/models_1";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdatePolicyCommandInput extends UpdatePolicyRequest {}
|
|
12
|
+
export interface UpdatePolicyCommandOutput
|
|
13
|
+
extends UpdatePolicyResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const UpdatePolicyCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdatePolicyCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdatePolicyCommandInput,
|
|
20
|
+
UpdatePolicyCommandOutput,
|
|
21
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: UpdatePolicyCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdatePolicyCommandInput,
|
|
29
|
+
UpdatePolicyCommandOutput,
|
|
30
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdatePolicyCommand extends UpdatePolicyCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UpdatePolicyRequest;
|
|
40
|
+
output: UpdatePolicyResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UpdatePolicyCommandInput;
|
|
44
|
+
output: UpdatePolicyCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdatePolicyEngineRequest,
|
|
10
|
+
UpdatePolicyEngineResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdatePolicyEngineCommandInput
|
|
15
|
+
extends UpdatePolicyEngineRequest {}
|
|
16
|
+
export interface UpdatePolicyEngineCommandOutput
|
|
17
|
+
extends UpdatePolicyEngineResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdatePolicyEngineCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdatePolicyEngineCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdatePolicyEngineCommandInput,
|
|
24
|
+
UpdatePolicyEngineCommandOutput,
|
|
25
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdatePolicyEngineCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdatePolicyEngineCommandInput,
|
|
33
|
+
UpdatePolicyEngineCommandOutput,
|
|
34
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdatePolicyEngineCommand extends UpdatePolicyEngineCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdatePolicyEngineRequest;
|
|
44
|
+
output: UpdatePolicyEngineResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdatePolicyEngineCommandInput;
|
|
48
|
+
output: UpdatePolicyEngineCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -3,30 +3,45 @@ export * from "./CreateAgentRuntimeEndpointCommand";
|
|
|
3
3
|
export * from "./CreateApiKeyCredentialProviderCommand";
|
|
4
4
|
export * from "./CreateBrowserCommand";
|
|
5
5
|
export * from "./CreateCodeInterpreterCommand";
|
|
6
|
+
export * from "./CreateEvaluatorCommand";
|
|
6
7
|
export * from "./CreateGatewayCommand";
|
|
7
8
|
export * from "./CreateGatewayTargetCommand";
|
|
8
9
|
export * from "./CreateMemoryCommand";
|
|
9
10
|
export * from "./CreateOauth2CredentialProviderCommand";
|
|
11
|
+
export * from "./CreateOnlineEvaluationConfigCommand";
|
|
12
|
+
export * from "./CreatePolicyCommand";
|
|
13
|
+
export * from "./CreatePolicyEngineCommand";
|
|
10
14
|
export * from "./CreateWorkloadIdentityCommand";
|
|
11
15
|
export * from "./DeleteAgentRuntimeCommand";
|
|
12
16
|
export * from "./DeleteAgentRuntimeEndpointCommand";
|
|
13
17
|
export * from "./DeleteApiKeyCredentialProviderCommand";
|
|
14
18
|
export * from "./DeleteBrowserCommand";
|
|
15
19
|
export * from "./DeleteCodeInterpreterCommand";
|
|
20
|
+
export * from "./DeleteEvaluatorCommand";
|
|
16
21
|
export * from "./DeleteGatewayCommand";
|
|
17
22
|
export * from "./DeleteGatewayTargetCommand";
|
|
18
23
|
export * from "./DeleteMemoryCommand";
|
|
19
24
|
export * from "./DeleteOauth2CredentialProviderCommand";
|
|
25
|
+
export * from "./DeleteOnlineEvaluationConfigCommand";
|
|
26
|
+
export * from "./DeletePolicyCommand";
|
|
27
|
+
export * from "./DeletePolicyEngineCommand";
|
|
28
|
+
export * from "./DeleteResourcePolicyCommand";
|
|
20
29
|
export * from "./DeleteWorkloadIdentityCommand";
|
|
21
30
|
export * from "./GetAgentRuntimeCommand";
|
|
22
31
|
export * from "./GetAgentRuntimeEndpointCommand";
|
|
23
32
|
export * from "./GetApiKeyCredentialProviderCommand";
|
|
24
33
|
export * from "./GetBrowserCommand";
|
|
25
34
|
export * from "./GetCodeInterpreterCommand";
|
|
35
|
+
export * from "./GetEvaluatorCommand";
|
|
26
36
|
export * from "./GetGatewayCommand";
|
|
27
37
|
export * from "./GetGatewayTargetCommand";
|
|
28
38
|
export * from "./GetMemoryCommand";
|
|
29
39
|
export * from "./GetOauth2CredentialProviderCommand";
|
|
40
|
+
export * from "./GetOnlineEvaluationConfigCommand";
|
|
41
|
+
export * from "./GetPolicyCommand";
|
|
42
|
+
export * from "./GetPolicyEngineCommand";
|
|
43
|
+
export * from "./GetPolicyGenerationCommand";
|
|
44
|
+
export * from "./GetResourcePolicyCommand";
|
|
30
45
|
export * from "./GetTokenVaultCommand";
|
|
31
46
|
export * from "./GetWorkloadIdentityCommand";
|
|
32
47
|
export * from "./ListAgentRuntimeEndpointsCommand";
|
|
@@ -35,21 +50,33 @@ export * from "./ListAgentRuntimesCommand";
|
|
|
35
50
|
export * from "./ListApiKeyCredentialProvidersCommand";
|
|
36
51
|
export * from "./ListBrowsersCommand";
|
|
37
52
|
export * from "./ListCodeInterpretersCommand";
|
|
53
|
+
export * from "./ListEvaluatorsCommand";
|
|
38
54
|
export * from "./ListGatewayTargetsCommand";
|
|
39
55
|
export * from "./ListGatewaysCommand";
|
|
40
56
|
export * from "./ListMemoriesCommand";
|
|
41
57
|
export * from "./ListOauth2CredentialProvidersCommand";
|
|
58
|
+
export * from "./ListOnlineEvaluationConfigsCommand";
|
|
59
|
+
export * from "./ListPoliciesCommand";
|
|
60
|
+
export * from "./ListPolicyEnginesCommand";
|
|
61
|
+
export * from "./ListPolicyGenerationAssetsCommand";
|
|
62
|
+
export * from "./ListPolicyGenerationsCommand";
|
|
42
63
|
export * from "./ListTagsForResourceCommand";
|
|
43
64
|
export * from "./ListWorkloadIdentitiesCommand";
|
|
65
|
+
export * from "./PutResourcePolicyCommand";
|
|
44
66
|
export * from "./SetTokenVaultCMKCommand";
|
|
67
|
+
export * from "./StartPolicyGenerationCommand";
|
|
45
68
|
export * from "./SynchronizeGatewayTargetsCommand";
|
|
46
69
|
export * from "./TagResourceCommand";
|
|
47
70
|
export * from "./UntagResourceCommand";
|
|
48
71
|
export * from "./UpdateAgentRuntimeCommand";
|
|
49
72
|
export * from "./UpdateAgentRuntimeEndpointCommand";
|
|
50
73
|
export * from "./UpdateApiKeyCredentialProviderCommand";
|
|
74
|
+
export * from "./UpdateEvaluatorCommand";
|
|
51
75
|
export * from "./UpdateGatewayCommand";
|
|
52
76
|
export * from "./UpdateGatewayTargetCommand";
|
|
53
77
|
export * from "./UpdateMemoryCommand";
|
|
54
78
|
export * from "./UpdateOauth2CredentialProviderCommand";
|
|
79
|
+
export * from "./UpdateOnlineEvaluationConfigCommand";
|
|
80
|
+
export * from "./UpdatePolicyCommand";
|
|
81
|
+
export * from "./UpdatePolicyEngineCommand";
|
|
55
82
|
export * from "./UpdateWorkloadIdentityCommand";
|
|
@@ -9,4 +9,5 @@ export * from "./waiters";
|
|
|
9
9
|
export * from "./models/enums";
|
|
10
10
|
export * from "./models/errors";
|
|
11
11
|
export * from "./models/models_0";
|
|
12
|
+
export * from "./models/models_1";
|
|
12
13
|
export { BedrockAgentCoreControlServiceException } from "./models/BedrockAgentCoreControlServiceException";
|