@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.d.ts
CHANGED
|
@@ -20108,6 +20108,9 @@ export declare class InvalidKeyPairNotFound extends InvalidKeyPairNotFound_base
|
|
|
20108
20108
|
declare const InvalidLaunchTemplateIdMalformed_base: S.Class<InvalidLaunchTemplateIdMalformed, S.TaggedStruct<"InvalidLaunchTemplateId.Malformed", {}>, import("effect/Cause").YieldableError>;
|
|
20109
20109
|
export declare class InvalidLaunchTemplateIdMalformed extends InvalidLaunchTemplateIdMalformed_base {
|
|
20110
20110
|
}
|
|
20111
|
+
declare const InvalidLaunchTemplateIdNotFound_base: S.Class<InvalidLaunchTemplateIdNotFound, S.TaggedStruct<"InvalidLaunchTemplateId.NotFound", {}>, import("effect/Cause").YieldableError>;
|
|
20112
|
+
export declare class InvalidLaunchTemplateIdNotFound extends InvalidLaunchTemplateIdNotFound_base {
|
|
20113
|
+
}
|
|
20111
20114
|
declare const FilterLimitExceeded_base: S.Class<FilterLimitExceeded, S.TaggedStruct<"FilterLimitExceeded", {}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
20112
20115
|
"@distilled.cloud/error/categories": {
|
|
20113
20116
|
ThrottlingError: true;
|
|
@@ -23944,7 +23947,7 @@ export type DescribeKeyPairsError = RequestLimitExceeded | InvalidKeyPairNotFoun
|
|
|
23944
23947
|
* in the *Amazon EC2 User Guide*.
|
|
23945
23948
|
*/
|
|
23946
23949
|
export declare const describeKeyPairs: API.OperationMethod<DescribeKeyPairsRequest, DescribeKeyPairsResult, DescribeKeyPairsError, Credentials | Rgn | HttpClient.HttpClient>;
|
|
23947
|
-
export type DescribeLaunchTemplatesError = RequestLimitExceeded | InvalidLaunchTemplateIdMalformed | ParseError | CommonErrors;
|
|
23950
|
+
export type DescribeLaunchTemplatesError = RequestLimitExceeded | InvalidLaunchTemplateIdMalformed | ParseError | InvalidLaunchTemplateIdNotFound | InvalidLaunchTemplateNameNotFoundException | CommonErrors;
|
|
23948
23951
|
/**
|
|
23949
23952
|
* Describes one or more launch templates.
|
|
23950
23953
|
*/
|