@aws-sdk/client-bedrock 3.556.0 → 3.561.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 +81 -1
- package/dist-cjs/index.js +1005 -79
- package/dist-es/Bedrock.js +20 -0
- package/dist-es/commands/CreateEvaluationJobCommand.js +25 -0
- package/dist-es/commands/CreateGuardrailCommand.js +25 -0
- package/dist-es/commands/CreateGuardrailVersionCommand.js +25 -0
- package/dist-es/commands/DeleteGuardrailCommand.js +24 -0
- package/dist-es/commands/GetEvaluationJobCommand.js +25 -0
- package/dist-es/commands/GetGuardrailCommand.js +25 -0
- package/dist-es/commands/ListEvaluationJobsCommand.js +24 -0
- package/dist-es/commands/ListGuardrailsCommand.js +25 -0
- package/dist-es/commands/StopEvaluationJobCommand.js +25 -0
- package/dist-es/commands/UpdateGuardrailCommand.js +25 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +312 -48
- package/dist-es/pagination/ListEvaluationJobsPaginator.js +4 -0
- package/dist-es/pagination/ListGuardrailsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +374 -4
- package/dist-types/Bedrock.d.ts +73 -1
- package/dist-types/BedrockClient.d.ts +13 -3
- package/dist-types/commands/CreateEvaluationJobCommand.d.ts +148 -0
- package/dist-types/commands/CreateGuardrailCommand.d.ts +186 -0
- package/dist-types/commands/CreateGuardrailVersionCommand.d.ts +84 -0
- package/dist-types/commands/CreateModelCustomizationJobCommand.d.ts +6 -8
- package/dist-types/commands/CreateProvisionedModelThroughputCommand.d.ts +2 -3
- package/dist-types/commands/DeleteCustomModelCommand.d.ts +2 -2
- package/dist-types/commands/DeleteGuardrailCommand.d.ts +84 -0
- package/dist-types/commands/DeleteProvisionedModelThroughputCommand.d.ts +2 -2
- package/dist-types/commands/GetCustomModelCommand.d.ts +2 -2
- package/dist-types/commands/GetEvaluationJobCommand.d.ts +144 -0
- package/dist-types/commands/GetFoundationModelCommand.d.ts +1 -1
- package/dist-types/commands/GetGuardrailCommand.d.ts +140 -0
- package/dist-types/commands/GetModelCustomizationJobCommand.d.ts +2 -2
- package/dist-types/commands/GetProvisionedModelThroughputCommand.d.ts +2 -2
- package/dist-types/commands/ListCustomModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListEvaluationJobsCommand.d.ts +93 -0
- package/dist-types/commands/ListFoundationModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListGuardrailsCommand.d.ts +89 -0
- package/dist-types/commands/ListModelCustomizationJobsCommand.d.ts +2 -2
- package/dist-types/commands/ListProvisionedModelThroughputsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/StopEvaluationJobCommand.d.ts +75 -0
- package/dist-types/commands/StopModelCustomizationJobCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateGuardrailCommand.d.ts +176 -0
- package/dist-types/commands/UpdateProvisionedModelThroughputCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1926 -215
- package/dist-types/pagination/ListEvaluationJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGuardrailsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/Bedrock.d.ts +172 -0
- package/dist-types/ts3.4/BedrockClient.d.ts +60 -0
- package/dist-types/ts3.4/commands/CreateEvaluationJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateGuardrailCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateGuardrailVersionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteGuardrailCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetEvaluationJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetGuardrailCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListEvaluationJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListGuardrailsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StopEvaluationJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateGuardrailCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +572 -49
- package/dist-types/ts3.4/pagination/ListEvaluationJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGuardrailsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateEvaluationJobRequest,
|
|
10
|
+
CreateEvaluationJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface CreateEvaluationJobCommandInput
|
|
14
|
+
extends CreateEvaluationJobRequest {}
|
|
15
|
+
export interface CreateEvaluationJobCommandOutput
|
|
16
|
+
extends CreateEvaluationJobResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateEvaluationJobCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateEvaluationJobCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateEvaluationJobCommandInput,
|
|
23
|
+
CreateEvaluationJobCommandOutput,
|
|
24
|
+
BedrockClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateEvaluationJobCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateEvaluationJobCommandInput,
|
|
32
|
+
CreateEvaluationJobCommandOutput,
|
|
33
|
+
BedrockClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateEvaluationJobCommand extends CreateEvaluationJobCommand_base {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateGuardrailRequest,
|
|
10
|
+
CreateGuardrailResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface CreateGuardrailCommandInput extends CreateGuardrailRequest {}
|
|
14
|
+
export interface CreateGuardrailCommandOutput
|
|
15
|
+
extends CreateGuardrailResponse,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const CreateGuardrailCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: CreateGuardrailCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
CreateGuardrailCommandInput,
|
|
22
|
+
CreateGuardrailCommandOutput,
|
|
23
|
+
BedrockClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: CreateGuardrailCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CreateGuardrailCommandInput,
|
|
31
|
+
CreateGuardrailCommandOutput,
|
|
32
|
+
BedrockClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class CreateGuardrailCommand extends CreateGuardrailCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateGuardrailVersionRequest,
|
|
10
|
+
CreateGuardrailVersionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface CreateGuardrailVersionCommandInput
|
|
14
|
+
extends CreateGuardrailVersionRequest {}
|
|
15
|
+
export interface CreateGuardrailVersionCommandOutput
|
|
16
|
+
extends CreateGuardrailVersionResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateGuardrailVersionCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateGuardrailVersionCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateGuardrailVersionCommandInput,
|
|
23
|
+
CreateGuardrailVersionCommandOutput,
|
|
24
|
+
BedrockClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateGuardrailVersionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateGuardrailVersionCommandInput,
|
|
32
|
+
CreateGuardrailVersionCommandOutput,
|
|
33
|
+
BedrockClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateGuardrailVersionCommand extends CreateGuardrailVersionCommand_base {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteGuardrailRequest,
|
|
10
|
+
DeleteGuardrailResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DeleteGuardrailCommandInput extends DeleteGuardrailRequest {}
|
|
14
|
+
export interface DeleteGuardrailCommandOutput
|
|
15
|
+
extends DeleteGuardrailResponse,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const DeleteGuardrailCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: DeleteGuardrailCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
DeleteGuardrailCommandInput,
|
|
22
|
+
DeleteGuardrailCommandOutput,
|
|
23
|
+
BedrockClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DeleteGuardrailCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DeleteGuardrailCommandInput,
|
|
31
|
+
DeleteGuardrailCommandOutput,
|
|
32
|
+
BedrockClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class DeleteGuardrailCommand extends DeleteGuardrailCommand_base {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
GetEvaluationJobRequest,
|
|
10
|
+
GetEvaluationJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface GetEvaluationJobCommandInput extends GetEvaluationJobRequest {}
|
|
14
|
+
export interface GetEvaluationJobCommandOutput
|
|
15
|
+
extends GetEvaluationJobResponse,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const GetEvaluationJobCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: GetEvaluationJobCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
GetEvaluationJobCommandInput,
|
|
22
|
+
GetEvaluationJobCommandOutput,
|
|
23
|
+
BedrockClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: GetEvaluationJobCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
GetEvaluationJobCommandInput,
|
|
31
|
+
GetEvaluationJobCommandOutput,
|
|
32
|
+
BedrockClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class GetEvaluationJobCommand extends GetEvaluationJobCommand_base {}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import { GetGuardrailRequest, GetGuardrailResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
export interface GetGuardrailCommandInput extends GetGuardrailRequest {}
|
|
11
|
+
export interface GetGuardrailCommandOutput
|
|
12
|
+
extends GetGuardrailResponse,
|
|
13
|
+
__MetadataBearer {}
|
|
14
|
+
declare const GetGuardrailCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GetGuardrailCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
GetGuardrailCommandInput,
|
|
19
|
+
GetGuardrailCommandOutput,
|
|
20
|
+
BedrockClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetGuardrailCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetGuardrailCommandInput,
|
|
28
|
+
GetGuardrailCommandOutput,
|
|
29
|
+
BedrockClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class GetGuardrailCommand extends GetGuardrailCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
ListEvaluationJobsRequest,
|
|
10
|
+
ListEvaluationJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListEvaluationJobsCommandInput
|
|
14
|
+
extends ListEvaluationJobsRequest {}
|
|
15
|
+
export interface ListEvaluationJobsCommandOutput
|
|
16
|
+
extends ListEvaluationJobsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListEvaluationJobsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListEvaluationJobsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListEvaluationJobsCommandInput,
|
|
23
|
+
ListEvaluationJobsCommandOutput,
|
|
24
|
+
BedrockClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListEvaluationJobsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListEvaluationJobsCommandInput,
|
|
32
|
+
ListEvaluationJobsCommandOutput,
|
|
33
|
+
BedrockClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListEvaluationJobsCommand extends ListEvaluationJobsCommand_base {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
ListGuardrailsRequest,
|
|
10
|
+
ListGuardrailsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListGuardrailsCommandInput extends ListGuardrailsRequest {}
|
|
14
|
+
export interface ListGuardrailsCommandOutput
|
|
15
|
+
extends ListGuardrailsResponse,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const ListGuardrailsCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: ListGuardrailsCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
ListGuardrailsCommandInput,
|
|
22
|
+
ListGuardrailsCommandOutput,
|
|
23
|
+
BedrockClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [ListGuardrailsCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ListGuardrailsCommandInput,
|
|
31
|
+
ListGuardrailsCommandOutput,
|
|
32
|
+
BedrockClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class ListGuardrailsCommand extends ListGuardrailsCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
StopEvaluationJobRequest,
|
|
10
|
+
StopEvaluationJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface StopEvaluationJobCommandInput
|
|
14
|
+
extends StopEvaluationJobRequest {}
|
|
15
|
+
export interface StopEvaluationJobCommandOutput
|
|
16
|
+
extends StopEvaluationJobResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StopEvaluationJobCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StopEvaluationJobCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StopEvaluationJobCommandInput,
|
|
23
|
+
StopEvaluationJobCommandOutput,
|
|
24
|
+
BedrockClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: StopEvaluationJobCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StopEvaluationJobCommandInput,
|
|
32
|
+
StopEvaluationJobCommandOutput,
|
|
33
|
+
BedrockClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StopEvaluationJobCommand extends StopEvaluationJobCommand_base {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateGuardrailRequest,
|
|
10
|
+
UpdateGuardrailResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface UpdateGuardrailCommandInput extends UpdateGuardrailRequest {}
|
|
14
|
+
export interface UpdateGuardrailCommandOutput
|
|
15
|
+
extends UpdateGuardrailResponse,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const UpdateGuardrailCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: UpdateGuardrailCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
UpdateGuardrailCommandInput,
|
|
22
|
+
UpdateGuardrailCommandOutput,
|
|
23
|
+
BedrockClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdateGuardrailCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateGuardrailCommandInput,
|
|
31
|
+
UpdateGuardrailCommandOutput,
|
|
32
|
+
BedrockClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class UpdateGuardrailCommand extends UpdateGuardrailCommand_base {}
|
|
@@ -1,20 +1,30 @@
|
|
|
1
|
+
export * from "./CreateEvaluationJobCommand";
|
|
2
|
+
export * from "./CreateGuardrailCommand";
|
|
3
|
+
export * from "./CreateGuardrailVersionCommand";
|
|
1
4
|
export * from "./CreateModelCustomizationJobCommand";
|
|
2
5
|
export * from "./CreateProvisionedModelThroughputCommand";
|
|
3
6
|
export * from "./DeleteCustomModelCommand";
|
|
7
|
+
export * from "./DeleteGuardrailCommand";
|
|
4
8
|
export * from "./DeleteModelInvocationLoggingConfigurationCommand";
|
|
5
9
|
export * from "./DeleteProvisionedModelThroughputCommand";
|
|
6
10
|
export * from "./GetCustomModelCommand";
|
|
11
|
+
export * from "./GetEvaluationJobCommand";
|
|
7
12
|
export * from "./GetFoundationModelCommand";
|
|
13
|
+
export * from "./GetGuardrailCommand";
|
|
8
14
|
export * from "./GetModelCustomizationJobCommand";
|
|
9
15
|
export * from "./GetModelInvocationLoggingConfigurationCommand";
|
|
10
16
|
export * from "./GetProvisionedModelThroughputCommand";
|
|
11
17
|
export * from "./ListCustomModelsCommand";
|
|
18
|
+
export * from "./ListEvaluationJobsCommand";
|
|
12
19
|
export * from "./ListFoundationModelsCommand";
|
|
20
|
+
export * from "./ListGuardrailsCommand";
|
|
13
21
|
export * from "./ListModelCustomizationJobsCommand";
|
|
14
22
|
export * from "./ListProvisionedModelThroughputsCommand";
|
|
15
23
|
export * from "./ListTagsForResourceCommand";
|
|
16
24
|
export * from "./PutModelInvocationLoggingConfigurationCommand";
|
|
25
|
+
export * from "./StopEvaluationJobCommand";
|
|
17
26
|
export * from "./StopModelCustomizationJobCommand";
|
|
18
27
|
export * from "./TagResourceCommand";
|
|
19
28
|
export * from "./UntagResourceCommand";
|
|
29
|
+
export * from "./UpdateGuardrailCommand";
|
|
20
30
|
export * from "./UpdateProvisionedModelThroughputCommand";
|