distilled-aws 0.0.15 → 0.0.17
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/services/ec2.d.ts +30 -25
- package/lib/services/ec2.d.ts.map +1 -1
- package/lib/services/ec2.js +34 -9
- package/lib/services/ec2.js.map +1 -1
- package/package.json +1 -1
- package/src/services/ec2.ts +71 -19
package/lib/services/ec2.js
CHANGED
|
@@ -21719,6 +21719,8 @@ export class InvalidCertificateArnMalformed extends S.TaggedError()("InvalidCert
|
|
|
21719
21719
|
}
|
|
21720
21720
|
export class InvalidRoleArnMalformed extends S.TaggedError()("InvalidRoleArn.Malformed", {}) {
|
|
21721
21721
|
}
|
|
21722
|
+
export class NatGatewayMalformed extends S.TaggedError()("NatGatewayMalformed", {}) {
|
|
21723
|
+
}
|
|
21722
21724
|
export class NatGatewayNotFound extends S.TaggedError()("NatGatewayNotFound", {}) {
|
|
21723
21725
|
}
|
|
21724
21726
|
export class InvalidGroupIdMalformed extends S.TaggedError()("InvalidGroupId.Malformed", {}) {
|
|
@@ -21765,6 +21767,8 @@ export class InvalidCidrBlockMalformed extends S.TaggedError()("InvalidCidrBlock
|
|
|
21765
21767
|
}
|
|
21766
21768
|
export class InvalidIpv4PoolCoipIdMalformed extends S.TaggedError()("InvalidIpv4PoolCoipId.Malformed", {}) {
|
|
21767
21769
|
}
|
|
21770
|
+
export class InvalidEgressOnlyInternetGatewayIdNotFound extends S.TaggedError()("InvalidEgressOnlyInternetGatewayId.NotFound", {}) {
|
|
21771
|
+
}
|
|
21768
21772
|
export class MalformedGatewayIDNotFound extends S.TaggedError()("MalformedGatewayID.NotFound", {}) {
|
|
21769
21773
|
}
|
|
21770
21774
|
export class InvalidFlowLogIdNotFound extends S.TaggedError()("InvalidFlowLogId.NotFound", {}) {
|
|
@@ -21809,8 +21813,6 @@ export class InvalidLocalGatewayVirtualInterfaceGroupIDMalformed extends S.Tagge
|
|
|
21809
21813
|
}
|
|
21810
21814
|
export class InvalidLocalGatewayVirtualInterfaceGroupIDNotFound extends S.TaggedError()("InvalidLocalGatewayVirtualInterfaceGroupID.NotFound", {}) {
|
|
21811
21815
|
}
|
|
21812
|
-
export class NatGatewayMalformed extends S.TaggedError()("NatGatewayMalformed", {}) {
|
|
21813
|
-
}
|
|
21814
21816
|
export class InvalidNetworkInsightsAccessScopeIdNotFound extends S.TaggedError()("InvalidNetworkInsightsAccessScopeId.NotFound", {}) {
|
|
21815
21817
|
}
|
|
21816
21818
|
export class InvalidPermissionIDMalformed extends S.TaggedError()("InvalidPermissionID.Malformed", {}) {
|
|
@@ -22088,6 +22090,7 @@ export const attachInternetGateway = API.make(() => ({
|
|
|
22088
22090
|
input: AttachInternetGatewayRequest,
|
|
22089
22091
|
output: AttachInternetGatewayResponse,
|
|
22090
22092
|
errors: [
|
|
22093
|
+
InvalidVpcIDNotFound,
|
|
22091
22094
|
InvalidInternetGatewayIDNotFound,
|
|
22092
22095
|
InvalidInternetGatewayIdMalformed,
|
|
22093
22096
|
InvalidVpcIdMalformed,
|
|
@@ -22172,6 +22175,7 @@ export const deleteNetworkAcl = API.make(() => ({
|
|
|
22172
22175
|
input: DeleteNetworkAclRequest,
|
|
22173
22176
|
output: DeleteNetworkAclResponse,
|
|
22174
22177
|
errors: [
|
|
22178
|
+
DependencyViolation,
|
|
22175
22179
|
DryRunOperation,
|
|
22176
22180
|
InvalidNetworkAclIDNotFound,
|
|
22177
22181
|
InvalidNetworkAclIdMalformed,
|
|
@@ -22388,6 +22392,7 @@ export const detachInternetGateway = API.make(() => ({
|
|
|
22388
22392
|
input: DetachInternetGatewayRequest,
|
|
22389
22393
|
output: DetachInternetGatewayResponse,
|
|
22390
22394
|
errors: [
|
|
22395
|
+
DependencyViolation,
|
|
22391
22396
|
GatewayNotAttached,
|
|
22392
22397
|
InvalidInternetGatewayIDNotFound,
|
|
22393
22398
|
InvalidInternetGatewayIdMalformed,
|
|
@@ -22401,6 +22406,7 @@ export const detachNetworkInterface = API.make(() => ({
|
|
|
22401
22406
|
input: DetachNetworkInterfaceRequest,
|
|
22402
22407
|
output: DetachNetworkInterfaceResponse,
|
|
22403
22408
|
errors: [
|
|
22409
|
+
DependencyViolation,
|
|
22404
22410
|
InvalidAttachmentIDNotFound,
|
|
22405
22411
|
InvalidNetworkInterfaceAttachmentIdMalformed,
|
|
22406
22412
|
],
|
|
@@ -22427,7 +22433,12 @@ export const detachNetworkInterface = API.make(() => ({
|
|
|
22427
22433
|
export const detachVolume = API.make(() => ({
|
|
22428
22434
|
input: DetachVolumeRequest,
|
|
22429
22435
|
output: VolumeAttachment,
|
|
22430
|
-
errors: [
|
|
22436
|
+
errors: [
|
|
22437
|
+
DependencyViolation,
|
|
22438
|
+
IncorrectState,
|
|
22439
|
+
InvalidParameterValue,
|
|
22440
|
+
InvalidVolumeNotFound,
|
|
22441
|
+
],
|
|
22431
22442
|
}));
|
|
22432
22443
|
/**
|
|
22433
22444
|
* Detaches a virtual private gateway from a VPC. You do this if you're planning to turn
|
|
@@ -22959,7 +22970,7 @@ export const associateEnclaveCertificateIamRole = API.make(() => ({
|
|
|
22959
22970
|
export const associateNatGatewayAddress = API.make(() => ({
|
|
22960
22971
|
input: AssociateNatGatewayAddressRequest,
|
|
22961
22972
|
output: AssociateNatGatewayAddressResult,
|
|
22962
|
-
errors: [MissingParameter, NatGatewayNotFound],
|
|
22973
|
+
errors: [MissingParameter, NatGatewayMalformed, NatGatewayNotFound],
|
|
22963
22974
|
}));
|
|
22964
22975
|
/**
|
|
22965
22976
|
* Associates a security group with another VPC in the same Region. This enables you to use the same security group with network interfaces and instances in the specified VPC.
|
|
@@ -23616,6 +23627,7 @@ export const deleteEgressOnlyInternetGateway = API.make(() => ({
|
|
|
23616
23627
|
errors: [
|
|
23617
23628
|
DryRunOperation,
|
|
23618
23629
|
InvalidGatewayIDNotFound,
|
|
23630
|
+
InvalidEgressOnlyInternetGatewayIdNotFound,
|
|
23619
23631
|
MalformedGatewayIDNotFound,
|
|
23620
23632
|
MissingParameter,
|
|
23621
23633
|
],
|
|
@@ -23794,6 +23806,7 @@ export const deleteNatGateway = API.make(() => ({
|
|
|
23794
23806
|
InvalidParameter,
|
|
23795
23807
|
MissingParameter,
|
|
23796
23808
|
NatGatewayMalformed,
|
|
23809
|
+
NatGatewayNotFound,
|
|
23797
23810
|
],
|
|
23798
23811
|
}));
|
|
23799
23812
|
/**
|
|
@@ -24286,7 +24299,11 @@ export const describeCustomerGateways = API.make(() => ({
|
|
|
24286
24299
|
export const describeEgressOnlyInternetGateways = API.makePaginated(() => ({
|
|
24287
24300
|
input: DescribeEgressOnlyInternetGatewaysRequest,
|
|
24288
24301
|
output: DescribeEgressOnlyInternetGatewaysResult,
|
|
24289
|
-
errors: [
|
|
24302
|
+
errors: [
|
|
24303
|
+
InvalidEgressOnlyInternetGatewayIdMalformed,
|
|
24304
|
+
InvalidEgressOnlyInternetGatewayIdNotFound,
|
|
24305
|
+
ParseError,
|
|
24306
|
+
],
|
|
24290
24307
|
pagination: {
|
|
24291
24308
|
inputToken: "NextToken",
|
|
24292
24309
|
outputToken: "NextToken",
|
|
@@ -25372,7 +25389,12 @@ export const describeVpnGateways = API.make(() => ({
|
|
|
25372
25389
|
export const detachClassicLinkVpc = API.make(() => ({
|
|
25373
25390
|
input: DetachClassicLinkVpcRequest,
|
|
25374
25391
|
output: DetachClassicLinkVpcResult,
|
|
25375
|
-
errors: [
|
|
25392
|
+
errors: [
|
|
25393
|
+
DependencyViolation,
|
|
25394
|
+
InvalidInstanceIDMalformed,
|
|
25395
|
+
InvalidVpcIDNotFound,
|
|
25396
|
+
MissingParameter,
|
|
25397
|
+
],
|
|
25376
25398
|
}));
|
|
25377
25399
|
/**
|
|
25378
25400
|
* Detaches the specified Amazon Web Services Verified Access trust provider from the specified Amazon Web Services Verified Access instance.
|
|
@@ -25380,7 +25402,7 @@ export const detachClassicLinkVpc = API.make(() => ({
|
|
|
25380
25402
|
export const detachVerifiedAccessTrustProvider = API.make(() => ({
|
|
25381
25403
|
input: DetachVerifiedAccessTrustProviderRequest,
|
|
25382
25404
|
output: DetachVerifiedAccessTrustProviderResult,
|
|
25383
|
-
errors: [InvalidVerifiedAccessInstanceIdNotFound],
|
|
25405
|
+
errors: [DependencyViolation, InvalidVerifiedAccessInstanceIdNotFound],
|
|
25384
25406
|
}));
|
|
25385
25407
|
/**
|
|
25386
25408
|
* Disables Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the *Amazon VPC User Guide*.
|
|
@@ -25680,7 +25702,7 @@ export const disassociateIpamResourceDiscovery = API.make(() => ({
|
|
|
25680
25702
|
export const disassociateNatGatewayAddress = API.make(() => ({
|
|
25681
25703
|
input: DisassociateNatGatewayAddressRequest,
|
|
25682
25704
|
output: DisassociateNatGatewayAddressResult,
|
|
25683
|
-
errors: [MissingParameter, NatGatewayNotFound],
|
|
25705
|
+
errors: [MissingParameter, NatGatewayMalformed, NatGatewayNotFound],
|
|
25684
25706
|
}));
|
|
25685
25707
|
/**
|
|
25686
25708
|
* Disassociates a route server from a VPC.
|
|
@@ -27976,6 +27998,7 @@ export const associateRouteTable = API.make(() => ({
|
|
|
27976
27998
|
InvalidPublicIpv4PoolIDMalformed,
|
|
27977
27999
|
InvalidPublicIpv4PoolIDNotFound,
|
|
27978
28000
|
InvalidRouteTableIDNotFound,
|
|
28001
|
+
InvalidSubnetIDNotFound,
|
|
27979
28002
|
MissingParameter,
|
|
27980
28003
|
],
|
|
27981
28004
|
}));
|
|
@@ -30106,7 +30129,7 @@ export const disableTransitGatewayRouteTablePropagation = API.make(() => ({
|
|
|
30106
30129
|
export const disassociateInstanceEventWindow = API.make(() => ({
|
|
30107
30130
|
input: DisassociateInstanceEventWindowRequest,
|
|
30108
30131
|
output: DisassociateInstanceEventWindowResult,
|
|
30109
|
-
errors: [MissingParameter],
|
|
30132
|
+
errors: [DependencyViolation, MissingParameter],
|
|
30110
30133
|
}));
|
|
30111
30134
|
/**
|
|
30112
30135
|
* When you enable Windows fast launch for a Windows AMI, images are pre-provisioned, using
|
|
@@ -30963,6 +30986,7 @@ export const revokeSecurityGroupEgress = API.make(() => ({
|
|
|
30963
30986
|
InvalidGroupIdMalformed,
|
|
30964
30987
|
InvalidParameterValue,
|
|
30965
30988
|
InvalidPrefixListIDNotFound,
|
|
30989
|
+
InvalidPermissionNotFound,
|
|
30966
30990
|
InvalidSecurityGroupRuleIdMalformed,
|
|
30967
30991
|
MissingParameter,
|
|
30968
30992
|
UnknownParameter,
|
|
@@ -32110,6 +32134,7 @@ export const describeNatGateways = API.makePaginated(() => ({
|
|
|
32110
32134
|
FilterLimitExceeded,
|
|
32111
32135
|
InvalidParameter,
|
|
32112
32136
|
NatGatewayMalformed,
|
|
32137
|
+
NatGatewayNotFound,
|
|
32113
32138
|
ParseError,
|
|
32114
32139
|
],
|
|
32115
32140
|
pagination: {
|