Skip to content

Commit b6cf399

Browse files
committed
fix(ec2): add AuthFailure to ReleaseAddress
1 parent fc37a72 commit b6cf399

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

scripts/service-patches.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ export const servicePatches: Record<string, ServicePatches> = {
5252
"InvalidNetworkInterfaceID.NotFound",
5353
"InvalidIPAddress.InUse",
5454
"DependencyViolation",
55+
"AuthFailure",
5556
],
5657
},
5758

src/services/ec2/types.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3373,6 +3373,7 @@ export declare class EC2 extends AWSServiceClient {
33733373
| InvalidNetworkInterfaceIDNotFound
33743374
| InvalidIPAddressInUse
33753375
| DependencyViolation
3376+
| AuthFailure
33763377
| CommonAwsError
33773378
>;
33783379
releaseHosts(
@@ -21814,6 +21815,10 @@ export declare class InvalidIPAddressInUse extends EffectData.TaggedError(
2181421815
"InvalidIPAddress.InUse",
2181521816
)<{}> {}
2181621817

21818+
export declare class AuthFailure extends EffectData.TaggedError(
21819+
"AuthFailure",
21820+
)<{}> {}
21821+
2181721822
export declare class InvalidClientVpnEndpointAuthorizationRuleNotFound extends EffectData.TaggedError(
2181821823
"InvalidClientVpnEndpointAuthorizationRuleNotFound",
2181921824
)<{}> {}
@@ -26352,6 +26357,7 @@ export declare namespace ReleaseAddress {
2635226357
| InvalidNetworkInterfaceIDNotFound
2635326358
| InvalidIPAddressInUse
2635426359
| DependencyViolation
26360+
| AuthFailure
2635526361
| CommonAwsError;
2635626362
}
2635726363

@@ -26863,6 +26869,7 @@ export type EC2Errors =
2686326869
| InvalidKeyPairFormat
2686426870
| InstanceCreditSpecificationNotSupported
2686526871
| InvalidIPAddressInUse
26872+
| AuthFailure
2686626873
| InvalidClientVpnEndpointAuthorizationRuleNotFound
2686726874
| InvalidPermissionNotFound
2686826875
| InvalidBlockDeviceMapping

0 commit comments

Comments
 (0)