@aws-sdk/client-support 3.1025.0 → 3.1027.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.
@@ -1024,7 +1024,7 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
1024
1024
  * </note>
1025
1025
  * @public
1026
1026
  */
1027
- checkIds: string[] | undefined;
1027
+ checkIds: (string | null)[] | undefined;
1028
1028
  }
1029
1029
  /**
1030
1030
  * <p>The refresh status of a Trusted Advisor check.</p>
@@ -1214,7 +1214,7 @@ export interface TrustedAdvisorResourceDetail {
1214
1214
  * download, even in those cases where the UI shows just summary data.</p>
1215
1215
  * @public
1216
1216
  */
1217
- metadata: string[] | undefined;
1217
+ metadata: (string | null)[] | undefined;
1218
1218
  }
1219
1219
  /**
1220
1220
  * <p>Details about Amazon Web Services resources that were analyzed in a call to Trusted Advisor <a>DescribeTrustedAdvisorCheckSummaries</a>.</p>
@@ -1384,7 +1384,7 @@ export interface TrustedAdvisorCheckDescription {
1384
1384
  * </p>
1385
1385
  * @public
1386
1386
  */
1387
- metadata: string[] | undefined;
1387
+ metadata: (string | null)[] | undefined;
1388
1388
  }
1389
1389
  /**
1390
1390
  * <p>Information about the Trusted Advisor checks returned by the <a>DescribeTrustedAdvisorChecks</a> operation.</p>
@@ -1405,7 +1405,7 @@ export interface DescribeTrustedAdvisorCheckSummariesRequest {
1405
1405
  * <p>The IDs of the Trusted Advisor checks.</p>
1406
1406
  * @public
1407
1407
  */
1408
- checkIds: string[] | undefined;
1408
+ checkIds: (string | null)[] | undefined;
1409
1409
  }
1410
1410
  /**
1411
1411
  * <p>A summary of a Trusted Advisor check result, including the alert status, last refresh, and
@@ -157,7 +157,7 @@ export interface DescribeSupportedLanguagesResponse {
157
157
  supportedLanguages?: SupportedLanguage[] | undefined;
158
158
  }
159
159
  export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
160
- checkIds: string[] | undefined;
160
+ checkIds: (string | null)[] | undefined;
161
161
  }
162
162
  export interface TrustedAdvisorCheckRefreshStatus {
163
163
  checkId: string | undefined;
@@ -183,7 +183,7 @@ export interface TrustedAdvisorResourceDetail {
183
183
  region?: string | undefined;
184
184
  resourceId: string | undefined;
185
185
  isSuppressed?: boolean | undefined;
186
- metadata: string[] | undefined;
186
+ metadata: (string | null)[] | undefined;
187
187
  }
188
188
  export interface TrustedAdvisorResourcesSummary {
189
189
  resourcesProcessed: number | undefined;
@@ -210,13 +210,13 @@ export interface TrustedAdvisorCheckDescription {
210
210
  name: string | undefined;
211
211
  description: string | undefined;
212
212
  category: string | undefined;
213
- metadata: string[] | undefined;
213
+ metadata: (string | null)[] | undefined;
214
214
  }
215
215
  export interface DescribeTrustedAdvisorChecksResponse {
216
216
  checks: TrustedAdvisorCheckDescription[] | undefined;
217
217
  }
218
218
  export interface DescribeTrustedAdvisorCheckSummariesRequest {
219
- checkIds: string[] | undefined;
219
+ checkIds: (string | null)[] | undefined;
220
220
  }
221
221
  export interface TrustedAdvisorCheckSummary {
222
222
  checkId: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-support",
3
3
  "description": "AWS SDK for JavaScript Support Client for Node.js, Browser and React Native",
4
- "version": "3.1025.0",
4
+ "version": "3.1027.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-support",
@@ -21,41 +21,41 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.26",
25
- "@aws-sdk/credential-provider-node": "^3.972.29",
26
- "@aws-sdk/middleware-host-header": "^3.972.8",
27
- "@aws-sdk/middleware-logger": "^3.972.8",
28
- "@aws-sdk/middleware-recursion-detection": "^3.972.9",
29
- "@aws-sdk/middleware-user-agent": "^3.972.28",
30
- "@aws-sdk/region-config-resolver": "^3.972.10",
31
- "@aws-sdk/types": "^3.973.6",
32
- "@aws-sdk/util-endpoints": "^3.996.5",
33
- "@aws-sdk/util-user-agent-browser": "^3.972.8",
34
- "@aws-sdk/util-user-agent-node": "^3.973.14",
35
- "@smithy/config-resolver": "^4.4.13",
36
- "@smithy/core": "^3.23.13",
37
- "@smithy/fetch-http-handler": "^5.3.15",
38
- "@smithy/hash-node": "^4.2.12",
39
- "@smithy/invalid-dependency": "^4.2.12",
40
- "@smithy/middleware-content-length": "^4.2.12",
41
- "@smithy/middleware-endpoint": "^4.4.28",
42
- "@smithy/middleware-retry": "^4.4.46",
43
- "@smithy/middleware-serde": "^4.2.16",
44
- "@smithy/middleware-stack": "^4.2.12",
45
- "@smithy/node-config-provider": "^4.3.12",
46
- "@smithy/node-http-handler": "^4.5.1",
47
- "@smithy/protocol-http": "^5.3.12",
48
- "@smithy/smithy-client": "^4.12.8",
49
- "@smithy/types": "^4.13.1",
50
- "@smithy/url-parser": "^4.2.12",
24
+ "@aws-sdk/core": "^3.973.27",
25
+ "@aws-sdk/credential-provider-node": "^3.972.30",
26
+ "@aws-sdk/middleware-host-header": "^3.972.9",
27
+ "@aws-sdk/middleware-logger": "^3.972.9",
28
+ "@aws-sdk/middleware-recursion-detection": "^3.972.10",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.29",
30
+ "@aws-sdk/region-config-resolver": "^3.972.11",
31
+ "@aws-sdk/types": "^3.973.7",
32
+ "@aws-sdk/util-endpoints": "^3.996.6",
33
+ "@aws-sdk/util-user-agent-browser": "^3.972.9",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.15",
35
+ "@smithy/config-resolver": "^4.4.14",
36
+ "@smithy/core": "^3.23.14",
37
+ "@smithy/fetch-http-handler": "^5.3.16",
38
+ "@smithy/hash-node": "^4.2.13",
39
+ "@smithy/invalid-dependency": "^4.2.13",
40
+ "@smithy/middleware-content-length": "^4.2.13",
41
+ "@smithy/middleware-endpoint": "^4.4.29",
42
+ "@smithy/middleware-retry": "^4.5.0",
43
+ "@smithy/middleware-serde": "^4.2.17",
44
+ "@smithy/middleware-stack": "^4.2.13",
45
+ "@smithy/node-config-provider": "^4.3.13",
46
+ "@smithy/node-http-handler": "^4.5.2",
47
+ "@smithy/protocol-http": "^5.3.13",
48
+ "@smithy/smithy-client": "^4.12.9",
49
+ "@smithy/types": "^4.14.0",
50
+ "@smithy/url-parser": "^4.2.13",
51
51
  "@smithy/util-base64": "^4.3.2",
52
52
  "@smithy/util-body-length-browser": "^4.2.2",
53
53
  "@smithy/util-body-length-node": "^4.2.3",
54
- "@smithy/util-defaults-mode-browser": "^4.3.44",
55
- "@smithy/util-defaults-mode-node": "^4.2.48",
56
- "@smithy/util-endpoints": "^3.3.3",
57
- "@smithy/util-middleware": "^4.2.12",
58
- "@smithy/util-retry": "^4.2.13",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.45",
55
+ "@smithy/util-defaults-mode-node": "^4.2.49",
56
+ "@smithy/util-endpoints": "^3.3.4",
57
+ "@smithy/util-middleware": "^4.2.13",
58
+ "@smithy/util-retry": "^4.3.0",
59
59
  "@smithy/util-utf8": "^4.2.2",
60
60
  "tslib": "^2.6.2"
61
61
  },