Skip to content

Commit

Permalink
feat: update services
Browse files Browse the repository at this point in the history
  • Loading branch information
floydspace committed Dec 9, 2024
1 parent 0ce4b74 commit b24f980
Show file tree
Hide file tree
Showing 20 changed files with 1,292 additions and 3 deletions.
15 changes: 15 additions & 0 deletions .changeset/angry-radios-call.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
"@effect-aws/client-cognito-identity-provider": minor
"@effect-aws/client-cloudwatch-logs": minor
"@effect-aws/client-eventbridge": minor
"@effect-aws/client-cloudtrail": minor
"@effect-aws/client-opensearch": minor
"@effect-aws/client-dynamodb": minor
"@effect-aws/client-bedrock": minor
"@effect-aws/client-iam": minor
"@effect-aws/client-rds": minor
"@effect-aws/client-ssm": minor
"@effect-aws/client-sts": minor
---

update services
186 changes: 186 additions & 0 deletions packages/client-bedrock/src/BedrockService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ import {
CreateInferenceProfileCommand,
type CreateInferenceProfileCommandInput,
type CreateInferenceProfileCommandOutput,
CreateMarketplaceModelEndpointCommand,
type CreateMarketplaceModelEndpointCommandInput,
type CreateMarketplaceModelEndpointCommandOutput,
CreateModelCopyJobCommand,
type CreateModelCopyJobCommandInput,
type CreateModelCopyJobCommandOutput,
Expand Down Expand Up @@ -47,12 +50,18 @@ import {
DeleteInferenceProfileCommand,
type DeleteInferenceProfileCommandInput,
type DeleteInferenceProfileCommandOutput,
DeleteMarketplaceModelEndpointCommand,
type DeleteMarketplaceModelEndpointCommandInput,
type DeleteMarketplaceModelEndpointCommandOutput,
DeleteModelInvocationLoggingConfigurationCommand,
type DeleteModelInvocationLoggingConfigurationCommandInput,
type DeleteModelInvocationLoggingConfigurationCommandOutput,
DeleteProvisionedModelThroughputCommand,
type DeleteProvisionedModelThroughputCommandInput,
type DeleteProvisionedModelThroughputCommandOutput,
DeregisterMarketplaceModelEndpointCommand,
type DeregisterMarketplaceModelEndpointCommandInput,
type DeregisterMarketplaceModelEndpointCommandOutput,
GetCustomModelCommand,
type GetCustomModelCommandInput,
type GetCustomModelCommandOutput,
Expand All @@ -71,6 +80,9 @@ import {
GetInferenceProfileCommand,
type GetInferenceProfileCommandInput,
type GetInferenceProfileCommandOutput,
GetMarketplaceModelEndpointCommand,
type GetMarketplaceModelEndpointCommandInput,
type GetMarketplaceModelEndpointCommandOutput,
GetModelCopyJobCommand,
type GetModelCopyJobCommandInput,
type GetModelCopyJobCommandOutput,
Expand All @@ -86,6 +98,9 @@ import {
GetModelInvocationLoggingConfigurationCommand,
type GetModelInvocationLoggingConfigurationCommandInput,
type GetModelInvocationLoggingConfigurationCommandOutput,
GetPromptRouterCommand,
type GetPromptRouterCommandInput,
type GetPromptRouterCommandOutput,
GetProvisionedModelThroughputCommand,
type GetProvisionedModelThroughputCommandInput,
type GetProvisionedModelThroughputCommandOutput,
Expand All @@ -107,6 +122,9 @@ import {
ListInferenceProfilesCommand,
type ListInferenceProfilesCommandInput,
type ListInferenceProfilesCommandOutput,
ListMarketplaceModelEndpointsCommand,
type ListMarketplaceModelEndpointsCommandInput,
type ListMarketplaceModelEndpointsCommandOutput,
ListModelCopyJobsCommand,
type ListModelCopyJobsCommandInput,
type ListModelCopyJobsCommandOutput,
Expand All @@ -119,6 +137,9 @@ import {
ListModelInvocationJobsCommand,
type ListModelInvocationJobsCommandInput,
type ListModelInvocationJobsCommandOutput,
ListPromptRoutersCommand,
type ListPromptRoutersCommandInput,
type ListPromptRoutersCommandOutput,
ListProvisionedModelThroughputsCommand,
type ListProvisionedModelThroughputsCommandInput,
type ListProvisionedModelThroughputsCommandOutput,
Expand All @@ -128,6 +149,9 @@ import {
PutModelInvocationLoggingConfigurationCommand,
type PutModelInvocationLoggingConfigurationCommandInput,
type PutModelInvocationLoggingConfigurationCommandOutput,
RegisterMarketplaceModelEndpointCommand,
type RegisterMarketplaceModelEndpointCommandInput,
type RegisterMarketplaceModelEndpointCommandOutput,
StopEvaluationJobCommand,
type StopEvaluationJobCommandInput,
type StopEvaluationJobCommandOutput,
Expand All @@ -146,6 +170,9 @@ import {
UpdateGuardrailCommand,
type UpdateGuardrailCommandInput,
type UpdateGuardrailCommandOutput,
UpdateMarketplaceModelEndpointCommand,
type UpdateMarketplaceModelEndpointCommandInput,
type UpdateMarketplaceModelEndpointCommandOutput,
UpdateProvisionedModelThroughputCommand,
type UpdateProvisionedModelThroughputCommandInput,
type UpdateProvisionedModelThroughputCommandOutput,
Expand All @@ -167,6 +194,7 @@ import {
InternalServerError,
ResourceNotFoundError,
ServiceQuotaExceededError,
ServiceUnavailableError,
ThrottlingError,
TooManyTagsError,
ValidationError,
Expand All @@ -191,6 +219,7 @@ const commands = {
CreateGuardrailCommand,
CreateGuardrailVersionCommand,
CreateInferenceProfileCommand,
CreateMarketplaceModelEndpointCommand,
CreateModelCopyJobCommand,
CreateModelCustomizationJobCommand,
CreateModelImportJobCommand,
Expand All @@ -200,39 +229,47 @@ const commands = {
DeleteGuardrailCommand,
DeleteImportedModelCommand,
DeleteInferenceProfileCommand,
DeleteMarketplaceModelEndpointCommand,
DeleteModelInvocationLoggingConfigurationCommand,
DeleteProvisionedModelThroughputCommand,
DeregisterMarketplaceModelEndpointCommand,
GetCustomModelCommand,
GetEvaluationJobCommand,
GetFoundationModelCommand,
GetGuardrailCommand,
GetImportedModelCommand,
GetInferenceProfileCommand,
GetMarketplaceModelEndpointCommand,
GetModelCopyJobCommand,
GetModelCustomizationJobCommand,
GetModelImportJobCommand,
GetModelInvocationJobCommand,
GetModelInvocationLoggingConfigurationCommand,
GetPromptRouterCommand,
GetProvisionedModelThroughputCommand,
ListCustomModelsCommand,
ListEvaluationJobsCommand,
ListFoundationModelsCommand,
ListGuardrailsCommand,
ListImportedModelsCommand,
ListInferenceProfilesCommand,
ListMarketplaceModelEndpointsCommand,
ListModelCopyJobsCommand,
ListModelCustomizationJobsCommand,
ListModelImportJobsCommand,
ListModelInvocationJobsCommand,
ListPromptRoutersCommand,
ListProvisionedModelThroughputsCommand,
ListTagsForResourceCommand,
PutModelInvocationLoggingConfigurationCommand,
RegisterMarketplaceModelEndpointCommand,
StopEvaluationJobCommand,
StopModelCustomizationJobCommand,
StopModelInvocationJobCommand,
TagResourceCommand,
UntagResourceCommand,
UpdateGuardrailCommand,
UpdateMarketplaceModelEndpointCommand,
UpdateProvisionedModelThroughputCommand,
};

Expand Down Expand Up @@ -330,6 +367,24 @@ interface BedrockService$ {
| ValidationError
>;

/**
* @see {@link CreateMarketplaceModelEndpointCommand}
*/
createMarketplaceModelEndpoint(
args: CreateMarketplaceModelEndpointCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
CreateMarketplaceModelEndpointCommandOutput,
| SdkError
| AccessDeniedError
| ConflictError
| InternalServerError
| ResourceNotFoundError
| ServiceQuotaExceededError
| ThrottlingError
| ValidationError
>;

/**
* @see {@link CreateModelCopyJobCommand}
*/
Expand Down Expand Up @@ -487,6 +542,22 @@ interface BedrockService$ {
| ValidationError
>;

/**
* @see {@link DeleteMarketplaceModelEndpointCommand}
*/
deleteMarketplaceModelEndpoint(
args: DeleteMarketplaceModelEndpointCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
DeleteMarketplaceModelEndpointCommandOutput,
| SdkError
| AccessDeniedError
| InternalServerError
| ResourceNotFoundError
| ThrottlingError
| ValidationError
>;

/**
* @see {@link DeleteModelInvocationLoggingConfigurationCommand}
*/
Expand Down Expand Up @@ -515,6 +586,23 @@ interface BedrockService$ {
| ValidationError
>;

/**
* @see {@link DeregisterMarketplaceModelEndpointCommand}
*/
deregisterMarketplaceModelEndpoint(
args: DeregisterMarketplaceModelEndpointCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
DeregisterMarketplaceModelEndpointCommandOutput,
| SdkError
| AccessDeniedError
| InternalServerError
| ResourceNotFoundError
| ServiceUnavailableError
| ThrottlingError
| ValidationError
>;

/**
* @see {@link GetCustomModelCommand}
*/
Expand Down Expand Up @@ -611,6 +699,22 @@ interface BedrockService$ {
| ValidationError
>;

/**
* @see {@link GetMarketplaceModelEndpointCommand}
*/
getMarketplaceModelEndpoint(
args: GetMarketplaceModelEndpointCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
GetMarketplaceModelEndpointCommandOutput,
| SdkError
| AccessDeniedError
| InternalServerError
| ResourceNotFoundError
| ThrottlingError
| ValidationError
>;

/**
* @see {@link GetModelCopyJobCommand}
*/
Expand Down Expand Up @@ -686,6 +790,22 @@ interface BedrockService$ {
SdkError | AccessDeniedError | InternalServerError | ThrottlingError
>;

/**
* @see {@link GetPromptRouterCommand}
*/
getPromptRouter(
args: GetPromptRouterCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
GetPromptRouterCommandOutput,
| SdkError
| AccessDeniedError
| InternalServerError
| ResourceNotFoundError
| ThrottlingError
| ValidationError
>;

/**
* @see {@link GetProvisionedModelThroughputCommand}
*/
Expand Down Expand Up @@ -793,6 +913,22 @@ interface BedrockService$ {
| ValidationError
>;

/**
* @see {@link ListMarketplaceModelEndpointsCommand}
*/
listMarketplaceModelEndpoints(
args: ListMarketplaceModelEndpointsCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
ListMarketplaceModelEndpointsCommandOutput,
| SdkError
| AccessDeniedError
| InternalServerError
| ResourceNotFoundError
| ThrottlingError
| ValidationError
>;

/**
* @see {@link ListModelCopyJobsCommand}
*/
Expand Down Expand Up @@ -854,6 +990,21 @@ interface BedrockService$ {
| ValidationError
>;

/**
* @see {@link ListPromptRoutersCommand}
*/
listPromptRouters(
args: ListPromptRoutersCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
ListPromptRoutersCommandOutput,
| SdkError
| AccessDeniedError
| InternalServerError
| ThrottlingError
| ValidationError
>;

/**
* @see {@link ListProvisionedModelThroughputsCommand}
*/
Expand Down Expand Up @@ -900,6 +1051,23 @@ interface BedrockService$ {
| ValidationError
>;

/**
* @see {@link RegisterMarketplaceModelEndpointCommand}
*/
registerMarketplaceModelEndpoint(
args: RegisterMarketplaceModelEndpointCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
RegisterMarketplaceModelEndpointCommandOutput,
| SdkError
| AccessDeniedError
| InternalServerError
| ResourceNotFoundError
| ServiceUnavailableError
| ThrottlingError
| ValidationError
>;

/**
* @see {@link StopEvaluationJobCommand}
*/
Expand Down Expand Up @@ -1002,6 +1170,24 @@ interface BedrockService$ {
| ValidationError
>;

/**
* @see {@link UpdateMarketplaceModelEndpointCommand}
*/
updateMarketplaceModelEndpoint(
args: UpdateMarketplaceModelEndpointCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
UpdateMarketplaceModelEndpointCommandOutput,
| SdkError
| AccessDeniedError
| ConflictError
| InternalServerError
| ResourceNotFoundError
| ServiceQuotaExceededError
| ThrottlingError
| ValidationError
>;

/**
* @see {@link UpdateProvisionedModelThroughputCommand}
*/
Expand Down
Loading

0 comments on commit b24f980

Please sign in to comment.