distilled-aws 0.0.12 → 0.0.13
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/lib/patch/discover-errors.js +9 -0
- package/lib/patch/discover-errors.js.map +1 -1
- package/lib/services/ec2.d.ts +18 -3
- package/lib/services/ec2.d.ts.map +1 -1
- package/lib/services/ec2.js +10 -2
- package/lib/services/ec2.js.map +1 -1
- package/package.json +1 -1
- package/src/patch/discover-errors.ts +9 -0
- package/src/services/ec2.ts +20 -4
package/lib/services/ec2.js
CHANGED
|
@@ -21679,8 +21679,14 @@ export class InvalidInstanceIDNotFound extends S.TaggedError()("InvalidInstanceI
|
|
|
21679
21679
|
}
|
|
21680
21680
|
export class AuthFailure extends S.TaggedError()("AuthFailure", {}) {
|
|
21681
21681
|
}
|
|
21682
|
+
export class InvalidAddressNotFound extends S.TaggedError()("InvalidAddress.NotFound", {}) {
|
|
21683
|
+
}
|
|
21682
21684
|
export class InvalidAllocationIDNotFound extends S.TaggedError()("InvalidAllocationID.NotFound", {}) {
|
|
21683
21685
|
}
|
|
21686
|
+
export class InvalidIPAddressInUse extends S.TaggedError()("InvalidIPAddress.InUse", {}) {
|
|
21687
|
+
}
|
|
21688
|
+
export class AddressLimitExceeded extends S.TaggedError()("AddressLimitExceeded", {}) {
|
|
21689
|
+
}
|
|
21684
21690
|
export class InvalidAMIIDNotFound extends S.TaggedError()("InvalidAMIID.NotFound", {}) {
|
|
21685
21691
|
}
|
|
21686
21692
|
export class InvalidKeyPairDuplicate extends S.TaggedError()("InvalidKeyPair.Duplicate", {}) {
|
|
@@ -22380,7 +22386,9 @@ export const releaseAddress = API.make(() => ({
|
|
|
22380
22386
|
errors: [
|
|
22381
22387
|
AuthFailure,
|
|
22382
22388
|
DryRunOperation,
|
|
22389
|
+
InvalidAddressNotFound,
|
|
22383
22390
|
InvalidAllocationIDNotFound,
|
|
22391
|
+
InvalidIPAddressInUse,
|
|
22384
22392
|
InvalidParameterCombination,
|
|
22385
22393
|
InvalidParameterValue,
|
|
22386
22394
|
MissingParameter,
|
|
@@ -22541,7 +22549,7 @@ export const acceptCapacityReservationBillingOwnership = API.make(() => ({
|
|
|
22541
22549
|
export const allocateAddress = API.make(() => ({
|
|
22542
22550
|
input: AllocateAddressRequest,
|
|
22543
22551
|
output: AllocateAddressResult,
|
|
22544
|
-
errors: [],
|
|
22552
|
+
errors: [AddressLimitExceeded],
|
|
22545
22553
|
}));
|
|
22546
22554
|
/**
|
|
22547
22555
|
* Allocates a Dedicated Host to your account. At a minimum, specify the supported
|
|
@@ -32042,7 +32050,7 @@ export const requestSpotInstances = API.make(() => ({
|
|
|
32042
32050
|
export const runInstances = API.make(() => ({
|
|
32043
32051
|
input: RunInstancesRequest,
|
|
32044
32052
|
output: Reservation,
|
|
32045
|
-
errors: [ParseError],
|
|
32053
|
+
errors: [InvalidAMIIDNotFound, ParseError],
|
|
32046
32054
|
}));
|
|
32047
32055
|
/**
|
|
32048
32056
|
* Accept a VPC peering connection request. To accept a request, the VPC peering connection must
|