Skip to content

Commit 6362fe2

Browse files
authored
chore(codegen): sync for idempotencyToken fix in http binding protocols (#7495)
* chore(codegen): sync for idempotencyToken fix in http binding protocols * chore: codegen
1 parent bb14b54 commit 6362fe2

File tree

647 files changed

+22137
-24479
lines changed

Some content is hidden

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

647 files changed

+22137
-24479
lines changed

clients/client-accessanalyzer/package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -31,30 +31,30 @@
3131
"@aws-sdk/util-endpoints": "*",
3232
"@aws-sdk/util-user-agent-browser": "*",
3333
"@aws-sdk/util-user-agent-node": "*",
34-
"@smithy/config-resolver": "^4.4.2",
35-
"@smithy/core": "^3.17.2",
36-
"@smithy/fetch-http-handler": "^5.3.5",
37-
"@smithy/hash-node": "^4.2.4",
38-
"@smithy/invalid-dependency": "^4.2.4",
39-
"@smithy/middleware-content-length": "^4.2.4",
40-
"@smithy/middleware-endpoint": "^4.3.6",
41-
"@smithy/middleware-retry": "^4.4.6",
42-
"@smithy/middleware-serde": "^4.2.4",
43-
"@smithy/middleware-stack": "^4.2.4",
44-
"@smithy/node-config-provider": "^4.3.4",
45-
"@smithy/node-http-handler": "^4.4.4",
46-
"@smithy/protocol-http": "^5.3.4",
47-
"@smithy/smithy-client": "^4.9.2",
48-
"@smithy/types": "^4.8.1",
49-
"@smithy/url-parser": "^4.2.4",
34+
"@smithy/config-resolver": "^4.4.3",
35+
"@smithy/core": "^3.18.2",
36+
"@smithy/fetch-http-handler": "^5.3.6",
37+
"@smithy/hash-node": "^4.2.5",
38+
"@smithy/invalid-dependency": "^4.2.5",
39+
"@smithy/middleware-content-length": "^4.2.5",
40+
"@smithy/middleware-endpoint": "^4.3.9",
41+
"@smithy/middleware-retry": "^4.4.9",
42+
"@smithy/middleware-serde": "^4.2.5",
43+
"@smithy/middleware-stack": "^4.2.5",
44+
"@smithy/node-config-provider": "^4.3.5",
45+
"@smithy/node-http-handler": "^4.4.5",
46+
"@smithy/protocol-http": "^5.3.5",
47+
"@smithy/smithy-client": "^4.9.5",
48+
"@smithy/types": "^4.9.0",
49+
"@smithy/url-parser": "^4.2.5",
5050
"@smithy/util-base64": "^4.3.0",
5151
"@smithy/util-body-length-browser": "^4.2.0",
5252
"@smithy/util-body-length-node": "^4.2.1",
53-
"@smithy/util-defaults-mode-browser": "^4.3.5",
54-
"@smithy/util-defaults-mode-node": "^4.2.8",
55-
"@smithy/util-endpoints": "^3.2.4",
56-
"@smithy/util-middleware": "^4.2.4",
57-
"@smithy/util-retry": "^4.2.4",
53+
"@smithy/util-defaults-mode-browser": "^4.3.8",
54+
"@smithy/util-defaults-mode-node": "^4.2.11",
55+
"@smithy/util-endpoints": "^3.2.5",
56+
"@smithy/util-middleware": "^4.2.5",
57+
"@smithy/util-retry": "^4.2.5",
5858
"@smithy/util-utf8": "^4.2.0",
5959
"tslib": "^2.6.2"
6060
},

clients/client-accessanalyzer/src/models/models_0.ts

Lines changed: 40 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -664,17 +664,15 @@ export namespace AnalyzerConfiguration {
664664
$unknown: [string, any];
665665
}
666666

667+
/**
668+
* @deprecated unused in schema-serde mode.
669+
*
670+
*/
667671
export interface Visitor<T> {
668672
unusedAccess: (value: UnusedAccessConfiguration) => T;
669673
internalAccess: (value: InternalAccessConfiguration) => T;
670674
_: (name: string, value: any) => T;
671675
}
672-
673-
export const visit = <T>(value: AnalyzerConfiguration, visitor: Visitor<T>): T => {
674-
if (value.unusedAccess !== undefined) return visitor.unusedAccess(value.unusedAccess);
675-
if (value.internalAccess !== undefined) return visitor.internalAccess(value.internalAccess);
676-
return visitor._(value.$unknown[0], value.$unknown[1]);
677-
};
678676
}
679677

680678
/**
@@ -1489,15 +1487,14 @@ export namespace RdsDbClusterSnapshotAttributeValue {
14891487
$unknown: [string, any];
14901488
}
14911489

1490+
/**
1491+
* @deprecated unused in schema-serde mode.
1492+
*
1493+
*/
14921494
export interface Visitor<T> {
14931495
accountIds: (value: string[]) => T;
14941496
_: (name: string, value: any) => T;
14951497
}
1496-
1497-
export const visit = <T>(value: RdsDbClusterSnapshotAttributeValue, visitor: Visitor<T>): T => {
1498-
if (value.accountIds !== undefined) return visitor.accountIds(value.accountIds);
1499-
return visitor._(value.$unknown[0], value.$unknown[1]);
1500-
};
15011498
}
15021499

15031500
/**
@@ -1547,15 +1544,14 @@ export namespace RdsDbSnapshotAttributeValue {
15471544
$unknown: [string, any];
15481545
}
15491546

1547+
/**
1548+
* @deprecated unused in schema-serde mode.
1549+
*
1550+
*/
15501551
export interface Visitor<T> {
15511552
accountIds: (value: string[]) => T;
15521553
_: (name: string, value: any) => T;
15531554
}
1554-
1555-
export const visit = <T>(value: RdsDbSnapshotAttributeValue, visitor: Visitor<T>): T => {
1556-
if (value.accountIds !== undefined) return visitor.accountIds(value.accountIds);
1557-
return visitor._(value.$unknown[0], value.$unknown[1]);
1558-
};
15591555
}
15601556

15611557
/**
@@ -1636,17 +1632,15 @@ export namespace NetworkOriginConfiguration {
16361632
$unknown: [string, any];
16371633
}
16381634

1635+
/**
1636+
* @deprecated unused in schema-serde mode.
1637+
*
1638+
*/
16391639
export interface Visitor<T> {
16401640
vpcConfiguration: (value: VpcConfiguration) => T;
16411641
internetConfiguration: (value: InternetConfiguration) => T;
16421642
_: (name: string, value: any) => T;
16431643
}
1644-
1645-
export const visit = <T>(value: NetworkOriginConfiguration, visitor: Visitor<T>): T => {
1646-
if (value.vpcConfiguration !== undefined) return visitor.vpcConfiguration(value.vpcConfiguration);
1647-
if (value.internetConfiguration !== undefined) return visitor.internetConfiguration(value.internetConfiguration);
1648-
return visitor._(value.$unknown[0], value.$unknown[1]);
1649-
};
16501644
}
16511645

16521646
/**
@@ -1730,17 +1724,15 @@ export namespace AclGrantee {
17301724
$unknown: [string, any];
17311725
}
17321726

1727+
/**
1728+
* @deprecated unused in schema-serde mode.
1729+
*
1730+
*/
17331731
export interface Visitor<T> {
17341732
id: (value: string) => T;
17351733
uri: (value: string) => T;
17361734
_: (name: string, value: any) => T;
17371735
}
1738-
1739-
export const visit = <T>(value: AclGrantee, visitor: Visitor<T>): T => {
1740-
if (value.id !== undefined) return visitor.id(value.id);
1741-
if (value.uri !== undefined) return visitor.uri(value.uri);
1742-
return visitor._(value.$unknown[0], value.$unknown[1]);
1743-
};
17441736
}
17451737

17461738
/**
@@ -2240,6 +2232,10 @@ export namespace Configuration {
22402232
$unknown: [string, any];
22412233
}
22422234

2235+
/**
2236+
* @deprecated unused in schema-serde mode.
2237+
*
2238+
*/
22432239
export interface Visitor<T> {
22442240
ebsSnapshot: (value: EbsSnapshotConfiguration) => T;
22452241
ecrRepository: (value: EcrRepositoryConfiguration) => T;
@@ -2257,25 +2253,6 @@ export namespace Configuration {
22572253
dynamodbTable: (value: DynamodbTableConfiguration) => T;
22582254
_: (name: string, value: any) => T;
22592255
}
2260-
2261-
export const visit = <T>(value: Configuration, visitor: Visitor<T>): T => {
2262-
if (value.ebsSnapshot !== undefined) return visitor.ebsSnapshot(value.ebsSnapshot);
2263-
if (value.ecrRepository !== undefined) return visitor.ecrRepository(value.ecrRepository);
2264-
if (value.iamRole !== undefined) return visitor.iamRole(value.iamRole);
2265-
if (value.efsFileSystem !== undefined) return visitor.efsFileSystem(value.efsFileSystem);
2266-
if (value.kmsKey !== undefined) return visitor.kmsKey(value.kmsKey);
2267-
if (value.rdsDbClusterSnapshot !== undefined) return visitor.rdsDbClusterSnapshot(value.rdsDbClusterSnapshot);
2268-
if (value.rdsDbSnapshot !== undefined) return visitor.rdsDbSnapshot(value.rdsDbSnapshot);
2269-
if (value.secretsManagerSecret !== undefined) return visitor.secretsManagerSecret(value.secretsManagerSecret);
2270-
if (value.s3Bucket !== undefined) return visitor.s3Bucket(value.s3Bucket);
2271-
if (value.snsTopic !== undefined) return visitor.snsTopic(value.snsTopic);
2272-
if (value.sqsQueue !== undefined) return visitor.sqsQueue(value.sqsQueue);
2273-
if (value.s3ExpressDirectoryBucket !== undefined)
2274-
return visitor.s3ExpressDirectoryBucket(value.s3ExpressDirectoryBucket);
2275-
if (value.dynamodbStream !== undefined) return visitor.dynamodbStream(value.dynamodbStream);
2276-
if (value.dynamodbTable !== undefined) return visitor.dynamodbTable(value.dynamodbTable);
2277-
return visitor._(value.$unknown[0], value.$unknown[1]);
2278-
};
22792256
}
22802257

22812258
/**
@@ -2864,16 +2841,14 @@ export namespace RecommendedStep {
28642841
$unknown: [string, any];
28652842
}
28662843

2844+
/**
2845+
* @deprecated unused in schema-serde mode.
2846+
*
2847+
*/
28672848
export interface Visitor<T> {
28682849
unusedPermissionsRecommendedStep: (value: UnusedPermissionsRecommendedStep) => T;
28692850
_: (name: string, value: any) => T;
28702851
}
2871-
2872-
export const visit = <T>(value: RecommendedStep, visitor: Visitor<T>): T => {
2873-
if (value.unusedPermissionsRecommendedStep !== undefined)
2874-
return visitor.unusedPermissionsRecommendedStep(value.unusedPermissionsRecommendedStep);
2875-
return visitor._(value.$unknown[0], value.$unknown[1]);
2876-
};
28772852
}
28782853

28792854
/**
@@ -3198,22 +3173,16 @@ export namespace FindingsStatistics {
31983173
$unknown: [string, any];
31993174
}
32003175

3176+
/**
3177+
* @deprecated unused in schema-serde mode.
3178+
*
3179+
*/
32013180
export interface Visitor<T> {
32023181
externalAccessFindingsStatistics: (value: ExternalAccessFindingsStatistics) => T;
32033182
internalAccessFindingsStatistics: (value: InternalAccessFindingsStatistics) => T;
32043183
unusedAccessFindingsStatistics: (value: UnusedAccessFindingsStatistics) => T;
32053184
_: (name: string, value: any) => T;
32063185
}
3207-
3208-
export const visit = <T>(value: FindingsStatistics, visitor: Visitor<T>): T => {
3209-
if (value.externalAccessFindingsStatistics !== undefined)
3210-
return visitor.externalAccessFindingsStatistics(value.externalAccessFindingsStatistics);
3211-
if (value.internalAccessFindingsStatistics !== undefined)
3212-
return visitor.internalAccessFindingsStatistics(value.internalAccessFindingsStatistics);
3213-
if (value.unusedAccessFindingsStatistics !== undefined)
3214-
return visitor.unusedAccessFindingsStatistics(value.unusedAccessFindingsStatistics);
3215-
return visitor._(value.$unknown[0], value.$unknown[1]);
3216-
};
32173186
}
32183187

32193188
/**
@@ -3607,6 +3576,10 @@ export namespace FindingDetails {
36073576
$unknown: [string, any];
36083577
}
36093578

3579+
/**
3580+
* @deprecated unused in schema-serde mode.
3581+
*
3582+
*/
36103583
export interface Visitor<T> {
36113584
internalAccessDetails: (value: InternalAccessDetails) => T;
36123585
externalAccessDetails: (value: ExternalAccessDetails) => T;
@@ -3616,19 +3589,6 @@ export namespace FindingDetails {
36163589
unusedIamUserPasswordDetails: (value: UnusedIamUserPasswordDetails) => T;
36173590
_: (name: string, value: any) => T;
36183591
}
3619-
3620-
export const visit = <T>(value: FindingDetails, visitor: Visitor<T>): T => {
3621-
if (value.internalAccessDetails !== undefined) return visitor.internalAccessDetails(value.internalAccessDetails);
3622-
if (value.externalAccessDetails !== undefined) return visitor.externalAccessDetails(value.externalAccessDetails);
3623-
if (value.unusedPermissionDetails !== undefined)
3624-
return visitor.unusedPermissionDetails(value.unusedPermissionDetails);
3625-
if (value.unusedIamUserAccessKeyDetails !== undefined)
3626-
return visitor.unusedIamUserAccessKeyDetails(value.unusedIamUserAccessKeyDetails);
3627-
if (value.unusedIamRoleDetails !== undefined) return visitor.unusedIamRoleDetails(value.unusedIamRoleDetails);
3628-
if (value.unusedIamUserPasswordDetails !== undefined)
3629-
return visitor.unusedIamUserPasswordDetails(value.unusedIamUserPasswordDetails);
3630-
return visitor._(value.$unknown[0], value.$unknown[1]);
3631-
};
36323592
}
36333593

36343594
/**
@@ -5080,21 +5040,17 @@ export namespace PathElement {
50805040
$unknown: [string, any];
50815041
}
50825042

5043+
/**
5044+
* @deprecated unused in schema-serde mode.
5045+
*
5046+
*/
50835047
export interface Visitor<T> {
50845048
index: (value: number) => T;
50855049
key: (value: string) => T;
50865050
substring: (value: Substring) => T;
50875051
value: (value: string) => T;
50885052
_: (name: string, value: any) => T;
50895053
}
5090-
5091-
export const visit = <T>(value: PathElement, visitor: Visitor<T>): T => {
5092-
if (value.index !== undefined) return visitor.index(value.index);
5093-
if (value.key !== undefined) return visitor.key(value.key);
5094-
if (value.substring !== undefined) return visitor.substring(value.substring);
5095-
if (value.value !== undefined) return visitor.value(value.value);
5096-
return visitor._(value.$unknown[0], value.$unknown[1]);
5097-
};
50985054
}
50995055

51005056
/**

clients/client-account/package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -31,30 +31,30 @@
3131
"@aws-sdk/util-endpoints": "*",
3232
"@aws-sdk/util-user-agent-browser": "*",
3333
"@aws-sdk/util-user-agent-node": "*",
34-
"@smithy/config-resolver": "^4.4.2",
35-
"@smithy/core": "^3.17.2",
36-
"@smithy/fetch-http-handler": "^5.3.5",
37-
"@smithy/hash-node": "^4.2.4",
38-
"@smithy/invalid-dependency": "^4.2.4",
39-
"@smithy/middleware-content-length": "^4.2.4",
40-
"@smithy/middleware-endpoint": "^4.3.6",
41-
"@smithy/middleware-retry": "^4.4.6",
42-
"@smithy/middleware-serde": "^4.2.4",
43-
"@smithy/middleware-stack": "^4.2.4",
44-
"@smithy/node-config-provider": "^4.3.4",
45-
"@smithy/node-http-handler": "^4.4.4",
46-
"@smithy/protocol-http": "^5.3.4",
47-
"@smithy/smithy-client": "^4.9.2",
48-
"@smithy/types": "^4.8.1",
49-
"@smithy/url-parser": "^4.2.4",
34+
"@smithy/config-resolver": "^4.4.3",
35+
"@smithy/core": "^3.18.2",
36+
"@smithy/fetch-http-handler": "^5.3.6",
37+
"@smithy/hash-node": "^4.2.5",
38+
"@smithy/invalid-dependency": "^4.2.5",
39+
"@smithy/middleware-content-length": "^4.2.5",
40+
"@smithy/middleware-endpoint": "^4.3.9",
41+
"@smithy/middleware-retry": "^4.4.9",
42+
"@smithy/middleware-serde": "^4.2.5",
43+
"@smithy/middleware-stack": "^4.2.5",
44+
"@smithy/node-config-provider": "^4.3.5",
45+
"@smithy/node-http-handler": "^4.4.5",
46+
"@smithy/protocol-http": "^5.3.5",
47+
"@smithy/smithy-client": "^4.9.5",
48+
"@smithy/types": "^4.9.0",
49+
"@smithy/url-parser": "^4.2.5",
5050
"@smithy/util-base64": "^4.3.0",
5151
"@smithy/util-body-length-browser": "^4.2.0",
5252
"@smithy/util-body-length-node": "^4.2.1",
53-
"@smithy/util-defaults-mode-browser": "^4.3.5",
54-
"@smithy/util-defaults-mode-node": "^4.2.8",
55-
"@smithy/util-endpoints": "^3.2.4",
56-
"@smithy/util-middleware": "^4.2.4",
57-
"@smithy/util-retry": "^4.2.4",
53+
"@smithy/util-defaults-mode-browser": "^4.3.8",
54+
"@smithy/util-defaults-mode-node": "^4.2.11",
55+
"@smithy/util-endpoints": "^3.2.5",
56+
"@smithy/util-middleware": "^4.2.5",
57+
"@smithy/util-retry": "^4.2.5",
5858
"@smithy/util-utf8": "^4.2.0",
5959
"tslib": "^2.6.2"
6060
},

0 commit comments

Comments
 (0)