Skip to content

Commit a440491

Browse files
chore: update generated code
1 parent 4a29a39 commit a440491

File tree

149 files changed

+10865
-1626
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+10865
-1626
lines changed

clients/client-amplifybackend/protocols/Aws_restJson1.ts

+9-6
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,10 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@a
7777
import {
7878
SmithyException as __SmithyException,
7979
expectBoolean as __expectBoolean,
80-
expectNumber as __expectNumber,
8180
expectString as __expectString,
8281
extendedEncodeURIComponent as __extendedEncodeURIComponent,
82+
handleFloat as __handleFloat,
83+
serializeFloat as __serializeFloat,
8384
} from "@aws-sdk/smithy-client";
8485
import {
8586
Endpoint as __Endpoint,
@@ -3403,7 +3404,7 @@ const serializeAws_restJson1BackendAPIAppSyncAuthSettings = (
34033404
input.CognitoUserPoolId !== null && { cognitoUserPoolId: input.CognitoUserPoolId }),
34043405
...(input.Description !== undefined && input.Description !== null && { description: input.Description }),
34053406
...(input.ExpirationTime !== undefined &&
3406-
input.ExpirationTime !== null && { expirationTime: input.ExpirationTime }),
3407+
input.ExpirationTime !== null && { expirationTime: __serializeFloat(input.ExpirationTime) }),
34073408
...(input.OpenIDAuthTTL !== undefined && input.OpenIDAuthTTL !== null && { openIDAuthTTL: input.OpenIDAuthTTL }),
34083409
...(input.OpenIDClientId !== undefined &&
34093410
input.OpenIDClientId !== null && { openIDClientId: input.OpenIDClientId }),
@@ -3547,7 +3548,8 @@ const serializeAws_restJson1CreateBackendAuthPasswordPolicyConfig = (
35473548
context
35483549
),
35493550
}),
3550-
...(input.MinimumLength !== undefined && input.MinimumLength !== null && { minimumLength: input.MinimumLength }),
3551+
...(input.MinimumLength !== undefined &&
3552+
input.MinimumLength !== null && { minimumLength: __serializeFloat(input.MinimumLength) }),
35513553
};
35523554
};
35533555

@@ -3810,7 +3812,8 @@ const serializeAws_restJson1UpdateBackendAuthPasswordPolicyConfig = (
38103812
context
38113813
),
38123814
}),
3813-
...(input.MinimumLength !== undefined && input.MinimumLength !== null && { minimumLength: input.MinimumLength }),
3815+
...(input.MinimumLength !== undefined &&
3816+
input.MinimumLength !== null && { minimumLength: __serializeFloat(input.MinimumLength) }),
38143817
};
38153818
};
38163819

@@ -3862,7 +3865,7 @@ const deserializeAws_restJson1BackendAPIAppSyncAuthSettings = (
38623865
return {
38633866
CognitoUserPoolId: __expectString(output.cognitoUserPoolId),
38643867
Description: __expectString(output.description),
3865-
ExpirationTime: __expectNumber(output.expirationTime),
3868+
ExpirationTime: __handleFloat(output.expirationTime),
38663869
OpenIDAuthTTL: __expectString(output.openIDAuthTTL),
38673870
OpenIDClientId: __expectString(output.openIDClientId),
38683871
OpenIDIatTTL: __expectString(output.openIDIatTTL),
@@ -4011,7 +4014,7 @@ const deserializeAws_restJson1CreateBackendAuthPasswordPolicyConfig = (
40114014
output.additionalConstraints !== undefined && output.additionalConstraints !== null
40124015
? deserializeAws_restJson1ListOfAdditionalConstraintsElement(output.additionalConstraints, context)
40134016
: undefined,
4014-
MinimumLength: __expectNumber(output.minimumLength),
4017+
MinimumLength: __handleFloat(output.minimumLength),
40154018
} as any;
40164019
};
40174020

clients/client-api-gateway/protocols/Aws_restJson1.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,8 @@ import {
281281
expectNumber as __expectNumber,
282282
expectString as __expectString,
283283
extendedEncodeURIComponent as __extendedEncodeURIComponent,
284+
handleFloat as __handleFloat,
285+
serializeFloat as __serializeFloat,
284286
} from "@aws-sdk/smithy-client";
285287
import {
286288
Endpoint as __Endpoint,
@@ -16786,7 +16788,7 @@ const serializeAws_restJson1CanarySettings = (input: CanarySettings, context: __
1678616788
return {
1678716789
...(input.deploymentId !== undefined && input.deploymentId !== null && { deploymentId: input.deploymentId }),
1678816790
...(input.percentTraffic !== undefined &&
16789-
input.percentTraffic !== null && { percentTraffic: input.percentTraffic }),
16791+
input.percentTraffic !== null && { percentTraffic: __serializeFloat(input.percentTraffic) }),
1679016792
...(input.stageVariableOverrides !== undefined &&
1679116793
input.stageVariableOverrides !== null && {
1679216794
stageVariableOverrides: serializeAws_restJson1MapOfStringToString(input.stageVariableOverrides, context),
@@ -16801,7 +16803,7 @@ const serializeAws_restJson1DeploymentCanarySettings = (
1680116803
): any => {
1680216804
return {
1680316805
...(input.percentTraffic !== undefined &&
16804-
input.percentTraffic !== null && { percentTraffic: input.percentTraffic }),
16806+
input.percentTraffic !== null && { percentTraffic: __serializeFloat(input.percentTraffic) }),
1680516807
...(input.stageVariableOverrides !== undefined &&
1680616808
input.stageVariableOverrides !== null && {
1680716809
stageVariableOverrides: serializeAws_restJson1MapOfStringToString(input.stageVariableOverrides, context),
@@ -16992,7 +16994,7 @@ const serializeAws_restJson1StageKey = (input: StageKey, context: __SerdeContext
1699216994
const serializeAws_restJson1ThrottleSettings = (input: ThrottleSettings, context: __SerdeContext): any => {
1699316995
return {
1699416996
...(input.burstLimit !== undefined && input.burstLimit !== null && { burstLimit: input.burstLimit }),
16995-
...(input.rateLimit !== undefined && input.rateLimit !== null && { rateLimit: input.rateLimit }),
16997+
...(input.rateLimit !== undefined && input.rateLimit !== null && { rateLimit: __serializeFloat(input.rateLimit) }),
1699616998
};
1699716999
};
1699817000

@@ -17077,7 +17079,7 @@ const deserializeAws_restJson1BasePathMapping = (output: any, context: __SerdeCo
1707717079
const deserializeAws_restJson1CanarySettings = (output: any, context: __SerdeContext): CanarySettings => {
1707817080
return {
1707917081
deploymentId: __expectString(output.deploymentId),
17080-
percentTraffic: __expectNumber(output.percentTraffic),
17082+
percentTraffic: __handleFloat(output.percentTraffic),
1708117083
stageVariableOverrides:
1708217084
output.stageVariableOverrides !== undefined && output.stageVariableOverrides !== null
1708317085
? deserializeAws_restJson1MapOfStringToString(output.stageVariableOverrides, context)
@@ -17755,7 +17757,7 @@ const deserializeAws_restJson1MethodSetting = (output: any, context: __SerdeCont
1775517757
metricsEnabled: __expectBoolean(output.metricsEnabled),
1775617758
requireAuthorizationForCacheControl: __expectBoolean(output.requireAuthorizationForCacheControl),
1775717759
throttlingBurstLimit: __expectNumber(output.throttlingBurstLimit),
17758-
throttlingRateLimit: __expectNumber(output.throttlingRateLimit),
17760+
throttlingRateLimit: __handleFloat(output.throttlingRateLimit),
1775917761
unauthorizedCacheControlHeaderStrategy: __expectString(output.unauthorizedCacheControlHeaderStrategy),
1776017762
} as any;
1776117763
};
@@ -17943,7 +17945,7 @@ const deserializeAws_restJson1Stage = (output: any, context: __SerdeContext): St
1794317945
const deserializeAws_restJson1ThrottleSettings = (output: any, context: __SerdeContext): ThrottleSettings => {
1794417946
return {
1794517947
burstLimit: __expectNumber(output.burstLimit),
17946-
rateLimit: __expectNumber(output.rateLimit),
17948+
rateLimit: __handleFloat(output.rateLimit),
1794717949
} as any;
1794817950
};
1794917951

clients/client-apigatewayv2/protocols/Aws_restJson1.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,8 @@ import {
145145
expectNumber as __expectNumber,
146146
expectString as __expectString,
147147
extendedEncodeURIComponent as __extendedEncodeURIComponent,
148+
handleFloat as __handleFloat,
149+
serializeFloat as __serializeFloat,
148150
} from "@aws-sdk/smithy-client";
149151
import {
150152
Endpoint as __Endpoint,
@@ -9842,7 +9844,7 @@ const serializeAws_restJson1RouteSettings = (input: RouteSettings, context: __Se
98429844
...(input.ThrottlingBurstLimit !== undefined &&
98439845
input.ThrottlingBurstLimit !== null && { throttlingBurstLimit: input.ThrottlingBurstLimit }),
98449846
...(input.ThrottlingRateLimit !== undefined &&
9845-
input.ThrottlingRateLimit !== null && { throttlingRateLimit: input.ThrottlingRateLimit }),
9847+
input.ThrottlingRateLimit !== null && { throttlingRateLimit: __serializeFloat(input.ThrottlingRateLimit) }),
98469848
};
98479849
};
98489850

@@ -10490,7 +10492,7 @@ const deserializeAws_restJson1RouteSettings = (output: any, context: __SerdeCont
1049010492
DetailedMetricsEnabled: __expectBoolean(output.detailedMetricsEnabled),
1049110493
LoggingLevel: __expectString(output.loggingLevel),
1049210494
ThrottlingBurstLimit: __expectNumber(output.throttlingBurstLimit),
10493-
ThrottlingRateLimit: __expectNumber(output.throttlingRateLimit),
10495+
ThrottlingRateLimit: __handleFloat(output.throttlingRateLimit),
1049410496
} as any;
1049510497
};
1049610498

clients/client-appconfig/protocols/Aws_restJson1.ts

+20-16
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ import {
103103
expectNumber as __expectNumber,
104104
expectString as __expectString,
105105
extendedEncodeURIComponent as __extendedEncodeURIComponent,
106+
handleFloat as __handleFloat,
107+
serializeFloat as __serializeFloat,
106108
} from "@aws-sdk/smithy-client";
107109
import {
108110
Endpoint as __Endpoint,
@@ -192,7 +194,8 @@ export const serializeAws_restJson1CreateDeploymentStrategyCommand = async (
192194
...(input.Description !== undefined && input.Description !== null && { Description: input.Description }),
193195
...(input.FinalBakeTimeInMinutes !== undefined &&
194196
input.FinalBakeTimeInMinutes !== null && { FinalBakeTimeInMinutes: input.FinalBakeTimeInMinutes }),
195-
...(input.GrowthFactor !== undefined && input.GrowthFactor !== null && { GrowthFactor: input.GrowthFactor }),
197+
...(input.GrowthFactor !== undefined &&
198+
input.GrowthFactor !== null && { GrowthFactor: __serializeFloat(input.GrowthFactor) }),
196199
...(input.GrowthType !== undefined && input.GrowthType !== null && { GrowthType: input.GrowthType }),
197200
...(input.Name !== undefined && input.Name !== null && { Name: input.Name }),
198201
...(input.ReplicateTo !== undefined && input.ReplicateTo !== null && { ReplicateTo: input.ReplicateTo }),
@@ -1240,7 +1243,8 @@ export const serializeAws_restJson1UpdateDeploymentStrategyCommand = async (
12401243
...(input.Description !== undefined && input.Description !== null && { Description: input.Description }),
12411244
...(input.FinalBakeTimeInMinutes !== undefined &&
12421245
input.FinalBakeTimeInMinutes !== null && { FinalBakeTimeInMinutes: input.FinalBakeTimeInMinutes }),
1243-
...(input.GrowthFactor !== undefined && input.GrowthFactor !== null && { GrowthFactor: input.GrowthFactor }),
1246+
...(input.GrowthFactor !== undefined &&
1247+
input.GrowthFactor !== null && { GrowthFactor: __serializeFloat(input.GrowthFactor) }),
12441248
...(input.GrowthType !== undefined && input.GrowthType !== null && { GrowthType: input.GrowthType }),
12451249
});
12461250
const { hostname, protocol = "https", port } = await context.endpoint();
@@ -1536,7 +1540,7 @@ export const deserializeAws_restJson1CreateDeploymentStrategyCommand = async (
15361540
contents.FinalBakeTimeInMinutes = __expectNumber(data.FinalBakeTimeInMinutes);
15371541
}
15381542
if (data.GrowthFactor !== undefined && data.GrowthFactor !== null) {
1539-
contents.GrowthFactor = __expectNumber(data.GrowthFactor);
1543+
contents.GrowthFactor = __handleFloat(data.GrowthFactor);
15401544
}
15411545
if (data.GrowthType !== undefined && data.GrowthType !== null) {
15421546
contents.GrowthType = __expectString(data.GrowthType);
@@ -2473,13 +2477,13 @@ export const deserializeAws_restJson1GetDeploymentCommand = async (
24732477
contents.FinalBakeTimeInMinutes = __expectNumber(data.FinalBakeTimeInMinutes);
24742478
}
24752479
if (data.GrowthFactor !== undefined && data.GrowthFactor !== null) {
2476-
contents.GrowthFactor = __expectNumber(data.GrowthFactor);
2480+
contents.GrowthFactor = __handleFloat(data.GrowthFactor);
24772481
}
24782482
if (data.GrowthType !== undefined && data.GrowthType !== null) {
24792483
contents.GrowthType = __expectString(data.GrowthType);
24802484
}
24812485
if (data.PercentageComplete !== undefined && data.PercentageComplete !== null) {
2482-
contents.PercentageComplete = __expectNumber(data.PercentageComplete);
2486+
contents.PercentageComplete = __handleFloat(data.PercentageComplete);
24832487
}
24842488
if (data.StartedAt !== undefined && data.StartedAt !== null) {
24852489
contents.StartedAt = new Date(data.StartedAt);
@@ -2572,7 +2576,7 @@ export const deserializeAws_restJson1GetDeploymentStrategyCommand = async (
25722576
contents.FinalBakeTimeInMinutes = __expectNumber(data.FinalBakeTimeInMinutes);
25732577
}
25742578
if (data.GrowthFactor !== undefined && data.GrowthFactor !== null) {
2575-
contents.GrowthFactor = __expectNumber(data.GrowthFactor);
2579+
contents.GrowthFactor = __handleFloat(data.GrowthFactor);
25762580
}
25772581
if (data.GrowthType !== undefined && data.GrowthType !== null) {
25782582
contents.GrowthType = __expectString(data.GrowthType);
@@ -3396,13 +3400,13 @@ export const deserializeAws_restJson1StartDeploymentCommand = async (
33963400
contents.FinalBakeTimeInMinutes = __expectNumber(data.FinalBakeTimeInMinutes);
33973401
}
33983402
if (data.GrowthFactor !== undefined && data.GrowthFactor !== null) {
3399-
contents.GrowthFactor = __expectNumber(data.GrowthFactor);
3403+
contents.GrowthFactor = __handleFloat(data.GrowthFactor);
34003404
}
34013405
if (data.GrowthType !== undefined && data.GrowthType !== null) {
34023406
contents.GrowthType = __expectString(data.GrowthType);
34033407
}
34043408
if (data.PercentageComplete !== undefined && data.PercentageComplete !== null) {
3405-
contents.PercentageComplete = __expectNumber(data.PercentageComplete);
3409+
contents.PercentageComplete = __handleFloat(data.PercentageComplete);
34063410
}
34073411
if (data.StartedAt !== undefined && data.StartedAt !== null) {
34083412
contents.StartedAt = new Date(data.StartedAt);
@@ -3543,13 +3547,13 @@ export const deserializeAws_restJson1StopDeploymentCommand = async (
35433547
contents.FinalBakeTimeInMinutes = __expectNumber(data.FinalBakeTimeInMinutes);
35443548
}
35453549
if (data.GrowthFactor !== undefined && data.GrowthFactor !== null) {
3546-
contents.GrowthFactor = __expectNumber(data.GrowthFactor);
3550+
contents.GrowthFactor = __handleFloat(data.GrowthFactor);
35473551
}
35483552
if (data.GrowthType !== undefined && data.GrowthType !== null) {
35493553
contents.GrowthType = __expectString(data.GrowthType);
35503554
}
35513555
if (data.PercentageComplete !== undefined && data.PercentageComplete !== null) {
3552-
contents.PercentageComplete = __expectNumber(data.PercentageComplete);
3556+
contents.PercentageComplete = __handleFloat(data.PercentageComplete);
35533557
}
35543558
if (data.StartedAt !== undefined && data.StartedAt !== null) {
35553559
contents.StartedAt = new Date(data.StartedAt);
@@ -3950,7 +3954,7 @@ export const deserializeAws_restJson1UpdateDeploymentStrategyCommand = async (
39503954
contents.FinalBakeTimeInMinutes = __expectNumber(data.FinalBakeTimeInMinutes);
39513955
}
39523956
if (data.GrowthFactor !== undefined && data.GrowthFactor !== null) {
3953-
contents.GrowthFactor = __expectNumber(data.GrowthFactor);
3957+
contents.GrowthFactor = __handleFloat(data.GrowthFactor);
39543958
}
39553959
if (data.GrowthType !== undefined && data.GrowthType !== null) {
39563960
contents.GrowthType = __expectString(data.GrowthType);
@@ -4244,7 +4248,7 @@ const deserializeAws_restJson1PayloadTooLargeExceptionResponse = async (
42444248
};
42454249
const data: any = parsedOutput.body;
42464250
if (data.Limit !== undefined && data.Limit !== null) {
4247-
contents.Limit = __expectNumber(data.Limit);
4251+
contents.Limit = __handleFloat(data.Limit);
42484252
}
42494253
if (data.Measure !== undefined && data.Measure !== null) {
42504254
contents.Measure = __expectString(data.Measure);
@@ -4253,7 +4257,7 @@ const deserializeAws_restJson1PayloadTooLargeExceptionResponse = async (
42534257
contents.Message = __expectString(data.Message);
42544258
}
42554259
if (data.Size !== undefined && data.Size !== null) {
4256-
contents.Size = __expectNumber(data.Size);
4260+
contents.Size = __handleFloat(data.Size);
42574261
}
42584262
return contents;
42594263
};
@@ -4429,7 +4433,7 @@ const deserializeAws_restJson1DeploymentStrategy = (output: any, context: __Serd
44294433
DeploymentDurationInMinutes: __expectNumber(output.DeploymentDurationInMinutes),
44304434
Description: __expectString(output.Description),
44314435
FinalBakeTimeInMinutes: __expectNumber(output.FinalBakeTimeInMinutes),
4432-
GrowthFactor: __expectNumber(output.GrowthFactor),
4436+
GrowthFactor: __handleFloat(output.GrowthFactor),
44334437
GrowthType: __expectString(output.GrowthType),
44344438
Id: __expectString(output.Id),
44354439
Name: __expectString(output.Name),
@@ -4457,9 +4461,9 @@ const deserializeAws_restJson1DeploymentSummary = (output: any, context: __Serde
44574461
DeploymentDurationInMinutes: __expectNumber(output.DeploymentDurationInMinutes),
44584462
DeploymentNumber: __expectNumber(output.DeploymentNumber),
44594463
FinalBakeTimeInMinutes: __expectNumber(output.FinalBakeTimeInMinutes),
4460-
GrowthFactor: __expectNumber(output.GrowthFactor),
4464+
GrowthFactor: __handleFloat(output.GrowthFactor),
44614465
GrowthType: __expectString(output.GrowthType),
4462-
PercentageComplete: __expectNumber(output.PercentageComplete),
4466+
PercentageComplete: __handleFloat(output.PercentageComplete),
44634467
StartedAt: output.StartedAt !== undefined && output.StartedAt !== null ? new Date(output.StartedAt) : undefined,
44644468
State: __expectString(output.State),
44654469
} as any;

clients/client-application-auto-scaling/protocols/Aws_json1_1.ts

+13-6
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ import {
8080
expectBoolean as __expectBoolean,
8181
expectNumber as __expectNumber,
8282
expectString as __expectString,
83+
handleFloat as __handleFloat,
84+
serializeFloat as __serializeFloat,
8385
} from "@aws-sdk/smithy-client";
8486
import {
8587
Endpoint as __Endpoint,
@@ -1384,9 +1386,13 @@ const serializeAws_json1_1ScalableTargetAction = (input: ScalableTargetAction, c
13841386
const serializeAws_json1_1StepAdjustment = (input: StepAdjustment, context: __SerdeContext): any => {
13851387
return {
13861388
...(input.MetricIntervalLowerBound !== undefined &&
1387-
input.MetricIntervalLowerBound !== null && { MetricIntervalLowerBound: input.MetricIntervalLowerBound }),
1389+
input.MetricIntervalLowerBound !== null && {
1390+
MetricIntervalLowerBound: __serializeFloat(input.MetricIntervalLowerBound),
1391+
}),
13881392
...(input.MetricIntervalUpperBound !== undefined &&
1389-
input.MetricIntervalUpperBound !== null && { MetricIntervalUpperBound: input.MetricIntervalUpperBound }),
1393+
input.MetricIntervalUpperBound !== null && {
1394+
MetricIntervalUpperBound: __serializeFloat(input.MetricIntervalUpperBound),
1395+
}),
13901396
...(input.ScalingAdjustment !== undefined &&
13911397
input.ScalingAdjustment !== null && { ScalingAdjustment: input.ScalingAdjustment }),
13921398
};
@@ -1458,7 +1464,8 @@ const serializeAws_json1_1TargetTrackingScalingPolicyConfiguration = (
14581464
input.ScaleInCooldown !== null && { ScaleInCooldown: input.ScaleInCooldown }),
14591465
...(input.ScaleOutCooldown !== undefined &&
14601466
input.ScaleOutCooldown !== null && { ScaleOutCooldown: input.ScaleOutCooldown }),
1461-
...(input.TargetValue !== undefined && input.TargetValue !== null && { TargetValue: input.TargetValue }),
1467+
...(input.TargetValue !== undefined &&
1468+
input.TargetValue !== null && { TargetValue: __serializeFloat(input.TargetValue) }),
14621469
};
14631470
};
14641471

@@ -1824,8 +1831,8 @@ const deserializeAws_json1_1ScheduledActions = (output: any, context: __SerdeCon
18241831

18251832
const deserializeAws_json1_1StepAdjustment = (output: any, context: __SerdeContext): StepAdjustment => {
18261833
return {
1827-
MetricIntervalLowerBound: __expectNumber(output.MetricIntervalLowerBound),
1828-
MetricIntervalUpperBound: __expectNumber(output.MetricIntervalUpperBound),
1834+
MetricIntervalLowerBound: __handleFloat(output.MetricIntervalLowerBound),
1835+
MetricIntervalUpperBound: __handleFloat(output.MetricIntervalUpperBound),
18291836
ScalingAdjustment: __expectNumber(output.ScalingAdjustment),
18301837
} as any;
18311838
};
@@ -1881,7 +1888,7 @@ const deserializeAws_json1_1TargetTrackingScalingPolicyConfiguration = (
18811888
: undefined,
18821889
ScaleInCooldown: __expectNumber(output.ScaleInCooldown),
18831890
ScaleOutCooldown: __expectNumber(output.ScaleOutCooldown),
1884-
TargetValue: __expectNumber(output.TargetValue),
1891+
TargetValue: __handleFloat(output.TargetValue),
18851892
} as any;
18861893
};
18871894

clients/client-application-insights/protocols/Aws_json1_1.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ import {
130130
expectBoolean as __expectBoolean,
131131
expectNumber as __expectNumber,
132132
expectString as __expectString,
133+
handleFloat as __handleFloat,
133134
} from "@aws-sdk/smithy-client";
134135
import {
135136
Endpoint as __Endpoint,
@@ -3332,7 +3333,7 @@ const deserializeAws_json1_1Observation = (output: any, context: __SerdeContext)
33323333
StatesInput: __expectString(output.StatesInput),
33333334
StatesStatus: __expectString(output.StatesStatus),
33343335
Unit: __expectString(output.Unit),
3335-
Value: __expectNumber(output.Value),
3336+
Value: __handleFloat(output.Value),
33363337
XRayErrorPercent: __expectNumber(output.XRayErrorPercent),
33373338
XRayFaultPercent: __expectNumber(output.XRayFaultPercent),
33383339
XRayNodeName: __expectString(output.XRayNodeName),

0 commit comments

Comments
 (0)