@aws-sdk/client-s3-control 3.52.0 → 3.53.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.
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./S3ControlClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { S3ControlServiceException } from "./models/S3ControlServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var S3ControlServiceException = (function (_super) {
4
+ __extends(S3ControlServiceException, _super);
5
+ function S3ControlServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, S3ControlServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return S3ControlServiceException;
11
+ }(__ServiceException));
12
+ export { S3ControlServiceException };
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { S3ControlServiceException as __BaseException } from "./S3ControlServiceException";
2
3
  export var AbortIncompleteMultipartUpload;
3
4
  (function (AbortIncompleteMultipartUpload) {
4
5
  AbortIncompleteMultipartUpload.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -148,6 +149,30 @@ export var CreateAccessPointForObjectLambdaResult;
148
149
  (function (CreateAccessPointForObjectLambdaResult) {
149
150
  CreateAccessPointForObjectLambdaResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
150
151
  })(CreateAccessPointForObjectLambdaResult || (CreateAccessPointForObjectLambdaResult = {}));
152
+ var BucketAlreadyExists = (function (_super) {
153
+ __extends(BucketAlreadyExists, _super);
154
+ function BucketAlreadyExists(opts) {
155
+ var _this = _super.call(this, __assign({ name: "BucketAlreadyExists", $fault: "client" }, opts)) || this;
156
+ _this.name = "BucketAlreadyExists";
157
+ _this.$fault = "client";
158
+ Object.setPrototypeOf(_this, BucketAlreadyExists.prototype);
159
+ return _this;
160
+ }
161
+ return BucketAlreadyExists;
162
+ }(__BaseException));
163
+ export { BucketAlreadyExists };
164
+ var BucketAlreadyOwnedByYou = (function (_super) {
165
+ __extends(BucketAlreadyOwnedByYou, _super);
166
+ function BucketAlreadyOwnedByYou(opts) {
167
+ var _this = _super.call(this, __assign({ name: "BucketAlreadyOwnedByYou", $fault: "client" }, opts)) || this;
168
+ _this.name = "BucketAlreadyOwnedByYou";
169
+ _this.$fault = "client";
170
+ Object.setPrototypeOf(_this, BucketAlreadyOwnedByYou.prototype);
171
+ return _this;
172
+ }
173
+ return BucketAlreadyOwnedByYou;
174
+ }(__BaseException));
175
+ export { BucketAlreadyOwnedByYou };
151
176
  export var CreateBucketConfiguration;
152
177
  (function (CreateBucketConfiguration) {
153
178
  CreateBucketConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -160,6 +185,19 @@ export var CreateBucketResult;
160
185
  (function (CreateBucketResult) {
161
186
  CreateBucketResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
162
187
  })(CreateBucketResult || (CreateBucketResult = {}));
188
+ var BadRequestException = (function (_super) {
189
+ __extends(BadRequestException, _super);
190
+ function BadRequestException(opts) {
191
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
192
+ _this.name = "BadRequestException";
193
+ _this.$fault = "client";
194
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
195
+ _this.Message = opts.Message;
196
+ return _this;
197
+ }
198
+ return BadRequestException;
199
+ }(__BaseException));
200
+ export { BadRequestException };
163
201
  export var JobManifestLocation;
164
202
  (function (JobManifestLocation) {
165
203
  JobManifestLocation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -299,6 +337,13 @@ export var S3SetObjectAclOperation;
299
337
  (function (S3SetObjectAclOperation) {
300
338
  S3SetObjectAclOperation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
339
  })(S3SetObjectAclOperation || (S3SetObjectAclOperation = {}));
340
+ export var S3ChecksumAlgorithm;
341
+ (function (S3ChecksumAlgorithm) {
342
+ S3ChecksumAlgorithm["CRC32"] = "CRC32";
343
+ S3ChecksumAlgorithm["CRC32C"] = "CRC32C";
344
+ S3ChecksumAlgorithm["SHA1"] = "SHA1";
345
+ S3ChecksumAlgorithm["SHA256"] = "SHA256";
346
+ })(S3ChecksumAlgorithm || (S3ChecksumAlgorithm = {}));
302
347
  export var S3MetadataDirective;
303
348
  (function (S3MetadataDirective) {
304
349
  S3MetadataDirective["COPY"] = "COPY";
@@ -395,6 +440,45 @@ export var CreateJobResult;
395
440
  (function (CreateJobResult) {
396
441
  CreateJobResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
397
442
  })(CreateJobResult || (CreateJobResult = {}));
443
+ var IdempotencyException = (function (_super) {
444
+ __extends(IdempotencyException, _super);
445
+ function IdempotencyException(opts) {
446
+ var _this = _super.call(this, __assign({ name: "IdempotencyException", $fault: "client" }, opts)) || this;
447
+ _this.name = "IdempotencyException";
448
+ _this.$fault = "client";
449
+ Object.setPrototypeOf(_this, IdempotencyException.prototype);
450
+ _this.Message = opts.Message;
451
+ return _this;
452
+ }
453
+ return IdempotencyException;
454
+ }(__BaseException));
455
+ export { IdempotencyException };
456
+ var InternalServiceException = (function (_super) {
457
+ __extends(InternalServiceException, _super);
458
+ function InternalServiceException(opts) {
459
+ var _this = _super.call(this, __assign({ name: "InternalServiceException", $fault: "server" }, opts)) || this;
460
+ _this.name = "InternalServiceException";
461
+ _this.$fault = "server";
462
+ Object.setPrototypeOf(_this, InternalServiceException.prototype);
463
+ _this.Message = opts.Message;
464
+ return _this;
465
+ }
466
+ return InternalServiceException;
467
+ }(__BaseException));
468
+ export { InternalServiceException };
469
+ var TooManyRequestsException = (function (_super) {
470
+ __extends(TooManyRequestsException, _super);
471
+ function TooManyRequestsException(opts) {
472
+ var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
473
+ _this.name = "TooManyRequestsException";
474
+ _this.$fault = "client";
475
+ Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
476
+ _this.Message = opts.Message;
477
+ return _this;
478
+ }
479
+ return TooManyRequestsException;
480
+ }(__BaseException));
481
+ export { TooManyRequestsException };
398
482
  export var CreateMultiRegionAccessPointRequest;
399
483
  (function (CreateMultiRegionAccessPointRequest) {
400
484
  CreateMultiRegionAccessPointRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -443,6 +527,19 @@ export var DeleteJobTaggingResult;
443
527
  (function (DeleteJobTaggingResult) {
444
528
  DeleteJobTaggingResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
445
529
  })(DeleteJobTaggingResult || (DeleteJobTaggingResult = {}));
530
+ var NotFoundException = (function (_super) {
531
+ __extends(NotFoundException, _super);
532
+ function NotFoundException(opts) {
533
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
534
+ _this.name = "NotFoundException";
535
+ _this.$fault = "client";
536
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
537
+ _this.Message = opts.Message;
538
+ return _this;
539
+ }
540
+ return NotFoundException;
541
+ }(__BaseException));
542
+ export { NotFoundException };
446
543
  export var DeleteMultiRegionAccessPointRequest;
447
544
  (function (DeleteMultiRegionAccessPointRequest) {
448
545
  DeleteMultiRegionAccessPointRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -708,6 +805,19 @@ export var GetPublicAccessBlockRequest;
708
805
  (function (GetPublicAccessBlockRequest) {
709
806
  GetPublicAccessBlockRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
710
807
  })(GetPublicAccessBlockRequest || (GetPublicAccessBlockRequest = {}));
808
+ var NoSuchPublicAccessBlockConfiguration = (function (_super) {
809
+ __extends(NoSuchPublicAccessBlockConfiguration, _super);
810
+ function NoSuchPublicAccessBlockConfiguration(opts) {
811
+ var _this = _super.call(this, __assign({ name: "NoSuchPublicAccessBlockConfiguration", $fault: "client" }, opts)) || this;
812
+ _this.name = "NoSuchPublicAccessBlockConfiguration";
813
+ _this.$fault = "client";
814
+ Object.setPrototypeOf(_this, NoSuchPublicAccessBlockConfiguration.prototype);
815
+ _this.Message = opts.Message;
816
+ return _this;
817
+ }
818
+ return NoSuchPublicAccessBlockConfiguration;
819
+ }(__BaseException));
820
+ export { NoSuchPublicAccessBlockConfiguration };
711
821
  export var GetStorageLensConfigurationRequest;
712
822
  (function (GetStorageLensConfigurationRequest) {
713
823
  GetStorageLensConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -788,6 +898,32 @@ export var ListAccessPointsForObjectLambdaResult;
788
898
  (function (ListAccessPointsForObjectLambdaResult) {
789
899
  ListAccessPointsForObjectLambdaResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
790
900
  })(ListAccessPointsForObjectLambdaResult || (ListAccessPointsForObjectLambdaResult = {}));
901
+ var InvalidNextTokenException = (function (_super) {
902
+ __extends(InvalidNextTokenException, _super);
903
+ function InvalidNextTokenException(opts) {
904
+ var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
905
+ _this.name = "InvalidNextTokenException";
906
+ _this.$fault = "client";
907
+ Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
908
+ _this.Message = opts.Message;
909
+ return _this;
910
+ }
911
+ return InvalidNextTokenException;
912
+ }(__BaseException));
913
+ export { InvalidNextTokenException };
914
+ var InvalidRequestException = (function (_super) {
915
+ __extends(InvalidRequestException, _super);
916
+ function InvalidRequestException(opts) {
917
+ var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
918
+ _this.name = "InvalidRequestException";
919
+ _this.$fault = "client";
920
+ Object.setPrototypeOf(_this, InvalidRequestException.prototype);
921
+ _this.Message = opts.Message;
922
+ return _this;
923
+ }
924
+ return InvalidRequestException;
925
+ }(__BaseException));
926
+ export { InvalidRequestException };
791
927
  export var ListJobsRequest;
792
928
  (function (ListJobsRequest) {
793
929
  ListJobsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -884,6 +1020,19 @@ export var PutJobTaggingResult;
884
1020
  (function (PutJobTaggingResult) {
885
1021
  PutJobTaggingResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
886
1022
  })(PutJobTaggingResult || (PutJobTaggingResult = {}));
1023
+ var TooManyTagsException = (function (_super) {
1024
+ __extends(TooManyTagsException, _super);
1025
+ function TooManyTagsException(opts) {
1026
+ var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
1027
+ _this.name = "TooManyTagsException";
1028
+ _this.$fault = "client";
1029
+ Object.setPrototypeOf(_this, TooManyTagsException.prototype);
1030
+ _this.Message = opts.Message;
1031
+ return _this;
1032
+ }
1033
+ return TooManyTagsException;
1034
+ }(__BaseException));
1035
+ export { TooManyTagsException };
887
1036
  export var PutMultiRegionAccessPointPolicyRequest;
888
1037
  (function (PutMultiRegionAccessPointPolicyRequest) {
889
1038
  PutMultiRegionAccessPointPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -916,6 +1065,19 @@ export var UpdateJobPriorityResult;
916
1065
  (function (UpdateJobPriorityResult) {
917
1066
  UpdateJobPriorityResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
918
1067
  })(UpdateJobPriorityResult || (UpdateJobPriorityResult = {}));
1068
+ var JobStatusException = (function (_super) {
1069
+ __extends(JobStatusException, _super);
1070
+ function JobStatusException(opts) {
1071
+ var _this = _super.call(this, __assign({ name: "JobStatusException", $fault: "client" }, opts)) || this;
1072
+ _this.name = "JobStatusException";
1073
+ _this.$fault = "client";
1074
+ Object.setPrototypeOf(_this, JobStatusException.prototype);
1075
+ _this.Message = opts.Message;
1076
+ return _this;
1077
+ }
1078
+ return JobStatusException;
1079
+ }(__BaseException));
1080
+ export { JobStatusException };
919
1081
  export var RequestedJobStatus;
920
1082
  (function (RequestedJobStatus) {
921
1083
  RequestedJobStatus["Cancelled"] = "Cancelled";