@aws-sdk/client-bedrock 3.621.0 → 3.623.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.
Files changed (58) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +213 -20
  3. package/dist-es/Bedrock.js +6 -0
  4. package/dist-es/BedrockClient.js +12 -18
  5. package/dist-es/commands/CreateModelCopyJobCommand.js +24 -0
  6. package/dist-es/commands/GetModelCopyJobCommand.js +24 -0
  7. package/dist-es/commands/ListModelCopyJobsCommand.js +24 -0
  8. package/dist-es/commands/index.js +3 -0
  9. package/dist-es/models/models_0.js +5 -0
  10. package/dist-es/pagination/ListModelCopyJobsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_restJson1.js +129 -0
  13. package/dist-types/Bedrock.d.ts +22 -0
  14. package/dist-types/BedrockClient.d.ts +7 -6
  15. package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
  16. package/dist-types/commands/CreateEvaluationJobCommand.d.ts +1 -1
  17. package/dist-types/commands/CreateModelCopyJobCommand.d.ts +82 -0
  18. package/dist-types/commands/CreateModelCustomizationJobCommand.d.ts +3 -3
  19. package/dist-types/commands/CreateProvisionedModelThroughputCommand.d.ts +1 -1
  20. package/dist-types/commands/DeleteCustomModelCommand.d.ts +1 -1
  21. package/dist-types/commands/DeleteProvisionedModelThroughputCommand.d.ts +1 -1
  22. package/dist-types/commands/GetCustomModelCommand.d.ts +1 -1
  23. package/dist-types/commands/GetEvaluationJobCommand.d.ts +1 -1
  24. package/dist-types/commands/GetModelCopyJobCommand.d.ts +90 -0
  25. package/dist-types/commands/GetModelCustomizationJobCommand.d.ts +1 -1
  26. package/dist-types/commands/GetProvisionedModelThroughputCommand.d.ts +1 -1
  27. package/dist-types/commands/ListCustomModelsCommand.d.ts +3 -1
  28. package/dist-types/commands/ListFoundationModelsCommand.d.ts +1 -1
  29. package/dist-types/commands/ListModelCopyJobsCommand.d.ts +105 -0
  30. package/dist-types/commands/ListModelCustomizationJobsCommand.d.ts +2 -2
  31. package/dist-types/commands/ListProvisionedModelThroughputsCommand.d.ts +1 -1
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  33. package/dist-types/commands/StopModelCustomizationJobCommand.d.ts +1 -1
  34. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  35. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateProvisionedModelThroughputCommand.d.ts +1 -1
  37. package/dist-types/commands/index.d.ts +3 -0
  38. package/dist-types/models/models_0.d.ts +288 -14
  39. package/dist-types/pagination/ListModelCopyJobsPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  42. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  43. package/dist-types/runtimeConfig.d.ts +2 -2
  44. package/dist-types/runtimeConfig.native.d.ts +2 -2
  45. package/dist-types/ts3.4/Bedrock.d.ts +52 -0
  46. package/dist-types/ts3.4/BedrockClient.d.ts +24 -8
  47. package/dist-types/ts3.4/commands/CreateModelCopyJobCommand.d.ts +40 -0
  48. package/dist-types/ts3.4/commands/GetModelCopyJobCommand.d.ts +39 -0
  49. package/dist-types/ts3.4/commands/ListModelCopyJobsCommand.d.ts +40 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +64 -0
  52. package/dist-types/ts3.4/pagination/ListModelCopyJobsPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  55. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
  56. package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
  57. package/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
  58. package/package.json +10 -10
@@ -0,0 +1,90 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient";
4
+ import { GetModelCopyJobRequest, GetModelCopyJobResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetModelCopyJobCommand}.
14
+ */
15
+ export interface GetModelCopyJobCommandInput extends GetModelCopyJobRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetModelCopyJobCommand}.
21
+ */
22
+ export interface GetModelCopyJobCommandOutput extends GetModelCopyJobResponse, __MetadataBearer {
23
+ }
24
+ declare const GetModelCopyJobCommand_base: {
25
+ new (input: GetModelCopyJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetModelCopyJobCommandInput, GetModelCopyJobCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetModelCopyJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetModelCopyJobCommandInput, GetModelCopyJobCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves information about a model copy job. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/copy-model.html">Copy models to be used in other regions</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockClient, GetModelCopyJobCommand } from "@aws-sdk/client-bedrock"; // ES Modules import
35
+ * // const { BedrockClient, GetModelCopyJobCommand } = require("@aws-sdk/client-bedrock"); // CommonJS import
36
+ * const client = new BedrockClient(config);
37
+ * const input = { // GetModelCopyJobRequest
38
+ * jobArn: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new GetModelCopyJobCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // GetModelCopyJobResponse
43
+ * // jobArn: "STRING_VALUE", // required
44
+ * // status: "InProgress" || "Completed" || "Failed", // required
45
+ * // creationTime: new Date("TIMESTAMP"), // required
46
+ * // targetModelArn: "STRING_VALUE", // required
47
+ * // targetModelName: "STRING_VALUE",
48
+ * // sourceAccountId: "STRING_VALUE", // required
49
+ * // sourceModelArn: "STRING_VALUE", // required
50
+ * // targetModelKmsKeyArn: "STRING_VALUE",
51
+ * // targetModelTags: [ // TagList
52
+ * // { // Tag
53
+ * // key: "STRING_VALUE", // required
54
+ * // value: "STRING_VALUE", // required
55
+ * // },
56
+ * // ],
57
+ * // failureMessage: "STRING_VALUE",
58
+ * // sourceModelName: "STRING_VALUE",
59
+ * // };
60
+ *
61
+ * ```
62
+ *
63
+ * @param GetModelCopyJobCommandInput - {@link GetModelCopyJobCommandInput}
64
+ * @returns {@link GetModelCopyJobCommandOutput}
65
+ * @see {@link GetModelCopyJobCommandInput} for command's `input` shape.
66
+ * @see {@link GetModelCopyJobCommandOutput} for command's `response` shape.
67
+ * @see {@link BedrockClientResolvedConfig | config} for BedrockClient's `config` shape.
68
+ *
69
+ * @throws {@link AccessDeniedException} (client fault)
70
+ * <p>The request is denied because of missing access permissions.</p>
71
+ *
72
+ * @throws {@link InternalServerException} (server fault)
73
+ * <p>An internal server error occurred. Retry your request.</p>
74
+ *
75
+ * @throws {@link ResourceNotFoundException} (client fault)
76
+ * <p>The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.</p>
77
+ *
78
+ * @throws {@link ThrottlingException} (client fault)
79
+ * <p>The number of requests exceeds the limit. Resubmit your request later.</p>
80
+ *
81
+ * @throws {@link ValidationException} (client fault)
82
+ * <p>Input validation failed. Check your request parameters and retry the request.</p>
83
+ *
84
+ * @throws {@link BedrockServiceException}
85
+ * <p>Base exception class for all service exceptions from Bedrock service.</p>
86
+ *
87
+ * @public
88
+ */
89
+ export declare class GetModelCopyJobCommand extends GetModelCopyJobCommand_base {
90
+ }
@@ -28,7 +28,7 @@ declare const GetModelCustomizationJobCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Retrieves the properties associated with a model-customization job, including the status of the job.
31
- * For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Amazon Bedrock User Guide.</p>
31
+ * For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
32
32
  * @example
33
33
  * Use a bare-bones client and the command you need to make an API call.
34
34
  * ```javascript
@@ -27,7 +27,7 @@ declare const GetProvisionedModelThroughputCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Returns details for a Provisioned Throughput. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html">Provisioned Throughput</a> in the Amazon Bedrock User Guide.</p>
30
+ * <p>Returns details for a Provisioned Throughput. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html">Provisioned Throughput</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -28,7 +28,7 @@ declare const ListCustomModelsCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Returns a list of the custom models that you have created with the <code>CreateModelCustomizationJob</code> operation.</p>
31
- * <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Amazon Bedrock User Guide.</p>
31
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
32
32
  * @example
33
33
  * Use a bare-bones client and the command you need to make an API call.
34
34
  * ```javascript
@@ -45,6 +45,7 @@ declare const ListCustomModelsCommand_base: {
45
45
  * nextToken: "STRING_VALUE",
46
46
  * sortBy: "CreationTime",
47
47
  * sortOrder: "Ascending" || "Descending",
48
+ * isOwned: true || false,
48
49
  * };
49
50
  * const command = new ListCustomModelsCommand(input);
50
51
  * const response = await client.send(command);
@@ -58,6 +59,7 @@ declare const ListCustomModelsCommand_base: {
58
59
  * // baseModelArn: "STRING_VALUE", // required
59
60
  * // baseModelName: "STRING_VALUE", // required
60
61
  * // customizationType: "FINE_TUNING" || "CONTINUED_PRE_TRAINING",
62
+ * // ownerAccountId: "STRING_VALUE",
61
63
  * // },
62
64
  * // ],
63
65
  * // };
@@ -27,7 +27,7 @@ declare const ListFoundationModelsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists Amazon Bedrock foundation models that you can use. You can filter the results with the request parameters. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/foundation-models.html">Foundation models</a> in the Amazon Bedrock User Guide.</p>
30
+ * <p>Lists Amazon Bedrock foundation models that you can use. You can filter the results with the request parameters. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/foundation-models.html">Foundation models</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -0,0 +1,105 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient";
4
+ import { ListModelCopyJobsRequest, ListModelCopyJobsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListModelCopyJobsCommand}.
14
+ */
15
+ export interface ListModelCopyJobsCommandInput extends ListModelCopyJobsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListModelCopyJobsCommand}.
21
+ */
22
+ export interface ListModelCopyJobsCommandOutput extends ListModelCopyJobsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListModelCopyJobsCommand_base: {
25
+ new (input: ListModelCopyJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListModelCopyJobsCommandInput, ListModelCopyJobsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListModelCopyJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListModelCopyJobsCommandInput, ListModelCopyJobsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of model copy jobs that you have submitted. You can filter the jobs to return based on
31
+ * one or more criteria. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/copy-model.html">Copy models to be used in other regions</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { BedrockClient, ListModelCopyJobsCommand } from "@aws-sdk/client-bedrock"; // ES Modules import
36
+ * // const { BedrockClient, ListModelCopyJobsCommand } = require("@aws-sdk/client-bedrock"); // CommonJS import
37
+ * const client = new BedrockClient(config);
38
+ * const input = { // ListModelCopyJobsRequest
39
+ * creationTimeAfter: new Date("TIMESTAMP"),
40
+ * creationTimeBefore: new Date("TIMESTAMP"),
41
+ * statusEquals: "InProgress" || "Completed" || "Failed",
42
+ * sourceAccountEquals: "STRING_VALUE",
43
+ * sourceModelArnEquals: "STRING_VALUE",
44
+ * targetModelNameContains: "STRING_VALUE",
45
+ * maxResults: Number("int"),
46
+ * nextToken: "STRING_VALUE",
47
+ * sortBy: "CreationTime",
48
+ * sortOrder: "Ascending" || "Descending",
49
+ * };
50
+ * const command = new ListModelCopyJobsCommand(input);
51
+ * const response = await client.send(command);
52
+ * // { // ListModelCopyJobsResponse
53
+ * // nextToken: "STRING_VALUE",
54
+ * // modelCopyJobSummaries: [ // ModelCopyJobSummaries
55
+ * // { // ModelCopyJobSummary
56
+ * // jobArn: "STRING_VALUE", // required
57
+ * // status: "InProgress" || "Completed" || "Failed", // required
58
+ * // creationTime: new Date("TIMESTAMP"), // required
59
+ * // targetModelArn: "STRING_VALUE", // required
60
+ * // targetModelName: "STRING_VALUE",
61
+ * // sourceAccountId: "STRING_VALUE", // required
62
+ * // sourceModelArn: "STRING_VALUE", // required
63
+ * // targetModelKmsKeyArn: "STRING_VALUE",
64
+ * // targetModelTags: [ // TagList
65
+ * // { // Tag
66
+ * // key: "STRING_VALUE", // required
67
+ * // value: "STRING_VALUE", // required
68
+ * // },
69
+ * // ],
70
+ * // failureMessage: "STRING_VALUE",
71
+ * // sourceModelName: "STRING_VALUE",
72
+ * // },
73
+ * // ],
74
+ * // };
75
+ *
76
+ * ```
77
+ *
78
+ * @param ListModelCopyJobsCommandInput - {@link ListModelCopyJobsCommandInput}
79
+ * @returns {@link ListModelCopyJobsCommandOutput}
80
+ * @see {@link ListModelCopyJobsCommandInput} for command's `input` shape.
81
+ * @see {@link ListModelCopyJobsCommandOutput} for command's `response` shape.
82
+ * @see {@link BedrockClientResolvedConfig | config} for BedrockClient's `config` shape.
83
+ *
84
+ * @throws {@link AccessDeniedException} (client fault)
85
+ * <p>The request is denied because of missing access permissions.</p>
86
+ *
87
+ * @throws {@link InternalServerException} (server fault)
88
+ * <p>An internal server error occurred. Retry your request.</p>
89
+ *
90
+ * @throws {@link ResourceNotFoundException} (client fault)
91
+ * <p>The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.</p>
92
+ *
93
+ * @throws {@link ThrottlingException} (client fault)
94
+ * <p>The number of requests exceeds the limit. Resubmit your request later.</p>
95
+ *
96
+ * @throws {@link ValidationException} (client fault)
97
+ * <p>Input validation failed. Check your request parameters and retry the request.</p>
98
+ *
99
+ * @throws {@link BedrockServiceException}
100
+ * <p>Base exception class for all service exceptions from Bedrock service.</p>
101
+ *
102
+ * @public
103
+ */
104
+ export declare class ListModelCopyJobsCommand extends ListModelCopyJobsCommand_base {
105
+ }
@@ -28,8 +28,8 @@ declare const ListModelCustomizationJobsCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Returns a list of model customization jobs that you have submitted. You can filter the jobs to return based on
31
- * one or more criteria.</p>
32
- * <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Amazon Bedrock User Guide.</p>
31
+ * one or more criteria.</p>
32
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
33
33
  * @example
34
34
  * Use a bare-bones client and the command you need to make an API call.
35
35
  * ```javascript
@@ -27,7 +27,7 @@ declare const ListProvisionedModelThroughputsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists the Provisioned Throughputs in the account. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html">Provisioned Throughput</a> in the Amazon Bedrock User Guide.</p>
30
+ * <p>Lists the Provisioned Throughputs in the account. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html">Provisioned Throughput</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -28,7 +28,7 @@ declare const ListTagsForResourceCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>List the tags associated with the specified resource.</p>
31
- * <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/tagging.html">Tagging resources</a> in the Amazon Bedrock User Guide.</p>
31
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/tagging.html">Tagging resources</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
32
32
  * @example
33
33
  * Use a bare-bones client and the command you need to make an API call.
34
34
  * ```javascript
@@ -27,7 +27,7 @@ declare const StopModelCustomizationJobCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Stops an active model customization job. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Amazon Bedrock User Guide.</p>
30
+ * <p>Stops an active model customization job. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -27,7 +27,7 @@ declare const TagResourceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Associate tags with a resource. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/tagging.html">Tagging resources</a> in the Amazon Bedrock User Guide.</p>
30
+ * <p>Associate tags with a resource. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/tagging.html">Tagging resources</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -27,7 +27,7 @@ declare const UntagResourceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Remove one or more tags from a resource. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/tagging.html">Tagging resources</a> in the Amazon Bedrock User Guide.</p>
30
+ * <p>Remove one or more tags from a resource. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/tagging.html">Tagging resources</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -27,7 +27,7 @@ declare const UpdateProvisionedModelThroughputCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Updates the name or associated model for a Provisioned Throughput. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html">Provisioned Throughput</a> in the Amazon Bedrock User Guide.</p>
30
+ * <p>Updates the name or associated model for a Provisioned Throughput. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html">Provisioned Throughput</a> in the <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Amazon Bedrock User Guide</a>.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -1,6 +1,7 @@
1
1
  export * from "./CreateEvaluationJobCommand";
2
2
  export * from "./CreateGuardrailCommand";
3
3
  export * from "./CreateGuardrailVersionCommand";
4
+ export * from "./CreateModelCopyJobCommand";
4
5
  export * from "./CreateModelCustomizationJobCommand";
5
6
  export * from "./CreateProvisionedModelThroughputCommand";
6
7
  export * from "./DeleteCustomModelCommand";
@@ -11,6 +12,7 @@ export * from "./GetCustomModelCommand";
11
12
  export * from "./GetEvaluationJobCommand";
12
13
  export * from "./GetFoundationModelCommand";
13
14
  export * from "./GetGuardrailCommand";
15
+ export * from "./GetModelCopyJobCommand";
14
16
  export * from "./GetModelCustomizationJobCommand";
15
17
  export * from "./GetModelInvocationLoggingConfigurationCommand";
16
18
  export * from "./GetProvisionedModelThroughputCommand";
@@ -18,6 +20,7 @@ export * from "./ListCustomModelsCommand";
18
20
  export * from "./ListEvaluationJobsCommand";
19
21
  export * from "./ListFoundationModelsCommand";
20
22
  export * from "./ListGuardrailsCommand";
23
+ export * from "./ListModelCopyJobsCommand";
21
24
  export * from "./ListModelCustomizationJobsCommand";
22
25
  export * from "./ListProvisionedModelThroughputsCommand";
23
26
  export * from "./ListTagsForResourceCommand";