@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
|
@@ -1679,13 +1679,13 @@ export const KeyValueStoreAssociations = /*@__PURE__*/ /*#__PURE__*/ S.suspend(
|
|
|
1679
1679
|
identifier: "KeyValueStoreAssociations",
|
|
1680
1680
|
}) as any as S.Schema<KeyValueStoreAssociations>;
|
|
1681
1681
|
export interface FunctionConfig {
|
|
1682
|
-
Comment
|
|
1682
|
+
Comment?: string;
|
|
1683
1683
|
Runtime: FunctionRuntime;
|
|
1684
1684
|
KeyValueStoreAssociations?: KeyValueStoreAssociations;
|
|
1685
1685
|
}
|
|
1686
1686
|
export const FunctionConfig = /*@__PURE__*/ /*#__PURE__*/ S.suspend(() =>
|
|
1687
1687
|
S.Struct({
|
|
1688
|
-
Comment: S.String,
|
|
1688
|
+
Comment: S.optional(S.String),
|
|
1689
1689
|
Runtime: FunctionRuntime,
|
|
1690
1690
|
KeyValueStoreAssociations: S.optional(KeyValueStoreAssociations),
|
|
1691
1691
|
}),
|
|
@@ -8781,18 +8781,18 @@ export const VpcOriginSummaryList = /*@__PURE__*/ /*#__PURE__*/ S.Array(
|
|
|
8781
8781
|
export interface VpcOriginList {
|
|
8782
8782
|
Marker?: string;
|
|
8783
8783
|
NextMarker?: string;
|
|
8784
|
-
MaxItems
|
|
8785
|
-
IsTruncated
|
|
8786
|
-
Quantity
|
|
8784
|
+
MaxItems?: number;
|
|
8785
|
+
IsTruncated?: boolean;
|
|
8786
|
+
Quantity?: number;
|
|
8787
8787
|
Items?: VpcOriginSummary[];
|
|
8788
8788
|
}
|
|
8789
8789
|
export const VpcOriginList = /*@__PURE__*/ /*#__PURE__*/ S.suspend(() =>
|
|
8790
8790
|
S.Struct({
|
|
8791
8791
|
Marker: S.optional(S.String),
|
|
8792
8792
|
NextMarker: S.optional(S.String),
|
|
8793
|
-
MaxItems: S.Number,
|
|
8794
|
-
IsTruncated: S.Boolean,
|
|
8795
|
-
Quantity: S.Number,
|
|
8793
|
+
MaxItems: S.optional(S.Number),
|
|
8794
|
+
IsTruncated: S.optional(S.Boolean),
|
|
8795
|
+
Quantity: S.optional(S.Number),
|
|
8796
8796
|
Items: S.optional(VpcOriginSummaryList),
|
|
8797
8797
|
}),
|
|
8798
8798
|
).annotate({ identifier: "VpcOriginList" }) as any as S.Schema<VpcOriginList>;
|
package/src/services/ec2.ts
CHANGED
|
@@ -74200,6 +74200,10 @@ export class InvalidLaunchTemplateIdMalformed extends S.TaggedErrorClass<Invalid
|
|
|
74200
74200
|
"InvalidLaunchTemplateId.Malformed",
|
|
74201
74201
|
{},
|
|
74202
74202
|
) {}
|
|
74203
|
+
export class InvalidLaunchTemplateIdNotFound extends S.TaggedErrorClass<InvalidLaunchTemplateIdNotFound>()(
|
|
74204
|
+
"InvalidLaunchTemplateId.NotFound",
|
|
74205
|
+
{},
|
|
74206
|
+
) {}
|
|
74203
74207
|
export class FilterLimitExceeded extends S.TaggedErrorClass<FilterLimitExceeded>()(
|
|
74204
74208
|
"FilterLimitExceeded",
|
|
74205
74209
|
{},
|
|
@@ -84239,6 +84243,8 @@ export type DescribeLaunchTemplatesError =
|
|
|
84239
84243
|
| RequestLimitExceeded
|
|
84240
84244
|
| InvalidLaunchTemplateIdMalformed
|
|
84241
84245
|
| ParseError
|
|
84246
|
+
| InvalidLaunchTemplateIdNotFound
|
|
84247
|
+
| InvalidLaunchTemplateNameNotFoundException
|
|
84242
84248
|
| CommonErrors;
|
|
84243
84249
|
/**
|
|
84244
84250
|
* Describes one or more launch templates.
|
|
@@ -84266,7 +84272,13 @@ export const describeLaunchTemplates: API.OperationMethod<
|
|
|
84266
84272
|
} = /*@__PURE__*/ /*#__PURE__*/ API.makePaginated(() => ({
|
|
84267
84273
|
input: DescribeLaunchTemplatesRequest,
|
|
84268
84274
|
output: DescribeLaunchTemplatesResult,
|
|
84269
|
-
errors: [
|
|
84275
|
+
errors: [
|
|
84276
|
+
RequestLimitExceeded,
|
|
84277
|
+
InvalidLaunchTemplateIdMalformed,
|
|
84278
|
+
ParseError,
|
|
84279
|
+
InvalidLaunchTemplateIdNotFound,
|
|
84280
|
+
InvalidLaunchTemplateNameNotFoundException,
|
|
84281
|
+
],
|
|
84270
84282
|
pagination: {
|
|
84271
84283
|
inputToken: "NextToken",
|
|
84272
84284
|
outputToken: "NextToken",
|
package/src/services/route-53.ts
CHANGED
|
@@ -2935,8 +2935,8 @@ export const HealthChecks = /*@__PURE__*/ /*#__PURE__*/ S.Array(
|
|
|
2935
2935
|
}),
|
|
2936
2936
|
);
|
|
2937
2937
|
export interface ListHealthChecksResponse {
|
|
2938
|
-
HealthChecks
|
|
2939
|
-
Marker
|
|
2938
|
+
HealthChecks?: HealthCheck[];
|
|
2939
|
+
Marker?: string;
|
|
2940
2940
|
IsTruncated: boolean;
|
|
2941
2941
|
NextMarker?: string;
|
|
2942
2942
|
MaxItems: number;
|
|
@@ -2944,8 +2944,8 @@ export interface ListHealthChecksResponse {
|
|
|
2944
2944
|
export const ListHealthChecksResponse = /*@__PURE__*/ /*#__PURE__*/ S.suspend(
|
|
2945
2945
|
() =>
|
|
2946
2946
|
S.Struct({
|
|
2947
|
-
HealthChecks: HealthChecks,
|
|
2948
|
-
Marker: S.String,
|
|
2947
|
+
HealthChecks: S.optional(HealthChecks),
|
|
2948
|
+
Marker: S.optional(S.String),
|
|
2949
2949
|
IsTruncated: S.Boolean,
|
|
2950
2950
|
NextMarker: S.optional(S.String),
|
|
2951
2951
|
MaxItems: S.Number,
|
|
@@ -2993,8 +2993,8 @@ export const HostedZones = /*@__PURE__*/ /*#__PURE__*/ S.Array(
|
|
|
2993
2993
|
}),
|
|
2994
2994
|
);
|
|
2995
2995
|
export interface ListHostedZonesResponse {
|
|
2996
|
-
HostedZones
|
|
2997
|
-
Marker
|
|
2996
|
+
HostedZones?: HostedZone[];
|
|
2997
|
+
Marker?: string;
|
|
2998
2998
|
IsTruncated: boolean;
|
|
2999
2999
|
NextMarker?: string;
|
|
3000
3000
|
MaxItems: number;
|
|
@@ -3002,8 +3002,8 @@ export interface ListHostedZonesResponse {
|
|
|
3002
3002
|
export const ListHostedZonesResponse = /*@__PURE__*/ /*#__PURE__*/ S.suspend(
|
|
3003
3003
|
() =>
|
|
3004
3004
|
S.Struct({
|
|
3005
|
-
HostedZones: HostedZones,
|
|
3006
|
-
Marker: S.String,
|
|
3005
|
+
HostedZones: S.optional(HostedZones),
|
|
3006
|
+
Marker: S.optional(S.String),
|
|
3007
3007
|
IsTruncated: S.Boolean,
|
|
3008
3008
|
NextMarker: S.optional(S.String),
|
|
3009
3009
|
MaxItems: S.Number,
|
|
@@ -3037,7 +3037,7 @@ export const ListHostedZonesByNameRequest =
|
|
|
3037
3037
|
identifier: "ListHostedZonesByNameRequest",
|
|
3038
3038
|
}) as any as S.Schema<ListHostedZonesByNameRequest>;
|
|
3039
3039
|
export interface ListHostedZonesByNameResponse {
|
|
3040
|
-
HostedZones
|
|
3040
|
+
HostedZones?: HostedZone[];
|
|
3041
3041
|
DNSName?: string;
|
|
3042
3042
|
HostedZoneId?: string;
|
|
3043
3043
|
IsTruncated: boolean;
|
|
@@ -3048,7 +3048,7 @@ export interface ListHostedZonesByNameResponse {
|
|
|
3048
3048
|
export const ListHostedZonesByNameResponse =
|
|
3049
3049
|
/*@__PURE__*/ /*#__PURE__*/ S.suspend(() =>
|
|
3050
3050
|
S.Struct({
|
|
3051
|
-
HostedZones: HostedZones,
|
|
3051
|
+
HostedZones: S.optional(HostedZones),
|
|
3052
3052
|
DNSName: S.optional(S.String),
|
|
3053
3053
|
HostedZoneId: S.optional(S.String),
|
|
3054
3054
|
IsTruncated: S.Boolean,
|
|
@@ -3214,7 +3214,7 @@ export const ResourceRecordSets = /*@__PURE__*/ /*#__PURE__*/ S.Array(
|
|
|
3214
3214
|
}),
|
|
3215
3215
|
);
|
|
3216
3216
|
export interface ListResourceRecordSetsResponse {
|
|
3217
|
-
ResourceRecordSets
|
|
3217
|
+
ResourceRecordSets?: ResourceRecordSet[];
|
|
3218
3218
|
IsTruncated: boolean;
|
|
3219
3219
|
NextRecordName?: string;
|
|
3220
3220
|
NextRecordType?: RRType;
|
|
@@ -3224,7 +3224,7 @@ export interface ListResourceRecordSetsResponse {
|
|
|
3224
3224
|
export const ListResourceRecordSetsResponse =
|
|
3225
3225
|
/*@__PURE__*/ /*#__PURE__*/ S.suspend(() =>
|
|
3226
3226
|
S.Struct({
|
|
3227
|
-
ResourceRecordSets: ResourceRecordSets,
|
|
3227
|
+
ResourceRecordSets: S.optional(ResourceRecordSets),
|
|
3228
3228
|
IsTruncated: S.Boolean,
|
|
3229
3229
|
NextRecordName: S.optional(S.String),
|
|
3230
3230
|
NextRecordType: S.optional(RRType),
|