@effect-aws/client-bedrock 1.9.5 → 1.10.2
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/dist/cjs/BedrockService.d.ts +63 -62
- package/dist/cjs/BedrockService.d.ts.map +1 -1
- package/dist/cjs/BedrockService.js +1 -1
- package/dist/cjs/BedrockService.js.map +1 -1
- package/dist/cjs/Errors.d.ts +3 -3
- package/dist/cjs/Errors.d.ts.map +1 -1
- package/dist/cjs/Errors.js +1 -3
- package/dist/cjs/Errors.js.map +1 -1
- package/dist/dts/BedrockService.d.ts +63 -62
- package/dist/dts/BedrockService.d.ts.map +1 -1
- package/dist/dts/Errors.d.ts +3 -3
- package/dist/dts/Errors.d.ts.map +1 -1
- package/dist/esm/BedrockService.js +1 -1
- package/dist/esm/BedrockService.js.map +1 -1
- package/dist/esm/Errors.js +0 -2
- package/dist/esm/Errors.js.map +1 -1
- package/package.json +2 -2
- package/src/BedrockService.ts +194 -37
- package/src/Errors.ts +1 -4
|
@@ -2,248 +2,249 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import { type BatchDeleteEvaluationJobCommandInput, type BatchDeleteEvaluationJobCommandOutput, type BedrockClient, type BedrockClientConfig, type CreateEvaluationJobCommandInput, type CreateEvaluationJobCommandOutput, type CreateGuardrailCommandInput, type CreateGuardrailCommandOutput, type CreateGuardrailVersionCommandInput, type CreateGuardrailVersionCommandOutput, type CreateInferenceProfileCommandInput, type CreateInferenceProfileCommandOutput, type CreateMarketplaceModelEndpointCommandInput, type CreateMarketplaceModelEndpointCommandOutput, type CreateModelCopyJobCommandInput, type CreateModelCopyJobCommandOutput, type CreateModelCustomizationJobCommandInput, type CreateModelCustomizationJobCommandOutput, type CreateModelImportJobCommandInput, type CreateModelImportJobCommandOutput, type CreateModelInvocationJobCommandInput, type CreateModelInvocationJobCommandOutput, type CreatePromptRouterCommandInput, type CreatePromptRouterCommandOutput, type CreateProvisionedModelThroughputCommandInput, type CreateProvisionedModelThroughputCommandOutput, type DeleteCustomModelCommandInput, type DeleteCustomModelCommandOutput, type DeleteGuardrailCommandInput, type DeleteGuardrailCommandOutput, type DeleteImportedModelCommandInput, type DeleteImportedModelCommandOutput, type DeleteInferenceProfileCommandInput, type DeleteInferenceProfileCommandOutput, type DeleteMarketplaceModelEndpointCommandInput, type DeleteMarketplaceModelEndpointCommandOutput, type DeleteModelInvocationLoggingConfigurationCommandInput, type DeleteModelInvocationLoggingConfigurationCommandOutput, type DeletePromptRouterCommandInput, type DeletePromptRouterCommandOutput, type DeleteProvisionedModelThroughputCommandInput, type DeleteProvisionedModelThroughputCommandOutput, type DeregisterMarketplaceModelEndpointCommandInput, type DeregisterMarketplaceModelEndpointCommandOutput, type GetCustomModelCommandInput, type GetCustomModelCommandOutput, type GetEvaluationJobCommandInput, type GetEvaluationJobCommandOutput, type GetFoundationModelCommandInput, type GetFoundationModelCommandOutput, type GetGuardrailCommandInput, type GetGuardrailCommandOutput, type GetImportedModelCommandInput, type GetImportedModelCommandOutput, type GetInferenceProfileCommandInput, type GetInferenceProfileCommandOutput, type GetMarketplaceModelEndpointCommandInput, type GetMarketplaceModelEndpointCommandOutput, type GetModelCopyJobCommandInput, type GetModelCopyJobCommandOutput, type GetModelCustomizationJobCommandInput, type GetModelCustomizationJobCommandOutput, type GetModelImportJobCommandInput, type GetModelImportJobCommandOutput, type GetModelInvocationJobCommandInput, type GetModelInvocationJobCommandOutput, type GetModelInvocationLoggingConfigurationCommandInput, type GetModelInvocationLoggingConfigurationCommandOutput, type GetPromptRouterCommandInput, type GetPromptRouterCommandOutput, type GetProvisionedModelThroughputCommandInput, type GetProvisionedModelThroughputCommandOutput, type ListCustomModelsCommandInput, type ListCustomModelsCommandOutput, type ListEvaluationJobsCommandInput, type ListEvaluationJobsCommandOutput, type ListFoundationModelsCommandInput, type ListFoundationModelsCommandOutput, type ListGuardrailsCommandInput, type ListGuardrailsCommandOutput, type ListImportedModelsCommandInput, type ListImportedModelsCommandOutput, type ListInferenceProfilesCommandInput, type ListInferenceProfilesCommandOutput, type ListMarketplaceModelEndpointsCommandInput, type ListMarketplaceModelEndpointsCommandOutput, type ListModelCopyJobsCommandInput, type ListModelCopyJobsCommandOutput, type ListModelCustomizationJobsCommandInput, type ListModelCustomizationJobsCommandOutput, type ListModelImportJobsCommandInput, type ListModelImportJobsCommandOutput, type ListModelInvocationJobsCommandInput, type ListModelInvocationJobsCommandOutput, type ListPromptRoutersCommandInput, type ListPromptRoutersCommandOutput, type ListProvisionedModelThroughputsCommandInput, type ListProvisionedModelThroughputsCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type PutModelInvocationLoggingConfigurationCommandInput, type PutModelInvocationLoggingConfigurationCommandOutput, type RegisterMarketplaceModelEndpointCommandInput, type RegisterMarketplaceModelEndpointCommandOutput, type StopEvaluationJobCommandInput, type StopEvaluationJobCommandOutput, type StopModelCustomizationJobCommandInput, type StopModelCustomizationJobCommandOutput, type StopModelInvocationJobCommandInput, type StopModelInvocationJobCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateGuardrailCommandInput, type UpdateGuardrailCommandOutput, type UpdateMarketplaceModelEndpointCommandInput, type UpdateMarketplaceModelEndpointCommandOutput, type UpdateProvisionedModelThroughputCommandInput, type UpdateProvisionedModelThroughputCommandOutput } from "@aws-sdk/client-bedrock";
|
|
5
|
-
import type { HttpHandlerOptions,
|
|
5
|
+
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import type { Cause } from "effect";
|
|
6
7
|
import { Effect, Layer } from "effect";
|
|
7
8
|
import * as Instance from "./BedrockClientInstance.js";
|
|
8
|
-
import type { AccessDeniedError, ConflictError, InternalServerError, ResourceNotFoundError, ServiceQuotaExceededError, ServiceUnavailableError, ThrottlingError, TooManyTagsError, ValidationError } from "./Errors.js";
|
|
9
|
+
import type { AccessDeniedError, ConflictError, InternalServerError, ResourceNotFoundError, SdkError, ServiceQuotaExceededError, ServiceUnavailableError, ThrottlingError, TooManyTagsError, ValidationError } from "./Errors.js";
|
|
9
10
|
interface BedrockService$ {
|
|
10
11
|
readonly _: unique symbol;
|
|
11
12
|
/**
|
|
12
13
|
* @see {@link BatchDeleteEvaluationJobCommand}
|
|
13
14
|
*/
|
|
14
|
-
batchDeleteEvaluationJob(args: BatchDeleteEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchDeleteEvaluationJobCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
15
|
+
batchDeleteEvaluationJob(args: BatchDeleteEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchDeleteEvaluationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
15
16
|
/**
|
|
16
17
|
* @see {@link CreateEvaluationJobCommand}
|
|
17
18
|
*/
|
|
18
|
-
createEvaluationJob(args: CreateEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateEvaluationJobCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
19
|
+
createEvaluationJob(args: CreateEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateEvaluationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
19
20
|
/**
|
|
20
21
|
* @see {@link CreateGuardrailCommand}
|
|
21
22
|
*/
|
|
22
|
-
createGuardrail(args: CreateGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGuardrailCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
23
|
+
createGuardrail(args: CreateGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGuardrailCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
23
24
|
/**
|
|
24
25
|
* @see {@link CreateGuardrailVersionCommand}
|
|
25
26
|
*/
|
|
26
|
-
createGuardrailVersion(args: CreateGuardrailVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGuardrailVersionCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
27
|
+
createGuardrailVersion(args: CreateGuardrailVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGuardrailVersionCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
27
28
|
/**
|
|
28
29
|
* @see {@link CreateInferenceProfileCommand}
|
|
29
30
|
*/
|
|
30
|
-
createInferenceProfile(args: CreateInferenceProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateInferenceProfileCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
31
|
+
createInferenceProfile(args: CreateInferenceProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateInferenceProfileCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
31
32
|
/**
|
|
32
33
|
* @see {@link CreateMarketplaceModelEndpointCommand}
|
|
33
34
|
*/
|
|
34
|
-
createMarketplaceModelEndpoint(args: CreateMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateMarketplaceModelEndpointCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
35
|
+
createMarketplaceModelEndpoint(args: CreateMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
35
36
|
/**
|
|
36
37
|
* @see {@link CreateModelCopyJobCommand}
|
|
37
38
|
*/
|
|
38
|
-
createModelCopyJob(args: CreateModelCopyJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelCopyJobCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | TooManyTagsError>;
|
|
39
|
+
createModelCopyJob(args: CreateModelCopyJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelCopyJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | TooManyTagsError>;
|
|
39
40
|
/**
|
|
40
41
|
* @see {@link CreateModelCustomizationJobCommand}
|
|
41
42
|
*/
|
|
42
|
-
createModelCustomizationJob(args: CreateModelCustomizationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelCustomizationJobCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
43
|
+
createModelCustomizationJob(args: CreateModelCustomizationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelCustomizationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
43
44
|
/**
|
|
44
45
|
* @see {@link CreateModelImportJobCommand}
|
|
45
46
|
*/
|
|
46
|
-
createModelImportJob(args: CreateModelImportJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelImportJobCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
47
|
+
createModelImportJob(args: CreateModelImportJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelImportJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
47
48
|
/**
|
|
48
49
|
* @see {@link CreateModelInvocationJobCommand}
|
|
49
50
|
*/
|
|
50
|
-
createModelInvocationJob(args: CreateModelInvocationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelInvocationJobCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
51
|
+
createModelInvocationJob(args: CreateModelInvocationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelInvocationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
51
52
|
/**
|
|
52
53
|
* @see {@link CreatePromptRouterCommand}
|
|
53
54
|
*/
|
|
54
|
-
createPromptRouter(args: CreatePromptRouterCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePromptRouterCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
55
|
+
createPromptRouter(args: CreatePromptRouterCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePromptRouterCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
55
56
|
/**
|
|
56
57
|
* @see {@link CreateProvisionedModelThroughputCommand}
|
|
57
58
|
*/
|
|
58
|
-
createProvisionedModelThroughput(args: CreateProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateProvisionedModelThroughputCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
59
|
+
createProvisionedModelThroughput(args: CreateProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateProvisionedModelThroughputCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
59
60
|
/**
|
|
60
61
|
* @see {@link DeleteCustomModelCommand}
|
|
61
62
|
*/
|
|
62
|
-
deleteCustomModel(args: DeleteCustomModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCustomModelCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
63
|
+
deleteCustomModel(args: DeleteCustomModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCustomModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
63
64
|
/**
|
|
64
65
|
* @see {@link DeleteGuardrailCommand}
|
|
65
66
|
*/
|
|
66
|
-
deleteGuardrail(args: DeleteGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGuardrailCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
67
|
+
deleteGuardrail(args: DeleteGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGuardrailCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
67
68
|
/**
|
|
68
69
|
* @see {@link DeleteImportedModelCommand}
|
|
69
70
|
*/
|
|
70
|
-
deleteImportedModel(args: DeleteImportedModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteImportedModelCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
71
|
+
deleteImportedModel(args: DeleteImportedModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteImportedModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
71
72
|
/**
|
|
72
73
|
* @see {@link DeleteInferenceProfileCommand}
|
|
73
74
|
*/
|
|
74
|
-
deleteInferenceProfile(args: DeleteInferenceProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteInferenceProfileCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
75
|
+
deleteInferenceProfile(args: DeleteInferenceProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteInferenceProfileCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
75
76
|
/**
|
|
76
77
|
* @see {@link DeleteMarketplaceModelEndpointCommand}
|
|
77
78
|
*/
|
|
78
|
-
deleteMarketplaceModelEndpoint(args: DeleteMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteMarketplaceModelEndpointCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
79
|
+
deleteMarketplaceModelEndpoint(args: DeleteMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
79
80
|
/**
|
|
80
81
|
* @see {@link DeleteModelInvocationLoggingConfigurationCommand}
|
|
81
82
|
*/
|
|
82
|
-
deleteModelInvocationLoggingConfiguration(args: DeleteModelInvocationLoggingConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteModelInvocationLoggingConfigurationCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError>;
|
|
83
|
+
deleteModelInvocationLoggingConfiguration(args: DeleteModelInvocationLoggingConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteModelInvocationLoggingConfigurationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError>;
|
|
83
84
|
/**
|
|
84
85
|
* @see {@link DeletePromptRouterCommand}
|
|
85
86
|
*/
|
|
86
|
-
deletePromptRouter(args: DeletePromptRouterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePromptRouterCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
87
|
+
deletePromptRouter(args: DeletePromptRouterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePromptRouterCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
87
88
|
/**
|
|
88
89
|
* @see {@link DeleteProvisionedModelThroughputCommand}
|
|
89
90
|
*/
|
|
90
|
-
deleteProvisionedModelThroughput(args: DeleteProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteProvisionedModelThroughputCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
91
|
+
deleteProvisionedModelThroughput(args: DeleteProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteProvisionedModelThroughputCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
91
92
|
/**
|
|
92
93
|
* @see {@link DeregisterMarketplaceModelEndpointCommand}
|
|
93
94
|
*/
|
|
94
|
-
deregisterMarketplaceModelEndpoint(args: DeregisterMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeregisterMarketplaceModelEndpointCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError>;
|
|
95
|
+
deregisterMarketplaceModelEndpoint(args: DeregisterMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeregisterMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError>;
|
|
95
96
|
/**
|
|
96
97
|
* @see {@link GetCustomModelCommand}
|
|
97
98
|
*/
|
|
98
|
-
getCustomModel(args: GetCustomModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCustomModelCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
99
|
+
getCustomModel(args: GetCustomModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCustomModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
99
100
|
/**
|
|
100
101
|
* @see {@link GetEvaluationJobCommand}
|
|
101
102
|
*/
|
|
102
|
-
getEvaluationJob(args: GetEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEvaluationJobCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
103
|
+
getEvaluationJob(args: GetEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEvaluationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
103
104
|
/**
|
|
104
105
|
* @see {@link GetFoundationModelCommand}
|
|
105
106
|
*/
|
|
106
|
-
getFoundationModel(args: GetFoundationModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFoundationModelCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
107
|
+
getFoundationModel(args: GetFoundationModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFoundationModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
107
108
|
/**
|
|
108
109
|
* @see {@link GetGuardrailCommand}
|
|
109
110
|
*/
|
|
110
|
-
getGuardrail(args: GetGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGuardrailCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
111
|
+
getGuardrail(args: GetGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGuardrailCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
111
112
|
/**
|
|
112
113
|
* @see {@link GetImportedModelCommand}
|
|
113
114
|
*/
|
|
114
|
-
getImportedModel(args: GetImportedModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetImportedModelCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
115
|
+
getImportedModel(args: GetImportedModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetImportedModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
115
116
|
/**
|
|
116
117
|
* @see {@link GetInferenceProfileCommand}
|
|
117
118
|
*/
|
|
118
|
-
getInferenceProfile(args: GetInferenceProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetInferenceProfileCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
119
|
+
getInferenceProfile(args: GetInferenceProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetInferenceProfileCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
119
120
|
/**
|
|
120
121
|
* @see {@link GetMarketplaceModelEndpointCommand}
|
|
121
122
|
*/
|
|
122
|
-
getMarketplaceModelEndpoint(args: GetMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetMarketplaceModelEndpointCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
123
|
+
getMarketplaceModelEndpoint(args: GetMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
123
124
|
/**
|
|
124
125
|
* @see {@link GetModelCopyJobCommand}
|
|
125
126
|
*/
|
|
126
|
-
getModelCopyJob(args: GetModelCopyJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelCopyJobCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
127
|
+
getModelCopyJob(args: GetModelCopyJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelCopyJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
127
128
|
/**
|
|
128
129
|
* @see {@link GetModelCustomizationJobCommand}
|
|
129
130
|
*/
|
|
130
|
-
getModelCustomizationJob(args: GetModelCustomizationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelCustomizationJobCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
131
|
+
getModelCustomizationJob(args: GetModelCustomizationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelCustomizationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
131
132
|
/**
|
|
132
133
|
* @see {@link GetModelImportJobCommand}
|
|
133
134
|
*/
|
|
134
|
-
getModelImportJob(args: GetModelImportJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelImportJobCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
135
|
+
getModelImportJob(args: GetModelImportJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelImportJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
135
136
|
/**
|
|
136
137
|
* @see {@link GetModelInvocationJobCommand}
|
|
137
138
|
*/
|
|
138
|
-
getModelInvocationJob(args: GetModelInvocationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelInvocationJobCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
139
|
+
getModelInvocationJob(args: GetModelInvocationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelInvocationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
139
140
|
/**
|
|
140
141
|
* @see {@link GetModelInvocationLoggingConfigurationCommand}
|
|
141
142
|
*/
|
|
142
|
-
getModelInvocationLoggingConfiguration(args: GetModelInvocationLoggingConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelInvocationLoggingConfigurationCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError>;
|
|
143
|
+
getModelInvocationLoggingConfiguration(args: GetModelInvocationLoggingConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelInvocationLoggingConfigurationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError>;
|
|
143
144
|
/**
|
|
144
145
|
* @see {@link GetPromptRouterCommand}
|
|
145
146
|
*/
|
|
146
|
-
getPromptRouter(args: GetPromptRouterCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPromptRouterCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
147
|
+
getPromptRouter(args: GetPromptRouterCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPromptRouterCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
147
148
|
/**
|
|
148
149
|
* @see {@link GetProvisionedModelThroughputCommand}
|
|
149
150
|
*/
|
|
150
|
-
getProvisionedModelThroughput(args: GetProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetProvisionedModelThroughputCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
151
|
+
getProvisionedModelThroughput(args: GetProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetProvisionedModelThroughputCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
151
152
|
/**
|
|
152
153
|
* @see {@link ListCustomModelsCommand}
|
|
153
154
|
*/
|
|
154
|
-
listCustomModels(args: ListCustomModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCustomModelsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
155
|
+
listCustomModels(args: ListCustomModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCustomModelsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
155
156
|
/**
|
|
156
157
|
* @see {@link ListEvaluationJobsCommand}
|
|
157
158
|
*/
|
|
158
|
-
listEvaluationJobs(args: ListEvaluationJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEvaluationJobsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
159
|
+
listEvaluationJobs(args: ListEvaluationJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEvaluationJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
159
160
|
/**
|
|
160
161
|
* @see {@link ListFoundationModelsCommand}
|
|
161
162
|
*/
|
|
162
|
-
listFoundationModels(args: ListFoundationModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListFoundationModelsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
163
|
+
listFoundationModels(args: ListFoundationModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListFoundationModelsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
163
164
|
/**
|
|
164
165
|
* @see {@link ListGuardrailsCommand}
|
|
165
166
|
*/
|
|
166
|
-
listGuardrails(args: ListGuardrailsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGuardrailsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
167
|
+
listGuardrails(args: ListGuardrailsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGuardrailsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
167
168
|
/**
|
|
168
169
|
* @see {@link ListImportedModelsCommand}
|
|
169
170
|
*/
|
|
170
|
-
listImportedModels(args: ListImportedModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListImportedModelsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
171
|
+
listImportedModels(args: ListImportedModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListImportedModelsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
171
172
|
/**
|
|
172
173
|
* @see {@link ListInferenceProfilesCommand}
|
|
173
174
|
*/
|
|
174
|
-
listInferenceProfiles(args: ListInferenceProfilesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListInferenceProfilesCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
175
|
+
listInferenceProfiles(args: ListInferenceProfilesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListInferenceProfilesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
175
176
|
/**
|
|
176
177
|
* @see {@link ListMarketplaceModelEndpointsCommand}
|
|
177
178
|
*/
|
|
178
|
-
listMarketplaceModelEndpoints(args: ListMarketplaceModelEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListMarketplaceModelEndpointsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
179
|
+
listMarketplaceModelEndpoints(args: ListMarketplaceModelEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListMarketplaceModelEndpointsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
179
180
|
/**
|
|
180
181
|
* @see {@link ListModelCopyJobsCommand}
|
|
181
182
|
*/
|
|
182
|
-
listModelCopyJobs(args: ListModelCopyJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelCopyJobsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
183
|
+
listModelCopyJobs(args: ListModelCopyJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelCopyJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
183
184
|
/**
|
|
184
185
|
* @see {@link ListModelCustomizationJobsCommand}
|
|
185
186
|
*/
|
|
186
|
-
listModelCustomizationJobs(args: ListModelCustomizationJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelCustomizationJobsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
187
|
+
listModelCustomizationJobs(args: ListModelCustomizationJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelCustomizationJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
187
188
|
/**
|
|
188
189
|
* @see {@link ListModelImportJobsCommand}
|
|
189
190
|
*/
|
|
190
|
-
listModelImportJobs(args: ListModelImportJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelImportJobsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
191
|
+
listModelImportJobs(args: ListModelImportJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelImportJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
191
192
|
/**
|
|
192
193
|
* @see {@link ListModelInvocationJobsCommand}
|
|
193
194
|
*/
|
|
194
|
-
listModelInvocationJobs(args: ListModelInvocationJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelInvocationJobsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
195
|
+
listModelInvocationJobs(args: ListModelInvocationJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelInvocationJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
195
196
|
/**
|
|
196
197
|
* @see {@link ListPromptRoutersCommand}
|
|
197
198
|
*/
|
|
198
|
-
listPromptRouters(args: ListPromptRoutersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPromptRoutersCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
199
|
+
listPromptRouters(args: ListPromptRoutersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPromptRoutersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
199
200
|
/**
|
|
200
201
|
* @see {@link ListProvisionedModelThroughputsCommand}
|
|
201
202
|
*/
|
|
202
|
-
listProvisionedModelThroughputs(args: ListProvisionedModelThroughputsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListProvisionedModelThroughputsCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
203
|
+
listProvisionedModelThroughputs(args: ListProvisionedModelThroughputsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListProvisionedModelThroughputsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
203
204
|
/**
|
|
204
205
|
* @see {@link ListTagsForResourceCommand}
|
|
205
206
|
*/
|
|
206
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
207
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
207
208
|
/**
|
|
208
209
|
* @see {@link PutModelInvocationLoggingConfigurationCommand}
|
|
209
210
|
*/
|
|
210
|
-
putModelInvocationLoggingConfiguration(args: PutModelInvocationLoggingConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutModelInvocationLoggingConfigurationCommandOutput, SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
211
|
+
putModelInvocationLoggingConfiguration(args: PutModelInvocationLoggingConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutModelInvocationLoggingConfigurationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
211
212
|
/**
|
|
212
213
|
* @see {@link RegisterMarketplaceModelEndpointCommand}
|
|
213
214
|
*/
|
|
214
|
-
registerMarketplaceModelEndpoint(args: RegisterMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<RegisterMarketplaceModelEndpointCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError>;
|
|
215
|
+
registerMarketplaceModelEndpoint(args: RegisterMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<RegisterMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError>;
|
|
215
216
|
/**
|
|
216
217
|
* @see {@link StopEvaluationJobCommand}
|
|
217
218
|
*/
|
|
218
|
-
stopEvaluationJob(args: StopEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopEvaluationJobCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
219
|
+
stopEvaluationJob(args: StopEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopEvaluationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
219
220
|
/**
|
|
220
221
|
* @see {@link StopModelCustomizationJobCommand}
|
|
221
222
|
*/
|
|
222
|
-
stopModelCustomizationJob(args: StopModelCustomizationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopModelCustomizationJobCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
223
|
+
stopModelCustomizationJob(args: StopModelCustomizationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopModelCustomizationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
223
224
|
/**
|
|
224
225
|
* @see {@link StopModelInvocationJobCommand}
|
|
225
226
|
*/
|
|
226
|
-
stopModelInvocationJob(args: StopModelInvocationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopModelInvocationJobCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
227
|
+
stopModelInvocationJob(args: StopModelInvocationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopModelInvocationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
227
228
|
/**
|
|
228
229
|
* @see {@link TagResourceCommand}
|
|
229
230
|
*/
|
|
230
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
231
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
231
232
|
/**
|
|
232
233
|
* @see {@link UntagResourceCommand}
|
|
233
234
|
*/
|
|
234
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
235
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
235
236
|
/**
|
|
236
237
|
* @see {@link UpdateGuardrailCommand}
|
|
237
238
|
*/
|
|
238
|
-
updateGuardrail(args: UpdateGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGuardrailCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
239
|
+
updateGuardrail(args: UpdateGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGuardrailCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
239
240
|
/**
|
|
240
241
|
* @see {@link UpdateMarketplaceModelEndpointCommand}
|
|
241
242
|
*/
|
|
242
|
-
updateMarketplaceModelEndpoint(args: UpdateMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMarketplaceModelEndpointCommandOutput, SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
243
|
+
updateMarketplaceModelEndpoint(args: UpdateMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
243
244
|
/**
|
|
244
245
|
* @see {@link UpdateProvisionedModelThroughputCommand}
|
|
245
246
|
*/
|
|
246
|
-
updateProvisionedModelThroughput(args: UpdateProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateProvisionedModelThroughputCommandOutput, SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
247
|
+
updateProvisionedModelThroughput(args: UpdateProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateProvisionedModelThroughputCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
247
248
|
}
|
|
248
249
|
/**
|
|
249
250
|
* @since 1.0.0
|
|
@@ -251,7 +252,7 @@ interface BedrockService$ {
|
|
|
251
252
|
*/
|
|
252
253
|
export declare const makeBedrockService: Effect.Effect<BedrockService$, never, Instance.BedrockClientInstance>;
|
|
253
254
|
declare const BedrockService_base: import("effect/Context").TagClass<BedrockService, "@effect-aws/client-bedrock/BedrockService", BedrockService$> & Effect.Tag.Proxy<BedrockService, BedrockService$> & {
|
|
254
|
-
use: <X>(body: (_: BedrockService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, BedrockService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1,
|
|
255
|
+
use: <X>(body: (_: BedrockService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, BedrockService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, BedrockService> : Effect.Effect<X, never, BedrockService>;
|
|
255
256
|
};
|
|
256
257
|
/**
|
|
257
258
|
* @since 1.0.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BedrockService.d.ts","sourceRoot":"","sources":["../../src/BedrockService.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"BedrockService.d.ts","sourceRoot":"","sources":["../../src/BedrockService.ts"],"names":[],"mappings":"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"}
|
|
@@ -100,7 +100,7 @@ const commands = {
|
|
|
100
100
|
*/
|
|
101
101
|
exports.makeBedrockService = effect_1.Effect.gen(function* () {
|
|
102
102
|
const client = yield* Instance.BedrockClientInstance;
|
|
103
|
-
return commons_1.Service.fromClientAndCommands(client, commands, {
|
|
103
|
+
return yield* commons_1.Service.fromClientAndCommands(client, commands, {
|
|
104
104
|
errorTags: Errors_js_1.AllServiceErrors,
|
|
105
105
|
resolveClientConfig: BedrockServiceConfig.toBedrockClientConfig,
|
|
106
106
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BedrockService.js","sourceRoot":"","sources":["../../src/BedrockService.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,4DAoLiC;AAEjC,iDAA8C;
|
|
1
|
+
{"version":3,"file":"BedrockService.js","sourceRoot":"","sources":["../../src/BedrockService.ts"],"names":[],"mappings":"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"}
|
package/dist/cjs/Errors.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ServiceUnavailableException, ThrottlingException, TooManyTagsException, ValidationException } from "@aws-sdk/client-bedrock";
|
|
2
2
|
import type { TaggedException } from "@effect-aws/commons";
|
|
3
|
-
import { SdkError as CommonSdkError } from "@effect-aws/commons";
|
|
4
3
|
export declare const AllServiceErrors: readonly ["AccessDeniedException", "ConflictException", "InternalServerException", "ResourceNotFoundException", "ServiceQuotaExceededException", "ServiceUnavailableException", "ThrottlingException", "TooManyTagsException", "ValidationException"];
|
|
5
4
|
export type AccessDeniedError = TaggedException<AccessDeniedException>;
|
|
6
5
|
export type ConflictError = TaggedException<ConflictException>;
|
|
@@ -11,6 +10,7 @@ export type ServiceUnavailableError = TaggedException<ServiceUnavailableExceptio
|
|
|
11
10
|
export type ThrottlingError = TaggedException<ThrottlingException>;
|
|
12
11
|
export type TooManyTagsError = TaggedException<TooManyTagsException>;
|
|
13
12
|
export type ValidationError = TaggedException<ValidationException>;
|
|
14
|
-
export type SdkError =
|
|
15
|
-
|
|
13
|
+
export type SdkError = TaggedException<Error & {
|
|
14
|
+
name: "SdkError";
|
|
15
|
+
}>;
|
|
16
16
|
//# sourceMappingURL=Errors.d.ts.map
|
package/dist/cjs/Errors.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACrB,iBAAiB,EACjB,uBAAuB,EACvB,yBAAyB,EACzB,6BAA6B,EAC7B,2BAA2B,EAC3B,mBAAmB,EACnB,oBAAoB,EACpB,mBAAmB,EACpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACrB,iBAAiB,EACjB,uBAAuB,EACvB,yBAAyB,EACzB,6BAA6B,EAC7B,2BAA2B,EAC3B,mBAAmB,EACnB,oBAAoB,EACpB,mBAAmB,EACpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAE3D,eAAO,MAAM,gBAAgB,uPAUnB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,eAAe,CAAC,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAC/D,MAAM,MAAM,mBAAmB,GAAG,eAAe,CAAC,uBAAuB,CAAC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,yBAAyB,GAAG,eAAe,CAAC,6BAA6B,CAAC,CAAC;AACvF,MAAM,MAAM,uBAAuB,GAAG,eAAe,CAAC,2BAA2B,CAAC,CAAC;AACnF,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AACnE,MAAM,MAAM,gBAAgB,GAAG,eAAe,CAAC,oBAAoB,CAAC,CAAC;AACrE,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AACnE,MAAM,MAAM,QAAQ,GAAG,eAAe,CAAC,KAAK,GAAG;IAAE,IAAI,EAAE,UAAU,CAAA;CAAE,CAAC,CAAC"}
|
package/dist/cjs/Errors.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
const commons_1 = require("@effect-aws/commons");
|
|
3
|
+
exports.AllServiceErrors = void 0;
|
|
5
4
|
exports.AllServiceErrors = [
|
|
6
5
|
"AccessDeniedException",
|
|
7
6
|
"ConflictException",
|
|
@@ -13,5 +12,4 @@ exports.AllServiceErrors = [
|
|
|
13
12
|
"TooManyTagsException",
|
|
14
13
|
"ValidationException",
|
|
15
14
|
];
|
|
16
|
-
exports.SdkError = commons_1.SdkError;
|
|
17
15
|
//# sourceMappingURL=Errors.js.map
|
package/dist/cjs/Errors.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":";;;AAaa,QAAA,gBAAgB,GAAG;IAC9B,uBAAuB;IACvB,mBAAmB;IACnB,yBAAyB;IACzB,2BAA2B;IAC3B,+BAA+B;IAC/B,6BAA6B;IAC7B,qBAAqB;IACrB,sBAAsB;IACtB,qBAAqB;CACb,CAAC"}
|