Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .changeset/cyan-cougars-bow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
"@effect-aws/client-cognito-identity-provider": minor
"@effect-aws/client-opensearch-serverless": minor
"@effect-aws/client-bedrock-runtime": minor
"@effect-aws/client-cloudwatch-logs": minor
"@effect-aws/client-api-gateway-v2": minor
"@effect-aws/client-iot-data-plane": minor
"@effect-aws/client-organizations": minor
"@effect-aws/client-cloudtrail": minor
"@effect-aws/client-cloudwatch": minor
"@effect-aws/client-dynamodb": minor
"@effect-aws/client-bedrock": minor
"@effect-aws/client-kinesis": minor
"@effect-aws/client-lambda": minor
"@effect-aws/client-dsql": minor
"@effect-aws/client-ec2": minor
"@effect-aws/client-ecs": minor
"@effect-aws/client-iam": minor
"@effect-aws/client-iot": minor
"@effect-aws/client-rds": minor
"@effect-aws/client-ssm": minor
"@effect-aws/client-s3": minor
---

update clients with new methods
7 changes: 7 additions & 0 deletions .changeset/fuzzy-rockets-walk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@effect-aws/client-ivs": major
---

implement IVS client

closes #180
1 change: 1 addition & 0 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

75 changes: 75 additions & 0 deletions packages/client-api-gateway-v2/src/ApiGatewayV2Service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ import {
CreateRouteResponseCommand,
type CreateRouteResponseCommandInput,
type CreateRouteResponseCommandOutput,
CreateRoutingRuleCommand,
type CreateRoutingRuleCommandInput,
type CreateRoutingRuleCommandOutput,
CreateStageCommand,
type CreateStageCommandInput,
type CreateStageCommandOutput,
Expand Down Expand Up @@ -82,6 +85,9 @@ import {
DeleteRouteSettingsCommand,
type DeleteRouteSettingsCommandInput,
type DeleteRouteSettingsCommandOutput,
DeleteRoutingRuleCommand,
type DeleteRoutingRuleCommandInput,
type DeleteRoutingRuleCommandOutput,
DeleteStageCommand,
type DeleteStageCommandInput,
type DeleteStageCommandOutput,
Expand Down Expand Up @@ -154,6 +160,9 @@ import {
GetRoutesCommand,
type GetRoutesCommandInput,
type GetRoutesCommandOutput,
GetRoutingRuleCommand,
type GetRoutingRuleCommandInput,
type GetRoutingRuleCommandOutput,
GetStageCommand,
type GetStageCommandInput,
type GetStageCommandOutput,
Expand All @@ -172,6 +181,12 @@ import {
ImportApiCommand,
type ImportApiCommandInput,
type ImportApiCommandOutput,
ListRoutingRulesCommand,
type ListRoutingRulesCommandInput,
type ListRoutingRulesCommandOutput,
PutRoutingRuleCommand,
type PutRoutingRuleCommandInput,
type PutRoutingRuleCommandOutput,
ReimportApiCommand,
type ReimportApiCommandInput,
type ReimportApiCommandOutput,
Expand Down Expand Up @@ -248,6 +263,7 @@ const commands = {
CreateModelCommand,
CreateRouteCommand,
CreateRouteResponseCommand,
CreateRoutingRuleCommand,
CreateStageCommand,
CreateVpcLinkCommand,
DeleteAccessLogSettingsCommand,
Expand All @@ -264,6 +280,7 @@ const commands = {
DeleteRouteRequestParameterCommand,
DeleteRouteResponseCommand,
DeleteRouteSettingsCommand,
DeleteRoutingRuleCommand,
DeleteStageCommand,
DeleteVpcLinkCommand,
ExportApiCommand,
Expand All @@ -288,12 +305,15 @@ const commands = {
GetRouteResponseCommand,
GetRouteResponsesCommand,
GetRoutesCommand,
GetRoutingRuleCommand,
GetStageCommand,
GetStagesCommand,
GetTagsCommand,
GetVpcLinkCommand,
GetVpcLinksCommand,
ImportApiCommand,
ListRoutingRulesCommand,
PutRoutingRuleCommand,
ReimportApiCommand,
ResetAuthorizersCacheCommand,
TagResourceCommand,
Expand Down Expand Up @@ -431,6 +451,17 @@ interface ApiGatewayV2Service$ {
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
>;

/**
* @see {@link CreateRoutingRuleCommand}
*/
createRoutingRule(
args: CreateRoutingRuleCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
CreateRoutingRuleCommandOutput,
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
>;

/**
* @see {@link CreateStageCommand}
*/
Expand Down Expand Up @@ -607,6 +638,17 @@ interface ApiGatewayV2Service$ {
Cause.TimeoutException | SdkError | NotFoundError | TooManyRequestsError
>;

/**
* @see {@link DeleteRoutingRuleCommand}
*/
deleteRoutingRule(
args: DeleteRoutingRuleCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
DeleteRoutingRuleCommandOutput,
Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
>;

/**
* @see {@link DeleteStageCommand}
*/
Expand Down Expand Up @@ -871,6 +913,17 @@ interface ApiGatewayV2Service$ {
Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
>;

/**
* @see {@link GetRoutingRuleCommand}
*/
getRoutingRule(
args: GetRoutingRuleCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
GetRoutingRuleCommandOutput,
Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
>;

/**
* @see {@link GetStageCommand}
*/
Expand Down Expand Up @@ -937,6 +990,28 @@ interface ApiGatewayV2Service$ {
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
>;

/**
* @see {@link ListRoutingRulesCommand}
*/
listRoutingRules(
args: ListRoutingRulesCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
ListRoutingRulesCommandOutput,
Cause.TimeoutException | SdkError | BadRequestError | NotFoundError | TooManyRequestsError
>;

/**
* @see {@link PutRoutingRuleCommand}
*/
putRoutingRule(
args: PutRoutingRuleCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
PutRoutingRuleCommandOutput,
Cause.TimeoutException | SdkError | BadRequestError | ConflictError | NotFoundError | TooManyRequestsError
>;

/**
* @see {@link ReimportApiCommand}
*/
Expand Down
23 changes: 23 additions & 0 deletions packages/client-bedrock-runtime/src/BedrockRuntimeService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ import {
ConverseStreamCommand,
type ConverseStreamCommandInput,
type ConverseStreamCommandOutput,
CountTokensCommand,
type CountTokensCommandInput,
type CountTokensCommandOutput,
GetAsyncInvokeCommand,
type GetAsyncInvokeCommandInput,
type GetAsyncInvokeCommandOutput,
Expand Down Expand Up @@ -59,6 +62,7 @@ const commands = {
ApplyGuardrailCommand,
ConverseCommand,
ConverseStreamCommand,
CountTokensCommand,
GetAsyncInvokeCommand,
InvokeModelCommand,
InvokeModelWithBidirectionalStreamCommand,
Expand All @@ -84,6 +88,7 @@ interface BedrockRuntimeService$ {
| InternalServerError
| ResourceNotFoundError
| ServiceQuotaExceededError
| ServiceUnavailableError
| ThrottlingError
| ValidationError
>;
Expand Down Expand Up @@ -130,6 +135,24 @@ interface BedrockRuntimeService$ {
| ValidationError
>;

/**
* @see {@link CountTokensCommand}
*/
countTokens(
args: CountTokensCommandInput,
options?: HttpHandlerOptions,
): Effect.Effect<
CountTokensCommandOutput,
| Cause.TimeoutException
| SdkError
| AccessDeniedError
| InternalServerError
| ResourceNotFoundError
| ServiceUnavailableError
| ThrottlingError
| ValidationError
>;

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