Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(client-s3-control): populate memberName as contextParams value #6376

Merged
merged 2 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class DeleteAccessPointCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
trivikr marked this conversation as resolved.
Show resolved Hide resolved
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class DeleteAccessPointPolicyCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export class GetAccessPointCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class GetAccessPointPolicyCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class GetAccessPointPolicyStatusCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class PutAccessPointPolicyCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate-clients/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Update this commit when taking up new changes from smithy-typescript.
module.exports = {
// Use full commit hash as we explicitly fetch it.
SMITHY_TS_COMMIT: "7d4691ca45a17efbdfba4afb0a31b48edbf8ba60",
SMITHY_TS_COMMIT: "fa63800730b1a7a59e231965941d2006dc031662",
};

if (module.exports.SMITHY_TS_COMMIT.length < 40) {
Expand Down
Loading