@aws-sdk/client-s3-control 3.218.0 → 3.221.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist-cjs/S3Control.js +30 -0
  2. package/dist-cjs/commands/GetMultiRegionAccessPointRoutesCommand.js +52 -0
  3. package/dist-cjs/commands/SubmitMultiRegionAccessPointRoutesCommand.js +52 -0
  4. package/dist-cjs/commands/index.js +2 -0
  5. package/dist-cjs/endpoint/ruleset.js +19 -19
  6. package/dist-cjs/models/models_0.js +22 -2
  7. package/dist-cjs/protocols/Aws_restXml.js +202 -9
  8. package/dist-es/S3Control.js +30 -0
  9. package/dist-es/commands/GetMultiRegionAccessPointRoutesCommand.js +48 -0
  10. package/dist-es/commands/SubmitMultiRegionAccessPointRoutesCommand.js +48 -0
  11. package/dist-es/commands/index.js +2 -0
  12. package/dist-es/endpoint/ruleset.js +19 -19
  13. package/dist-es/models/models_0.js +15 -0
  14. package/dist-es/protocols/Aws_restXml.js +195 -6
  15. package/dist-types/S3Control.d.ts +114 -17
  16. package/dist-types/S3ControlClient.d.ts +4 -2
  17. package/dist-types/commands/GetBucketVersioningCommand.d.ts +6 -5
  18. package/dist-types/commands/GetMultiRegionAccessPointRoutesCommand.d.ts +70 -0
  19. package/dist-types/commands/ListAccessPointsCommand.d.ts +1 -1
  20. package/dist-types/commands/PutBucketVersioningCommand.d.ts +14 -11
  21. package/dist-types/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +83 -0
  22. package/dist-types/commands/index.d.ts +2 -0
  23. package/dist-types/models/models_0.d.ts +128 -18
  24. package/dist-types/protocols/Aws_restXml.d.ts +6 -0
  25. package/dist-types/ts3.4/S3Control.d.ts +40 -0
  26. package/dist-types/ts3.4/S3ControlClient.d.ts +12 -0
  27. package/dist-types/ts3.4/commands/GetMultiRegionAccessPointRoutesCommand.d.ts +41 -0
  28. package/dist-types/ts3.4/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +41 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +37 -0
  31. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +24 -0
  32. package/package.json +1 -1
@@ -147,6 +147,10 @@ import {
147
147
  GetMultiRegionAccessPointPolicyStatusCommandInput,
148
148
  GetMultiRegionAccessPointPolicyStatusCommandOutput,
149
149
  } from "../commands/GetMultiRegionAccessPointPolicyStatusCommand";
150
+ import {
151
+ GetMultiRegionAccessPointRoutesCommandInput,
152
+ GetMultiRegionAccessPointRoutesCommandOutput,
153
+ } from "../commands/GetMultiRegionAccessPointRoutesCommand";
150
154
  import {
151
155
  GetPublicAccessBlockCommandInput,
152
156
  GetPublicAccessBlockCommandOutput,
@@ -231,6 +235,10 @@ import {
231
235
  PutStorageLensConfigurationTaggingCommandInput,
232
236
  PutStorageLensConfigurationTaggingCommandOutput,
233
237
  } from "../commands/PutStorageLensConfigurationTaggingCommand";
238
+ import {
239
+ SubmitMultiRegionAccessPointRoutesCommandInput,
240
+ SubmitMultiRegionAccessPointRoutesCommandOutput,
241
+ } from "../commands/SubmitMultiRegionAccessPointRoutesCommand";
234
242
  import {
235
243
  UpdateJobPriorityCommandInput,
236
244
  UpdateJobPriorityCommandOutput,
@@ -383,6 +391,10 @@ export declare const serializeAws_restXmlGetMultiRegionAccessPointPolicyStatusCo
383
391
  input: GetMultiRegionAccessPointPolicyStatusCommandInput,
384
392
  context: __SerdeContext
385
393
  ) => Promise<__HttpRequest>;
394
+ export declare const serializeAws_restXmlGetMultiRegionAccessPointRoutesCommand: (
395
+ input: GetMultiRegionAccessPointRoutesCommandInput,
396
+ context: __SerdeContext
397
+ ) => Promise<__HttpRequest>;
386
398
  export declare const serializeAws_restXmlGetPublicAccessBlockCommand: (
387
399
  input: GetPublicAccessBlockCommandInput,
388
400
  context: __SerdeContext
@@ -467,6 +479,10 @@ export declare const serializeAws_restXmlPutStorageLensConfigurationTaggingComma
467
479
  input: PutStorageLensConfigurationTaggingCommandInput,
468
480
  context: __SerdeContext
469
481
  ) => Promise<__HttpRequest>;
482
+ export declare const serializeAws_restXmlSubmitMultiRegionAccessPointRoutesCommand: (
483
+ input: SubmitMultiRegionAccessPointRoutesCommandInput,
484
+ context: __SerdeContext
485
+ ) => Promise<__HttpRequest>;
470
486
  export declare const serializeAws_restXmlUpdateJobPriorityCommand: (
471
487
  input: UpdateJobPriorityCommandInput,
472
488
  context: __SerdeContext
@@ -619,6 +635,10 @@ export declare const deserializeAws_restXmlGetMultiRegionAccessPointPolicyStatus
619
635
  output: __HttpResponse,
620
636
  context: __SerdeContext
621
637
  ) => Promise<GetMultiRegionAccessPointPolicyStatusCommandOutput>;
638
+ export declare const deserializeAws_restXmlGetMultiRegionAccessPointRoutesCommand: (
639
+ output: __HttpResponse,
640
+ context: __SerdeContext
641
+ ) => Promise<GetMultiRegionAccessPointRoutesCommandOutput>;
622
642
  export declare const deserializeAws_restXmlGetPublicAccessBlockCommand: (
623
643
  output: __HttpResponse,
624
644
  context: __SerdeContext
@@ -703,6 +723,10 @@ export declare const deserializeAws_restXmlPutStorageLensConfigurationTaggingCom
703
723
  output: __HttpResponse,
704
724
  context: __SerdeContext
705
725
  ) => Promise<PutStorageLensConfigurationTaggingCommandOutput>;
726
+ export declare const deserializeAws_restXmlSubmitMultiRegionAccessPointRoutesCommand: (
727
+ output: __HttpResponse,
728
+ context: __SerdeContext
729
+ ) => Promise<SubmitMultiRegionAccessPointRoutesCommandOutput>;
706
730
  export declare const deserializeAws_restXmlUpdateJobPriorityCommand: (
707
731
  output: __HttpResponse,
708
732
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3-control",
3
3
  "description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
4
- "version": "3.218.0",
4
+ "version": "3.221.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",