@distilled.cloud/aws 0.25.2 → 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/services/cloudfront.d.ts +3 -3
- package/lib/services/cloudfront.d.ts.map +1 -1
- package/lib/services/cloudfront.js +3 -3
- package/lib/services/cloudfront.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/services/cloudfront.ts +6 -6
- package/src/services/route-53.ts +12 -12
|
@@ -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/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),
|