@distilled.cloud/aws 0.25.1 → 0.26.0
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/client/response-parser.d.ts.map +1 -1
- package/lib/client/response-parser.js +7 -2
- package/lib/client/response-parser.js.map +1 -1
- package/lib/hash/crc32.d.ts +1 -1
- package/lib/hash/crc32.d.ts.map +1 -1
- package/lib/hash/crc32.js.map +1 -1
- package/lib/hash/md5.d.ts +1 -1
- package/lib/hash/md5.d.ts.map +1 -1
- package/lib/hash/md5.js.map +1 -1
- package/lib/services/cloudfront.d.ts +4 -4
- package/lib/services/cloudfront.d.ts.map +1 -1
- package/lib/services/cloudfront.js +4 -4
- package/lib/services/cloudfront.js.map +1 -1
- package/lib/services/ec2.d.ts +4 -1
- package/lib/services/ec2.d.ts.map +1 -1
- package/lib/services/ec2.js +9 -1
- package/lib/services/ec2.js.map +1 -1
- package/lib/services/route-53.d.ts +6 -6
- package/lib/services/route-53.d.ts.map +1 -1
- package/lib/services/route-53.js +6 -6
- package/lib/services/route-53.js.map +1 -1
- package/package.json +2 -2
- package/src/client/response-parser.ts +7 -2
- package/src/hash/crc32.ts +1 -1
- package/src/hash/md5.ts +1 -1
- package/src/services/cloudfront.ts +8 -8
- package/src/services/ec2.ts +13 -1
- package/src/services/route-53.ts +12 -12
package/lib/services/ec2.js
CHANGED
|
@@ -24222,6 +24222,8 @@ export class InvalidKeyPairNotFound extends S.TaggedErrorClass()("InvalidKeyPair
|
|
|
24222
24222
|
}
|
|
24223
24223
|
export class InvalidLaunchTemplateIdMalformed extends S.TaggedErrorClass()("InvalidLaunchTemplateId.Malformed", {}) {
|
|
24224
24224
|
}
|
|
24225
|
+
export class InvalidLaunchTemplateIdNotFound extends S.TaggedErrorClass()("InvalidLaunchTemplateId.NotFound", {}) {
|
|
24226
|
+
}
|
|
24225
24227
|
export class FilterLimitExceeded extends S.TaggedErrorClass()("FilterLimitExceeded", {}).pipe(C.withThrottlingError) {
|
|
24226
24228
|
}
|
|
24227
24229
|
export class InvalidOutpostLagIDMalformed extends S.TaggedErrorClass()("InvalidOutpostLagID.Malformed", {}) {
|
|
@@ -29944,7 +29946,13 @@ export const describeKeyPairs = /*@__PURE__*/ /*#__PURE__*/ API.make(() => ({
|
|
|
29944
29946
|
export const describeLaunchTemplates = /*@__PURE__*/ /*#__PURE__*/ API.makePaginated(() => ({
|
|
29945
29947
|
input: DescribeLaunchTemplatesRequest,
|
|
29946
29948
|
output: DescribeLaunchTemplatesResult,
|
|
29947
|
-
errors: [
|
|
29949
|
+
errors: [
|
|
29950
|
+
RequestLimitExceeded,
|
|
29951
|
+
InvalidLaunchTemplateIdMalformed,
|
|
29952
|
+
ParseError,
|
|
29953
|
+
InvalidLaunchTemplateIdNotFound,
|
|
29954
|
+
InvalidLaunchTemplateNameNotFoundException,
|
|
29955
|
+
],
|
|
29948
29956
|
pagination: {
|
|
29949
29957
|
inputToken: "NextToken",
|
|
29950
29958
|
outputToken: "NextToken",
|