Skip to content

Commit ef1b035

Browse files
committed
fix: bump aws-sdk and add new service methods
1 parent 401b544 commit ef1b035

20 files changed

Lines changed: 1535 additions & 1 deletion

File tree

.changeset/funky-candies-smell.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
"@effect-aws/client-bedrock-agentcore-control": minor
3+
"@effect-aws/client-cognito-identity-provider": minor
4+
"@effect-aws/client-timestream-influxdb": minor
5+
"@effect-aws/client-bedrock-agentcore": minor
6+
"@effect-aws/client-auto-scaling": minor
7+
"@effect-aws/client-codedeploy": minor
8+
"@effect-aws/client-dynamodb": minor
9+
"@effect-aws/client-account": minor
10+
"@effect-aws/client-lambda": minor
11+
"@effect-aws/client-kafka": minor
12+
"@effect-aws/client-sesv2": minor
13+
"@effect-aws/client-glue": minor
14+
"@effect-aws/client-ec2": minor
15+
"@effect-aws/client-eks": minor
16+
"@effect-aws/client-iam": minor
17+
---
18+
19+
bump aws-sdk and add new service methods

packages/client-account/src/AccountService.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ import {
3131
GetPrimaryEmailCommand,
3232
type GetPrimaryEmailCommandInput,
3333
type GetPrimaryEmailCommandOutput,
34+
GetPrimaryEmailUpdateStatusCommand,
35+
type GetPrimaryEmailUpdateStatusCommandInput,
36+
type GetPrimaryEmailUpdateStatusCommandOutput,
3437
GetRegionOptStatusCommand,
3538
type GetRegionOptStatusCommandInput,
3639
type GetRegionOptStatusCommandOutput,
@@ -83,6 +86,7 @@ const commands = {
8386
GetContactInformationCommand,
8487
GetGovCloudAccountInformationCommand,
8588
GetPrimaryEmailCommand,
89+
GetPrimaryEmailUpdateStatusCommand,
8690
GetRegionOptStatusCommand,
8791
ListRegionsCommand,
8892
PutAccountNameCommand,
@@ -249,6 +253,23 @@ export interface AccountService$ {
249253
| ValidationError
250254
>;
251255

256+
/**
257+
* @see {@link GetPrimaryEmailUpdateStatusCommand}
258+
*/
259+
getPrimaryEmailUpdateStatus(
260+
args: GetPrimaryEmailUpdateStatusCommandInput,
261+
options?: HttpHandlerOptions,
262+
): Effect.Effect<
263+
GetPrimaryEmailUpdateStatusCommandOutput,
264+
| Cause.TimeoutError
265+
| SdkError
266+
| AccessDeniedError
267+
| InternalServerError
268+
| ResourceNotFoundError
269+
| TooManyRequestsError
270+
| ValidationError
271+
>;
272+
252273
/**
253274
* @see {@link GetRegionOptStatusCommand}
254275
*/

packages/client-auto-scaling/src/AutoScalingService.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ import * as AutoScalingServiceConfig from "./AutoScalingServiceConfig.js";
229229
import type {
230230
ActiveInstanceRefreshNotFoundFaultError,
231231
AlreadyExistsFaultError,
232+
IdempotentCallInProgressFaultError,
232233
IdempotentParameterMismatchError,
233234
InstanceRefreshInProgressFaultError,
234235
InvalidNextTokenError,
@@ -1029,7 +1030,11 @@ export interface AutoScalingService$ {
10291030
options?: HttpHandlerOptions,
10301031
): Effect.Effect<
10311032
LaunchInstancesCommandOutput,
1032-
Cause.TimeoutError | SdkError | IdempotentParameterMismatchError | ResourceContentionFaultError
1033+
| Cause.TimeoutError
1034+
| SdkError
1035+
| IdempotentCallInProgressFaultError
1036+
| IdempotentParameterMismatchError
1037+
| ResourceContentionFaultError
10331038
>;
10341039

10351040
/**

packages/client-auto-scaling/src/Errors.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import type {
22
ActiveInstanceRefreshNotFoundFault,
33
AlreadyExistsFault,
4+
IdempotentCallInProgressFault,
45
IdempotentParameterMismatchError as IdempotentParameterMismatchException,
56
InstanceRefreshInProgressFault,
67
InvalidNextToken,
@@ -16,6 +17,7 @@ import type { TaggedException } from "@effect-aws/commons/Errors";
1617
export const AllServiceErrors = [
1718
"ActiveInstanceRefreshNotFoundFault",
1819
"AlreadyExistsFault",
20+
"IdempotentCallInProgressFault",
1921
"IdempotentParameterMismatchError",
2022
"InstanceRefreshInProgressFault",
2123
"InvalidNextToken",
@@ -29,6 +31,7 @@ export const AllServiceErrors = [
2931

3032
export type ActiveInstanceRefreshNotFoundFaultError = TaggedException<ActiveInstanceRefreshNotFoundFault>;
3133
export type AlreadyExistsFaultError = TaggedException<AlreadyExistsFault>;
34+
export type IdempotentCallInProgressFaultError = TaggedException<IdempotentCallInProgressFault>;
3235
export type IdempotentParameterMismatchError = TaggedException<IdempotentParameterMismatchException>;
3336
export type InstanceRefreshInProgressFaultError = TaggedException<InstanceRefreshInProgressFault>;
3437
export type InvalidNextTokenError = TaggedException<InvalidNextToken>;

0 commit comments

Comments
 (0)