@aws-sdk/client-s3-control 3.721.0 → 3.726.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-cjs/index.js +471 -349
- package/dist-es/S3ControlClient.js +1 -0
- package/dist-es/models/models_0.js +28 -20
- package/dist-es/models/models_1.js +6 -4
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +49 -49
package/dist-cjs/index.js
CHANGED
|
@@ -294,7 +294,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
294
294
|
}, "resolveRuntimeExtensions");
|
|
295
295
|
|
|
296
296
|
// src/S3ControlClient.ts
|
|
297
|
-
var
|
|
297
|
+
var S3ControlClient = class extends import_smithy_client.Client {
|
|
298
|
+
static {
|
|
299
|
+
__name(this, "S3ControlClient");
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* The resolved configuration of S3ControlClient class. This is resolved and normalized from the {@link S3ControlClientConfig | constructor configuration interface}.
|
|
303
|
+
*/
|
|
304
|
+
config;
|
|
298
305
|
constructor(...[configuration]) {
|
|
299
306
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
300
307
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -305,7 +312,7 @@ var _S3ControlClient = class _S3ControlClient extends import_smithy_client.Clien
|
|
|
305
312
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
306
313
|
const _config_7 = (0, import_middleware_sdk_s3_control.resolveS3ControlConfig)(_config_6);
|
|
307
314
|
const _config_8 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_7);
|
|
308
|
-
const _config_9 = resolveRuntimeExtensions(_config_8,
|
|
315
|
+
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
309
316
|
super(_config_9);
|
|
310
317
|
this.config = _config_9;
|
|
311
318
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -334,8 +341,6 @@ var _S3ControlClient = class _S3ControlClient extends import_smithy_client.Clien
|
|
|
334
341
|
super.destroy();
|
|
335
342
|
}
|
|
336
343
|
};
|
|
337
|
-
__name(_S3ControlClient, "S3ControlClient");
|
|
338
|
-
var S3ControlClient = _S3ControlClient;
|
|
339
344
|
|
|
340
345
|
// src/S3Control.ts
|
|
341
346
|
|
|
@@ -360,7 +365,10 @@ var import_uuid = require("uuid");
|
|
|
360
365
|
|
|
361
366
|
// src/models/S3ControlServiceException.ts
|
|
362
367
|
|
|
363
|
-
var
|
|
368
|
+
var S3ControlServiceException = class _S3ControlServiceException extends import_smithy_client.ServiceException {
|
|
369
|
+
static {
|
|
370
|
+
__name(this, "S3ControlServiceException");
|
|
371
|
+
}
|
|
364
372
|
/**
|
|
365
373
|
* @internal
|
|
366
374
|
*/
|
|
@@ -369,8 +377,6 @@ var _S3ControlServiceException = class _S3ControlServiceException extends import
|
|
|
369
377
|
Object.setPrototypeOf(this, _S3ControlServiceException.prototype);
|
|
370
378
|
}
|
|
371
379
|
};
|
|
372
|
-
__name(_S3ControlServiceException, "S3ControlServiceException");
|
|
373
|
-
var S3ControlServiceException = _S3ControlServiceException;
|
|
374
380
|
|
|
375
381
|
// src/models/models_0.ts
|
|
376
382
|
var OwnerOverride = {
|
|
@@ -422,7 +428,12 @@ var ObjectLambdaAccessPointAliasStatus = {
|
|
|
422
428
|
PROVISIONING: "PROVISIONING",
|
|
423
429
|
READY: "READY"
|
|
424
430
|
};
|
|
425
|
-
var
|
|
431
|
+
var BucketAlreadyExists = class _BucketAlreadyExists extends S3ControlServiceException {
|
|
432
|
+
static {
|
|
433
|
+
__name(this, "BucketAlreadyExists");
|
|
434
|
+
}
|
|
435
|
+
name = "BucketAlreadyExists";
|
|
436
|
+
$fault = "client";
|
|
426
437
|
/**
|
|
427
438
|
* @internal
|
|
428
439
|
*/
|
|
@@ -432,14 +443,15 @@ var _BucketAlreadyExists = class _BucketAlreadyExists extends S3ControlServiceEx
|
|
|
432
443
|
$fault: "client",
|
|
433
444
|
...opts
|
|
434
445
|
});
|
|
435
|
-
this.name = "BucketAlreadyExists";
|
|
436
|
-
this.$fault = "client";
|
|
437
446
|
Object.setPrototypeOf(this, _BucketAlreadyExists.prototype);
|
|
438
447
|
}
|
|
439
448
|
};
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
449
|
+
var BucketAlreadyOwnedByYou = class _BucketAlreadyOwnedByYou extends S3ControlServiceException {
|
|
450
|
+
static {
|
|
451
|
+
__name(this, "BucketAlreadyOwnedByYou");
|
|
452
|
+
}
|
|
453
|
+
name = "BucketAlreadyOwnedByYou";
|
|
454
|
+
$fault = "client";
|
|
443
455
|
/**
|
|
444
456
|
* @internal
|
|
445
457
|
*/
|
|
@@ -449,13 +461,9 @@ var _BucketAlreadyOwnedByYou = class _BucketAlreadyOwnedByYou extends S3ControlS
|
|
|
449
461
|
$fault: "client",
|
|
450
462
|
...opts
|
|
451
463
|
});
|
|
452
|
-
this.name = "BucketAlreadyOwnedByYou";
|
|
453
|
-
this.$fault = "client";
|
|
454
464
|
Object.setPrototypeOf(this, _BucketAlreadyOwnedByYou.prototype);
|
|
455
465
|
}
|
|
456
466
|
};
|
|
457
|
-
__name(_BucketAlreadyOwnedByYou, "BucketAlreadyOwnedByYou");
|
|
458
|
-
var BucketAlreadyOwnedByYou = _BucketAlreadyOwnedByYou;
|
|
459
467
|
var BucketCannedACL = {
|
|
460
468
|
authenticated_read: "authenticated-read",
|
|
461
469
|
private: "private",
|
|
@@ -475,7 +483,13 @@ var BucketLocationConstraint = {
|
|
|
475
483
|
us_west_1: "us-west-1",
|
|
476
484
|
us_west_2: "us-west-2"
|
|
477
485
|
};
|
|
478
|
-
var
|
|
486
|
+
var BadRequestException = class _BadRequestException extends S3ControlServiceException {
|
|
487
|
+
static {
|
|
488
|
+
__name(this, "BadRequestException");
|
|
489
|
+
}
|
|
490
|
+
name = "BadRequestException";
|
|
491
|
+
$fault = "client";
|
|
492
|
+
Message;
|
|
479
493
|
/**
|
|
480
494
|
* @internal
|
|
481
495
|
*/
|
|
@@ -485,14 +499,10 @@ var _BadRequestException = class _BadRequestException extends S3ControlServiceEx
|
|
|
485
499
|
$fault: "client",
|
|
486
500
|
...opts
|
|
487
501
|
});
|
|
488
|
-
this.name = "BadRequestException";
|
|
489
|
-
this.$fault = "client";
|
|
490
502
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
491
503
|
this.Message = opts.Message;
|
|
492
504
|
}
|
|
493
505
|
};
|
|
494
|
-
__name(_BadRequestException, "BadRequestException");
|
|
495
|
-
var BadRequestException = _BadRequestException;
|
|
496
506
|
var JobManifestFieldName = {
|
|
497
507
|
Bucket: "Bucket",
|
|
498
508
|
Ignore: "Ignore",
|
|
@@ -588,7 +598,13 @@ var JobReportScope = {
|
|
|
588
598
|
AllTasks: "AllTasks",
|
|
589
599
|
FailedTasksOnly: "FailedTasksOnly"
|
|
590
600
|
};
|
|
591
|
-
var
|
|
601
|
+
var IdempotencyException = class _IdempotencyException extends S3ControlServiceException {
|
|
602
|
+
static {
|
|
603
|
+
__name(this, "IdempotencyException");
|
|
604
|
+
}
|
|
605
|
+
name = "IdempotencyException";
|
|
606
|
+
$fault = "client";
|
|
607
|
+
Message;
|
|
592
608
|
/**
|
|
593
609
|
* @internal
|
|
594
610
|
*/
|
|
@@ -598,15 +614,17 @@ var _IdempotencyException = class _IdempotencyException extends S3ControlService
|
|
|
598
614
|
$fault: "client",
|
|
599
615
|
...opts
|
|
600
616
|
});
|
|
601
|
-
this.name = "IdempotencyException";
|
|
602
|
-
this.$fault = "client";
|
|
603
617
|
Object.setPrototypeOf(this, _IdempotencyException.prototype);
|
|
604
618
|
this.Message = opts.Message;
|
|
605
619
|
}
|
|
606
620
|
};
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
621
|
+
var InternalServiceException = class _InternalServiceException extends S3ControlServiceException {
|
|
622
|
+
static {
|
|
623
|
+
__name(this, "InternalServiceException");
|
|
624
|
+
}
|
|
625
|
+
name = "InternalServiceException";
|
|
626
|
+
$fault = "server";
|
|
627
|
+
Message;
|
|
610
628
|
/**
|
|
611
629
|
* @internal
|
|
612
630
|
*/
|
|
@@ -616,15 +634,17 @@ var _InternalServiceException = class _InternalServiceException extends S3Contro
|
|
|
616
634
|
$fault: "server",
|
|
617
635
|
...opts
|
|
618
636
|
});
|
|
619
|
-
this.name = "InternalServiceException";
|
|
620
|
-
this.$fault = "server";
|
|
621
637
|
Object.setPrototypeOf(this, _InternalServiceException.prototype);
|
|
622
638
|
this.Message = opts.Message;
|
|
623
639
|
}
|
|
624
640
|
};
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
641
|
+
var TooManyRequestsException = class _TooManyRequestsException extends S3ControlServiceException {
|
|
642
|
+
static {
|
|
643
|
+
__name(this, "TooManyRequestsException");
|
|
644
|
+
}
|
|
645
|
+
name = "TooManyRequestsException";
|
|
646
|
+
$fault = "client";
|
|
647
|
+
Message;
|
|
628
648
|
/**
|
|
629
649
|
* @internal
|
|
630
650
|
*/
|
|
@@ -634,15 +654,17 @@ var _TooManyRequestsException = class _TooManyRequestsException extends S3Contro
|
|
|
634
654
|
$fault: "client",
|
|
635
655
|
...opts
|
|
636
656
|
});
|
|
637
|
-
this.name = "TooManyRequestsException";
|
|
638
|
-
this.$fault = "client";
|
|
639
657
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
640
658
|
this.Message = opts.Message;
|
|
641
659
|
}
|
|
642
660
|
};
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
661
|
+
var NotFoundException = class _NotFoundException extends S3ControlServiceException {
|
|
662
|
+
static {
|
|
663
|
+
__name(this, "NotFoundException");
|
|
664
|
+
}
|
|
665
|
+
name = "NotFoundException";
|
|
666
|
+
$fault = "client";
|
|
667
|
+
Message;
|
|
646
668
|
/**
|
|
647
669
|
* @internal
|
|
648
670
|
*/
|
|
@@ -652,14 +674,10 @@ var _NotFoundException = class _NotFoundException extends S3ControlServiceExcept
|
|
|
652
674
|
$fault: "client",
|
|
653
675
|
...opts
|
|
654
676
|
});
|
|
655
|
-
this.name = "NotFoundException";
|
|
656
|
-
this.$fault = "client";
|
|
657
677
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
658
678
|
this.Message = opts.Message;
|
|
659
679
|
}
|
|
660
680
|
};
|
|
661
|
-
__name(_NotFoundException, "NotFoundException");
|
|
662
|
-
var NotFoundException = _NotFoundException;
|
|
663
681
|
var JobStatus = {
|
|
664
682
|
Active: "Active",
|
|
665
683
|
Cancelled: "Cancelled",
|
|
@@ -745,7 +763,13 @@ var MultiRegionAccessPointStatus = {
|
|
|
745
763
|
PARTIALLY_DELETED: "PARTIALLY_DELETED",
|
|
746
764
|
READY: "READY"
|
|
747
765
|
};
|
|
748
|
-
var
|
|
766
|
+
var NoSuchPublicAccessBlockConfiguration = class _NoSuchPublicAccessBlockConfiguration extends S3ControlServiceException {
|
|
767
|
+
static {
|
|
768
|
+
__name(this, "NoSuchPublicAccessBlockConfiguration");
|
|
769
|
+
}
|
|
770
|
+
name = "NoSuchPublicAccessBlockConfiguration";
|
|
771
|
+
$fault = "client";
|
|
772
|
+
Message;
|
|
749
773
|
/**
|
|
750
774
|
* @internal
|
|
751
775
|
*/
|
|
@@ -755,14 +779,10 @@ var _NoSuchPublicAccessBlockConfiguration = class _NoSuchPublicAccessBlockConfig
|
|
|
755
779
|
$fault: "client",
|
|
756
780
|
...opts
|
|
757
781
|
});
|
|
758
|
-
this.name = "NoSuchPublicAccessBlockConfiguration";
|
|
759
|
-
this.$fault = "client";
|
|
760
782
|
Object.setPrototypeOf(this, _NoSuchPublicAccessBlockConfiguration.prototype);
|
|
761
783
|
this.Message = opts.Message;
|
|
762
784
|
}
|
|
763
785
|
};
|
|
764
|
-
__name(_NoSuchPublicAccessBlockConfiguration, "NoSuchPublicAccessBlockConfiguration");
|
|
765
|
-
var NoSuchPublicAccessBlockConfiguration = _NoSuchPublicAccessBlockConfiguration;
|
|
766
786
|
var Format = {
|
|
767
787
|
CSV: "CSV",
|
|
768
788
|
Parquet: "Parquet"
|
|
@@ -770,7 +790,13 @@ var Format = {
|
|
|
770
790
|
var OutputSchemaVersion = {
|
|
771
791
|
V_1: "V_1"
|
|
772
792
|
};
|
|
773
|
-
var
|
|
793
|
+
var InvalidNextTokenException = class _InvalidNextTokenException extends S3ControlServiceException {
|
|
794
|
+
static {
|
|
795
|
+
__name(this, "InvalidNextTokenException");
|
|
796
|
+
}
|
|
797
|
+
name = "InvalidNextTokenException";
|
|
798
|
+
$fault = "client";
|
|
799
|
+
Message;
|
|
774
800
|
/**
|
|
775
801
|
* @internal
|
|
776
802
|
*/
|
|
@@ -780,15 +806,17 @@ var _InvalidNextTokenException = class _InvalidNextTokenException extends S3Cont
|
|
|
780
806
|
$fault: "client",
|
|
781
807
|
...opts
|
|
782
808
|
});
|
|
783
|
-
this.name = "InvalidNextTokenException";
|
|
784
|
-
this.$fault = "client";
|
|
785
809
|
Object.setPrototypeOf(this, _InvalidNextTokenException.prototype);
|
|
786
810
|
this.Message = opts.Message;
|
|
787
811
|
}
|
|
788
812
|
};
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
813
|
+
var InvalidRequestException = class _InvalidRequestException extends S3ControlServiceException {
|
|
814
|
+
static {
|
|
815
|
+
__name(this, "InvalidRequestException");
|
|
816
|
+
}
|
|
817
|
+
name = "InvalidRequestException";
|
|
818
|
+
$fault = "client";
|
|
819
|
+
Message;
|
|
792
820
|
/**
|
|
793
821
|
* @internal
|
|
794
822
|
*/
|
|
@@ -798,14 +826,10 @@ var _InvalidRequestException = class _InvalidRequestException extends S3ControlS
|
|
|
798
826
|
$fault: "client",
|
|
799
827
|
...opts
|
|
800
828
|
});
|
|
801
|
-
this.name = "InvalidRequestException";
|
|
802
|
-
this.$fault = "client";
|
|
803
829
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
804
830
|
this.Message = opts.Message;
|
|
805
831
|
}
|
|
806
832
|
};
|
|
807
|
-
__name(_InvalidRequestException, "InvalidRequestException");
|
|
808
|
-
var InvalidRequestException = _InvalidRequestException;
|
|
809
833
|
var OperationName = {
|
|
810
834
|
LambdaInvoke: "LambdaInvoke",
|
|
811
835
|
S3DeleteObjectTagging: "S3DeleteObjectTagging",
|
|
@@ -833,7 +857,13 @@ var MFADelete = {
|
|
|
833
857
|
Disabled: "Disabled",
|
|
834
858
|
Enabled: "Enabled"
|
|
835
859
|
};
|
|
836
|
-
var
|
|
860
|
+
var TooManyTagsException = class _TooManyTagsException extends S3ControlServiceException {
|
|
861
|
+
static {
|
|
862
|
+
__name(this, "TooManyTagsException");
|
|
863
|
+
}
|
|
864
|
+
name = "TooManyTagsException";
|
|
865
|
+
$fault = "client";
|
|
866
|
+
Message;
|
|
837
867
|
/**
|
|
838
868
|
* @internal
|
|
839
869
|
*/
|
|
@@ -843,15 +873,17 @@ var _TooManyTagsException = class _TooManyTagsException extends S3ControlService
|
|
|
843
873
|
$fault: "client",
|
|
844
874
|
...opts
|
|
845
875
|
});
|
|
846
|
-
this.name = "TooManyTagsException";
|
|
847
|
-
this.$fault = "client";
|
|
848
876
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
849
877
|
this.Message = opts.Message;
|
|
850
878
|
}
|
|
851
879
|
};
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
880
|
+
var JobStatusException = class _JobStatusException extends S3ControlServiceException {
|
|
881
|
+
static {
|
|
882
|
+
__name(this, "JobStatusException");
|
|
883
|
+
}
|
|
884
|
+
name = "JobStatusException";
|
|
885
|
+
$fault = "client";
|
|
886
|
+
Message;
|
|
855
887
|
/**
|
|
856
888
|
* @internal
|
|
857
889
|
*/
|
|
@@ -861,14 +893,10 @@ var _JobStatusException = class _JobStatusException extends S3ControlServiceExce
|
|
|
861
893
|
$fault: "client",
|
|
862
894
|
...opts
|
|
863
895
|
});
|
|
864
|
-
this.name = "JobStatusException";
|
|
865
|
-
this.$fault = "client";
|
|
866
896
|
Object.setPrototypeOf(this, _JobStatusException.prototype);
|
|
867
897
|
this.Message = opts.Message;
|
|
868
898
|
}
|
|
869
899
|
};
|
|
870
|
-
__name(_JobStatusException, "JobStatusException");
|
|
871
|
-
var JobStatusException = _JobStatusException;
|
|
872
900
|
var RequestedJobStatus = {
|
|
873
901
|
Cancelled: "Cancelled",
|
|
874
902
|
Ready: "Ready"
|
|
@@ -8703,7 +8731,7 @@ var _xam = "x-amz-mfa";
|
|
|
8703
8731
|
var _xaoi = "x-amz-outpost-id";
|
|
8704
8732
|
|
|
8705
8733
|
// src/commands/AssociateAccessGrantsIdentityCenterCommand.ts
|
|
8706
|
-
var
|
|
8734
|
+
var AssociateAccessGrantsIdentityCenterCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8707
8735
|
...commonParams,
|
|
8708
8736
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8709
8737
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8715,9 +8743,10 @@ var _AssociateAccessGrantsIdentityCenterCommand = class _AssociateAccessGrantsId
|
|
|
8715
8743
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8716
8744
|
];
|
|
8717
8745
|
}).s("AWSS3ControlServiceV20180820", "AssociateAccessGrantsIdentityCenter", {}).n("S3ControlClient", "AssociateAccessGrantsIdentityCenterCommand").f(void 0, void 0).ser(se_AssociateAccessGrantsIdentityCenterCommand).de(de_AssociateAccessGrantsIdentityCenterCommand).build() {
|
|
8746
|
+
static {
|
|
8747
|
+
__name(this, "AssociateAccessGrantsIdentityCenterCommand");
|
|
8748
|
+
}
|
|
8718
8749
|
};
|
|
8719
|
-
__name(_AssociateAccessGrantsIdentityCenterCommand, "AssociateAccessGrantsIdentityCenterCommand");
|
|
8720
|
-
var AssociateAccessGrantsIdentityCenterCommand = _AssociateAccessGrantsIdentityCenterCommand;
|
|
8721
8750
|
|
|
8722
8751
|
// src/commands/CreateAccessGrantCommand.ts
|
|
8723
8752
|
var import_middleware_sdk_s3_control3 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -8725,7 +8754,7 @@ var import_middleware_sdk_s3_control3 = require("@aws-sdk/middleware-sdk-s3-cont
|
|
|
8725
8754
|
|
|
8726
8755
|
|
|
8727
8756
|
|
|
8728
|
-
var
|
|
8757
|
+
var CreateAccessGrantCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8729
8758
|
...commonParams,
|
|
8730
8759
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8731
8760
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8737,9 +8766,10 @@ var _CreateAccessGrantCommand = class _CreateAccessGrantCommand extends import_s
|
|
|
8737
8766
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8738
8767
|
];
|
|
8739
8768
|
}).s("AWSS3ControlServiceV20180820", "CreateAccessGrant", {}).n("S3ControlClient", "CreateAccessGrantCommand").f(void 0, void 0).ser(se_CreateAccessGrantCommand).de(de_CreateAccessGrantCommand).build() {
|
|
8769
|
+
static {
|
|
8770
|
+
__name(this, "CreateAccessGrantCommand");
|
|
8771
|
+
}
|
|
8740
8772
|
};
|
|
8741
|
-
__name(_CreateAccessGrantCommand, "CreateAccessGrantCommand");
|
|
8742
|
-
var CreateAccessGrantCommand = _CreateAccessGrantCommand;
|
|
8743
8773
|
|
|
8744
8774
|
// src/commands/CreateAccessGrantsInstanceCommand.ts
|
|
8745
8775
|
var import_middleware_sdk_s3_control4 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -8747,7 +8777,7 @@ var import_middleware_sdk_s3_control4 = require("@aws-sdk/middleware-sdk-s3-cont
|
|
|
8747
8777
|
|
|
8748
8778
|
|
|
8749
8779
|
|
|
8750
|
-
var
|
|
8780
|
+
var CreateAccessGrantsInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8751
8781
|
...commonParams,
|
|
8752
8782
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8753
8783
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8759,9 +8789,10 @@ var _CreateAccessGrantsInstanceCommand = class _CreateAccessGrantsInstanceComman
|
|
|
8759
8789
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8760
8790
|
];
|
|
8761
8791
|
}).s("AWSS3ControlServiceV20180820", "CreateAccessGrantsInstance", {}).n("S3ControlClient", "CreateAccessGrantsInstanceCommand").f(void 0, void 0).ser(se_CreateAccessGrantsInstanceCommand).de(de_CreateAccessGrantsInstanceCommand).build() {
|
|
8792
|
+
static {
|
|
8793
|
+
__name(this, "CreateAccessGrantsInstanceCommand");
|
|
8794
|
+
}
|
|
8762
8795
|
};
|
|
8763
|
-
__name(_CreateAccessGrantsInstanceCommand, "CreateAccessGrantsInstanceCommand");
|
|
8764
|
-
var CreateAccessGrantsInstanceCommand = _CreateAccessGrantsInstanceCommand;
|
|
8765
8796
|
|
|
8766
8797
|
// src/commands/CreateAccessGrantsLocationCommand.ts
|
|
8767
8798
|
var import_middleware_sdk_s3_control5 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -8769,7 +8800,7 @@ var import_middleware_sdk_s3_control5 = require("@aws-sdk/middleware-sdk-s3-cont
|
|
|
8769
8800
|
|
|
8770
8801
|
|
|
8771
8802
|
|
|
8772
|
-
var
|
|
8803
|
+
var CreateAccessGrantsLocationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8773
8804
|
...commonParams,
|
|
8774
8805
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8775
8806
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8781,16 +8812,17 @@ var _CreateAccessGrantsLocationCommand = class _CreateAccessGrantsLocationComman
|
|
|
8781
8812
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8782
8813
|
];
|
|
8783
8814
|
}).s("AWSS3ControlServiceV20180820", "CreateAccessGrantsLocation", {}).n("S3ControlClient", "CreateAccessGrantsLocationCommand").f(void 0, void 0).ser(se_CreateAccessGrantsLocationCommand).de(de_CreateAccessGrantsLocationCommand).build() {
|
|
8815
|
+
static {
|
|
8816
|
+
__name(this, "CreateAccessGrantsLocationCommand");
|
|
8817
|
+
}
|
|
8784
8818
|
};
|
|
8785
|
-
__name(_CreateAccessGrantsLocationCommand, "CreateAccessGrantsLocationCommand");
|
|
8786
|
-
var CreateAccessGrantsLocationCommand = _CreateAccessGrantsLocationCommand;
|
|
8787
8819
|
|
|
8788
8820
|
// src/commands/CreateAccessPointCommand.ts
|
|
8789
8821
|
var import_middleware_sdk_s3_control6 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
8790
8822
|
|
|
8791
8823
|
|
|
8792
8824
|
|
|
8793
|
-
var
|
|
8825
|
+
var CreateAccessPointCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8794
8826
|
...commonParams,
|
|
8795
8827
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8796
8828
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -8802,16 +8834,17 @@ var _CreateAccessPointCommand = class _CreateAccessPointCommand extends import_s
|
|
|
8802
8834
|
(0, import_middleware_sdk_s3_control6.getProcessArnablesPlugin)(config)
|
|
8803
8835
|
];
|
|
8804
8836
|
}).s("AWSS3ControlServiceV20180820", "CreateAccessPoint", {}).n("S3ControlClient", "CreateAccessPointCommand").f(void 0, void 0).ser(se_CreateAccessPointCommand).de(de_CreateAccessPointCommand).build() {
|
|
8837
|
+
static {
|
|
8838
|
+
__name(this, "CreateAccessPointCommand");
|
|
8839
|
+
}
|
|
8805
8840
|
};
|
|
8806
|
-
__name(_CreateAccessPointCommand, "CreateAccessPointCommand");
|
|
8807
|
-
var CreateAccessPointCommand = _CreateAccessPointCommand;
|
|
8808
8841
|
|
|
8809
8842
|
// src/commands/CreateAccessPointForObjectLambdaCommand.ts
|
|
8810
8843
|
var import_middleware_sdk_s3_control7 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
8811
8844
|
|
|
8812
8845
|
|
|
8813
8846
|
|
|
8814
|
-
var
|
|
8847
|
+
var CreateAccessPointForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8815
8848
|
...commonParams,
|
|
8816
8849
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8817
8850
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8822,9 +8855,10 @@ var _CreateAccessPointForObjectLambdaCommand = class _CreateAccessPointForObject
|
|
|
8822
8855
|
(0, import_middleware_sdk_s3_control7.getProcessArnablesPlugin)(config)
|
|
8823
8856
|
];
|
|
8824
8857
|
}).s("AWSS3ControlServiceV20180820", "CreateAccessPointForObjectLambda", {}).n("S3ControlClient", "CreateAccessPointForObjectLambdaCommand").f(void 0, void 0).ser(se_CreateAccessPointForObjectLambdaCommand).de(de_CreateAccessPointForObjectLambdaCommand).build() {
|
|
8858
|
+
static {
|
|
8859
|
+
__name(this, "CreateAccessPointForObjectLambdaCommand");
|
|
8860
|
+
}
|
|
8825
8861
|
};
|
|
8826
|
-
__name(_CreateAccessPointForObjectLambdaCommand, "CreateAccessPointForObjectLambdaCommand");
|
|
8827
|
-
var CreateAccessPointForObjectLambdaCommand = _CreateAccessPointForObjectLambdaCommand;
|
|
8828
8862
|
|
|
8829
8863
|
// src/commands/CreateBucketCommand.ts
|
|
8830
8864
|
var import_middleware_sdk_s3_control8 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -8832,7 +8866,7 @@ var import_middleware_sdk_s3_control8 = require("@aws-sdk/middleware-sdk-s3-cont
|
|
|
8832
8866
|
|
|
8833
8867
|
|
|
8834
8868
|
|
|
8835
|
-
var
|
|
8869
|
+
var CreateBucketCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8836
8870
|
...commonParams,
|
|
8837
8871
|
OutpostId: { type: "contextParams", name: "OutpostId" },
|
|
8838
8872
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -8844,16 +8878,17 @@ var _CreateBucketCommand = class _CreateBucketCommand extends import_smithy_clie
|
|
|
8844
8878
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8845
8879
|
];
|
|
8846
8880
|
}).s("AWSS3ControlServiceV20180820", "CreateBucket", {}).n("S3ControlClient", "CreateBucketCommand").f(void 0, void 0).ser(se_CreateBucketCommand).de(de_CreateBucketCommand).build() {
|
|
8881
|
+
static {
|
|
8882
|
+
__name(this, "CreateBucketCommand");
|
|
8883
|
+
}
|
|
8847
8884
|
};
|
|
8848
|
-
__name(_CreateBucketCommand, "CreateBucketCommand");
|
|
8849
|
-
var CreateBucketCommand = _CreateBucketCommand;
|
|
8850
8885
|
|
|
8851
8886
|
// src/commands/CreateJobCommand.ts
|
|
8852
8887
|
var import_middleware_sdk_s3_control9 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
8853
8888
|
|
|
8854
8889
|
|
|
8855
8890
|
|
|
8856
|
-
var
|
|
8891
|
+
var CreateJobCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8857
8892
|
...commonParams,
|
|
8858
8893
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8859
8894
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8864,9 +8899,10 @@ var _CreateJobCommand = class _CreateJobCommand extends import_smithy_client.Com
|
|
|
8864
8899
|
(0, import_middleware_sdk_s3_control9.getProcessArnablesPlugin)(config)
|
|
8865
8900
|
];
|
|
8866
8901
|
}).s("AWSS3ControlServiceV20180820", "CreateJob", {}).n("S3ControlClient", "CreateJobCommand").f(void 0, void 0).ser(se_CreateJobCommand).de(de_CreateJobCommand).build() {
|
|
8902
|
+
static {
|
|
8903
|
+
__name(this, "CreateJobCommand");
|
|
8904
|
+
}
|
|
8867
8905
|
};
|
|
8868
|
-
__name(_CreateJobCommand, "CreateJobCommand");
|
|
8869
|
-
var CreateJobCommand = _CreateJobCommand;
|
|
8870
8906
|
|
|
8871
8907
|
// src/commands/CreateMultiRegionAccessPointCommand.ts
|
|
8872
8908
|
var import_middleware_sdk_s3_control10 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -8874,7 +8910,7 @@ var import_middleware_sdk_s3_control10 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
8874
8910
|
|
|
8875
8911
|
|
|
8876
8912
|
|
|
8877
|
-
var
|
|
8913
|
+
var CreateMultiRegionAccessPointCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8878
8914
|
...commonParams,
|
|
8879
8915
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8880
8916
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8886,16 +8922,17 @@ var _CreateMultiRegionAccessPointCommand = class _CreateMultiRegionAccessPointCo
|
|
|
8886
8922
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8887
8923
|
];
|
|
8888
8924
|
}).s("AWSS3ControlServiceV20180820", "CreateMultiRegionAccessPoint", {}).n("S3ControlClient", "CreateMultiRegionAccessPointCommand").f(void 0, void 0).ser(se_CreateMultiRegionAccessPointCommand).de(de_CreateMultiRegionAccessPointCommand).build() {
|
|
8925
|
+
static {
|
|
8926
|
+
__name(this, "CreateMultiRegionAccessPointCommand");
|
|
8927
|
+
}
|
|
8889
8928
|
};
|
|
8890
|
-
__name(_CreateMultiRegionAccessPointCommand, "CreateMultiRegionAccessPointCommand");
|
|
8891
|
-
var CreateMultiRegionAccessPointCommand = _CreateMultiRegionAccessPointCommand;
|
|
8892
8929
|
|
|
8893
8930
|
// src/commands/CreateStorageLensGroupCommand.ts
|
|
8894
8931
|
var import_middleware_sdk_s3_control11 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
8895
8932
|
|
|
8896
8933
|
|
|
8897
8934
|
|
|
8898
|
-
var
|
|
8935
|
+
var CreateStorageLensGroupCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8899
8936
|
...commonParams,
|
|
8900
8937
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8901
8938
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8906,9 +8943,10 @@ var _CreateStorageLensGroupCommand = class _CreateStorageLensGroupCommand extend
|
|
|
8906
8943
|
(0, import_middleware_sdk_s3_control11.getProcessArnablesPlugin)(config)
|
|
8907
8944
|
];
|
|
8908
8945
|
}).s("AWSS3ControlServiceV20180820", "CreateStorageLensGroup", {}).n("S3ControlClient", "CreateStorageLensGroupCommand").f(void 0, void 0).ser(se_CreateStorageLensGroupCommand).de(de_CreateStorageLensGroupCommand).build() {
|
|
8946
|
+
static {
|
|
8947
|
+
__name(this, "CreateStorageLensGroupCommand");
|
|
8948
|
+
}
|
|
8909
8949
|
};
|
|
8910
|
-
__name(_CreateStorageLensGroupCommand, "CreateStorageLensGroupCommand");
|
|
8911
|
-
var CreateStorageLensGroupCommand = _CreateStorageLensGroupCommand;
|
|
8912
8950
|
|
|
8913
8951
|
// src/commands/DeleteAccessGrantCommand.ts
|
|
8914
8952
|
var import_middleware_sdk_s3_control12 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -8916,7 +8954,7 @@ var import_middleware_sdk_s3_control12 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
8916
8954
|
|
|
8917
8955
|
|
|
8918
8956
|
|
|
8919
|
-
var
|
|
8957
|
+
var DeleteAccessGrantCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8920
8958
|
...commonParams,
|
|
8921
8959
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8922
8960
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8928,9 +8966,10 @@ var _DeleteAccessGrantCommand = class _DeleteAccessGrantCommand extends import_s
|
|
|
8928
8966
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8929
8967
|
];
|
|
8930
8968
|
}).s("AWSS3ControlServiceV20180820", "DeleteAccessGrant", {}).n("S3ControlClient", "DeleteAccessGrantCommand").f(void 0, void 0).ser(se_DeleteAccessGrantCommand).de(de_DeleteAccessGrantCommand).build() {
|
|
8969
|
+
static {
|
|
8970
|
+
__name(this, "DeleteAccessGrantCommand");
|
|
8971
|
+
}
|
|
8931
8972
|
};
|
|
8932
|
-
__name(_DeleteAccessGrantCommand, "DeleteAccessGrantCommand");
|
|
8933
|
-
var DeleteAccessGrantCommand = _DeleteAccessGrantCommand;
|
|
8934
8973
|
|
|
8935
8974
|
// src/commands/DeleteAccessGrantsInstanceCommand.ts
|
|
8936
8975
|
var import_middleware_sdk_s3_control13 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -8938,7 +8977,7 @@ var import_middleware_sdk_s3_control13 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
8938
8977
|
|
|
8939
8978
|
|
|
8940
8979
|
|
|
8941
|
-
var
|
|
8980
|
+
var DeleteAccessGrantsInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8942
8981
|
...commonParams,
|
|
8943
8982
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8944
8983
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8950,9 +8989,10 @@ var _DeleteAccessGrantsInstanceCommand = class _DeleteAccessGrantsInstanceComman
|
|
|
8950
8989
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8951
8990
|
];
|
|
8952
8991
|
}).s("AWSS3ControlServiceV20180820", "DeleteAccessGrantsInstance", {}).n("S3ControlClient", "DeleteAccessGrantsInstanceCommand").f(void 0, void 0).ser(se_DeleteAccessGrantsInstanceCommand).de(de_DeleteAccessGrantsInstanceCommand).build() {
|
|
8992
|
+
static {
|
|
8993
|
+
__name(this, "DeleteAccessGrantsInstanceCommand");
|
|
8994
|
+
}
|
|
8953
8995
|
};
|
|
8954
|
-
__name(_DeleteAccessGrantsInstanceCommand, "DeleteAccessGrantsInstanceCommand");
|
|
8955
|
-
var DeleteAccessGrantsInstanceCommand = _DeleteAccessGrantsInstanceCommand;
|
|
8956
8996
|
|
|
8957
8997
|
// src/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.ts
|
|
8958
8998
|
var import_middleware_sdk_s3_control14 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -8960,7 +9000,7 @@ var import_middleware_sdk_s3_control14 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
8960
9000
|
|
|
8961
9001
|
|
|
8962
9002
|
|
|
8963
|
-
var
|
|
9003
|
+
var DeleteAccessGrantsInstanceResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8964
9004
|
...commonParams,
|
|
8965
9005
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8966
9006
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8972,9 +9012,10 @@ var _DeleteAccessGrantsInstanceResourcePolicyCommand = class _DeleteAccessGrants
|
|
|
8972
9012
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8973
9013
|
];
|
|
8974
9014
|
}).s("AWSS3ControlServiceV20180820", "DeleteAccessGrantsInstanceResourcePolicy", {}).n("S3ControlClient", "DeleteAccessGrantsInstanceResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteAccessGrantsInstanceResourcePolicyCommand).de(de_DeleteAccessGrantsInstanceResourcePolicyCommand).build() {
|
|
9015
|
+
static {
|
|
9016
|
+
__name(this, "DeleteAccessGrantsInstanceResourcePolicyCommand");
|
|
9017
|
+
}
|
|
8975
9018
|
};
|
|
8976
|
-
__name(_DeleteAccessGrantsInstanceResourcePolicyCommand, "DeleteAccessGrantsInstanceResourcePolicyCommand");
|
|
8977
|
-
var DeleteAccessGrantsInstanceResourcePolicyCommand = _DeleteAccessGrantsInstanceResourcePolicyCommand;
|
|
8978
9019
|
|
|
8979
9020
|
// src/commands/DeleteAccessGrantsLocationCommand.ts
|
|
8980
9021
|
var import_middleware_sdk_s3_control15 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -8982,7 +9023,7 @@ var import_middleware_sdk_s3_control15 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
8982
9023
|
|
|
8983
9024
|
|
|
8984
9025
|
|
|
8985
|
-
var
|
|
9026
|
+
var DeleteAccessGrantsLocationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
8986
9027
|
...commonParams,
|
|
8987
9028
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
8988
9029
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -8994,16 +9035,17 @@ var _DeleteAccessGrantsLocationCommand = class _DeleteAccessGrantsLocationComman
|
|
|
8994
9035
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
8995
9036
|
];
|
|
8996
9037
|
}).s("AWSS3ControlServiceV20180820", "DeleteAccessGrantsLocation", {}).n("S3ControlClient", "DeleteAccessGrantsLocationCommand").f(void 0, void 0).ser(se_DeleteAccessGrantsLocationCommand).de(de_DeleteAccessGrantsLocationCommand).build() {
|
|
9038
|
+
static {
|
|
9039
|
+
__name(this, "DeleteAccessGrantsLocationCommand");
|
|
9040
|
+
}
|
|
8997
9041
|
};
|
|
8998
|
-
__name(_DeleteAccessGrantsLocationCommand, "DeleteAccessGrantsLocationCommand");
|
|
8999
|
-
var DeleteAccessGrantsLocationCommand = _DeleteAccessGrantsLocationCommand;
|
|
9000
9042
|
|
|
9001
9043
|
// src/commands/DeleteAccessPointCommand.ts
|
|
9002
9044
|
var import_middleware_sdk_s3_control16 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9003
9045
|
|
|
9004
9046
|
|
|
9005
9047
|
|
|
9006
|
-
var
|
|
9048
|
+
var DeleteAccessPointCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9007
9049
|
...commonParams,
|
|
9008
9050
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9009
9051
|
AccessPointName: { type: "contextParams", name: "Name" },
|
|
@@ -9015,16 +9057,17 @@ var _DeleteAccessPointCommand = class _DeleteAccessPointCommand extends import_s
|
|
|
9015
9057
|
(0, import_middleware_sdk_s3_control16.getProcessArnablesPlugin)(config)
|
|
9016
9058
|
];
|
|
9017
9059
|
}).s("AWSS3ControlServiceV20180820", "DeleteAccessPoint", {}).n("S3ControlClient", "DeleteAccessPointCommand").f(void 0, void 0).ser(se_DeleteAccessPointCommand).de(de_DeleteAccessPointCommand).build() {
|
|
9060
|
+
static {
|
|
9061
|
+
__name(this, "DeleteAccessPointCommand");
|
|
9062
|
+
}
|
|
9018
9063
|
};
|
|
9019
|
-
__name(_DeleteAccessPointCommand, "DeleteAccessPointCommand");
|
|
9020
|
-
var DeleteAccessPointCommand = _DeleteAccessPointCommand;
|
|
9021
9064
|
|
|
9022
9065
|
// src/commands/DeleteAccessPointForObjectLambdaCommand.ts
|
|
9023
9066
|
var import_middleware_sdk_s3_control17 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9024
9067
|
|
|
9025
9068
|
|
|
9026
9069
|
|
|
9027
|
-
var
|
|
9070
|
+
var DeleteAccessPointForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9028
9071
|
...commonParams,
|
|
9029
9072
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9030
9073
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9035,16 +9078,17 @@ var _DeleteAccessPointForObjectLambdaCommand = class _DeleteAccessPointForObject
|
|
|
9035
9078
|
(0, import_middleware_sdk_s3_control17.getProcessArnablesPlugin)(config)
|
|
9036
9079
|
];
|
|
9037
9080
|
}).s("AWSS3ControlServiceV20180820", "DeleteAccessPointForObjectLambda", {}).n("S3ControlClient", "DeleteAccessPointForObjectLambdaCommand").f(void 0, void 0).ser(se_DeleteAccessPointForObjectLambdaCommand).de(de_DeleteAccessPointForObjectLambdaCommand).build() {
|
|
9081
|
+
static {
|
|
9082
|
+
__name(this, "DeleteAccessPointForObjectLambdaCommand");
|
|
9083
|
+
}
|
|
9038
9084
|
};
|
|
9039
|
-
__name(_DeleteAccessPointForObjectLambdaCommand, "DeleteAccessPointForObjectLambdaCommand");
|
|
9040
|
-
var DeleteAccessPointForObjectLambdaCommand = _DeleteAccessPointForObjectLambdaCommand;
|
|
9041
9085
|
|
|
9042
9086
|
// src/commands/DeleteAccessPointPolicyCommand.ts
|
|
9043
9087
|
var import_middleware_sdk_s3_control18 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9044
9088
|
|
|
9045
9089
|
|
|
9046
9090
|
|
|
9047
|
-
var
|
|
9091
|
+
var DeleteAccessPointPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9048
9092
|
...commonParams,
|
|
9049
9093
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9050
9094
|
AccessPointName: { type: "contextParams", name: "Name" },
|
|
@@ -9056,16 +9100,17 @@ var _DeleteAccessPointPolicyCommand = class _DeleteAccessPointPolicyCommand exte
|
|
|
9056
9100
|
(0, import_middleware_sdk_s3_control18.getProcessArnablesPlugin)(config)
|
|
9057
9101
|
];
|
|
9058
9102
|
}).s("AWSS3ControlServiceV20180820", "DeleteAccessPointPolicy", {}).n("S3ControlClient", "DeleteAccessPointPolicyCommand").f(void 0, void 0).ser(se_DeleteAccessPointPolicyCommand).de(de_DeleteAccessPointPolicyCommand).build() {
|
|
9103
|
+
static {
|
|
9104
|
+
__name(this, "DeleteAccessPointPolicyCommand");
|
|
9105
|
+
}
|
|
9059
9106
|
};
|
|
9060
|
-
__name(_DeleteAccessPointPolicyCommand, "DeleteAccessPointPolicyCommand");
|
|
9061
|
-
var DeleteAccessPointPolicyCommand = _DeleteAccessPointPolicyCommand;
|
|
9062
9107
|
|
|
9063
9108
|
// src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts
|
|
9064
9109
|
var import_middleware_sdk_s3_control19 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9065
9110
|
|
|
9066
9111
|
|
|
9067
9112
|
|
|
9068
|
-
var
|
|
9113
|
+
var DeleteAccessPointPolicyForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9069
9114
|
...commonParams,
|
|
9070
9115
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9071
9116
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9076,16 +9121,17 @@ var _DeleteAccessPointPolicyForObjectLambdaCommand = class _DeleteAccessPointPol
|
|
|
9076
9121
|
(0, import_middleware_sdk_s3_control19.getProcessArnablesPlugin)(config)
|
|
9077
9122
|
];
|
|
9078
9123
|
}).s("AWSS3ControlServiceV20180820", "DeleteAccessPointPolicyForObjectLambda", {}).n("S3ControlClient", "DeleteAccessPointPolicyForObjectLambdaCommand").f(void 0, void 0).ser(se_DeleteAccessPointPolicyForObjectLambdaCommand).de(de_DeleteAccessPointPolicyForObjectLambdaCommand).build() {
|
|
9124
|
+
static {
|
|
9125
|
+
__name(this, "DeleteAccessPointPolicyForObjectLambdaCommand");
|
|
9126
|
+
}
|
|
9079
9127
|
};
|
|
9080
|
-
__name(_DeleteAccessPointPolicyForObjectLambdaCommand, "DeleteAccessPointPolicyForObjectLambdaCommand");
|
|
9081
|
-
var DeleteAccessPointPolicyForObjectLambdaCommand = _DeleteAccessPointPolicyForObjectLambdaCommand;
|
|
9082
9128
|
|
|
9083
9129
|
// src/commands/DeleteBucketCommand.ts
|
|
9084
9130
|
var import_middleware_sdk_s3_control20 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9085
9131
|
|
|
9086
9132
|
|
|
9087
9133
|
|
|
9088
|
-
var
|
|
9134
|
+
var DeleteBucketCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9089
9135
|
...commonParams,
|
|
9090
9136
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9091
9137
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9097,16 +9143,17 @@ var _DeleteBucketCommand = class _DeleteBucketCommand extends import_smithy_clie
|
|
|
9097
9143
|
(0, import_middleware_sdk_s3_control20.getProcessArnablesPlugin)(config)
|
|
9098
9144
|
];
|
|
9099
9145
|
}).s("AWSS3ControlServiceV20180820", "DeleteBucket", {}).n("S3ControlClient", "DeleteBucketCommand").f(void 0, void 0).ser(se_DeleteBucketCommand).de(de_DeleteBucketCommand).build() {
|
|
9146
|
+
static {
|
|
9147
|
+
__name(this, "DeleteBucketCommand");
|
|
9148
|
+
}
|
|
9100
9149
|
};
|
|
9101
|
-
__name(_DeleteBucketCommand, "DeleteBucketCommand");
|
|
9102
|
-
var DeleteBucketCommand = _DeleteBucketCommand;
|
|
9103
9150
|
|
|
9104
9151
|
// src/commands/DeleteBucketLifecycleConfigurationCommand.ts
|
|
9105
9152
|
var import_middleware_sdk_s3_control21 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9106
9153
|
|
|
9107
9154
|
|
|
9108
9155
|
|
|
9109
|
-
var
|
|
9156
|
+
var DeleteBucketLifecycleConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9110
9157
|
...commonParams,
|
|
9111
9158
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9112
9159
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9118,16 +9165,17 @@ var _DeleteBucketLifecycleConfigurationCommand = class _DeleteBucketLifecycleCon
|
|
|
9118
9165
|
(0, import_middleware_sdk_s3_control21.getProcessArnablesPlugin)(config)
|
|
9119
9166
|
];
|
|
9120
9167
|
}).s("AWSS3ControlServiceV20180820", "DeleteBucketLifecycleConfiguration", {}).n("S3ControlClient", "DeleteBucketLifecycleConfigurationCommand").f(void 0, void 0).ser(se_DeleteBucketLifecycleConfigurationCommand).de(de_DeleteBucketLifecycleConfigurationCommand).build() {
|
|
9168
|
+
static {
|
|
9169
|
+
__name(this, "DeleteBucketLifecycleConfigurationCommand");
|
|
9170
|
+
}
|
|
9121
9171
|
};
|
|
9122
|
-
__name(_DeleteBucketLifecycleConfigurationCommand, "DeleteBucketLifecycleConfigurationCommand");
|
|
9123
|
-
var DeleteBucketLifecycleConfigurationCommand = _DeleteBucketLifecycleConfigurationCommand;
|
|
9124
9172
|
|
|
9125
9173
|
// src/commands/DeleteBucketPolicyCommand.ts
|
|
9126
9174
|
var import_middleware_sdk_s3_control22 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9127
9175
|
|
|
9128
9176
|
|
|
9129
9177
|
|
|
9130
|
-
var
|
|
9178
|
+
var DeleteBucketPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9131
9179
|
...commonParams,
|
|
9132
9180
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9133
9181
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9139,16 +9187,17 @@ var _DeleteBucketPolicyCommand = class _DeleteBucketPolicyCommand extends import
|
|
|
9139
9187
|
(0, import_middleware_sdk_s3_control22.getProcessArnablesPlugin)(config)
|
|
9140
9188
|
];
|
|
9141
9189
|
}).s("AWSS3ControlServiceV20180820", "DeleteBucketPolicy", {}).n("S3ControlClient", "DeleteBucketPolicyCommand").f(void 0, void 0).ser(se_DeleteBucketPolicyCommand).de(de_DeleteBucketPolicyCommand).build() {
|
|
9190
|
+
static {
|
|
9191
|
+
__name(this, "DeleteBucketPolicyCommand");
|
|
9192
|
+
}
|
|
9142
9193
|
};
|
|
9143
|
-
__name(_DeleteBucketPolicyCommand, "DeleteBucketPolicyCommand");
|
|
9144
|
-
var DeleteBucketPolicyCommand = _DeleteBucketPolicyCommand;
|
|
9145
9194
|
|
|
9146
9195
|
// src/commands/DeleteBucketReplicationCommand.ts
|
|
9147
9196
|
var import_middleware_sdk_s3_control23 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9148
9197
|
|
|
9149
9198
|
|
|
9150
9199
|
|
|
9151
|
-
var
|
|
9200
|
+
var DeleteBucketReplicationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9152
9201
|
...commonParams,
|
|
9153
9202
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9154
9203
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9160,16 +9209,17 @@ var _DeleteBucketReplicationCommand = class _DeleteBucketReplicationCommand exte
|
|
|
9160
9209
|
(0, import_middleware_sdk_s3_control23.getProcessArnablesPlugin)(config)
|
|
9161
9210
|
];
|
|
9162
9211
|
}).s("AWSS3ControlServiceV20180820", "DeleteBucketReplication", {}).n("S3ControlClient", "DeleteBucketReplicationCommand").f(void 0, void 0).ser(se_DeleteBucketReplicationCommand).de(de_DeleteBucketReplicationCommand).build() {
|
|
9212
|
+
static {
|
|
9213
|
+
__name(this, "DeleteBucketReplicationCommand");
|
|
9214
|
+
}
|
|
9163
9215
|
};
|
|
9164
|
-
__name(_DeleteBucketReplicationCommand, "DeleteBucketReplicationCommand");
|
|
9165
|
-
var DeleteBucketReplicationCommand = _DeleteBucketReplicationCommand;
|
|
9166
9216
|
|
|
9167
9217
|
// src/commands/DeleteBucketTaggingCommand.ts
|
|
9168
9218
|
var import_middleware_sdk_s3_control24 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9169
9219
|
|
|
9170
9220
|
|
|
9171
9221
|
|
|
9172
|
-
var
|
|
9222
|
+
var DeleteBucketTaggingCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9173
9223
|
...commonParams,
|
|
9174
9224
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9175
9225
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9181,16 +9231,17 @@ var _DeleteBucketTaggingCommand = class _DeleteBucketTaggingCommand extends impo
|
|
|
9181
9231
|
(0, import_middleware_sdk_s3_control24.getProcessArnablesPlugin)(config)
|
|
9182
9232
|
];
|
|
9183
9233
|
}).s("AWSS3ControlServiceV20180820", "DeleteBucketTagging", {}).n("S3ControlClient", "DeleteBucketTaggingCommand").f(void 0, void 0).ser(se_DeleteBucketTaggingCommand).de(de_DeleteBucketTaggingCommand).build() {
|
|
9234
|
+
static {
|
|
9235
|
+
__name(this, "DeleteBucketTaggingCommand");
|
|
9236
|
+
}
|
|
9184
9237
|
};
|
|
9185
|
-
__name(_DeleteBucketTaggingCommand, "DeleteBucketTaggingCommand");
|
|
9186
|
-
var DeleteBucketTaggingCommand = _DeleteBucketTaggingCommand;
|
|
9187
9238
|
|
|
9188
9239
|
// src/commands/DeleteJobTaggingCommand.ts
|
|
9189
9240
|
var import_middleware_sdk_s3_control25 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9190
9241
|
|
|
9191
9242
|
|
|
9192
9243
|
|
|
9193
|
-
var
|
|
9244
|
+
var DeleteJobTaggingCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9194
9245
|
...commonParams,
|
|
9195
9246
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9196
9247
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9201,9 +9252,10 @@ var _DeleteJobTaggingCommand = class _DeleteJobTaggingCommand extends import_smi
|
|
|
9201
9252
|
(0, import_middleware_sdk_s3_control25.getProcessArnablesPlugin)(config)
|
|
9202
9253
|
];
|
|
9203
9254
|
}).s("AWSS3ControlServiceV20180820", "DeleteJobTagging", {}).n("S3ControlClient", "DeleteJobTaggingCommand").f(void 0, void 0).ser(se_DeleteJobTaggingCommand).de(de_DeleteJobTaggingCommand).build() {
|
|
9255
|
+
static {
|
|
9256
|
+
__name(this, "DeleteJobTaggingCommand");
|
|
9257
|
+
}
|
|
9204
9258
|
};
|
|
9205
|
-
__name(_DeleteJobTaggingCommand, "DeleteJobTaggingCommand");
|
|
9206
|
-
var DeleteJobTaggingCommand = _DeleteJobTaggingCommand;
|
|
9207
9259
|
|
|
9208
9260
|
// src/commands/DeleteMultiRegionAccessPointCommand.ts
|
|
9209
9261
|
var import_middleware_sdk_s3_control26 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9211,7 +9263,7 @@ var import_middleware_sdk_s3_control26 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9211
9263
|
|
|
9212
9264
|
|
|
9213
9265
|
|
|
9214
|
-
var
|
|
9266
|
+
var DeleteMultiRegionAccessPointCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9215
9267
|
...commonParams,
|
|
9216
9268
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9217
9269
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9223,16 +9275,17 @@ var _DeleteMultiRegionAccessPointCommand = class _DeleteMultiRegionAccessPointCo
|
|
|
9223
9275
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9224
9276
|
];
|
|
9225
9277
|
}).s("AWSS3ControlServiceV20180820", "DeleteMultiRegionAccessPoint", {}).n("S3ControlClient", "DeleteMultiRegionAccessPointCommand").f(void 0, void 0).ser(se_DeleteMultiRegionAccessPointCommand).de(de_DeleteMultiRegionAccessPointCommand).build() {
|
|
9278
|
+
static {
|
|
9279
|
+
__name(this, "DeleteMultiRegionAccessPointCommand");
|
|
9280
|
+
}
|
|
9226
9281
|
};
|
|
9227
|
-
__name(_DeleteMultiRegionAccessPointCommand, "DeleteMultiRegionAccessPointCommand");
|
|
9228
|
-
var DeleteMultiRegionAccessPointCommand = _DeleteMultiRegionAccessPointCommand;
|
|
9229
9282
|
|
|
9230
9283
|
// src/commands/DeletePublicAccessBlockCommand.ts
|
|
9231
9284
|
var import_middleware_sdk_s3_control27 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9232
9285
|
|
|
9233
9286
|
|
|
9234
9287
|
|
|
9235
|
-
var
|
|
9288
|
+
var DeletePublicAccessBlockCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9236
9289
|
...commonParams,
|
|
9237
9290
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9238
9291
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9243,16 +9296,17 @@ var _DeletePublicAccessBlockCommand = class _DeletePublicAccessBlockCommand exte
|
|
|
9243
9296
|
(0, import_middleware_sdk_s3_control27.getProcessArnablesPlugin)(config)
|
|
9244
9297
|
];
|
|
9245
9298
|
}).s("AWSS3ControlServiceV20180820", "DeletePublicAccessBlock", {}).n("S3ControlClient", "DeletePublicAccessBlockCommand").f(void 0, void 0).ser(se_DeletePublicAccessBlockCommand).de(de_DeletePublicAccessBlockCommand).build() {
|
|
9299
|
+
static {
|
|
9300
|
+
__name(this, "DeletePublicAccessBlockCommand");
|
|
9301
|
+
}
|
|
9246
9302
|
};
|
|
9247
|
-
__name(_DeletePublicAccessBlockCommand, "DeletePublicAccessBlockCommand");
|
|
9248
|
-
var DeletePublicAccessBlockCommand = _DeletePublicAccessBlockCommand;
|
|
9249
9303
|
|
|
9250
9304
|
// src/commands/DeleteStorageLensConfigurationCommand.ts
|
|
9251
9305
|
var import_middleware_sdk_s3_control28 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9252
9306
|
|
|
9253
9307
|
|
|
9254
9308
|
|
|
9255
|
-
var
|
|
9309
|
+
var DeleteStorageLensConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9256
9310
|
...commonParams,
|
|
9257
9311
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9258
9312
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9263,16 +9317,17 @@ var _DeleteStorageLensConfigurationCommand = class _DeleteStorageLensConfigurati
|
|
|
9263
9317
|
(0, import_middleware_sdk_s3_control28.getProcessArnablesPlugin)(config)
|
|
9264
9318
|
];
|
|
9265
9319
|
}).s("AWSS3ControlServiceV20180820", "DeleteStorageLensConfiguration", {}).n("S3ControlClient", "DeleteStorageLensConfigurationCommand").f(void 0, void 0).ser(se_DeleteStorageLensConfigurationCommand).de(de_DeleteStorageLensConfigurationCommand).build() {
|
|
9320
|
+
static {
|
|
9321
|
+
__name(this, "DeleteStorageLensConfigurationCommand");
|
|
9322
|
+
}
|
|
9266
9323
|
};
|
|
9267
|
-
__name(_DeleteStorageLensConfigurationCommand, "DeleteStorageLensConfigurationCommand");
|
|
9268
|
-
var DeleteStorageLensConfigurationCommand = _DeleteStorageLensConfigurationCommand;
|
|
9269
9324
|
|
|
9270
9325
|
// src/commands/DeleteStorageLensConfigurationTaggingCommand.ts
|
|
9271
9326
|
var import_middleware_sdk_s3_control29 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9272
9327
|
|
|
9273
9328
|
|
|
9274
9329
|
|
|
9275
|
-
var
|
|
9330
|
+
var DeleteStorageLensConfigurationTaggingCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9276
9331
|
...commonParams,
|
|
9277
9332
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9278
9333
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9283,16 +9338,17 @@ var _DeleteStorageLensConfigurationTaggingCommand = class _DeleteStorageLensConf
|
|
|
9283
9338
|
(0, import_middleware_sdk_s3_control29.getProcessArnablesPlugin)(config)
|
|
9284
9339
|
];
|
|
9285
9340
|
}).s("AWSS3ControlServiceV20180820", "DeleteStorageLensConfigurationTagging", {}).n("S3ControlClient", "DeleteStorageLensConfigurationTaggingCommand").f(void 0, void 0).ser(se_DeleteStorageLensConfigurationTaggingCommand).de(de_DeleteStorageLensConfigurationTaggingCommand).build() {
|
|
9341
|
+
static {
|
|
9342
|
+
__name(this, "DeleteStorageLensConfigurationTaggingCommand");
|
|
9343
|
+
}
|
|
9286
9344
|
};
|
|
9287
|
-
__name(_DeleteStorageLensConfigurationTaggingCommand, "DeleteStorageLensConfigurationTaggingCommand");
|
|
9288
|
-
var DeleteStorageLensConfigurationTaggingCommand = _DeleteStorageLensConfigurationTaggingCommand;
|
|
9289
9345
|
|
|
9290
9346
|
// src/commands/DeleteStorageLensGroupCommand.ts
|
|
9291
9347
|
var import_middleware_sdk_s3_control30 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9292
9348
|
|
|
9293
9349
|
|
|
9294
9350
|
|
|
9295
|
-
var
|
|
9351
|
+
var DeleteStorageLensGroupCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9296
9352
|
...commonParams,
|
|
9297
9353
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9298
9354
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9303,16 +9359,17 @@ var _DeleteStorageLensGroupCommand = class _DeleteStorageLensGroupCommand extend
|
|
|
9303
9359
|
(0, import_middleware_sdk_s3_control30.getProcessArnablesPlugin)(config)
|
|
9304
9360
|
];
|
|
9305
9361
|
}).s("AWSS3ControlServiceV20180820", "DeleteStorageLensGroup", {}).n("S3ControlClient", "DeleteStorageLensGroupCommand").f(void 0, void 0).ser(se_DeleteStorageLensGroupCommand).de(de_DeleteStorageLensGroupCommand).build() {
|
|
9362
|
+
static {
|
|
9363
|
+
__name(this, "DeleteStorageLensGroupCommand");
|
|
9364
|
+
}
|
|
9306
9365
|
};
|
|
9307
|
-
__name(_DeleteStorageLensGroupCommand, "DeleteStorageLensGroupCommand");
|
|
9308
|
-
var DeleteStorageLensGroupCommand = _DeleteStorageLensGroupCommand;
|
|
9309
9366
|
|
|
9310
9367
|
// src/commands/DescribeJobCommand.ts
|
|
9311
9368
|
var import_middleware_sdk_s3_control31 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9312
9369
|
|
|
9313
9370
|
|
|
9314
9371
|
|
|
9315
|
-
var
|
|
9372
|
+
var DescribeJobCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9316
9373
|
...commonParams,
|
|
9317
9374
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9318
9375
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9323,9 +9380,10 @@ var _DescribeJobCommand = class _DescribeJobCommand extends import_smithy_client
|
|
|
9323
9380
|
(0, import_middleware_sdk_s3_control31.getProcessArnablesPlugin)(config)
|
|
9324
9381
|
];
|
|
9325
9382
|
}).s("AWSS3ControlServiceV20180820", "DescribeJob", {}).n("S3ControlClient", "DescribeJobCommand").f(void 0, void 0).ser(se_DescribeJobCommand).de(de_DescribeJobCommand).build() {
|
|
9383
|
+
static {
|
|
9384
|
+
__name(this, "DescribeJobCommand");
|
|
9385
|
+
}
|
|
9326
9386
|
};
|
|
9327
|
-
__name(_DescribeJobCommand, "DescribeJobCommand");
|
|
9328
|
-
var DescribeJobCommand = _DescribeJobCommand;
|
|
9329
9387
|
|
|
9330
9388
|
// src/commands/DescribeMultiRegionAccessPointOperationCommand.ts
|
|
9331
9389
|
var import_middleware_sdk_s3_control32 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9333,7 +9391,7 @@ var import_middleware_sdk_s3_control32 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9333
9391
|
|
|
9334
9392
|
|
|
9335
9393
|
|
|
9336
|
-
var
|
|
9394
|
+
var DescribeMultiRegionAccessPointOperationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9337
9395
|
...commonParams,
|
|
9338
9396
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9339
9397
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9345,9 +9403,10 @@ var _DescribeMultiRegionAccessPointOperationCommand = class _DescribeMultiRegion
|
|
|
9345
9403
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9346
9404
|
];
|
|
9347
9405
|
}).s("AWSS3ControlServiceV20180820", "DescribeMultiRegionAccessPointOperation", {}).n("S3ControlClient", "DescribeMultiRegionAccessPointOperationCommand").f(void 0, void 0).ser(se_DescribeMultiRegionAccessPointOperationCommand).de(de_DescribeMultiRegionAccessPointOperationCommand).build() {
|
|
9406
|
+
static {
|
|
9407
|
+
__name(this, "DescribeMultiRegionAccessPointOperationCommand");
|
|
9408
|
+
}
|
|
9348
9409
|
};
|
|
9349
|
-
__name(_DescribeMultiRegionAccessPointOperationCommand, "DescribeMultiRegionAccessPointOperationCommand");
|
|
9350
|
-
var DescribeMultiRegionAccessPointOperationCommand = _DescribeMultiRegionAccessPointOperationCommand;
|
|
9351
9410
|
|
|
9352
9411
|
// src/commands/DissociateAccessGrantsIdentityCenterCommand.ts
|
|
9353
9412
|
var import_middleware_sdk_s3_control33 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9355,7 +9414,7 @@ var import_middleware_sdk_s3_control33 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9355
9414
|
|
|
9356
9415
|
|
|
9357
9416
|
|
|
9358
|
-
var
|
|
9417
|
+
var DissociateAccessGrantsIdentityCenterCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9359
9418
|
...commonParams,
|
|
9360
9419
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9361
9420
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9367,9 +9426,10 @@ var _DissociateAccessGrantsIdentityCenterCommand = class _DissociateAccessGrants
|
|
|
9367
9426
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9368
9427
|
];
|
|
9369
9428
|
}).s("AWSS3ControlServiceV20180820", "DissociateAccessGrantsIdentityCenter", {}).n("S3ControlClient", "DissociateAccessGrantsIdentityCenterCommand").f(void 0, void 0).ser(se_DissociateAccessGrantsIdentityCenterCommand).de(de_DissociateAccessGrantsIdentityCenterCommand).build() {
|
|
9429
|
+
static {
|
|
9430
|
+
__name(this, "DissociateAccessGrantsIdentityCenterCommand");
|
|
9431
|
+
}
|
|
9370
9432
|
};
|
|
9371
|
-
__name(_DissociateAccessGrantsIdentityCenterCommand, "DissociateAccessGrantsIdentityCenterCommand");
|
|
9372
|
-
var DissociateAccessGrantsIdentityCenterCommand = _DissociateAccessGrantsIdentityCenterCommand;
|
|
9373
9433
|
|
|
9374
9434
|
// src/commands/GetAccessGrantCommand.ts
|
|
9375
9435
|
var import_middleware_sdk_s3_control34 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9377,7 +9437,7 @@ var import_middleware_sdk_s3_control34 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9377
9437
|
|
|
9378
9438
|
|
|
9379
9439
|
|
|
9380
|
-
var
|
|
9440
|
+
var GetAccessGrantCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9381
9441
|
...commonParams,
|
|
9382
9442
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9383
9443
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9389,9 +9449,10 @@ var _GetAccessGrantCommand = class _GetAccessGrantCommand extends import_smithy_
|
|
|
9389
9449
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9390
9450
|
];
|
|
9391
9451
|
}).s("AWSS3ControlServiceV20180820", "GetAccessGrant", {}).n("S3ControlClient", "GetAccessGrantCommand").f(void 0, void 0).ser(se_GetAccessGrantCommand).de(de_GetAccessGrantCommand).build() {
|
|
9452
|
+
static {
|
|
9453
|
+
__name(this, "GetAccessGrantCommand");
|
|
9454
|
+
}
|
|
9392
9455
|
};
|
|
9393
|
-
__name(_GetAccessGrantCommand, "GetAccessGrantCommand");
|
|
9394
|
-
var GetAccessGrantCommand = _GetAccessGrantCommand;
|
|
9395
9456
|
|
|
9396
9457
|
// src/commands/GetAccessGrantsInstanceCommand.ts
|
|
9397
9458
|
var import_middleware_sdk_s3_control35 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9399,7 +9460,7 @@ var import_middleware_sdk_s3_control35 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9399
9460
|
|
|
9400
9461
|
|
|
9401
9462
|
|
|
9402
|
-
var
|
|
9463
|
+
var GetAccessGrantsInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9403
9464
|
...commonParams,
|
|
9404
9465
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9405
9466
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9411,9 +9472,10 @@ var _GetAccessGrantsInstanceCommand = class _GetAccessGrantsInstanceCommand exte
|
|
|
9411
9472
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9412
9473
|
];
|
|
9413
9474
|
}).s("AWSS3ControlServiceV20180820", "GetAccessGrantsInstance", {}).n("S3ControlClient", "GetAccessGrantsInstanceCommand").f(void 0, void 0).ser(se_GetAccessGrantsInstanceCommand).de(de_GetAccessGrantsInstanceCommand).build() {
|
|
9475
|
+
static {
|
|
9476
|
+
__name(this, "GetAccessGrantsInstanceCommand");
|
|
9477
|
+
}
|
|
9414
9478
|
};
|
|
9415
|
-
__name(_GetAccessGrantsInstanceCommand, "GetAccessGrantsInstanceCommand");
|
|
9416
|
-
var GetAccessGrantsInstanceCommand = _GetAccessGrantsInstanceCommand;
|
|
9417
9479
|
|
|
9418
9480
|
// src/commands/GetAccessGrantsInstanceForPrefixCommand.ts
|
|
9419
9481
|
var import_middleware_sdk_s3_control36 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9421,7 +9483,7 @@ var import_middleware_sdk_s3_control36 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9421
9483
|
|
|
9422
9484
|
|
|
9423
9485
|
|
|
9424
|
-
var
|
|
9486
|
+
var GetAccessGrantsInstanceForPrefixCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9425
9487
|
...commonParams,
|
|
9426
9488
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9427
9489
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9433,9 +9495,10 @@ var _GetAccessGrantsInstanceForPrefixCommand = class _GetAccessGrantsInstanceFor
|
|
|
9433
9495
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9434
9496
|
];
|
|
9435
9497
|
}).s("AWSS3ControlServiceV20180820", "GetAccessGrantsInstanceForPrefix", {}).n("S3ControlClient", "GetAccessGrantsInstanceForPrefixCommand").f(void 0, void 0).ser(se_GetAccessGrantsInstanceForPrefixCommand).de(de_GetAccessGrantsInstanceForPrefixCommand).build() {
|
|
9498
|
+
static {
|
|
9499
|
+
__name(this, "GetAccessGrantsInstanceForPrefixCommand");
|
|
9500
|
+
}
|
|
9436
9501
|
};
|
|
9437
|
-
__name(_GetAccessGrantsInstanceForPrefixCommand, "GetAccessGrantsInstanceForPrefixCommand");
|
|
9438
|
-
var GetAccessGrantsInstanceForPrefixCommand = _GetAccessGrantsInstanceForPrefixCommand;
|
|
9439
9502
|
|
|
9440
9503
|
// src/commands/GetAccessGrantsInstanceResourcePolicyCommand.ts
|
|
9441
9504
|
var import_middleware_sdk_s3_control37 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9443,7 +9506,7 @@ var import_middleware_sdk_s3_control37 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9443
9506
|
|
|
9444
9507
|
|
|
9445
9508
|
|
|
9446
|
-
var
|
|
9509
|
+
var GetAccessGrantsInstanceResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9447
9510
|
...commonParams,
|
|
9448
9511
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9449
9512
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9455,9 +9518,10 @@ var _GetAccessGrantsInstanceResourcePolicyCommand = class _GetAccessGrantsInstan
|
|
|
9455
9518
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9456
9519
|
];
|
|
9457
9520
|
}).s("AWSS3ControlServiceV20180820", "GetAccessGrantsInstanceResourcePolicy", {}).n("S3ControlClient", "GetAccessGrantsInstanceResourcePolicyCommand").f(void 0, void 0).ser(se_GetAccessGrantsInstanceResourcePolicyCommand).de(de_GetAccessGrantsInstanceResourcePolicyCommand).build() {
|
|
9521
|
+
static {
|
|
9522
|
+
__name(this, "GetAccessGrantsInstanceResourcePolicyCommand");
|
|
9523
|
+
}
|
|
9458
9524
|
};
|
|
9459
|
-
__name(_GetAccessGrantsInstanceResourcePolicyCommand, "GetAccessGrantsInstanceResourcePolicyCommand");
|
|
9460
|
-
var GetAccessGrantsInstanceResourcePolicyCommand = _GetAccessGrantsInstanceResourcePolicyCommand;
|
|
9461
9525
|
|
|
9462
9526
|
// src/commands/GetAccessGrantsLocationCommand.ts
|
|
9463
9527
|
var import_middleware_sdk_s3_control38 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9465,7 +9529,7 @@ var import_middleware_sdk_s3_control38 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9465
9529
|
|
|
9466
9530
|
|
|
9467
9531
|
|
|
9468
|
-
var
|
|
9532
|
+
var GetAccessGrantsLocationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9469
9533
|
...commonParams,
|
|
9470
9534
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9471
9535
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9477,16 +9541,17 @@ var _GetAccessGrantsLocationCommand = class _GetAccessGrantsLocationCommand exte
|
|
|
9477
9541
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9478
9542
|
];
|
|
9479
9543
|
}).s("AWSS3ControlServiceV20180820", "GetAccessGrantsLocation", {}).n("S3ControlClient", "GetAccessGrantsLocationCommand").f(void 0, void 0).ser(se_GetAccessGrantsLocationCommand).de(de_GetAccessGrantsLocationCommand).build() {
|
|
9544
|
+
static {
|
|
9545
|
+
__name(this, "GetAccessGrantsLocationCommand");
|
|
9546
|
+
}
|
|
9480
9547
|
};
|
|
9481
|
-
__name(_GetAccessGrantsLocationCommand, "GetAccessGrantsLocationCommand");
|
|
9482
|
-
var GetAccessGrantsLocationCommand = _GetAccessGrantsLocationCommand;
|
|
9483
9548
|
|
|
9484
9549
|
// src/commands/GetAccessPointCommand.ts
|
|
9485
9550
|
var import_middleware_sdk_s3_control39 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9486
9551
|
|
|
9487
9552
|
|
|
9488
9553
|
|
|
9489
|
-
var
|
|
9554
|
+
var GetAccessPointCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9490
9555
|
...commonParams,
|
|
9491
9556
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9492
9557
|
AccessPointName: { type: "contextParams", name: "Name" },
|
|
@@ -9498,16 +9563,17 @@ var _GetAccessPointCommand = class _GetAccessPointCommand extends import_smithy_
|
|
|
9498
9563
|
(0, import_middleware_sdk_s3_control39.getProcessArnablesPlugin)(config)
|
|
9499
9564
|
];
|
|
9500
9565
|
}).s("AWSS3ControlServiceV20180820", "GetAccessPoint", {}).n("S3ControlClient", "GetAccessPointCommand").f(void 0, void 0).ser(se_GetAccessPointCommand).de(de_GetAccessPointCommand).build() {
|
|
9566
|
+
static {
|
|
9567
|
+
__name(this, "GetAccessPointCommand");
|
|
9568
|
+
}
|
|
9501
9569
|
};
|
|
9502
|
-
__name(_GetAccessPointCommand, "GetAccessPointCommand");
|
|
9503
|
-
var GetAccessPointCommand = _GetAccessPointCommand;
|
|
9504
9570
|
|
|
9505
9571
|
// src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts
|
|
9506
9572
|
var import_middleware_sdk_s3_control40 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9507
9573
|
|
|
9508
9574
|
|
|
9509
9575
|
|
|
9510
|
-
var
|
|
9576
|
+
var GetAccessPointConfigurationForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9511
9577
|
...commonParams,
|
|
9512
9578
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9513
9579
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9518,16 +9584,17 @@ var _GetAccessPointConfigurationForObjectLambdaCommand = class _GetAccessPointCo
|
|
|
9518
9584
|
(0, import_middleware_sdk_s3_control40.getProcessArnablesPlugin)(config)
|
|
9519
9585
|
];
|
|
9520
9586
|
}).s("AWSS3ControlServiceV20180820", "GetAccessPointConfigurationForObjectLambda", {}).n("S3ControlClient", "GetAccessPointConfigurationForObjectLambdaCommand").f(void 0, void 0).ser(se_GetAccessPointConfigurationForObjectLambdaCommand).de(de_GetAccessPointConfigurationForObjectLambdaCommand).build() {
|
|
9587
|
+
static {
|
|
9588
|
+
__name(this, "GetAccessPointConfigurationForObjectLambdaCommand");
|
|
9589
|
+
}
|
|
9521
9590
|
};
|
|
9522
|
-
__name(_GetAccessPointConfigurationForObjectLambdaCommand, "GetAccessPointConfigurationForObjectLambdaCommand");
|
|
9523
|
-
var GetAccessPointConfigurationForObjectLambdaCommand = _GetAccessPointConfigurationForObjectLambdaCommand;
|
|
9524
9591
|
|
|
9525
9592
|
// src/commands/GetAccessPointForObjectLambdaCommand.ts
|
|
9526
9593
|
var import_middleware_sdk_s3_control41 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9527
9594
|
|
|
9528
9595
|
|
|
9529
9596
|
|
|
9530
|
-
var
|
|
9597
|
+
var GetAccessPointForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9531
9598
|
...commonParams,
|
|
9532
9599
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9533
9600
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9538,16 +9605,17 @@ var _GetAccessPointForObjectLambdaCommand = class _GetAccessPointForObjectLambda
|
|
|
9538
9605
|
(0, import_middleware_sdk_s3_control41.getProcessArnablesPlugin)(config)
|
|
9539
9606
|
];
|
|
9540
9607
|
}).s("AWSS3ControlServiceV20180820", "GetAccessPointForObjectLambda", {}).n("S3ControlClient", "GetAccessPointForObjectLambdaCommand").f(void 0, void 0).ser(se_GetAccessPointForObjectLambdaCommand).de(de_GetAccessPointForObjectLambdaCommand).build() {
|
|
9608
|
+
static {
|
|
9609
|
+
__name(this, "GetAccessPointForObjectLambdaCommand");
|
|
9610
|
+
}
|
|
9541
9611
|
};
|
|
9542
|
-
__name(_GetAccessPointForObjectLambdaCommand, "GetAccessPointForObjectLambdaCommand");
|
|
9543
|
-
var GetAccessPointForObjectLambdaCommand = _GetAccessPointForObjectLambdaCommand;
|
|
9544
9612
|
|
|
9545
9613
|
// src/commands/GetAccessPointPolicyCommand.ts
|
|
9546
9614
|
var import_middleware_sdk_s3_control42 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9547
9615
|
|
|
9548
9616
|
|
|
9549
9617
|
|
|
9550
|
-
var
|
|
9618
|
+
var GetAccessPointPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9551
9619
|
...commonParams,
|
|
9552
9620
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9553
9621
|
AccessPointName: { type: "contextParams", name: "Name" },
|
|
@@ -9559,16 +9627,17 @@ var _GetAccessPointPolicyCommand = class _GetAccessPointPolicyCommand extends im
|
|
|
9559
9627
|
(0, import_middleware_sdk_s3_control42.getProcessArnablesPlugin)(config)
|
|
9560
9628
|
];
|
|
9561
9629
|
}).s("AWSS3ControlServiceV20180820", "GetAccessPointPolicy", {}).n("S3ControlClient", "GetAccessPointPolicyCommand").f(void 0, void 0).ser(se_GetAccessPointPolicyCommand).de(de_GetAccessPointPolicyCommand).build() {
|
|
9630
|
+
static {
|
|
9631
|
+
__name(this, "GetAccessPointPolicyCommand");
|
|
9632
|
+
}
|
|
9562
9633
|
};
|
|
9563
|
-
__name(_GetAccessPointPolicyCommand, "GetAccessPointPolicyCommand");
|
|
9564
|
-
var GetAccessPointPolicyCommand = _GetAccessPointPolicyCommand;
|
|
9565
9634
|
|
|
9566
9635
|
// src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts
|
|
9567
9636
|
var import_middleware_sdk_s3_control43 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9568
9637
|
|
|
9569
9638
|
|
|
9570
9639
|
|
|
9571
|
-
var
|
|
9640
|
+
var GetAccessPointPolicyForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9572
9641
|
...commonParams,
|
|
9573
9642
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9574
9643
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9579,16 +9648,17 @@ var _GetAccessPointPolicyForObjectLambdaCommand = class _GetAccessPointPolicyFor
|
|
|
9579
9648
|
(0, import_middleware_sdk_s3_control43.getProcessArnablesPlugin)(config)
|
|
9580
9649
|
];
|
|
9581
9650
|
}).s("AWSS3ControlServiceV20180820", "GetAccessPointPolicyForObjectLambda", {}).n("S3ControlClient", "GetAccessPointPolicyForObjectLambdaCommand").f(void 0, void 0).ser(se_GetAccessPointPolicyForObjectLambdaCommand).de(de_GetAccessPointPolicyForObjectLambdaCommand).build() {
|
|
9651
|
+
static {
|
|
9652
|
+
__name(this, "GetAccessPointPolicyForObjectLambdaCommand");
|
|
9653
|
+
}
|
|
9582
9654
|
};
|
|
9583
|
-
__name(_GetAccessPointPolicyForObjectLambdaCommand, "GetAccessPointPolicyForObjectLambdaCommand");
|
|
9584
|
-
var GetAccessPointPolicyForObjectLambdaCommand = _GetAccessPointPolicyForObjectLambdaCommand;
|
|
9585
9655
|
|
|
9586
9656
|
// src/commands/GetAccessPointPolicyStatusCommand.ts
|
|
9587
9657
|
var import_middleware_sdk_s3_control44 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9588
9658
|
|
|
9589
9659
|
|
|
9590
9660
|
|
|
9591
|
-
var
|
|
9661
|
+
var GetAccessPointPolicyStatusCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9592
9662
|
...commonParams,
|
|
9593
9663
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9594
9664
|
AccessPointName: { type: "contextParams", name: "Name" },
|
|
@@ -9600,16 +9670,17 @@ var _GetAccessPointPolicyStatusCommand = class _GetAccessPointPolicyStatusComman
|
|
|
9600
9670
|
(0, import_middleware_sdk_s3_control44.getProcessArnablesPlugin)(config)
|
|
9601
9671
|
];
|
|
9602
9672
|
}).s("AWSS3ControlServiceV20180820", "GetAccessPointPolicyStatus", {}).n("S3ControlClient", "GetAccessPointPolicyStatusCommand").f(void 0, void 0).ser(se_GetAccessPointPolicyStatusCommand).de(de_GetAccessPointPolicyStatusCommand).build() {
|
|
9673
|
+
static {
|
|
9674
|
+
__name(this, "GetAccessPointPolicyStatusCommand");
|
|
9675
|
+
}
|
|
9603
9676
|
};
|
|
9604
|
-
__name(_GetAccessPointPolicyStatusCommand, "GetAccessPointPolicyStatusCommand");
|
|
9605
|
-
var GetAccessPointPolicyStatusCommand = _GetAccessPointPolicyStatusCommand;
|
|
9606
9677
|
|
|
9607
9678
|
// src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts
|
|
9608
9679
|
var import_middleware_sdk_s3_control45 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9609
9680
|
|
|
9610
9681
|
|
|
9611
9682
|
|
|
9612
|
-
var
|
|
9683
|
+
var GetAccessPointPolicyStatusForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9613
9684
|
...commonParams,
|
|
9614
9685
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9615
9686
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9620,16 +9691,17 @@ var _GetAccessPointPolicyStatusForObjectLambdaCommand = class _GetAccessPointPol
|
|
|
9620
9691
|
(0, import_middleware_sdk_s3_control45.getProcessArnablesPlugin)(config)
|
|
9621
9692
|
];
|
|
9622
9693
|
}).s("AWSS3ControlServiceV20180820", "GetAccessPointPolicyStatusForObjectLambda", {}).n("S3ControlClient", "GetAccessPointPolicyStatusForObjectLambdaCommand").f(void 0, void 0).ser(se_GetAccessPointPolicyStatusForObjectLambdaCommand).de(de_GetAccessPointPolicyStatusForObjectLambdaCommand).build() {
|
|
9694
|
+
static {
|
|
9695
|
+
__name(this, "GetAccessPointPolicyStatusForObjectLambdaCommand");
|
|
9696
|
+
}
|
|
9623
9697
|
};
|
|
9624
|
-
__name(_GetAccessPointPolicyStatusForObjectLambdaCommand, "GetAccessPointPolicyStatusForObjectLambdaCommand");
|
|
9625
|
-
var GetAccessPointPolicyStatusForObjectLambdaCommand = _GetAccessPointPolicyStatusForObjectLambdaCommand;
|
|
9626
9698
|
|
|
9627
9699
|
// src/commands/GetBucketCommand.ts
|
|
9628
9700
|
var import_middleware_sdk_s3_control46 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9629
9701
|
|
|
9630
9702
|
|
|
9631
9703
|
|
|
9632
|
-
var
|
|
9704
|
+
var GetBucketCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9633
9705
|
...commonParams,
|
|
9634
9706
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9635
9707
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9641,16 +9713,17 @@ var _GetBucketCommand = class _GetBucketCommand extends import_smithy_client.Com
|
|
|
9641
9713
|
(0, import_middleware_sdk_s3_control46.getProcessArnablesPlugin)(config)
|
|
9642
9714
|
];
|
|
9643
9715
|
}).s("AWSS3ControlServiceV20180820", "GetBucket", {}).n("S3ControlClient", "GetBucketCommand").f(void 0, void 0).ser(se_GetBucketCommand).de(de_GetBucketCommand).build() {
|
|
9716
|
+
static {
|
|
9717
|
+
__name(this, "GetBucketCommand");
|
|
9718
|
+
}
|
|
9644
9719
|
};
|
|
9645
|
-
__name(_GetBucketCommand, "GetBucketCommand");
|
|
9646
|
-
var GetBucketCommand = _GetBucketCommand;
|
|
9647
9720
|
|
|
9648
9721
|
// src/commands/GetBucketLifecycleConfigurationCommand.ts
|
|
9649
9722
|
var import_middleware_sdk_s3_control47 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9650
9723
|
|
|
9651
9724
|
|
|
9652
9725
|
|
|
9653
|
-
var
|
|
9726
|
+
var GetBucketLifecycleConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9654
9727
|
...commonParams,
|
|
9655
9728
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9656
9729
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9662,16 +9735,17 @@ var _GetBucketLifecycleConfigurationCommand = class _GetBucketLifecycleConfigura
|
|
|
9662
9735
|
(0, import_middleware_sdk_s3_control47.getProcessArnablesPlugin)(config)
|
|
9663
9736
|
];
|
|
9664
9737
|
}).s("AWSS3ControlServiceV20180820", "GetBucketLifecycleConfiguration", {}).n("S3ControlClient", "GetBucketLifecycleConfigurationCommand").f(void 0, void 0).ser(se_GetBucketLifecycleConfigurationCommand).de(de_GetBucketLifecycleConfigurationCommand).build() {
|
|
9738
|
+
static {
|
|
9739
|
+
__name(this, "GetBucketLifecycleConfigurationCommand");
|
|
9740
|
+
}
|
|
9665
9741
|
};
|
|
9666
|
-
__name(_GetBucketLifecycleConfigurationCommand, "GetBucketLifecycleConfigurationCommand");
|
|
9667
|
-
var GetBucketLifecycleConfigurationCommand = _GetBucketLifecycleConfigurationCommand;
|
|
9668
9742
|
|
|
9669
9743
|
// src/commands/GetBucketPolicyCommand.ts
|
|
9670
9744
|
var import_middleware_sdk_s3_control48 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9671
9745
|
|
|
9672
9746
|
|
|
9673
9747
|
|
|
9674
|
-
var
|
|
9748
|
+
var GetBucketPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9675
9749
|
...commonParams,
|
|
9676
9750
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9677
9751
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9683,16 +9757,17 @@ var _GetBucketPolicyCommand = class _GetBucketPolicyCommand extends import_smith
|
|
|
9683
9757
|
(0, import_middleware_sdk_s3_control48.getProcessArnablesPlugin)(config)
|
|
9684
9758
|
];
|
|
9685
9759
|
}).s("AWSS3ControlServiceV20180820", "GetBucketPolicy", {}).n("S3ControlClient", "GetBucketPolicyCommand").f(void 0, void 0).ser(se_GetBucketPolicyCommand).de(de_GetBucketPolicyCommand).build() {
|
|
9760
|
+
static {
|
|
9761
|
+
__name(this, "GetBucketPolicyCommand");
|
|
9762
|
+
}
|
|
9686
9763
|
};
|
|
9687
|
-
__name(_GetBucketPolicyCommand, "GetBucketPolicyCommand");
|
|
9688
|
-
var GetBucketPolicyCommand = _GetBucketPolicyCommand;
|
|
9689
9764
|
|
|
9690
9765
|
// src/commands/GetBucketReplicationCommand.ts
|
|
9691
9766
|
var import_middleware_sdk_s3_control49 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9692
9767
|
|
|
9693
9768
|
|
|
9694
9769
|
|
|
9695
|
-
var
|
|
9770
|
+
var GetBucketReplicationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9696
9771
|
...commonParams,
|
|
9697
9772
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9698
9773
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9704,16 +9779,17 @@ var _GetBucketReplicationCommand = class _GetBucketReplicationCommand extends im
|
|
|
9704
9779
|
(0, import_middleware_sdk_s3_control49.getProcessArnablesPlugin)(config)
|
|
9705
9780
|
];
|
|
9706
9781
|
}).s("AWSS3ControlServiceV20180820", "GetBucketReplication", {}).n("S3ControlClient", "GetBucketReplicationCommand").f(void 0, void 0).ser(se_GetBucketReplicationCommand).de(de_GetBucketReplicationCommand).build() {
|
|
9782
|
+
static {
|
|
9783
|
+
__name(this, "GetBucketReplicationCommand");
|
|
9784
|
+
}
|
|
9707
9785
|
};
|
|
9708
|
-
__name(_GetBucketReplicationCommand, "GetBucketReplicationCommand");
|
|
9709
|
-
var GetBucketReplicationCommand = _GetBucketReplicationCommand;
|
|
9710
9786
|
|
|
9711
9787
|
// src/commands/GetBucketTaggingCommand.ts
|
|
9712
9788
|
var import_middleware_sdk_s3_control50 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9713
9789
|
|
|
9714
9790
|
|
|
9715
9791
|
|
|
9716
|
-
var
|
|
9792
|
+
var GetBucketTaggingCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9717
9793
|
...commonParams,
|
|
9718
9794
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9719
9795
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9725,16 +9801,17 @@ var _GetBucketTaggingCommand = class _GetBucketTaggingCommand extends import_smi
|
|
|
9725
9801
|
(0, import_middleware_sdk_s3_control50.getProcessArnablesPlugin)(config)
|
|
9726
9802
|
];
|
|
9727
9803
|
}).s("AWSS3ControlServiceV20180820", "GetBucketTagging", {}).n("S3ControlClient", "GetBucketTaggingCommand").f(void 0, void 0).ser(se_GetBucketTaggingCommand).de(de_GetBucketTaggingCommand).build() {
|
|
9804
|
+
static {
|
|
9805
|
+
__name(this, "GetBucketTaggingCommand");
|
|
9806
|
+
}
|
|
9728
9807
|
};
|
|
9729
|
-
__name(_GetBucketTaggingCommand, "GetBucketTaggingCommand");
|
|
9730
|
-
var GetBucketTaggingCommand = _GetBucketTaggingCommand;
|
|
9731
9808
|
|
|
9732
9809
|
// src/commands/GetBucketVersioningCommand.ts
|
|
9733
9810
|
var import_middleware_sdk_s3_control51 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9734
9811
|
|
|
9735
9812
|
|
|
9736
9813
|
|
|
9737
|
-
var
|
|
9814
|
+
var GetBucketVersioningCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9738
9815
|
...commonParams,
|
|
9739
9816
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9740
9817
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -9746,9 +9823,10 @@ var _GetBucketVersioningCommand = class _GetBucketVersioningCommand extends impo
|
|
|
9746
9823
|
(0, import_middleware_sdk_s3_control51.getProcessArnablesPlugin)(config)
|
|
9747
9824
|
];
|
|
9748
9825
|
}).s("AWSS3ControlServiceV20180820", "GetBucketVersioning", {}).n("S3ControlClient", "GetBucketVersioningCommand").f(void 0, void 0).ser(se_GetBucketVersioningCommand).de(de_GetBucketVersioningCommand).build() {
|
|
9826
|
+
static {
|
|
9827
|
+
__name(this, "GetBucketVersioningCommand");
|
|
9828
|
+
}
|
|
9749
9829
|
};
|
|
9750
|
-
__name(_GetBucketVersioningCommand, "GetBucketVersioningCommand");
|
|
9751
|
-
var GetBucketVersioningCommand = _GetBucketVersioningCommand;
|
|
9752
9830
|
|
|
9753
9831
|
// src/commands/GetDataAccessCommand.ts
|
|
9754
9832
|
var import_middleware_sdk_s3_control52 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9756,7 +9834,7 @@ var import_middleware_sdk_s3_control52 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9756
9834
|
|
|
9757
9835
|
|
|
9758
9836
|
|
|
9759
|
-
var
|
|
9837
|
+
var GetDataAccessCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9760
9838
|
...commonParams,
|
|
9761
9839
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9762
9840
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9768,16 +9846,17 @@ var _GetDataAccessCommand = class _GetDataAccessCommand extends import_smithy_cl
|
|
|
9768
9846
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9769
9847
|
];
|
|
9770
9848
|
}).s("AWSS3ControlServiceV20180820", "GetDataAccess", {}).n("S3ControlClient", "GetDataAccessCommand").f(void 0, GetDataAccessResultFilterSensitiveLog).ser(se_GetDataAccessCommand).de(de_GetDataAccessCommand).build() {
|
|
9849
|
+
static {
|
|
9850
|
+
__name(this, "GetDataAccessCommand");
|
|
9851
|
+
}
|
|
9771
9852
|
};
|
|
9772
|
-
__name(_GetDataAccessCommand, "GetDataAccessCommand");
|
|
9773
|
-
var GetDataAccessCommand = _GetDataAccessCommand;
|
|
9774
9853
|
|
|
9775
9854
|
// src/commands/GetJobTaggingCommand.ts
|
|
9776
9855
|
var import_middleware_sdk_s3_control53 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9777
9856
|
|
|
9778
9857
|
|
|
9779
9858
|
|
|
9780
|
-
var
|
|
9859
|
+
var GetJobTaggingCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9781
9860
|
...commonParams,
|
|
9782
9861
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9783
9862
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9788,9 +9867,10 @@ var _GetJobTaggingCommand = class _GetJobTaggingCommand extends import_smithy_cl
|
|
|
9788
9867
|
(0, import_middleware_sdk_s3_control53.getProcessArnablesPlugin)(config)
|
|
9789
9868
|
];
|
|
9790
9869
|
}).s("AWSS3ControlServiceV20180820", "GetJobTagging", {}).n("S3ControlClient", "GetJobTaggingCommand").f(void 0, void 0).ser(se_GetJobTaggingCommand).de(de_GetJobTaggingCommand).build() {
|
|
9870
|
+
static {
|
|
9871
|
+
__name(this, "GetJobTaggingCommand");
|
|
9872
|
+
}
|
|
9791
9873
|
};
|
|
9792
|
-
__name(_GetJobTaggingCommand, "GetJobTaggingCommand");
|
|
9793
|
-
var GetJobTaggingCommand = _GetJobTaggingCommand;
|
|
9794
9874
|
|
|
9795
9875
|
// src/commands/GetMultiRegionAccessPointCommand.ts
|
|
9796
9876
|
var import_middleware_sdk_s3_control54 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9798,7 +9878,7 @@ var import_middleware_sdk_s3_control54 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9798
9878
|
|
|
9799
9879
|
|
|
9800
9880
|
|
|
9801
|
-
var
|
|
9881
|
+
var GetMultiRegionAccessPointCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9802
9882
|
...commonParams,
|
|
9803
9883
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9804
9884
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9810,9 +9890,10 @@ var _GetMultiRegionAccessPointCommand = class _GetMultiRegionAccessPointCommand
|
|
|
9810
9890
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9811
9891
|
];
|
|
9812
9892
|
}).s("AWSS3ControlServiceV20180820", "GetMultiRegionAccessPoint", {}).n("S3ControlClient", "GetMultiRegionAccessPointCommand").f(void 0, void 0).ser(se_GetMultiRegionAccessPointCommand).de(de_GetMultiRegionAccessPointCommand).build() {
|
|
9893
|
+
static {
|
|
9894
|
+
__name(this, "GetMultiRegionAccessPointCommand");
|
|
9895
|
+
}
|
|
9813
9896
|
};
|
|
9814
|
-
__name(_GetMultiRegionAccessPointCommand, "GetMultiRegionAccessPointCommand");
|
|
9815
|
-
var GetMultiRegionAccessPointCommand = _GetMultiRegionAccessPointCommand;
|
|
9816
9897
|
|
|
9817
9898
|
// src/commands/GetMultiRegionAccessPointPolicyCommand.ts
|
|
9818
9899
|
var import_middleware_sdk_s3_control55 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9820,7 +9901,7 @@ var import_middleware_sdk_s3_control55 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9820
9901
|
|
|
9821
9902
|
|
|
9822
9903
|
|
|
9823
|
-
var
|
|
9904
|
+
var GetMultiRegionAccessPointPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9824
9905
|
...commonParams,
|
|
9825
9906
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9826
9907
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9832,9 +9913,10 @@ var _GetMultiRegionAccessPointPolicyCommand = class _GetMultiRegionAccessPointPo
|
|
|
9832
9913
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9833
9914
|
];
|
|
9834
9915
|
}).s("AWSS3ControlServiceV20180820", "GetMultiRegionAccessPointPolicy", {}).n("S3ControlClient", "GetMultiRegionAccessPointPolicyCommand").f(void 0, void 0).ser(se_GetMultiRegionAccessPointPolicyCommand).de(de_GetMultiRegionAccessPointPolicyCommand).build() {
|
|
9916
|
+
static {
|
|
9917
|
+
__name(this, "GetMultiRegionAccessPointPolicyCommand");
|
|
9918
|
+
}
|
|
9835
9919
|
};
|
|
9836
|
-
__name(_GetMultiRegionAccessPointPolicyCommand, "GetMultiRegionAccessPointPolicyCommand");
|
|
9837
|
-
var GetMultiRegionAccessPointPolicyCommand = _GetMultiRegionAccessPointPolicyCommand;
|
|
9838
9920
|
|
|
9839
9921
|
// src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts
|
|
9840
9922
|
var import_middleware_sdk_s3_control56 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9842,7 +9924,7 @@ var import_middleware_sdk_s3_control56 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9842
9924
|
|
|
9843
9925
|
|
|
9844
9926
|
|
|
9845
|
-
var
|
|
9927
|
+
var GetMultiRegionAccessPointPolicyStatusCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9846
9928
|
...commonParams,
|
|
9847
9929
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9848
9930
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9854,9 +9936,10 @@ var _GetMultiRegionAccessPointPolicyStatusCommand = class _GetMultiRegionAccessP
|
|
|
9854
9936
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9855
9937
|
];
|
|
9856
9938
|
}).s("AWSS3ControlServiceV20180820", "GetMultiRegionAccessPointPolicyStatus", {}).n("S3ControlClient", "GetMultiRegionAccessPointPolicyStatusCommand").f(void 0, void 0).ser(se_GetMultiRegionAccessPointPolicyStatusCommand).de(de_GetMultiRegionAccessPointPolicyStatusCommand).build() {
|
|
9939
|
+
static {
|
|
9940
|
+
__name(this, "GetMultiRegionAccessPointPolicyStatusCommand");
|
|
9941
|
+
}
|
|
9857
9942
|
};
|
|
9858
|
-
__name(_GetMultiRegionAccessPointPolicyStatusCommand, "GetMultiRegionAccessPointPolicyStatusCommand");
|
|
9859
|
-
var GetMultiRegionAccessPointPolicyStatusCommand = _GetMultiRegionAccessPointPolicyStatusCommand;
|
|
9860
9943
|
|
|
9861
9944
|
// src/commands/GetMultiRegionAccessPointRoutesCommand.ts
|
|
9862
9945
|
var import_middleware_sdk_s3_control57 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9864,7 +9947,7 @@ var import_middleware_sdk_s3_control57 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9864
9947
|
|
|
9865
9948
|
|
|
9866
9949
|
|
|
9867
|
-
var
|
|
9950
|
+
var GetMultiRegionAccessPointRoutesCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9868
9951
|
...commonParams,
|
|
9869
9952
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9870
9953
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9876,16 +9959,17 @@ var _GetMultiRegionAccessPointRoutesCommand = class _GetMultiRegionAccessPointRo
|
|
|
9876
9959
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9877
9960
|
];
|
|
9878
9961
|
}).s("AWSS3ControlServiceV20180820", "GetMultiRegionAccessPointRoutes", {}).n("S3ControlClient", "GetMultiRegionAccessPointRoutesCommand").f(void 0, void 0).ser(se_GetMultiRegionAccessPointRoutesCommand).de(de_GetMultiRegionAccessPointRoutesCommand).build() {
|
|
9962
|
+
static {
|
|
9963
|
+
__name(this, "GetMultiRegionAccessPointRoutesCommand");
|
|
9964
|
+
}
|
|
9879
9965
|
};
|
|
9880
|
-
__name(_GetMultiRegionAccessPointRoutesCommand, "GetMultiRegionAccessPointRoutesCommand");
|
|
9881
|
-
var GetMultiRegionAccessPointRoutesCommand = _GetMultiRegionAccessPointRoutesCommand;
|
|
9882
9966
|
|
|
9883
9967
|
// src/commands/GetPublicAccessBlockCommand.ts
|
|
9884
9968
|
var import_middleware_sdk_s3_control58 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9885
9969
|
|
|
9886
9970
|
|
|
9887
9971
|
|
|
9888
|
-
var
|
|
9972
|
+
var GetPublicAccessBlockCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9889
9973
|
...commonParams,
|
|
9890
9974
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9891
9975
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9896,16 +9980,17 @@ var _GetPublicAccessBlockCommand = class _GetPublicAccessBlockCommand extends im
|
|
|
9896
9980
|
(0, import_middleware_sdk_s3_control58.getProcessArnablesPlugin)(config)
|
|
9897
9981
|
];
|
|
9898
9982
|
}).s("AWSS3ControlServiceV20180820", "GetPublicAccessBlock", {}).n("S3ControlClient", "GetPublicAccessBlockCommand").f(void 0, void 0).ser(se_GetPublicAccessBlockCommand).de(de_GetPublicAccessBlockCommand).build() {
|
|
9983
|
+
static {
|
|
9984
|
+
__name(this, "GetPublicAccessBlockCommand");
|
|
9985
|
+
}
|
|
9899
9986
|
};
|
|
9900
|
-
__name(_GetPublicAccessBlockCommand, "GetPublicAccessBlockCommand");
|
|
9901
|
-
var GetPublicAccessBlockCommand = _GetPublicAccessBlockCommand;
|
|
9902
9987
|
|
|
9903
9988
|
// src/commands/GetStorageLensConfigurationCommand.ts
|
|
9904
9989
|
var import_middleware_sdk_s3_control59 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9905
9990
|
|
|
9906
9991
|
|
|
9907
9992
|
|
|
9908
|
-
var
|
|
9993
|
+
var GetStorageLensConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9909
9994
|
...commonParams,
|
|
9910
9995
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9911
9996
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9916,16 +10001,17 @@ var _GetStorageLensConfigurationCommand = class _GetStorageLensConfigurationComm
|
|
|
9916
10001
|
(0, import_middleware_sdk_s3_control59.getProcessArnablesPlugin)(config)
|
|
9917
10002
|
];
|
|
9918
10003
|
}).s("AWSS3ControlServiceV20180820", "GetStorageLensConfiguration", {}).n("S3ControlClient", "GetStorageLensConfigurationCommand").f(void 0, void 0).ser(se_GetStorageLensConfigurationCommand).de(de_GetStorageLensConfigurationCommand).build() {
|
|
10004
|
+
static {
|
|
10005
|
+
__name(this, "GetStorageLensConfigurationCommand");
|
|
10006
|
+
}
|
|
9919
10007
|
};
|
|
9920
|
-
__name(_GetStorageLensConfigurationCommand, "GetStorageLensConfigurationCommand");
|
|
9921
|
-
var GetStorageLensConfigurationCommand = _GetStorageLensConfigurationCommand;
|
|
9922
10008
|
|
|
9923
10009
|
// src/commands/GetStorageLensConfigurationTaggingCommand.ts
|
|
9924
10010
|
var import_middleware_sdk_s3_control60 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9925
10011
|
|
|
9926
10012
|
|
|
9927
10013
|
|
|
9928
|
-
var
|
|
10014
|
+
var GetStorageLensConfigurationTaggingCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9929
10015
|
...commonParams,
|
|
9930
10016
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9931
10017
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9936,16 +10022,17 @@ var _GetStorageLensConfigurationTaggingCommand = class _GetStorageLensConfigurat
|
|
|
9936
10022
|
(0, import_middleware_sdk_s3_control60.getProcessArnablesPlugin)(config)
|
|
9937
10023
|
];
|
|
9938
10024
|
}).s("AWSS3ControlServiceV20180820", "GetStorageLensConfigurationTagging", {}).n("S3ControlClient", "GetStorageLensConfigurationTaggingCommand").f(void 0, void 0).ser(se_GetStorageLensConfigurationTaggingCommand).de(de_GetStorageLensConfigurationTaggingCommand).build() {
|
|
10025
|
+
static {
|
|
10026
|
+
__name(this, "GetStorageLensConfigurationTaggingCommand");
|
|
10027
|
+
}
|
|
9939
10028
|
};
|
|
9940
|
-
__name(_GetStorageLensConfigurationTaggingCommand, "GetStorageLensConfigurationTaggingCommand");
|
|
9941
|
-
var GetStorageLensConfigurationTaggingCommand = _GetStorageLensConfigurationTaggingCommand;
|
|
9942
10029
|
|
|
9943
10030
|
// src/commands/GetStorageLensGroupCommand.ts
|
|
9944
10031
|
var import_middleware_sdk_s3_control61 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9945
10032
|
|
|
9946
10033
|
|
|
9947
10034
|
|
|
9948
|
-
var
|
|
10035
|
+
var GetStorageLensGroupCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9949
10036
|
...commonParams,
|
|
9950
10037
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9951
10038
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9956,9 +10043,10 @@ var _GetStorageLensGroupCommand = class _GetStorageLensGroupCommand extends impo
|
|
|
9956
10043
|
(0, import_middleware_sdk_s3_control61.getProcessArnablesPlugin)(config)
|
|
9957
10044
|
];
|
|
9958
10045
|
}).s("AWSS3ControlServiceV20180820", "GetStorageLensGroup", {}).n("S3ControlClient", "GetStorageLensGroupCommand").f(void 0, void 0).ser(se_GetStorageLensGroupCommand).de(de_GetStorageLensGroupCommand).build() {
|
|
10046
|
+
static {
|
|
10047
|
+
__name(this, "GetStorageLensGroupCommand");
|
|
10048
|
+
}
|
|
9959
10049
|
};
|
|
9960
|
-
__name(_GetStorageLensGroupCommand, "GetStorageLensGroupCommand");
|
|
9961
|
-
var GetStorageLensGroupCommand = _GetStorageLensGroupCommand;
|
|
9962
10050
|
|
|
9963
10051
|
// src/commands/ListAccessGrantsCommand.ts
|
|
9964
10052
|
var import_middleware_sdk_s3_control62 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9966,7 +10054,7 @@ var import_middleware_sdk_s3_control62 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9966
10054
|
|
|
9967
10055
|
|
|
9968
10056
|
|
|
9969
|
-
var
|
|
10057
|
+
var ListAccessGrantsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9970
10058
|
...commonParams,
|
|
9971
10059
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9972
10060
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -9978,9 +10066,10 @@ var _ListAccessGrantsCommand = class _ListAccessGrantsCommand extends import_smi
|
|
|
9978
10066
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
9979
10067
|
];
|
|
9980
10068
|
}).s("AWSS3ControlServiceV20180820", "ListAccessGrants", {}).n("S3ControlClient", "ListAccessGrantsCommand").f(void 0, void 0).ser(se_ListAccessGrantsCommand).de(de_ListAccessGrantsCommand).build() {
|
|
10069
|
+
static {
|
|
10070
|
+
__name(this, "ListAccessGrantsCommand");
|
|
10071
|
+
}
|
|
9981
10072
|
};
|
|
9982
|
-
__name(_ListAccessGrantsCommand, "ListAccessGrantsCommand");
|
|
9983
|
-
var ListAccessGrantsCommand = _ListAccessGrantsCommand;
|
|
9984
10073
|
|
|
9985
10074
|
// src/commands/ListAccessGrantsInstancesCommand.ts
|
|
9986
10075
|
var import_middleware_sdk_s3_control63 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -9988,7 +10077,7 @@ var import_middleware_sdk_s3_control63 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
9988
10077
|
|
|
9989
10078
|
|
|
9990
10079
|
|
|
9991
|
-
var
|
|
10080
|
+
var ListAccessGrantsInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
9992
10081
|
...commonParams,
|
|
9993
10082
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
9994
10083
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10000,9 +10089,10 @@ var _ListAccessGrantsInstancesCommand = class _ListAccessGrantsInstancesCommand
|
|
|
10000
10089
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10001
10090
|
];
|
|
10002
10091
|
}).s("AWSS3ControlServiceV20180820", "ListAccessGrantsInstances", {}).n("S3ControlClient", "ListAccessGrantsInstancesCommand").f(void 0, void 0).ser(se_ListAccessGrantsInstancesCommand).de(de_ListAccessGrantsInstancesCommand).build() {
|
|
10092
|
+
static {
|
|
10093
|
+
__name(this, "ListAccessGrantsInstancesCommand");
|
|
10094
|
+
}
|
|
10003
10095
|
};
|
|
10004
|
-
__name(_ListAccessGrantsInstancesCommand, "ListAccessGrantsInstancesCommand");
|
|
10005
|
-
var ListAccessGrantsInstancesCommand = _ListAccessGrantsInstancesCommand;
|
|
10006
10096
|
|
|
10007
10097
|
// src/commands/ListAccessGrantsLocationsCommand.ts
|
|
10008
10098
|
var import_middleware_sdk_s3_control64 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10010,7 +10100,7 @@ var import_middleware_sdk_s3_control64 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10010
10100
|
|
|
10011
10101
|
|
|
10012
10102
|
|
|
10013
|
-
var
|
|
10103
|
+
var ListAccessGrantsLocationsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10014
10104
|
...commonParams,
|
|
10015
10105
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10016
10106
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10022,16 +10112,17 @@ var _ListAccessGrantsLocationsCommand = class _ListAccessGrantsLocationsCommand
|
|
|
10022
10112
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10023
10113
|
];
|
|
10024
10114
|
}).s("AWSS3ControlServiceV20180820", "ListAccessGrantsLocations", {}).n("S3ControlClient", "ListAccessGrantsLocationsCommand").f(void 0, void 0).ser(se_ListAccessGrantsLocationsCommand).de(de_ListAccessGrantsLocationsCommand).build() {
|
|
10115
|
+
static {
|
|
10116
|
+
__name(this, "ListAccessGrantsLocationsCommand");
|
|
10117
|
+
}
|
|
10025
10118
|
};
|
|
10026
|
-
__name(_ListAccessGrantsLocationsCommand, "ListAccessGrantsLocationsCommand");
|
|
10027
|
-
var ListAccessGrantsLocationsCommand = _ListAccessGrantsLocationsCommand;
|
|
10028
10119
|
|
|
10029
10120
|
// src/commands/ListAccessPointsCommand.ts
|
|
10030
10121
|
var import_middleware_sdk_s3_control65 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10031
10122
|
|
|
10032
10123
|
|
|
10033
10124
|
|
|
10034
|
-
var
|
|
10125
|
+
var ListAccessPointsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10035
10126
|
...commonParams,
|
|
10036
10127
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10037
10128
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -10043,16 +10134,17 @@ var _ListAccessPointsCommand = class _ListAccessPointsCommand extends import_smi
|
|
|
10043
10134
|
(0, import_middleware_sdk_s3_control65.getProcessArnablesPlugin)(config)
|
|
10044
10135
|
];
|
|
10045
10136
|
}).s("AWSS3ControlServiceV20180820", "ListAccessPoints", {}).n("S3ControlClient", "ListAccessPointsCommand").f(void 0, void 0).ser(se_ListAccessPointsCommand).de(de_ListAccessPointsCommand).build() {
|
|
10137
|
+
static {
|
|
10138
|
+
__name(this, "ListAccessPointsCommand");
|
|
10139
|
+
}
|
|
10046
10140
|
};
|
|
10047
|
-
__name(_ListAccessPointsCommand, "ListAccessPointsCommand");
|
|
10048
|
-
var ListAccessPointsCommand = _ListAccessPointsCommand;
|
|
10049
10141
|
|
|
10050
10142
|
// src/commands/ListAccessPointsForObjectLambdaCommand.ts
|
|
10051
10143
|
var import_middleware_sdk_s3_control66 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10052
10144
|
|
|
10053
10145
|
|
|
10054
10146
|
|
|
10055
|
-
var
|
|
10147
|
+
var ListAccessPointsForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10056
10148
|
...commonParams,
|
|
10057
10149
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10058
10150
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10063,9 +10155,10 @@ var _ListAccessPointsForObjectLambdaCommand = class _ListAccessPointsForObjectLa
|
|
|
10063
10155
|
(0, import_middleware_sdk_s3_control66.getProcessArnablesPlugin)(config)
|
|
10064
10156
|
];
|
|
10065
10157
|
}).s("AWSS3ControlServiceV20180820", "ListAccessPointsForObjectLambda", {}).n("S3ControlClient", "ListAccessPointsForObjectLambdaCommand").f(void 0, void 0).ser(se_ListAccessPointsForObjectLambdaCommand).de(de_ListAccessPointsForObjectLambdaCommand).build() {
|
|
10158
|
+
static {
|
|
10159
|
+
__name(this, "ListAccessPointsForObjectLambdaCommand");
|
|
10160
|
+
}
|
|
10066
10161
|
};
|
|
10067
|
-
__name(_ListAccessPointsForObjectLambdaCommand, "ListAccessPointsForObjectLambdaCommand");
|
|
10068
|
-
var ListAccessPointsForObjectLambdaCommand = _ListAccessPointsForObjectLambdaCommand;
|
|
10069
10162
|
|
|
10070
10163
|
// src/commands/ListCallerAccessGrantsCommand.ts
|
|
10071
10164
|
var import_middleware_sdk_s3_control67 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10073,7 +10166,7 @@ var import_middleware_sdk_s3_control67 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10073
10166
|
|
|
10074
10167
|
|
|
10075
10168
|
|
|
10076
|
-
var
|
|
10169
|
+
var ListCallerAccessGrantsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10077
10170
|
...commonParams,
|
|
10078
10171
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10079
10172
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10085,16 +10178,17 @@ var _ListCallerAccessGrantsCommand = class _ListCallerAccessGrantsCommand extend
|
|
|
10085
10178
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10086
10179
|
];
|
|
10087
10180
|
}).s("AWSS3ControlServiceV20180820", "ListCallerAccessGrants", {}).n("S3ControlClient", "ListCallerAccessGrantsCommand").f(void 0, void 0).ser(se_ListCallerAccessGrantsCommand).de(de_ListCallerAccessGrantsCommand).build() {
|
|
10181
|
+
static {
|
|
10182
|
+
__name(this, "ListCallerAccessGrantsCommand");
|
|
10183
|
+
}
|
|
10088
10184
|
};
|
|
10089
|
-
__name(_ListCallerAccessGrantsCommand, "ListCallerAccessGrantsCommand");
|
|
10090
|
-
var ListCallerAccessGrantsCommand = _ListCallerAccessGrantsCommand;
|
|
10091
10185
|
|
|
10092
10186
|
// src/commands/ListJobsCommand.ts
|
|
10093
10187
|
var import_middleware_sdk_s3_control68 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10094
10188
|
|
|
10095
10189
|
|
|
10096
10190
|
|
|
10097
|
-
var
|
|
10191
|
+
var ListJobsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10098
10192
|
...commonParams,
|
|
10099
10193
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10100
10194
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10105,9 +10199,10 @@ var _ListJobsCommand = class _ListJobsCommand extends import_smithy_client.Comma
|
|
|
10105
10199
|
(0, import_middleware_sdk_s3_control68.getProcessArnablesPlugin)(config)
|
|
10106
10200
|
];
|
|
10107
10201
|
}).s("AWSS3ControlServiceV20180820", "ListJobs", {}).n("S3ControlClient", "ListJobsCommand").f(void 0, void 0).ser(se_ListJobsCommand).de(de_ListJobsCommand).build() {
|
|
10202
|
+
static {
|
|
10203
|
+
__name(this, "ListJobsCommand");
|
|
10204
|
+
}
|
|
10108
10205
|
};
|
|
10109
|
-
__name(_ListJobsCommand, "ListJobsCommand");
|
|
10110
|
-
var ListJobsCommand = _ListJobsCommand;
|
|
10111
10206
|
|
|
10112
10207
|
// src/commands/ListMultiRegionAccessPointsCommand.ts
|
|
10113
10208
|
var import_middleware_sdk_s3_control69 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10115,7 +10210,7 @@ var import_middleware_sdk_s3_control69 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10115
10210
|
|
|
10116
10211
|
|
|
10117
10212
|
|
|
10118
|
-
var
|
|
10213
|
+
var ListMultiRegionAccessPointsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10119
10214
|
...commonParams,
|
|
10120
10215
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10121
10216
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10127,16 +10222,17 @@ var _ListMultiRegionAccessPointsCommand = class _ListMultiRegionAccessPointsComm
|
|
|
10127
10222
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10128
10223
|
];
|
|
10129
10224
|
}).s("AWSS3ControlServiceV20180820", "ListMultiRegionAccessPoints", {}).n("S3ControlClient", "ListMultiRegionAccessPointsCommand").f(void 0, void 0).ser(se_ListMultiRegionAccessPointsCommand).de(de_ListMultiRegionAccessPointsCommand).build() {
|
|
10225
|
+
static {
|
|
10226
|
+
__name(this, "ListMultiRegionAccessPointsCommand");
|
|
10227
|
+
}
|
|
10130
10228
|
};
|
|
10131
|
-
__name(_ListMultiRegionAccessPointsCommand, "ListMultiRegionAccessPointsCommand");
|
|
10132
|
-
var ListMultiRegionAccessPointsCommand = _ListMultiRegionAccessPointsCommand;
|
|
10133
10229
|
|
|
10134
10230
|
// src/commands/ListRegionalBucketsCommand.ts
|
|
10135
10231
|
var import_middleware_sdk_s3_control70 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10136
10232
|
|
|
10137
10233
|
|
|
10138
10234
|
|
|
10139
|
-
var
|
|
10235
|
+
var ListRegionalBucketsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10140
10236
|
...commonParams,
|
|
10141
10237
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10142
10238
|
OutpostId: { type: "contextParams", name: "OutpostId" },
|
|
@@ -10148,16 +10244,17 @@ var _ListRegionalBucketsCommand = class _ListRegionalBucketsCommand extends impo
|
|
|
10148
10244
|
(0, import_middleware_sdk_s3_control70.getRedirectFromPostIdPlugin)(config)
|
|
10149
10245
|
];
|
|
10150
10246
|
}).s("AWSS3ControlServiceV20180820", "ListRegionalBuckets", {}).n("S3ControlClient", "ListRegionalBucketsCommand").f(void 0, void 0).ser(se_ListRegionalBucketsCommand).de(de_ListRegionalBucketsCommand).build() {
|
|
10247
|
+
static {
|
|
10248
|
+
__name(this, "ListRegionalBucketsCommand");
|
|
10249
|
+
}
|
|
10151
10250
|
};
|
|
10152
|
-
__name(_ListRegionalBucketsCommand, "ListRegionalBucketsCommand");
|
|
10153
|
-
var ListRegionalBucketsCommand = _ListRegionalBucketsCommand;
|
|
10154
10251
|
|
|
10155
10252
|
// src/commands/ListStorageLensConfigurationsCommand.ts
|
|
10156
10253
|
var import_middleware_sdk_s3_control71 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10157
10254
|
|
|
10158
10255
|
|
|
10159
10256
|
|
|
10160
|
-
var
|
|
10257
|
+
var ListStorageLensConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10161
10258
|
...commonParams,
|
|
10162
10259
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10163
10260
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10168,16 +10265,17 @@ var _ListStorageLensConfigurationsCommand = class _ListStorageLensConfigurations
|
|
|
10168
10265
|
(0, import_middleware_sdk_s3_control71.getProcessArnablesPlugin)(config)
|
|
10169
10266
|
];
|
|
10170
10267
|
}).s("AWSS3ControlServiceV20180820", "ListStorageLensConfigurations", {}).n("S3ControlClient", "ListStorageLensConfigurationsCommand").f(void 0, void 0).ser(se_ListStorageLensConfigurationsCommand).de(de_ListStorageLensConfigurationsCommand).build() {
|
|
10268
|
+
static {
|
|
10269
|
+
__name(this, "ListStorageLensConfigurationsCommand");
|
|
10270
|
+
}
|
|
10171
10271
|
};
|
|
10172
|
-
__name(_ListStorageLensConfigurationsCommand, "ListStorageLensConfigurationsCommand");
|
|
10173
|
-
var ListStorageLensConfigurationsCommand = _ListStorageLensConfigurationsCommand;
|
|
10174
10272
|
|
|
10175
10273
|
// src/commands/ListStorageLensGroupsCommand.ts
|
|
10176
10274
|
var import_middleware_sdk_s3_control72 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10177
10275
|
|
|
10178
10276
|
|
|
10179
10277
|
|
|
10180
|
-
var
|
|
10278
|
+
var ListStorageLensGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10181
10279
|
...commonParams,
|
|
10182
10280
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10183
10281
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10188,16 +10286,17 @@ var _ListStorageLensGroupsCommand = class _ListStorageLensGroupsCommand extends
|
|
|
10188
10286
|
(0, import_middleware_sdk_s3_control72.getProcessArnablesPlugin)(config)
|
|
10189
10287
|
];
|
|
10190
10288
|
}).s("AWSS3ControlServiceV20180820", "ListStorageLensGroups", {}).n("S3ControlClient", "ListStorageLensGroupsCommand").f(void 0, void 0).ser(se_ListStorageLensGroupsCommand).de(de_ListStorageLensGroupsCommand).build() {
|
|
10289
|
+
static {
|
|
10290
|
+
__name(this, "ListStorageLensGroupsCommand");
|
|
10291
|
+
}
|
|
10191
10292
|
};
|
|
10192
|
-
__name(_ListStorageLensGroupsCommand, "ListStorageLensGroupsCommand");
|
|
10193
|
-
var ListStorageLensGroupsCommand = _ListStorageLensGroupsCommand;
|
|
10194
10293
|
|
|
10195
10294
|
// src/commands/ListTagsForResourceCommand.ts
|
|
10196
10295
|
var import_middleware_sdk_s3_control73 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10197
10296
|
|
|
10198
10297
|
|
|
10199
10298
|
|
|
10200
|
-
var
|
|
10299
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10201
10300
|
...commonParams,
|
|
10202
10301
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10203
10302
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10208,9 +10307,10 @@ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends impo
|
|
|
10208
10307
|
(0, import_middleware_sdk_s3_control73.getProcessArnablesPlugin)(config)
|
|
10209
10308
|
];
|
|
10210
10309
|
}).s("AWSS3ControlServiceV20180820", "ListTagsForResource", {}).n("S3ControlClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
10310
|
+
static {
|
|
10311
|
+
__name(this, "ListTagsForResourceCommand");
|
|
10312
|
+
}
|
|
10211
10313
|
};
|
|
10212
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
10213
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
10214
10314
|
|
|
10215
10315
|
// src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts
|
|
10216
10316
|
var import_middleware_sdk_s3_control74 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10218,7 +10318,7 @@ var import_middleware_sdk_s3_control74 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10218
10318
|
|
|
10219
10319
|
|
|
10220
10320
|
|
|
10221
|
-
var
|
|
10321
|
+
var PutAccessGrantsInstanceResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10222
10322
|
...commonParams,
|
|
10223
10323
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10224
10324
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10230,16 +10330,17 @@ var _PutAccessGrantsInstanceResourcePolicyCommand = class _PutAccessGrantsInstan
|
|
|
10230
10330
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10231
10331
|
];
|
|
10232
10332
|
}).s("AWSS3ControlServiceV20180820", "PutAccessGrantsInstanceResourcePolicy", {}).n("S3ControlClient", "PutAccessGrantsInstanceResourcePolicyCommand").f(void 0, void 0).ser(se_PutAccessGrantsInstanceResourcePolicyCommand).de(de_PutAccessGrantsInstanceResourcePolicyCommand).build() {
|
|
10333
|
+
static {
|
|
10334
|
+
__name(this, "PutAccessGrantsInstanceResourcePolicyCommand");
|
|
10335
|
+
}
|
|
10233
10336
|
};
|
|
10234
|
-
__name(_PutAccessGrantsInstanceResourcePolicyCommand, "PutAccessGrantsInstanceResourcePolicyCommand");
|
|
10235
|
-
var PutAccessGrantsInstanceResourcePolicyCommand = _PutAccessGrantsInstanceResourcePolicyCommand;
|
|
10236
10337
|
|
|
10237
10338
|
// src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts
|
|
10238
10339
|
var import_middleware_sdk_s3_control75 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10239
10340
|
|
|
10240
10341
|
|
|
10241
10342
|
|
|
10242
|
-
var
|
|
10343
|
+
var PutAccessPointConfigurationForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10243
10344
|
...commonParams,
|
|
10244
10345
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10245
10346
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10250,16 +10351,17 @@ var _PutAccessPointConfigurationForObjectLambdaCommand = class _PutAccessPointCo
|
|
|
10250
10351
|
(0, import_middleware_sdk_s3_control75.getProcessArnablesPlugin)(config)
|
|
10251
10352
|
];
|
|
10252
10353
|
}).s("AWSS3ControlServiceV20180820", "PutAccessPointConfigurationForObjectLambda", {}).n("S3ControlClient", "PutAccessPointConfigurationForObjectLambdaCommand").f(void 0, void 0).ser(se_PutAccessPointConfigurationForObjectLambdaCommand).de(de_PutAccessPointConfigurationForObjectLambdaCommand).build() {
|
|
10354
|
+
static {
|
|
10355
|
+
__name(this, "PutAccessPointConfigurationForObjectLambdaCommand");
|
|
10356
|
+
}
|
|
10253
10357
|
};
|
|
10254
|
-
__name(_PutAccessPointConfigurationForObjectLambdaCommand, "PutAccessPointConfigurationForObjectLambdaCommand");
|
|
10255
|
-
var PutAccessPointConfigurationForObjectLambdaCommand = _PutAccessPointConfigurationForObjectLambdaCommand;
|
|
10256
10358
|
|
|
10257
10359
|
// src/commands/PutAccessPointPolicyCommand.ts
|
|
10258
10360
|
var import_middleware_sdk_s3_control76 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10259
10361
|
|
|
10260
10362
|
|
|
10261
10363
|
|
|
10262
|
-
var
|
|
10364
|
+
var PutAccessPointPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10263
10365
|
...commonParams,
|
|
10264
10366
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10265
10367
|
AccessPointName: { type: "contextParams", name: "Name" },
|
|
@@ -10271,16 +10373,17 @@ var _PutAccessPointPolicyCommand = class _PutAccessPointPolicyCommand extends im
|
|
|
10271
10373
|
(0, import_middleware_sdk_s3_control76.getProcessArnablesPlugin)(config)
|
|
10272
10374
|
];
|
|
10273
10375
|
}).s("AWSS3ControlServiceV20180820", "PutAccessPointPolicy", {}).n("S3ControlClient", "PutAccessPointPolicyCommand").f(void 0, void 0).ser(se_PutAccessPointPolicyCommand).de(de_PutAccessPointPolicyCommand).build() {
|
|
10376
|
+
static {
|
|
10377
|
+
__name(this, "PutAccessPointPolicyCommand");
|
|
10378
|
+
}
|
|
10274
10379
|
};
|
|
10275
|
-
__name(_PutAccessPointPolicyCommand, "PutAccessPointPolicyCommand");
|
|
10276
|
-
var PutAccessPointPolicyCommand = _PutAccessPointPolicyCommand;
|
|
10277
10380
|
|
|
10278
10381
|
// src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts
|
|
10279
10382
|
var import_middleware_sdk_s3_control77 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10280
10383
|
|
|
10281
10384
|
|
|
10282
10385
|
|
|
10283
|
-
var
|
|
10386
|
+
var PutAccessPointPolicyForObjectLambdaCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10284
10387
|
...commonParams,
|
|
10285
10388
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10286
10389
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10291,9 +10394,10 @@ var _PutAccessPointPolicyForObjectLambdaCommand = class _PutAccessPointPolicyFor
|
|
|
10291
10394
|
(0, import_middleware_sdk_s3_control77.getProcessArnablesPlugin)(config)
|
|
10292
10395
|
];
|
|
10293
10396
|
}).s("AWSS3ControlServiceV20180820", "PutAccessPointPolicyForObjectLambda", {}).n("S3ControlClient", "PutAccessPointPolicyForObjectLambdaCommand").f(void 0, void 0).ser(se_PutAccessPointPolicyForObjectLambdaCommand).de(de_PutAccessPointPolicyForObjectLambdaCommand).build() {
|
|
10397
|
+
static {
|
|
10398
|
+
__name(this, "PutAccessPointPolicyForObjectLambdaCommand");
|
|
10399
|
+
}
|
|
10294
10400
|
};
|
|
10295
|
-
__name(_PutAccessPointPolicyForObjectLambdaCommand, "PutAccessPointPolicyForObjectLambdaCommand");
|
|
10296
|
-
var PutAccessPointPolicyForObjectLambdaCommand = _PutAccessPointPolicyForObjectLambdaCommand;
|
|
10297
10401
|
|
|
10298
10402
|
// src/commands/PutBucketLifecycleConfigurationCommand.ts
|
|
10299
10403
|
var import_middleware_sdk_s3_control78 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10301,7 +10405,7 @@ var import_middleware_sdk_s3_control78 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10301
10405
|
|
|
10302
10406
|
|
|
10303
10407
|
|
|
10304
|
-
var
|
|
10408
|
+
var PutBucketLifecycleConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10305
10409
|
...commonParams,
|
|
10306
10410
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10307
10411
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -10314,9 +10418,10 @@ var _PutBucketLifecycleConfigurationCommand = class _PutBucketLifecycleConfigura
|
|
|
10314
10418
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10315
10419
|
];
|
|
10316
10420
|
}).s("AWSS3ControlServiceV20180820", "PutBucketLifecycleConfiguration", {}).n("S3ControlClient", "PutBucketLifecycleConfigurationCommand").f(void 0, void 0).ser(se_PutBucketLifecycleConfigurationCommand).de(de_PutBucketLifecycleConfigurationCommand).build() {
|
|
10421
|
+
static {
|
|
10422
|
+
__name(this, "PutBucketLifecycleConfigurationCommand");
|
|
10423
|
+
}
|
|
10317
10424
|
};
|
|
10318
|
-
__name(_PutBucketLifecycleConfigurationCommand, "PutBucketLifecycleConfigurationCommand");
|
|
10319
|
-
var PutBucketLifecycleConfigurationCommand = _PutBucketLifecycleConfigurationCommand;
|
|
10320
10425
|
|
|
10321
10426
|
// src/commands/PutBucketPolicyCommand.ts
|
|
10322
10427
|
var import_middleware_sdk_s3_control79 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10324,7 +10429,7 @@ var import_middleware_sdk_s3_control79 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10324
10429
|
|
|
10325
10430
|
|
|
10326
10431
|
|
|
10327
|
-
var
|
|
10432
|
+
var PutBucketPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10328
10433
|
...commonParams,
|
|
10329
10434
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10330
10435
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -10337,9 +10442,10 @@ var _PutBucketPolicyCommand = class _PutBucketPolicyCommand extends import_smith
|
|
|
10337
10442
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10338
10443
|
];
|
|
10339
10444
|
}).s("AWSS3ControlServiceV20180820", "PutBucketPolicy", {}).n("S3ControlClient", "PutBucketPolicyCommand").f(void 0, void 0).ser(se_PutBucketPolicyCommand).de(de_PutBucketPolicyCommand).build() {
|
|
10445
|
+
static {
|
|
10446
|
+
__name(this, "PutBucketPolicyCommand");
|
|
10447
|
+
}
|
|
10340
10448
|
};
|
|
10341
|
-
__name(_PutBucketPolicyCommand, "PutBucketPolicyCommand");
|
|
10342
|
-
var PutBucketPolicyCommand = _PutBucketPolicyCommand;
|
|
10343
10449
|
|
|
10344
10450
|
// src/commands/PutBucketReplicationCommand.ts
|
|
10345
10451
|
var import_middleware_sdk_s3_control80 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10347,7 +10453,7 @@ var import_middleware_sdk_s3_control80 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10347
10453
|
|
|
10348
10454
|
|
|
10349
10455
|
|
|
10350
|
-
var
|
|
10456
|
+
var PutBucketReplicationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10351
10457
|
...commonParams,
|
|
10352
10458
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10353
10459
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -10360,9 +10466,10 @@ var _PutBucketReplicationCommand = class _PutBucketReplicationCommand extends im
|
|
|
10360
10466
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10361
10467
|
];
|
|
10362
10468
|
}).s("AWSS3ControlServiceV20180820", "PutBucketReplication", {}).n("S3ControlClient", "PutBucketReplicationCommand").f(void 0, void 0).ser(se_PutBucketReplicationCommand).de(de_PutBucketReplicationCommand).build() {
|
|
10469
|
+
static {
|
|
10470
|
+
__name(this, "PutBucketReplicationCommand");
|
|
10471
|
+
}
|
|
10363
10472
|
};
|
|
10364
|
-
__name(_PutBucketReplicationCommand, "PutBucketReplicationCommand");
|
|
10365
|
-
var PutBucketReplicationCommand = _PutBucketReplicationCommand;
|
|
10366
10473
|
|
|
10367
10474
|
// src/commands/PutBucketTaggingCommand.ts
|
|
10368
10475
|
var import_middleware_sdk_s3_control81 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10370,7 +10477,7 @@ var import_middleware_sdk_s3_control81 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10370
10477
|
|
|
10371
10478
|
|
|
10372
10479
|
|
|
10373
|
-
var
|
|
10480
|
+
var PutBucketTaggingCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10374
10481
|
...commonParams,
|
|
10375
10482
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10376
10483
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -10383,9 +10490,10 @@ var _PutBucketTaggingCommand = class _PutBucketTaggingCommand extends import_smi
|
|
|
10383
10490
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10384
10491
|
];
|
|
10385
10492
|
}).s("AWSS3ControlServiceV20180820", "PutBucketTagging", {}).n("S3ControlClient", "PutBucketTaggingCommand").f(void 0, void 0).ser(se_PutBucketTaggingCommand).de(de_PutBucketTaggingCommand).build() {
|
|
10493
|
+
static {
|
|
10494
|
+
__name(this, "PutBucketTaggingCommand");
|
|
10495
|
+
}
|
|
10386
10496
|
};
|
|
10387
|
-
__name(_PutBucketTaggingCommand, "PutBucketTaggingCommand");
|
|
10388
|
-
var PutBucketTaggingCommand = _PutBucketTaggingCommand;
|
|
10389
10497
|
|
|
10390
10498
|
// src/commands/PutBucketVersioningCommand.ts
|
|
10391
10499
|
var import_middleware_sdk_s3_control82 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10393,7 +10501,7 @@ var import_middleware_sdk_s3_control82 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10393
10501
|
|
|
10394
10502
|
|
|
10395
10503
|
|
|
10396
|
-
var
|
|
10504
|
+
var PutBucketVersioningCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10397
10505
|
...commonParams,
|
|
10398
10506
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10399
10507
|
AccountId: { type: "contextParams", name: "AccountId" },
|
|
@@ -10406,16 +10514,17 @@ var _PutBucketVersioningCommand = class _PutBucketVersioningCommand extends impo
|
|
|
10406
10514
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10407
10515
|
];
|
|
10408
10516
|
}).s("AWSS3ControlServiceV20180820", "PutBucketVersioning", {}).n("S3ControlClient", "PutBucketVersioningCommand").f(void 0, void 0).ser(se_PutBucketVersioningCommand).de(de_PutBucketVersioningCommand).build() {
|
|
10517
|
+
static {
|
|
10518
|
+
__name(this, "PutBucketVersioningCommand");
|
|
10519
|
+
}
|
|
10409
10520
|
};
|
|
10410
|
-
__name(_PutBucketVersioningCommand, "PutBucketVersioningCommand");
|
|
10411
|
-
var PutBucketVersioningCommand = _PutBucketVersioningCommand;
|
|
10412
10521
|
|
|
10413
10522
|
// src/commands/PutJobTaggingCommand.ts
|
|
10414
10523
|
var import_middleware_sdk_s3_control83 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10415
10524
|
|
|
10416
10525
|
|
|
10417
10526
|
|
|
10418
|
-
var
|
|
10527
|
+
var PutJobTaggingCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10419
10528
|
...commonParams,
|
|
10420
10529
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10421
10530
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10426,9 +10535,10 @@ var _PutJobTaggingCommand = class _PutJobTaggingCommand extends import_smithy_cl
|
|
|
10426
10535
|
(0, import_middleware_sdk_s3_control83.getProcessArnablesPlugin)(config)
|
|
10427
10536
|
];
|
|
10428
10537
|
}).s("AWSS3ControlServiceV20180820", "PutJobTagging", {}).n("S3ControlClient", "PutJobTaggingCommand").f(void 0, void 0).ser(se_PutJobTaggingCommand).de(de_PutJobTaggingCommand).build() {
|
|
10538
|
+
static {
|
|
10539
|
+
__name(this, "PutJobTaggingCommand");
|
|
10540
|
+
}
|
|
10429
10541
|
};
|
|
10430
|
-
__name(_PutJobTaggingCommand, "PutJobTaggingCommand");
|
|
10431
|
-
var PutJobTaggingCommand = _PutJobTaggingCommand;
|
|
10432
10542
|
|
|
10433
10543
|
// src/commands/PutMultiRegionAccessPointPolicyCommand.ts
|
|
10434
10544
|
var import_middleware_sdk_s3_control84 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10436,7 +10546,7 @@ var import_middleware_sdk_s3_control84 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10436
10546
|
|
|
10437
10547
|
|
|
10438
10548
|
|
|
10439
|
-
var
|
|
10549
|
+
var PutMultiRegionAccessPointPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10440
10550
|
...commonParams,
|
|
10441
10551
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10442
10552
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10448,16 +10558,17 @@ var _PutMultiRegionAccessPointPolicyCommand = class _PutMultiRegionAccessPointPo
|
|
|
10448
10558
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10449
10559
|
];
|
|
10450
10560
|
}).s("AWSS3ControlServiceV20180820", "PutMultiRegionAccessPointPolicy", {}).n("S3ControlClient", "PutMultiRegionAccessPointPolicyCommand").f(void 0, void 0).ser(se_PutMultiRegionAccessPointPolicyCommand).de(de_PutMultiRegionAccessPointPolicyCommand).build() {
|
|
10561
|
+
static {
|
|
10562
|
+
__name(this, "PutMultiRegionAccessPointPolicyCommand");
|
|
10563
|
+
}
|
|
10451
10564
|
};
|
|
10452
|
-
__name(_PutMultiRegionAccessPointPolicyCommand, "PutMultiRegionAccessPointPolicyCommand");
|
|
10453
|
-
var PutMultiRegionAccessPointPolicyCommand = _PutMultiRegionAccessPointPolicyCommand;
|
|
10454
10565
|
|
|
10455
10566
|
// src/commands/PutPublicAccessBlockCommand.ts
|
|
10456
10567
|
var import_middleware_sdk_s3_control85 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10457
10568
|
|
|
10458
10569
|
|
|
10459
10570
|
|
|
10460
|
-
var
|
|
10571
|
+
var PutPublicAccessBlockCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10461
10572
|
...commonParams,
|
|
10462
10573
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10463
10574
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10468,16 +10579,17 @@ var _PutPublicAccessBlockCommand = class _PutPublicAccessBlockCommand extends im
|
|
|
10468
10579
|
(0, import_middleware_sdk_s3_control85.getProcessArnablesPlugin)(config)
|
|
10469
10580
|
];
|
|
10470
10581
|
}).s("AWSS3ControlServiceV20180820", "PutPublicAccessBlock", {}).n("S3ControlClient", "PutPublicAccessBlockCommand").f(void 0, void 0).ser(se_PutPublicAccessBlockCommand).de(de_PutPublicAccessBlockCommand).build() {
|
|
10582
|
+
static {
|
|
10583
|
+
__name(this, "PutPublicAccessBlockCommand");
|
|
10584
|
+
}
|
|
10471
10585
|
};
|
|
10472
|
-
__name(_PutPublicAccessBlockCommand, "PutPublicAccessBlockCommand");
|
|
10473
|
-
var PutPublicAccessBlockCommand = _PutPublicAccessBlockCommand;
|
|
10474
10586
|
|
|
10475
10587
|
// src/commands/PutStorageLensConfigurationCommand.ts
|
|
10476
10588
|
var import_middleware_sdk_s3_control86 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10477
10589
|
|
|
10478
10590
|
|
|
10479
10591
|
|
|
10480
|
-
var
|
|
10592
|
+
var PutStorageLensConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10481
10593
|
...commonParams,
|
|
10482
10594
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10483
10595
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10488,16 +10600,17 @@ var _PutStorageLensConfigurationCommand = class _PutStorageLensConfigurationComm
|
|
|
10488
10600
|
(0, import_middleware_sdk_s3_control86.getProcessArnablesPlugin)(config)
|
|
10489
10601
|
];
|
|
10490
10602
|
}).s("AWSS3ControlServiceV20180820", "PutStorageLensConfiguration", {}).n("S3ControlClient", "PutStorageLensConfigurationCommand").f(void 0, void 0).ser(se_PutStorageLensConfigurationCommand).de(de_PutStorageLensConfigurationCommand).build() {
|
|
10603
|
+
static {
|
|
10604
|
+
__name(this, "PutStorageLensConfigurationCommand");
|
|
10605
|
+
}
|
|
10491
10606
|
};
|
|
10492
|
-
__name(_PutStorageLensConfigurationCommand, "PutStorageLensConfigurationCommand");
|
|
10493
|
-
var PutStorageLensConfigurationCommand = _PutStorageLensConfigurationCommand;
|
|
10494
10607
|
|
|
10495
10608
|
// src/commands/PutStorageLensConfigurationTaggingCommand.ts
|
|
10496
10609
|
var import_middleware_sdk_s3_control87 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10497
10610
|
|
|
10498
10611
|
|
|
10499
10612
|
|
|
10500
|
-
var
|
|
10613
|
+
var PutStorageLensConfigurationTaggingCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10501
10614
|
...commonParams,
|
|
10502
10615
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10503
10616
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10508,9 +10621,10 @@ var _PutStorageLensConfigurationTaggingCommand = class _PutStorageLensConfigurat
|
|
|
10508
10621
|
(0, import_middleware_sdk_s3_control87.getProcessArnablesPlugin)(config)
|
|
10509
10622
|
];
|
|
10510
10623
|
}).s("AWSS3ControlServiceV20180820", "PutStorageLensConfigurationTagging", {}).n("S3ControlClient", "PutStorageLensConfigurationTaggingCommand").f(void 0, void 0).ser(se_PutStorageLensConfigurationTaggingCommand).de(de_PutStorageLensConfigurationTaggingCommand).build() {
|
|
10624
|
+
static {
|
|
10625
|
+
__name(this, "PutStorageLensConfigurationTaggingCommand");
|
|
10626
|
+
}
|
|
10511
10627
|
};
|
|
10512
|
-
__name(_PutStorageLensConfigurationTaggingCommand, "PutStorageLensConfigurationTaggingCommand");
|
|
10513
|
-
var PutStorageLensConfigurationTaggingCommand = _PutStorageLensConfigurationTaggingCommand;
|
|
10514
10628
|
|
|
10515
10629
|
// src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts
|
|
10516
10630
|
var import_middleware_sdk_s3_control88 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10518,7 +10632,7 @@ var import_middleware_sdk_s3_control88 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10518
10632
|
|
|
10519
10633
|
|
|
10520
10634
|
|
|
10521
|
-
var
|
|
10635
|
+
var SubmitMultiRegionAccessPointRoutesCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10522
10636
|
...commonParams,
|
|
10523
10637
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10524
10638
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10530,16 +10644,17 @@ var _SubmitMultiRegionAccessPointRoutesCommand = class _SubmitMultiRegionAccessP
|
|
|
10530
10644
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10531
10645
|
];
|
|
10532
10646
|
}).s("AWSS3ControlServiceV20180820", "SubmitMultiRegionAccessPointRoutes", {}).n("S3ControlClient", "SubmitMultiRegionAccessPointRoutesCommand").f(void 0, void 0).ser(se_SubmitMultiRegionAccessPointRoutesCommand).de(de_SubmitMultiRegionAccessPointRoutesCommand).build() {
|
|
10647
|
+
static {
|
|
10648
|
+
__name(this, "SubmitMultiRegionAccessPointRoutesCommand");
|
|
10649
|
+
}
|
|
10533
10650
|
};
|
|
10534
|
-
__name(_SubmitMultiRegionAccessPointRoutesCommand, "SubmitMultiRegionAccessPointRoutesCommand");
|
|
10535
|
-
var SubmitMultiRegionAccessPointRoutesCommand = _SubmitMultiRegionAccessPointRoutesCommand;
|
|
10536
10651
|
|
|
10537
10652
|
// src/commands/TagResourceCommand.ts
|
|
10538
10653
|
var import_middleware_sdk_s3_control89 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10539
10654
|
|
|
10540
10655
|
|
|
10541
10656
|
|
|
10542
|
-
var
|
|
10657
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10543
10658
|
...commonParams,
|
|
10544
10659
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10545
10660
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10550,16 +10665,17 @@ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client
|
|
|
10550
10665
|
(0, import_middleware_sdk_s3_control89.getProcessArnablesPlugin)(config)
|
|
10551
10666
|
];
|
|
10552
10667
|
}).s("AWSS3ControlServiceV20180820", "TagResource", {}).n("S3ControlClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
10668
|
+
static {
|
|
10669
|
+
__name(this, "TagResourceCommand");
|
|
10670
|
+
}
|
|
10553
10671
|
};
|
|
10554
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
10555
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
10556
10672
|
|
|
10557
10673
|
// src/commands/UntagResourceCommand.ts
|
|
10558
10674
|
var import_middleware_sdk_s3_control90 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10559
10675
|
|
|
10560
10676
|
|
|
10561
10677
|
|
|
10562
|
-
var
|
|
10678
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10563
10679
|
...commonParams,
|
|
10564
10680
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10565
10681
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10570,9 +10686,10 @@ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_cl
|
|
|
10570
10686
|
(0, import_middleware_sdk_s3_control90.getProcessArnablesPlugin)(config)
|
|
10571
10687
|
];
|
|
10572
10688
|
}).s("AWSS3ControlServiceV20180820", "UntagResource", {}).n("S3ControlClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
10689
|
+
static {
|
|
10690
|
+
__name(this, "UntagResourceCommand");
|
|
10691
|
+
}
|
|
10573
10692
|
};
|
|
10574
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
10575
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
10576
10693
|
|
|
10577
10694
|
// src/commands/UpdateAccessGrantsLocationCommand.ts
|
|
10578
10695
|
var import_middleware_sdk_s3_control91 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
@@ -10580,7 +10697,7 @@ var import_middleware_sdk_s3_control91 = require("@aws-sdk/middleware-sdk-s3-con
|
|
|
10580
10697
|
|
|
10581
10698
|
|
|
10582
10699
|
|
|
10583
|
-
var
|
|
10700
|
+
var UpdateAccessGrantsLocationCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10584
10701
|
...commonParams,
|
|
10585
10702
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10586
10703
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10592,16 +10709,17 @@ var _UpdateAccessGrantsLocationCommand = class _UpdateAccessGrantsLocationComman
|
|
|
10592
10709
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10593
10710
|
];
|
|
10594
10711
|
}).s("AWSS3ControlServiceV20180820", "UpdateAccessGrantsLocation", {}).n("S3ControlClient", "UpdateAccessGrantsLocationCommand").f(void 0, void 0).ser(se_UpdateAccessGrantsLocationCommand).de(de_UpdateAccessGrantsLocationCommand).build() {
|
|
10712
|
+
static {
|
|
10713
|
+
__name(this, "UpdateAccessGrantsLocationCommand");
|
|
10714
|
+
}
|
|
10595
10715
|
};
|
|
10596
|
-
__name(_UpdateAccessGrantsLocationCommand, "UpdateAccessGrantsLocationCommand");
|
|
10597
|
-
var UpdateAccessGrantsLocationCommand = _UpdateAccessGrantsLocationCommand;
|
|
10598
10716
|
|
|
10599
10717
|
// src/commands/UpdateJobPriorityCommand.ts
|
|
10600
10718
|
var import_middleware_sdk_s3_control92 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10601
10719
|
|
|
10602
10720
|
|
|
10603
10721
|
|
|
10604
|
-
var
|
|
10722
|
+
var UpdateJobPriorityCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10605
10723
|
...commonParams,
|
|
10606
10724
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10607
10725
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10612,16 +10730,17 @@ var _UpdateJobPriorityCommand = class _UpdateJobPriorityCommand extends import_s
|
|
|
10612
10730
|
(0, import_middleware_sdk_s3_control92.getProcessArnablesPlugin)(config)
|
|
10613
10731
|
];
|
|
10614
10732
|
}).s("AWSS3ControlServiceV20180820", "UpdateJobPriority", {}).n("S3ControlClient", "UpdateJobPriorityCommand").f(void 0, void 0).ser(se_UpdateJobPriorityCommand).de(de_UpdateJobPriorityCommand).build() {
|
|
10733
|
+
static {
|
|
10734
|
+
__name(this, "UpdateJobPriorityCommand");
|
|
10735
|
+
}
|
|
10615
10736
|
};
|
|
10616
|
-
__name(_UpdateJobPriorityCommand, "UpdateJobPriorityCommand");
|
|
10617
|
-
var UpdateJobPriorityCommand = _UpdateJobPriorityCommand;
|
|
10618
10737
|
|
|
10619
10738
|
// src/commands/UpdateJobStatusCommand.ts
|
|
10620
10739
|
var import_middleware_sdk_s3_control93 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10621
10740
|
|
|
10622
10741
|
|
|
10623
10742
|
|
|
10624
|
-
var
|
|
10743
|
+
var UpdateJobStatusCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10625
10744
|
...commonParams,
|
|
10626
10745
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10627
10746
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10632,16 +10751,17 @@ var _UpdateJobStatusCommand = class _UpdateJobStatusCommand extends import_smith
|
|
|
10632
10751
|
(0, import_middleware_sdk_s3_control93.getProcessArnablesPlugin)(config)
|
|
10633
10752
|
];
|
|
10634
10753
|
}).s("AWSS3ControlServiceV20180820", "UpdateJobStatus", {}).n("S3ControlClient", "UpdateJobStatusCommand").f(void 0, void 0).ser(se_UpdateJobStatusCommand).de(de_UpdateJobStatusCommand).build() {
|
|
10754
|
+
static {
|
|
10755
|
+
__name(this, "UpdateJobStatusCommand");
|
|
10756
|
+
}
|
|
10635
10757
|
};
|
|
10636
|
-
__name(_UpdateJobStatusCommand, "UpdateJobStatusCommand");
|
|
10637
|
-
var UpdateJobStatusCommand = _UpdateJobStatusCommand;
|
|
10638
10758
|
|
|
10639
10759
|
// src/commands/UpdateStorageLensGroupCommand.ts
|
|
10640
10760
|
var import_middleware_sdk_s3_control94 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10641
10761
|
|
|
10642
10762
|
|
|
10643
10763
|
|
|
10644
|
-
var
|
|
10764
|
+
var UpdateStorageLensGroupCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
10645
10765
|
...commonParams,
|
|
10646
10766
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10647
10767
|
AccountId: { type: "contextParams", name: "AccountId" }
|
|
@@ -10652,9 +10772,10 @@ var _UpdateStorageLensGroupCommand = class _UpdateStorageLensGroupCommand extend
|
|
|
10652
10772
|
(0, import_middleware_sdk_s3_control94.getProcessArnablesPlugin)(config)
|
|
10653
10773
|
];
|
|
10654
10774
|
}).s("AWSS3ControlServiceV20180820", "UpdateStorageLensGroup", {}).n("S3ControlClient", "UpdateStorageLensGroupCommand").f(void 0, void 0).ser(se_UpdateStorageLensGroupCommand).de(de_UpdateStorageLensGroupCommand).build() {
|
|
10775
|
+
static {
|
|
10776
|
+
__name(this, "UpdateStorageLensGroupCommand");
|
|
10777
|
+
}
|
|
10655
10778
|
};
|
|
10656
|
-
__name(_UpdateStorageLensGroupCommand, "UpdateStorageLensGroupCommand");
|
|
10657
|
-
var UpdateStorageLensGroupCommand = _UpdateStorageLensGroupCommand;
|
|
10658
10779
|
|
|
10659
10780
|
// src/S3Control.ts
|
|
10660
10781
|
var commands = {
|
|
@@ -10752,10 +10873,11 @@ var commands = {
|
|
|
10752
10873
|
UpdateJobStatusCommand,
|
|
10753
10874
|
UpdateStorageLensGroupCommand
|
|
10754
10875
|
};
|
|
10755
|
-
var
|
|
10876
|
+
var S3Control = class extends S3ControlClient {
|
|
10877
|
+
static {
|
|
10878
|
+
__name(this, "S3Control");
|
|
10879
|
+
}
|
|
10756
10880
|
};
|
|
10757
|
-
__name(_S3Control, "S3Control");
|
|
10758
|
-
var S3Control = _S3Control;
|
|
10759
10881
|
(0, import_smithy_client.createAggregatedClient)(commands, S3Control);
|
|
10760
10882
|
|
|
10761
10883
|
// src/pagination/ListAccessGrantsInstancesPaginator.ts
|