From 5dd1089506c0a28ea6235166c6caac6ca04b0655 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Wed, 14 Dec 2022 00:26:25 +0000 Subject: [PATCH] fix(client-s3-control): add staticContextParams in endpoint param instructions --- .../client-s3-control/src/commands/CreateAccessPointCommand.ts | 1 + .../src/commands/CreateAccessPointForObjectLambdaCommand.ts | 1 + clients/client-s3-control/src/commands/CreateJobCommand.ts | 1 + .../src/commands/CreateMultiRegionAccessPointCommand.ts | 1 + .../client-s3-control/src/commands/DeleteAccessPointCommand.ts | 1 + .../src/commands/DeleteAccessPointForObjectLambdaCommand.ts | 1 + .../src/commands/DeleteAccessPointPolicyCommand.ts | 1 + .../commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts | 1 + clients/client-s3-control/src/commands/DeleteBucketCommand.ts | 1 + .../src/commands/DeleteBucketLifecycleConfigurationCommand.ts | 1 + .../client-s3-control/src/commands/DeleteBucketPolicyCommand.ts | 1 + .../client-s3-control/src/commands/DeleteBucketTaggingCommand.ts | 1 + .../client-s3-control/src/commands/DeleteJobTaggingCommand.ts | 1 + .../src/commands/DeleteMultiRegionAccessPointCommand.ts | 1 + .../src/commands/DeletePublicAccessBlockCommand.ts | 1 + .../src/commands/DeleteStorageLensConfigurationCommand.ts | 1 + .../src/commands/DeleteStorageLensConfigurationTaggingCommand.ts | 1 + clients/client-s3-control/src/commands/DescribeJobCommand.ts | 1 + .../commands/DescribeMultiRegionAccessPointOperationCommand.ts | 1 + clients/client-s3-control/src/commands/GetAccessPointCommand.ts | 1 + .../GetAccessPointConfigurationForObjectLambdaCommand.ts | 1 + .../src/commands/GetAccessPointForObjectLambdaCommand.ts | 1 + .../src/commands/GetAccessPointPolicyCommand.ts | 1 + .../src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts | 1 + .../src/commands/GetAccessPointPolicyStatusCommand.ts | 1 + .../commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts | 1 + clients/client-s3-control/src/commands/GetBucketCommand.ts | 1 + .../src/commands/GetBucketLifecycleConfigurationCommand.ts | 1 + clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts | 1 + .../client-s3-control/src/commands/GetBucketTaggingCommand.ts | 1 + clients/client-s3-control/src/commands/GetJobTaggingCommand.ts | 1 + .../src/commands/GetMultiRegionAccessPointCommand.ts | 1 + .../src/commands/GetMultiRegionAccessPointPolicyCommand.ts | 1 + .../src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts | 1 + .../src/commands/GetMultiRegionAccessPointRoutesCommand.ts | 1 + .../src/commands/GetPublicAccessBlockCommand.ts | 1 + .../src/commands/GetStorageLensConfigurationCommand.ts | 1 + .../src/commands/GetStorageLensConfigurationTaggingCommand.ts | 1 + .../client-s3-control/src/commands/ListAccessPointsCommand.ts | 1 + .../src/commands/ListAccessPointsForObjectLambdaCommand.ts | 1 + clients/client-s3-control/src/commands/ListJobsCommand.ts | 1 + .../src/commands/ListMultiRegionAccessPointsCommand.ts | 1 + .../client-s3-control/src/commands/ListRegionalBucketsCommand.ts | 1 + .../src/commands/ListStorageLensConfigurationsCommand.ts | 1 + .../PutAccessPointConfigurationForObjectLambdaCommand.ts | 1 + .../src/commands/PutAccessPointPolicyCommand.ts | 1 + .../src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts | 1 + .../src/commands/PutBucketLifecycleConfigurationCommand.ts | 1 + clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts | 1 + .../client-s3-control/src/commands/PutBucketTaggingCommand.ts | 1 + clients/client-s3-control/src/commands/PutJobTaggingCommand.ts | 1 + .../src/commands/PutMultiRegionAccessPointPolicyCommand.ts | 1 + .../src/commands/PutPublicAccessBlockCommand.ts | 1 + .../src/commands/PutStorageLensConfigurationCommand.ts | 1 + .../src/commands/PutStorageLensConfigurationTaggingCommand.ts | 1 + .../src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts | 1 + .../client-s3-control/src/commands/UpdateJobPriorityCommand.ts | 1 + clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts | 1 + 58 files changed, 58 insertions(+) diff --git a/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts b/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts index 1dbce534b89c..c8dded083f04 100644 --- a/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts @@ -86,6 +86,7 @@ export class CreateAccessPointCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts index 5b7034ec6ce8..3e2493f1b416 100644 --- a/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts @@ -78,6 +78,7 @@ export class CreateAccessPointForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/CreateJobCommand.ts b/clients/client-s3-control/src/commands/CreateJobCommand.ts index 8afb7d7fb905..ba97a9714b8d 100644 --- a/clients/client-s3-control/src/commands/CreateJobCommand.ts +++ b/clients/client-s3-control/src/commands/CreateJobCommand.ts @@ -85,6 +85,7 @@ export class CreateJobCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts b/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts index 73834492e683..d9a6248d59e7 100644 --- a/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts @@ -91,6 +91,7 @@ export class CreateMultiRegionAccessPointCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts index a6c9823713f0..46ba248ba2a2 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts @@ -71,6 +71,7 @@ export class DeleteAccessPointCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccessPointName: { type: "contextParams", name: "AccessPointName" }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts index 404960a94c45..7eaae066d0be 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts @@ -73,6 +73,7 @@ export class DeleteAccessPointForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts index 9f6f1a0b8033..bdc884617146 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts @@ -66,6 +66,7 @@ export class DeleteAccessPointPolicyCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccessPointName: { type: "contextParams", name: "AccessPointName" }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts index 60bbba5a5740..dc47e042fdc1 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts @@ -69,6 +69,7 @@ export class DeleteAccessPointPolicyForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/DeleteBucketCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketCommand.ts index a09706671600..6838acfcbb77 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketCommand.ts @@ -78,6 +78,7 @@ export class DeleteBucketCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts index aa858d49ac0d..82908f8f1dcb 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts @@ -83,6 +83,7 @@ export class DeleteBucketLifecycleConfigurationCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts index c40f5bbc7f31..2fba3cf730a4 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts @@ -92,6 +92,7 @@ export class DeleteBucketPolicyCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts index 8fbb18dba0c1..404a4137fdb9 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts @@ -76,6 +76,7 @@ export class DeleteBucketTaggingCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts b/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts index c239c8e4cc6a..20875ef0320d 100644 --- a/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts @@ -79,6 +79,7 @@ export class DeleteJobTaggingCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts b/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts index d371c8edf731..f11dbb8b6fd8 100644 --- a/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts @@ -90,6 +90,7 @@ export class DeleteMultiRegionAccessPointCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts b/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts index 415cf2071072..51114693ea0a 100644 --- a/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts +++ b/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts @@ -66,6 +66,7 @@ export class DeletePublicAccessBlockCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts index b3c6b5b99170..0d5137148b55 100644 --- a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts @@ -62,6 +62,7 @@ export class DeleteStorageLensConfigurationCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts index 83d90623b77b..4574cb6fc672 100644 --- a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts @@ -68,6 +68,7 @@ export class DeleteStorageLensConfigurationTaggingCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/DescribeJobCommand.ts b/clients/client-s3-control/src/commands/DescribeJobCommand.ts index e4d1b012c256..cb38bcc8b6e7 100644 --- a/clients/client-s3-control/src/commands/DescribeJobCommand.ts +++ b/clients/client-s3-control/src/commands/DescribeJobCommand.ts @@ -81,6 +81,7 @@ export class DescribeJobCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts b/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts index 6f884e53459f..fab577f42744 100644 --- a/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts +++ b/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts @@ -85,6 +85,7 @@ export class DescribeMultiRegionAccessPointOperationCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetAccessPointCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointCommand.ts index 5800d8f64574..e0de9874565a 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointCommand.ts @@ -77,6 +77,7 @@ export class GetAccessPointCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccessPointName: { type: "contextParams", name: "AccessPointName" }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts index a1acf3bc05e0..d4b78bb0efeb 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts @@ -68,6 +68,7 @@ export class GetAccessPointConfigurationForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts index 571582bef22a..e4d54f90ad84 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts @@ -76,6 +76,7 @@ export class GetAccessPointForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts index 7be32ae819d5..639134003e1f 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts @@ -69,6 +69,7 @@ export class GetAccessPointPolicyCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccessPointName: { type: "contextParams", name: "AccessPointName" }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts index da1eb7cc3a30..5e2443620ade 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts @@ -72,6 +72,7 @@ export class GetAccessPointPolicyForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts index 4eba34299909..46a7b5174dcb 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts @@ -58,6 +58,7 @@ export class GetAccessPointPolicyStatusCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccessPointName: { type: "contextParams", name: "AccessPointName" }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts index 8e7d8a21b4c2..0a38b4465443 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts @@ -59,6 +59,7 @@ export class GetAccessPointPolicyStatusForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetBucketCommand.ts b/clients/client-s3-control/src/commands/GetBucketCommand.ts index 5ba7f48a0529..d523c6597758 100644 --- a/clients/client-s3-control/src/commands/GetBucketCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketCommand.ts @@ -81,6 +81,7 @@ export class GetBucketCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts b/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts index dae99c6b4d35..04f21de9807b 100644 --- a/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts @@ -108,6 +108,7 @@ export class GetBucketLifecycleConfigurationCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts b/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts index 1af74785afb8..829c6db886bc 100644 --- a/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts @@ -101,6 +101,7 @@ export class GetBucketPolicyCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts b/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts index 3516f9d55153..907905c40fa7 100644 --- a/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts @@ -94,6 +94,7 @@ export class GetBucketTaggingCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts b/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts index a4080eae2b4f..dfdebaa751c2 100644 --- a/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts @@ -79,6 +79,7 @@ export class GetJobTaggingCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts index 95690b886adc..e096bad586e2 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts @@ -83,6 +83,7 @@ export class GetMultiRegionAccessPointCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts index f3e94d8aa08e..20cd4ff2b0e4 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts @@ -76,6 +76,7 @@ export class GetMultiRegionAccessPointPolicyCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts index 6553bdc88736..5a18e0b8d809 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts @@ -78,6 +78,7 @@ export class GetMultiRegionAccessPointPolicyStatusCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts index a3cb392f6f77..aef794479c0d 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts @@ -92,6 +92,7 @@ export class GetMultiRegionAccessPointRoutesCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts b/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts index 3da59b962a7c..5f96cdbb0cfa 100644 --- a/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts +++ b/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts @@ -71,6 +71,7 @@ export class GetPublicAccessBlockCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts b/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts index f6fda986efbb..622af51d8f4e 100644 --- a/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts @@ -63,6 +63,7 @@ export class GetStorageLensConfigurationCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts b/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts index da6d492bf5ee..af66ca599eea 100644 --- a/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts @@ -67,6 +67,7 @@ export class GetStorageLensConfigurationTaggingCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts b/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts index 5eb9dba6ff33..7c14f17546b6 100644 --- a/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts @@ -79,6 +79,7 @@ export class ListAccessPointsCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts index 47c93c9a4765..a3adf8d5d1f5 100644 --- a/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts @@ -79,6 +79,7 @@ export class ListAccessPointsForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/ListJobsCommand.ts b/clients/client-s3-control/src/commands/ListJobsCommand.ts index 88a316635d67..db5821350aaf 100644 --- a/clients/client-s3-control/src/commands/ListJobsCommand.ts +++ b/clients/client-s3-control/src/commands/ListJobsCommand.ts @@ -79,6 +79,7 @@ export class ListJobsCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts b/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts index d1f5b63333bc..4b2c323b6b40 100644 --- a/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts +++ b/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts @@ -85,6 +85,7 @@ export class ListMultiRegionAccessPointsCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts b/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts index a0626978a2da..743efd860af2 100644 --- a/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts +++ b/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts @@ -60,6 +60,7 @@ export class ListRegionalBucketsCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, OutpostId: { type: "contextParams", name: "OutpostId" }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts b/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts index 840d8423644d..b401d4e55ddd 100644 --- a/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts +++ b/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts @@ -67,6 +67,7 @@ export class ListStorageLensConfigurationsCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts index 7b88b4ecbe7e..21681a768403 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts @@ -64,6 +64,7 @@ export class PutAccessPointConfigurationForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts index eaf01b15cf5d..5dfecc886020 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts @@ -68,6 +68,7 @@ export class PutAccessPointPolicyCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccessPointName: { type: "contextParams", name: "AccessPointName" }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts index 8a5348c1ffb7..c2ff41c1d47f 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts @@ -68,6 +68,7 @@ export class PutAccessPointPolicyForObjectLambdaCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts b/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts index 325afae5d89c..d724e63a3d10 100644 --- a/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts @@ -79,6 +79,7 @@ export class PutBucketLifecycleConfigurationCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts b/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts index f51cb49b9b98..cfd6d6d2b729 100644 --- a/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts @@ -93,6 +93,7 @@ export class PutBucketPolicyCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts b/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts index bb23db423e26..9e12d0648e94 100644 --- a/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts @@ -137,6 +137,7 @@ export class PutBucketTaggingCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, Bucket: { type: "contextParams", name: "Bucket" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, diff --git a/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts b/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts index 423f3d668b43..2f7a53bff0bf 100644 --- a/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts @@ -120,6 +120,7 @@ export class PutJobTaggingCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts index ae33a2230021..6a25f0988bdd 100644 --- a/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts @@ -78,6 +78,7 @@ export class PutMultiRegionAccessPointPolicyCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts b/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts index e412bdc4dd3b..2cfe5c65d65a 100644 --- a/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts +++ b/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts @@ -67,6 +67,7 @@ export class PutPublicAccessBlockCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts b/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts index 121a8ae6924f..0b6d73b70f8c 100644 --- a/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts @@ -60,6 +60,7 @@ export class PutStorageLensConfigurationCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts b/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts index 7fad877f8956..6a0a577db6a3 100644 --- a/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts @@ -66,6 +66,7 @@ export class PutStorageLensConfigurationTaggingCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts b/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts index bd30465c8e89..49fdcd16fa34 100644 --- a/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts +++ b/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts @@ -105,6 +105,7 @@ export class SubmitMultiRegionAccessPointRoutesCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts b/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts index c533edad42eb..b51ec8c6cabf 100644 --- a/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts @@ -80,6 +80,7 @@ export class UpdateJobPriorityCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, diff --git a/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts b/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts index 300d2f4079fb..2b261c672121 100644 --- a/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts @@ -81,6 +81,7 @@ export class UpdateJobStatusCommand extends $Command< public static getEndpointParameterInstructions(): EndpointParameterInstructions { return { + RequiresAccountId: { type: "staticContextParams", value: true }, AccountId: { type: "contextParams", name: "AccountId" }, UseArnRegion: { type: "clientContextParams", name: "useArnRegion" }, UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },