@aws-sdk/client-application-insights 3.241.0 → 3.252.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.
@@ -1553,12 +1553,12 @@ const serializeAws_json1_1ListComponentsRequest = (input, context) => {
1553
1553
  };
1554
1554
  const serializeAws_json1_1ListConfigurationHistoryRequest = (input, context) => {
1555
1555
  return {
1556
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
1556
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
1557
1557
  ...(input.EventStatus != null && { EventStatus: input.EventStatus }),
1558
1558
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
1559
1559
  ...(input.NextToken != null && { NextToken: input.NextToken }),
1560
1560
  ...(input.ResourceGroupName != null && { ResourceGroupName: input.ResourceGroupName }),
1561
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
1561
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
1562
1562
  };
1563
1563
  };
1564
1564
  const serializeAws_json1_1ListLogPatternSetsRequest = (input, context) => {
@@ -1579,11 +1579,11 @@ const serializeAws_json1_1ListLogPatternsRequest = (input, context) => {
1579
1579
  const serializeAws_json1_1ListProblemsRequest = (input, context) => {
1580
1580
  return {
1581
1581
  ...(input.ComponentName != null && { ComponentName: input.ComponentName }),
1582
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
1582
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
1583
1583
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
1584
1584
  ...(input.NextToken != null && { NextToken: input.NextToken }),
1585
1585
  ...(input.ResourceGroupName != null && { ResourceGroupName: input.ResourceGroupName }),
1586
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
1586
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
1587
1587
  };
1588
1588
  };
1589
1589
  const serializeAws_json1_1ListTagsForResourceRequest = (input, context) => {
@@ -1495,12 +1495,12 @@ const serializeAws_json1_1ListComponentsRequest = (input, context) => {
1495
1495
  };
1496
1496
  const serializeAws_json1_1ListConfigurationHistoryRequest = (input, context) => {
1497
1497
  return {
1498
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
1498
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
1499
1499
  ...(input.EventStatus != null && { EventStatus: input.EventStatus }),
1500
1500
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
1501
1501
  ...(input.NextToken != null && { NextToken: input.NextToken }),
1502
1502
  ...(input.ResourceGroupName != null && { ResourceGroupName: input.ResourceGroupName }),
1503
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
1503
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
1504
1504
  };
1505
1505
  };
1506
1506
  const serializeAws_json1_1ListLogPatternSetsRequest = (input, context) => {
@@ -1521,11 +1521,11 @@ const serializeAws_json1_1ListLogPatternsRequest = (input, context) => {
1521
1521
  const serializeAws_json1_1ListProblemsRequest = (input, context) => {
1522
1522
  return {
1523
1523
  ...(input.ComponentName != null && { ComponentName: input.ComponentName }),
1524
- ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000) }),
1524
+ ...(input.EndTime != null && { EndTime: Math.round(input.EndTime.getTime() / 1000).toString() }),
1525
1525
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
1526
1526
  ...(input.NextToken != null && { NextToken: input.NextToken }),
1527
1527
  ...(input.ResourceGroupName != null && { ResourceGroupName: input.ResourceGroupName }),
1528
- ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000) }),
1528
+ ...(input.StartTime != null && { StartTime: Math.round(input.StartTime.getTime() / 1000).toString() }),
1529
1529
  };
1530
1530
  };
1531
1531
  const serializeAws_json1_1ListTagsForResourceRequest = (input, context) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-application-insights",
3
3
  "description": "AWS SDK for JavaScript Application Insights Client for Node.js, Browser and React Native",
4
- "version": "3.241.0",
4
+ "version": "3.252.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -11,7 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
- "generate:client": "(cd ../../ && yarn generate-clients -g ./codegen/sdk-codegen/aws-models/application-insights.json --keepFiles)"
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo application-insights"
15
15
  },
16
16
  "main": "./dist-cjs/index.js",
17
17
  "types": "./dist-types/index.d.ts",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "2.0.0",
22
22
  "@aws-crypto/sha256-js": "2.0.0",
23
- "@aws-sdk/client-sts": "3.241.0",
23
+ "@aws-sdk/client-sts": "3.252.0",
24
24
  "@aws-sdk/config-resolver": "3.234.0",
25
- "@aws-sdk/credential-provider-node": "3.241.0",
25
+ "@aws-sdk/credential-provider-node": "3.252.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.226.0",
27
27
  "@aws-sdk/hash-node": "3.226.0",
28
28
  "@aws-sdk/invalid-dependency": "3.226.0",
@@ -47,7 +47,7 @@
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
48
  "@aws-sdk/util-defaults-mode-browser": "3.234.0",
49
49
  "@aws-sdk/util-defaults-mode-node": "3.234.0",
50
- "@aws-sdk/util-endpoints": "3.241.0",
50
+ "@aws-sdk/util-endpoints": "3.245.0",
51
51
  "@aws-sdk/util-retry": "3.229.0",
52
52
  "@aws-sdk/util-user-agent-browser": "3.226.0",
53
53
  "@aws-sdk/util-user-agent-node": "3.226.0",