@aws-sdk/client-kinesis-analytics 3.28.0 → 3.32.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/CHANGELOG.md +32 -0
- package/dist/cjs/package.json +31 -31
- package/dist/cjs/protocols/Aws_json1_1.js +4 -4
- package/dist/cjs/protocols/Aws_json1_1.js.map +1 -1
- package/dist/es/endpoints.js +1 -2
- package/dist/es/endpoints.js.map +1 -1
- package/dist/es/package.json +31 -31
- package/dist/es/protocols/Aws_json1_1.js +5 -5
- package/dist/es/protocols/Aws_json1_1.js.map +1 -1
- package/package.json +31 -31
- package/protocols/Aws_json1_1.ts +9 -5
package/protocols/Aws_json1_1.ts
CHANGED
|
@@ -164,8 +164,12 @@ import {
|
|
|
164
164
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
165
165
|
import {
|
|
166
166
|
expectBoolean as __expectBoolean,
|
|
167
|
-
|
|
167
|
+
expectInt32 as __expectInt32,
|
|
168
|
+
expectLong as __expectLong,
|
|
169
|
+
expectNonNull as __expectNonNull,
|
|
170
|
+
expectNumber as __expectNumber,
|
|
168
171
|
expectString as __expectString,
|
|
172
|
+
parseEpochTimestamp as __parseEpochTimestamp,
|
|
169
173
|
} from "@aws-sdk/smithy-client";
|
|
170
174
|
import {
|
|
171
175
|
Endpoint as __Endpoint,
|
|
@@ -3176,14 +3180,14 @@ const deserializeAws_json1_1ApplicationDetail = (output: any, context: __SerdeCo
|
|
|
3176
3180
|
ApplicationDescription: __expectString(output.ApplicationDescription),
|
|
3177
3181
|
ApplicationName: __expectString(output.ApplicationName),
|
|
3178
3182
|
ApplicationStatus: __expectString(output.ApplicationStatus),
|
|
3179
|
-
ApplicationVersionId:
|
|
3183
|
+
ApplicationVersionId: __expectLong(output.ApplicationVersionId),
|
|
3180
3184
|
CloudWatchLoggingOptionDescriptions:
|
|
3181
3185
|
output.CloudWatchLoggingOptionDescriptions !== undefined && output.CloudWatchLoggingOptionDescriptions !== null
|
|
3182
3186
|
? deserializeAws_json1_1CloudWatchLoggingOptionDescriptions(output.CloudWatchLoggingOptionDescriptions, context)
|
|
3183
3187
|
: undefined,
|
|
3184
3188
|
CreateTimestamp:
|
|
3185
3189
|
output.CreateTimestamp !== undefined && output.CreateTimestamp !== null
|
|
3186
|
-
?
|
|
3190
|
+
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.CreateTimestamp)))
|
|
3187
3191
|
: undefined,
|
|
3188
3192
|
InputDescriptions:
|
|
3189
3193
|
output.InputDescriptions !== undefined && output.InputDescriptions !== null
|
|
@@ -3191,7 +3195,7 @@ const deserializeAws_json1_1ApplicationDetail = (output: any, context: __SerdeCo
|
|
|
3191
3195
|
: undefined,
|
|
3192
3196
|
LastUpdateTimestamp:
|
|
3193
3197
|
output.LastUpdateTimestamp !== undefined && output.LastUpdateTimestamp !== null
|
|
3194
|
-
?
|
|
3198
|
+
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.LastUpdateTimestamp)))
|
|
3195
3199
|
: undefined,
|
|
3196
3200
|
OutputDescriptions:
|
|
3197
3201
|
output.OutputDescriptions !== undefined && output.OutputDescriptions !== null
|
|
@@ -3435,7 +3439,7 @@ const deserializeAws_json1_1InputLambdaProcessorDescription = (
|
|
|
3435
3439
|
|
|
3436
3440
|
const deserializeAws_json1_1InputParallelism = (output: any, context: __SerdeContext): InputParallelism => {
|
|
3437
3441
|
return {
|
|
3438
|
-
Count:
|
|
3442
|
+
Count: __expectInt32(output.Count),
|
|
3439
3443
|
} as any;
|
|
3440
3444
|
};
|
|
3441
3445
|
|