@aws-sdk/client-bedrock 3.828.0 → 3.831.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 +8 -0
- package/dist-cjs/index.js +218 -153
- package/dist-es/Bedrock.js +2 -0
- package/dist-es/commands/CreateCustomModelCommand.js +22 -0
- package/dist-es/commands/CreateEvaluationJobCommand.js +1 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +105 -141
- package/dist-es/models/models_1.js +43 -1
- package/dist-es/protocols/Aws_restJson1.js +39 -1
- package/dist-types/Bedrock.d.ts +7 -0
- package/dist-types/BedrockClient.d.ts +3 -2
- package/dist-types/commands/BatchDeleteEvaluationJobCommand.d.ts +1 -3
- package/dist-types/commands/CreateCustomModelCommand.d.ts +143 -0
- package/dist-types/commands/CreateEvaluationJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateGuardrailCommand.d.ts +2 -34
- package/dist-types/commands/CreateGuardrailVersionCommand.d.ts +1 -2
- package/dist-types/commands/CreateInferenceProfileCommand.d.ts +1 -2
- package/dist-types/commands/CreateMarketplaceModelEndpointCommand.d.ts +1 -2
- package/dist-types/commands/CreateModelCopyJobCommand.d.ts +1 -2
- package/dist-types/commands/CreateModelCustomizationJobCommand.d.ts +3 -12
- package/dist-types/commands/CreateModelImportJobCommand.d.ts +2 -5
- package/dist-types/commands/CreateModelInvocationJobCommand.d.ts +1 -2
- package/dist-types/commands/CreatePromptRouterCommand.d.ts +1 -2
- package/dist-types/commands/CreateProvisionedModelThroughputCommand.d.ts +1 -2
- package/dist-types/commands/DeleteGuardrailCommand.d.ts +1 -9
- package/dist-types/commands/DeleteImportedModelCommand.d.ts +1 -3
- package/dist-types/commands/DeregisterMarketplaceModelEndpointCommand.d.ts +1 -3
- package/dist-types/commands/GetCustomModelCommand.d.ts +6 -4
- package/dist-types/commands/GetModelCustomizationJobCommand.d.ts +3 -4
- package/dist-types/commands/GetModelImportJobCommand.d.ts +1 -3
- package/dist-types/commands/GetModelInvocationJobCommand.d.ts +1 -2
- package/dist-types/commands/ListCustomModelsCommand.d.ts +4 -3
- package/dist-types/commands/ListGuardrailsCommand.d.ts +1 -2
- package/dist-types/commands/ListImportedModelsCommand.d.ts +1 -3
- package/dist-types/commands/ListMarketplaceModelEndpointsCommand.d.ts +1 -2
- package/dist-types/commands/ListModelCopyJobsCommand.d.ts +1 -2
- package/dist-types/commands/ListModelCustomizationJobsCommand.d.ts +3 -5
- package/dist-types/commands/ListModelImportJobsCommand.d.ts +1 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -2
- package/dist-types/commands/RegisterMarketplaceModelEndpointCommand.d.ts +1 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGuardrailCommand.d.ts +1 -37
- package/dist-types/commands/UpdateMarketplaceModelEndpointCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/models/models_0.d.ts +1188 -2462
- package/dist-types/models/models_1.d.ts +153 -3
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/Bedrock.d.ts +17 -0
- package/dist-types/ts3.4/BedrockClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateCustomModelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateEvaluationJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +255 -308
- package/dist-types/ts3.4/models/models_1.d.ts +79 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
- package/package.json +2 -2
|
@@ -3,9 +3,9 @@ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provi
|
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
5
|
export interface ClientInputEndpointParameters {
|
|
6
|
-
region?: string | Provider<string>;
|
|
7
|
-
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
-
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
7
|
+
useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
8
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
9
9
|
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
10
10
|
}
|
|
11
11
|
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
@@ -31,8 +31,8 @@ export declare const commonParams: {
|
|
|
31
31
|
};
|
|
32
32
|
};
|
|
33
33
|
export interface EndpointParameters extends __EndpointParameters {
|
|
34
|
-
Region?: string;
|
|
35
|
-
UseDualStack?: boolean;
|
|
36
|
-
UseFIPS?: boolean;
|
|
37
|
-
Endpoint?: string;
|
|
34
|
+
Region?: string | undefined;
|
|
35
|
+
UseDualStack?: boolean | undefined;
|
|
36
|
+
UseFIPS?: boolean | undefined;
|
|
37
|
+
Endpoint?: string | undefined;
|
|
38
38
|
}
|