Skip to content

Commit

Permalink
fix(client-s3-control): populate memberName as contextParams value (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Aug 12, 2024
1 parent 31e78b5 commit 7867ee1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
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" },
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

0 comments on commit 7867ee1

Please sign in to comment.