Skip to content

Commit bcfee78

Browse files
authored
chore(clients): codegen sync for IDE type navigation (#6490)
* chore(clients): codegen sync for IDE type navigation * chore: codegen update * chore: update smithy dependencies
1 parent a993838 commit bcfee78

File tree

16,498 files changed

+217404
-25044
lines changed

Some content is hidden

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

16,498 files changed

+217404
-25044
lines changed

clients/client-accessanalyzer/package.json

+21-21
Original file line numberDiff line numberDiff line change
@@ -33,30 +33,30 @@
3333
"@aws-sdk/util-endpoints": "*",
3434
"@aws-sdk/util-user-agent-browser": "*",
3535
"@aws-sdk/util-user-agent-node": "*",
36-
"@smithy/config-resolver": "^3.0.6",
37-
"@smithy/core": "^2.4.1",
38-
"@smithy/fetch-http-handler": "^3.2.5",
39-
"@smithy/hash-node": "^3.0.4",
40-
"@smithy/invalid-dependency": "^3.0.4",
41-
"@smithy/middleware-content-length": "^3.0.6",
42-
"@smithy/middleware-endpoint": "^3.1.1",
43-
"@smithy/middleware-retry": "^3.0.16",
44-
"@smithy/middleware-serde": "^3.0.4",
45-
"@smithy/middleware-stack": "^3.0.4",
46-
"@smithy/node-config-provider": "^3.1.5",
47-
"@smithy/node-http-handler": "^3.2.0",
48-
"@smithy/protocol-http": "^4.1.1",
49-
"@smithy/smithy-client": "^3.3.0",
50-
"@smithy/types": "^3.4.0",
51-
"@smithy/url-parser": "^3.0.4",
36+
"@smithy/config-resolver": "^3.0.8",
37+
"@smithy/core": "^2.4.3",
38+
"@smithy/fetch-http-handler": "^3.2.7",
39+
"@smithy/hash-node": "^3.0.6",
40+
"@smithy/invalid-dependency": "^3.0.6",
41+
"@smithy/middleware-content-length": "^3.0.8",
42+
"@smithy/middleware-endpoint": "^3.1.3",
43+
"@smithy/middleware-retry": "^3.0.18",
44+
"@smithy/middleware-serde": "^3.0.6",
45+
"@smithy/middleware-stack": "^3.0.6",
46+
"@smithy/node-config-provider": "^3.1.7",
47+
"@smithy/node-http-handler": "^3.2.2",
48+
"@smithy/protocol-http": "^4.1.3",
49+
"@smithy/smithy-client": "^3.3.2",
50+
"@smithy/types": "^3.4.2",
51+
"@smithy/url-parser": "^3.0.6",
5252
"@smithy/util-base64": "^3.0.0",
5353
"@smithy/util-body-length-browser": "^3.0.0",
5454
"@smithy/util-body-length-node": "^3.0.0",
55-
"@smithy/util-defaults-mode-browser": "^3.0.16",
56-
"@smithy/util-defaults-mode-node": "^3.0.16",
57-
"@smithy/util-endpoints": "^2.1.0",
58-
"@smithy/util-middleware": "^3.0.4",
59-
"@smithy/util-retry": "^3.0.4",
55+
"@smithy/util-defaults-mode-browser": "^3.0.18",
56+
"@smithy/util-defaults-mode-node": "^3.0.18",
57+
"@smithy/util-endpoints": "^2.1.2",
58+
"@smithy/util-middleware": "^3.0.6",
59+
"@smithy/util-retry": "^3.0.6",
6060
"@smithy/util-utf8": "^3.0.0",
6161
"tslib": "^2.6.2",
6262
"uuid": "^9.0.1"

clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,16 @@ export class ApplyArchiveRuleCommand extends $Command
9393
.f(void 0, void 0)
9494
.ser(se_ApplyArchiveRuleCommand)
9595
.de(de_ApplyArchiveRuleCommand)
96-
.build() {}
96+
.build() {
97+
/** @internal type navigation helper, not in runtime. */
98+
protected declare static __types: {
99+
api: {
100+
input: ApplyArchiveRuleRequest;
101+
output: {};
102+
};
103+
sdk: {
104+
input: ApplyArchiveRuleCommandInput;
105+
output: ApplyArchiveRuleCommandOutput;
106+
};
107+
};
108+
}

clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,16 @@ export class CancelPolicyGenerationCommand extends $Command
8787
.f(void 0, void 0)
8888
.ser(se_CancelPolicyGenerationCommand)
8989
.de(de_CancelPolicyGenerationCommand)
90-
.build() {}
90+
.build() {
91+
/** @internal type navigation helper, not in runtime. */
92+
protected declare static __types: {
93+
api: {
94+
input: CancelPolicyGenerationRequest;
95+
output: {};
96+
};
97+
sdk: {
98+
input: CancelPolicyGenerationCommandInput;
99+
output: CancelPolicyGenerationCommandOutput;
100+
};
101+
};
102+
}

clients/client-accessanalyzer/src/commands/CheckAccessNotGrantedCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,16 @@ export class CheckAccessNotGrantedCommand extends $Command
200200
.f(CheckAccessNotGrantedRequestFilterSensitiveLog, void 0)
201201
.ser(se_CheckAccessNotGrantedCommand)
202202
.de(de_CheckAccessNotGrantedCommand)
203-
.build() {}
203+
.build() {
204+
/** @internal type navigation helper, not in runtime. */
205+
protected declare static __types: {
206+
api: {
207+
input: CheckAccessNotGrantedRequest;
208+
output: CheckAccessNotGrantedResponse;
209+
};
210+
sdk: {
211+
input: CheckAccessNotGrantedCommandInput;
212+
output: CheckAccessNotGrantedCommandOutput;
213+
};
214+
};
215+
}

clients/client-accessanalyzer/src/commands/CheckNoNewAccessCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,16 @@ export class CheckNoNewAccessCommand extends $Command
114114
.f(CheckNoNewAccessRequestFilterSensitiveLog, void 0)
115115
.ser(se_CheckNoNewAccessCommand)
116116
.de(de_CheckNoNewAccessCommand)
117-
.build() {}
117+
.build() {
118+
/** @internal type navigation helper, not in runtime. */
119+
protected declare static __types: {
120+
api: {
121+
input: CheckNoNewAccessRequest;
122+
output: CheckNoNewAccessResponse;
123+
};
124+
sdk: {
125+
input: CheckNoNewAccessCommandInput;
126+
output: CheckNoNewAccessCommandOutput;
127+
};
128+
};
129+
}

clients/client-accessanalyzer/src/commands/CheckNoPublicAccessCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,16 @@ export class CheckNoPublicAccessCommand extends $Command
152152
.f(CheckNoPublicAccessRequestFilterSensitiveLog, void 0)
153153
.ser(se_CheckNoPublicAccessCommand)
154154
.de(de_CheckNoPublicAccessCommand)
155-
.build() {}
155+
.build() {
156+
/** @internal type navigation helper, not in runtime. */
157+
protected declare static __types: {
158+
api: {
159+
input: CheckNoPublicAccessRequest;
160+
output: CheckNoPublicAccessResponse;
161+
};
162+
sdk: {
163+
input: CheckNoPublicAccessCommandInput;
164+
output: CheckNoPublicAccessCommandOutput;
165+
};
166+
};
167+
}

clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -215,4 +215,16 @@ export class CreateAccessPreviewCommand extends $Command
215215
.f(void 0, void 0)
216216
.ser(se_CreateAccessPreviewCommand)
217217
.de(de_CreateAccessPreviewCommand)
218-
.build() {}
218+
.build() {
219+
/** @internal type navigation helper, not in runtime. */
220+
protected declare static __types: {
221+
api: {
222+
input: CreateAccessPreviewRequest;
223+
output: CreateAccessPreviewResponse;
224+
};
225+
sdk: {
226+
input: CreateAccessPreviewCommandInput;
227+
output: CreateAccessPreviewCommandOutput;
228+
};
229+
};
230+
}

clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,16 @@ export class CreateAnalyzerCommand extends $Command
124124
.f(void 0, void 0)
125125
.ser(se_CreateAnalyzerCommand)
126126
.de(de_CreateAnalyzerCommand)
127-
.build() {}
127+
.build() {
128+
/** @internal type navigation helper, not in runtime. */
129+
protected declare static __types: {
130+
api: {
131+
input: CreateAnalyzerRequest;
132+
output: CreateAnalyzerResponse;
133+
};
134+
sdk: {
135+
input: CreateAnalyzerCommandInput;
136+
output: CreateAnalyzerCommandOutput;
137+
};
138+
};
139+
}

clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,16 @@ export class CreateArchiveRuleCommand extends $Command
114114
.f(void 0, void 0)
115115
.ser(se_CreateArchiveRuleCommand)
116116
.de(de_CreateArchiveRuleCommand)
117-
.build() {}
117+
.build() {
118+
/** @internal type navigation helper, not in runtime. */
119+
protected declare static __types: {
120+
api: {
121+
input: CreateArchiveRuleRequest;
122+
output: {};
123+
};
124+
sdk: {
125+
input: CreateArchiveRuleCommandInput;
126+
output: CreateArchiveRuleCommandOutput;
127+
};
128+
};
129+
}

clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,16 @@ export class DeleteAnalyzerCommand extends $Command
9393
.f(void 0, void 0)
9494
.ser(se_DeleteAnalyzerCommand)
9595
.de(de_DeleteAnalyzerCommand)
96-
.build() {}
96+
.build() {
97+
/** @internal type navigation helper, not in runtime. */
98+
protected declare static __types: {
99+
api: {
100+
input: DeleteAnalyzerRequest;
101+
output: {};
102+
};
103+
sdk: {
104+
input: DeleteAnalyzerCommandInput;
105+
output: DeleteAnalyzerCommandOutput;
106+
};
107+
};
108+
}

clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,16 @@ export class DeleteArchiveRuleCommand extends $Command
9292
.f(void 0, void 0)
9393
.ser(se_DeleteArchiveRuleCommand)
9494
.de(de_DeleteArchiveRuleCommand)
95-
.build() {}
95+
.build() {
96+
/** @internal type navigation helper, not in runtime. */
97+
protected declare static __types: {
98+
api: {
99+
input: DeleteArchiveRuleRequest;
100+
output: {};
101+
};
102+
sdk: {
103+
input: DeleteArchiveRuleCommandInput;
104+
output: DeleteArchiveRuleCommandOutput;
105+
};
106+
};
107+
}

clients/client-accessanalyzer/src/commands/GenerateFindingRecommendationCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,16 @@ export class GenerateFindingRecommendationCommand extends $Command
115115
.f(void 0, void 0)
116116
.ser(se_GenerateFindingRecommendationCommand)
117117
.de(de_GenerateFindingRecommendationCommand)
118-
.build() {}
118+
.build() {
119+
/** @internal type navigation helper, not in runtime. */
120+
protected declare static __types: {
121+
api: {
122+
input: GenerateFindingRecommendationRequest;
123+
output: {};
124+
};
125+
sdk: {
126+
input: GenerateFindingRecommendationCommandInput;
127+
output: GenerateFindingRecommendationCommandOutput;
128+
};
129+
};
130+
}

clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -216,4 +216,16 @@ export class GetAccessPreviewCommand extends $Command
216216
.f(void 0, void 0)
217217
.ser(se_GetAccessPreviewCommand)
218218
.de(de_GetAccessPreviewCommand)
219-
.build() {}
219+
.build() {
220+
/** @internal type navigation helper, not in runtime. */
221+
protected declare static __types: {
222+
api: {
223+
input: GetAccessPreviewRequest;
224+
output: GetAccessPreviewResponse;
225+
};
226+
sdk: {
227+
input: GetAccessPreviewCommandInput;
228+
output: GetAccessPreviewCommandOutput;
229+
};
230+
};
231+
}

clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,16 @@ export class GetAnalyzedResourceCommand extends $Command
109109
.f(void 0, void 0)
110110
.ser(se_GetAnalyzedResourceCommand)
111111
.de(de_GetAnalyzedResourceCommand)
112-
.build() {}
112+
.build() {
113+
/** @internal type navigation helper, not in runtime. */
114+
protected declare static __types: {
115+
api: {
116+
input: GetAnalyzedResourceRequest;
117+
output: GetAnalyzedResourceResponse;
118+
};
119+
sdk: {
120+
input: GetAnalyzedResourceCommandInput;
121+
output: GetAnalyzedResourceCommandOutput;
122+
};
123+
};
124+
}

clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,16 @@ export class GetAnalyzerCommand extends $Command
111111
.f(void 0, void 0)
112112
.ser(se_GetAnalyzerCommand)
113113
.de(de_GetAnalyzerCommand)
114-
.build() {}
114+
.build() {
115+
/** @internal type navigation helper, not in runtime. */
116+
protected declare static __types: {
117+
api: {
118+
input: GetAnalyzerRequest;
119+
output: GetAnalyzerResponse;
120+
};
121+
sdk: {
122+
input: GetAnalyzerCommandInput;
123+
output: GetAnalyzerCommandOutput;
124+
};
125+
};
126+
}

clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,16 @@ export class GetArchiveRuleCommand extends $Command
112112
.f(void 0, void 0)
113113
.ser(se_GetArchiveRuleCommand)
114114
.de(de_GetArchiveRuleCommand)
115-
.build() {}
115+
.build() {
116+
/** @internal type navigation helper, not in runtime. */
117+
protected declare static __types: {
118+
api: {
119+
input: GetArchiveRuleRequest;
120+
output: GetArchiveRuleResponse;
121+
};
122+
sdk: {
123+
input: GetArchiveRuleCommandInput;
124+
output: GetArchiveRuleCommandOutput;
125+
};
126+
};
127+
}

clients/client-accessanalyzer/src/commands/GetFindingCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,16 @@ export class GetFindingCommand extends $Command
125125
.f(void 0, void 0)
126126
.ser(se_GetFindingCommand)
127127
.de(de_GetFindingCommand)
128-
.build() {}
128+
.build() {
129+
/** @internal type navigation helper, not in runtime. */
130+
protected declare static __types: {
131+
api: {
132+
input: GetFindingRequest;
133+
output: GetFindingResponse;
134+
};
135+
sdk: {
136+
input: GetFindingCommandInput;
137+
output: GetFindingCommandOutput;
138+
};
139+
};
140+
}

clients/client-accessanalyzer/src/commands/GetFindingRecommendationCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -211,4 +211,16 @@ export class GetFindingRecommendationCommand extends $Command
211211
.f(void 0, void 0)
212212
.ser(se_GetFindingRecommendationCommand)
213213
.de(de_GetFindingRecommendationCommand)
214-
.build() {}
214+
.build() {
215+
/** @internal type navigation helper, not in runtime. */
216+
protected declare static __types: {
217+
api: {
218+
input: GetFindingRecommendationRequest;
219+
output: GetFindingRecommendationResponse;
220+
};
221+
sdk: {
222+
input: GetFindingRecommendationCommandInput;
223+
output: GetFindingRecommendationCommandOutput;
224+
};
225+
};
226+
}

clients/client-accessanalyzer/src/commands/GetFindingV2Command.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -153,4 +153,16 @@ export class GetFindingV2Command extends $Command
153153
.f(void 0, void 0)
154154
.ser(se_GetFindingV2Command)
155155
.de(de_GetFindingV2Command)
156-
.build() {}
156+
.build() {
157+
/** @internal type navigation helper, not in runtime. */
158+
protected declare static __types: {
159+
api: {
160+
input: GetFindingV2Request;
161+
output: GetFindingV2Response;
162+
};
163+
sdk: {
164+
input: GetFindingV2CommandInput;
165+
output: GetFindingV2CommandOutput;
166+
};
167+
};
168+
}

clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,16 @@ export class GetGeneratedPolicyCommand extends $Command
125125
.f(void 0, void 0)
126126
.ser(se_GetGeneratedPolicyCommand)
127127
.de(de_GetGeneratedPolicyCommand)
128-
.build() {}
128+
.build() {
129+
/** @internal type navigation helper, not in runtime. */
130+
protected declare static __types: {
131+
api: {
132+
input: GetGeneratedPolicyRequest;
133+
output: GetGeneratedPolicyResponse;
134+
};
135+
sdk: {
136+
input: GetGeneratedPolicyCommandInput;
137+
output: GetGeneratedPolicyCommandOutput;
138+
};
139+
};
140+
}

0 commit comments

Comments
 (0)