localstack-core 4.4.1.dev11__py3-none-any.whl → 4.4.1.dev13__py3-none-any.whl
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.
- localstack/aws/api/acm/__init__.py +19 -19
- localstack/aws/api/apigateway/__init__.py +202 -187
- localstack/aws/api/cloudcontrol/__init__.py +19 -19
- localstack/aws/api/cloudformation/__init__.py +240 -236
- localstack/aws/api/cloudwatch/__init__.py +108 -108
- localstack/aws/api/config/__init__.py +190 -174
- localstack/aws/api/dynamodb/__init__.py +176 -170
- localstack/aws/api/dynamodbstreams/__init__.py +7 -7
- localstack/aws/api/ec2/__init__.py +2415 -2348
- localstack/aws/api/es/__init__.py +81 -73
- localstack/aws/api/events/__init__.py +114 -110
- localstack/aws/api/firehose/__init__.py +43 -36
- localstack/aws/api/iam/__init__.py +189 -185
- localstack/aws/api/kinesis/__init__.py +70 -70
- localstack/aws/api/kms/__init__.py +126 -122
- localstack/aws/api/lambda_/__init__.py +191 -191
- localstack/aws/api/logs/__init__.py +150 -150
- localstack/aws/api/opensearch/__init__.py +138 -130
- localstack/aws/api/pipes/__init__.py +25 -25
- localstack/aws/api/redshift/__init__.py +420 -420
- localstack/aws/api/resource_groups/__init__.py +44 -44
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +17 -17
- localstack/aws/api/route53/__init__.py +86 -82
- localstack/aws/api/route53resolver/__init__.py +103 -103
- localstack/aws/api/s3/__init__.py +489 -489
- localstack/aws/api/s3control/__init__.py +69 -69
- localstack/aws/api/scheduler/__init__.py +36 -32
- localstack/aws/api/secretsmanager/__init__.py +51 -51
- localstack/aws/api/ses/__init__.py +55 -55
- localstack/aws/api/sns/__init__.py +35 -31
- localstack/aws/api/sqs/__init__.py +24 -24
- localstack/aws/api/ssm/__init__.py +439 -439
- localstack/aws/api/stepfunctions/__init__.py +58 -58
- localstack/aws/api/sts/__init__.py +25 -25
- localstack/aws/api/support/__init__.py +29 -29
- localstack/aws/api/swf/__init__.py +88 -84
- localstack/aws/api/transcribe/__init__.py +80 -80
- localstack/aws/scaffold.py +1 -1
- localstack/testing/aws/asf_utils.py +7 -3
- localstack/version.py +2 -2
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/METADATA +1 -1
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/RECORD +50 -50
- localstack_core-4.4.1.dev13.dist-info/plux.json +1 -0
- localstack_core-4.4.1.dev11.dist-info/plux.json +0 -1
- {localstack_core-4.4.1.dev11.data → localstack_core-4.4.1.dev13.data}/scripts/localstack +0 -0
- {localstack_core-4.4.1.dev11.data → localstack_core-4.4.1.dev13.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.4.1.dev11.data → localstack_core-4.4.1.dev13.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/WHEEL +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/top_level.txt +0 -0
@@ -3604,9 +3604,9 @@ class S3Api:
|
|
3604
3604
|
bucket: BucketName,
|
3605
3605
|
key: ObjectKey,
|
3606
3606
|
upload_id: MultipartUploadId,
|
3607
|
-
request_payer: RequestPayer = None,
|
3608
|
-
expected_bucket_owner: AccountId = None,
|
3609
|
-
if_match_initiated_time: IfMatchInitiatedTime = None,
|
3607
|
+
request_payer: RequestPayer | None = None,
|
3608
|
+
expected_bucket_owner: AccountId | None = None,
|
3609
|
+
if_match_initiated_time: IfMatchInitiatedTime | None = None,
|
3610
3610
|
**kwargs,
|
3611
3611
|
) -> AbortMultipartUploadOutput:
|
3612
3612
|
raise NotImplementedError
|
@@ -3618,21 +3618,21 @@ class S3Api:
|
|
3618
3618
|
bucket: BucketName,
|
3619
3619
|
key: ObjectKey,
|
3620
3620
|
upload_id: MultipartUploadId,
|
3621
|
-
multipart_upload: CompletedMultipartUpload = None,
|
3622
|
-
checksum_crc32: ChecksumCRC32 = None,
|
3623
|
-
checksum_crc32_c: ChecksumCRC32C = None,
|
3624
|
-
checksum_crc64_nvme: ChecksumCRC64NVME = None,
|
3625
|
-
checksum_sha1: ChecksumSHA1 = None,
|
3626
|
-
checksum_sha256: ChecksumSHA256 = None,
|
3627
|
-
checksum_type: ChecksumType = None,
|
3628
|
-
mpu_object_size: MpuObjectSize = None,
|
3629
|
-
request_payer: RequestPayer = None,
|
3630
|
-
expected_bucket_owner: AccountId = None,
|
3631
|
-
if_match: IfMatch = None,
|
3632
|
-
if_none_match: IfNoneMatch = None,
|
3633
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
3634
|
-
sse_customer_key: SSECustomerKey = None,
|
3635
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
3621
|
+
multipart_upload: CompletedMultipartUpload | None = None,
|
3622
|
+
checksum_crc32: ChecksumCRC32 | None = None,
|
3623
|
+
checksum_crc32_c: ChecksumCRC32C | None = None,
|
3624
|
+
checksum_crc64_nvme: ChecksumCRC64NVME | None = None,
|
3625
|
+
checksum_sha1: ChecksumSHA1 | None = None,
|
3626
|
+
checksum_sha256: ChecksumSHA256 | None = None,
|
3627
|
+
checksum_type: ChecksumType | None = None,
|
3628
|
+
mpu_object_size: MpuObjectSize | None = None,
|
3629
|
+
request_payer: RequestPayer | None = None,
|
3630
|
+
expected_bucket_owner: AccountId | None = None,
|
3631
|
+
if_match: IfMatch | None = None,
|
3632
|
+
if_none_match: IfNoneMatch | None = None,
|
3633
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
3634
|
+
sse_customer_key: SSECustomerKey | None = None,
|
3635
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
3636
3636
|
**kwargs,
|
3637
3637
|
) -> CompleteMultipartUploadOutput:
|
3638
3638
|
raise NotImplementedError
|
@@ -3644,44 +3644,44 @@ class S3Api:
|
|
3644
3644
|
bucket: BucketName,
|
3645
3645
|
copy_source: CopySource,
|
3646
3646
|
key: ObjectKey,
|
3647
|
-
acl: ObjectCannedACL = None,
|
3648
|
-
cache_control: CacheControl = None,
|
3649
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
3650
|
-
content_disposition: ContentDisposition = None,
|
3651
|
-
content_encoding: ContentEncoding = None,
|
3652
|
-
content_language: ContentLanguage = None,
|
3653
|
-
content_type: ContentType = None,
|
3654
|
-
copy_source_if_match: CopySourceIfMatch = None,
|
3655
|
-
copy_source_if_modified_since: CopySourceIfModifiedSince = None,
|
3656
|
-
copy_source_if_none_match: CopySourceIfNoneMatch = None,
|
3657
|
-
copy_source_if_unmodified_since: CopySourceIfUnmodifiedSince = None,
|
3658
|
-
expires: Expires = None,
|
3659
|
-
grant_full_control: GrantFullControl = None,
|
3660
|
-
grant_read: GrantRead = None,
|
3661
|
-
grant_read_acp: GrantReadACP = None,
|
3662
|
-
grant_write_acp: GrantWriteACP = None,
|
3663
|
-
metadata: Metadata = None,
|
3664
|
-
metadata_directive: MetadataDirective = None,
|
3665
|
-
tagging_directive: TaggingDirective = None,
|
3666
|
-
server_side_encryption: ServerSideEncryption = None,
|
3667
|
-
storage_class: StorageClass = None,
|
3668
|
-
website_redirect_location: WebsiteRedirectLocation = None,
|
3669
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
3670
|
-
sse_customer_key: SSECustomerKey = None,
|
3671
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
3672
|
-
ssekms_key_id: SSEKMSKeyId = None,
|
3673
|
-
ssekms_encryption_context: SSEKMSEncryptionContext = None,
|
3674
|
-
bucket_key_enabled: BucketKeyEnabled = None,
|
3675
|
-
copy_source_sse_customer_algorithm: CopySourceSSECustomerAlgorithm = None,
|
3676
|
-
copy_source_sse_customer_key: CopySourceSSECustomerKey = None,
|
3677
|
-
copy_source_sse_customer_key_md5: CopySourceSSECustomerKeyMD5 = None,
|
3678
|
-
request_payer: RequestPayer = None,
|
3679
|
-
tagging: TaggingHeader = None,
|
3680
|
-
object_lock_mode: ObjectLockMode = None,
|
3681
|
-
object_lock_retain_until_date: ObjectLockRetainUntilDate = None,
|
3682
|
-
object_lock_legal_hold_status: ObjectLockLegalHoldStatus = None,
|
3683
|
-
expected_bucket_owner: AccountId = None,
|
3684
|
-
expected_source_bucket_owner: AccountId = None,
|
3647
|
+
acl: ObjectCannedACL | None = None,
|
3648
|
+
cache_control: CacheControl | None = None,
|
3649
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
3650
|
+
content_disposition: ContentDisposition | None = None,
|
3651
|
+
content_encoding: ContentEncoding | None = None,
|
3652
|
+
content_language: ContentLanguage | None = None,
|
3653
|
+
content_type: ContentType | None = None,
|
3654
|
+
copy_source_if_match: CopySourceIfMatch | None = None,
|
3655
|
+
copy_source_if_modified_since: CopySourceIfModifiedSince | None = None,
|
3656
|
+
copy_source_if_none_match: CopySourceIfNoneMatch | None = None,
|
3657
|
+
copy_source_if_unmodified_since: CopySourceIfUnmodifiedSince | None = None,
|
3658
|
+
expires: Expires | None = None,
|
3659
|
+
grant_full_control: GrantFullControl | None = None,
|
3660
|
+
grant_read: GrantRead | None = None,
|
3661
|
+
grant_read_acp: GrantReadACP | None = None,
|
3662
|
+
grant_write_acp: GrantWriteACP | None = None,
|
3663
|
+
metadata: Metadata | None = None,
|
3664
|
+
metadata_directive: MetadataDirective | None = None,
|
3665
|
+
tagging_directive: TaggingDirective | None = None,
|
3666
|
+
server_side_encryption: ServerSideEncryption | None = None,
|
3667
|
+
storage_class: StorageClass | None = None,
|
3668
|
+
website_redirect_location: WebsiteRedirectLocation | None = None,
|
3669
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
3670
|
+
sse_customer_key: SSECustomerKey | None = None,
|
3671
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
3672
|
+
ssekms_key_id: SSEKMSKeyId | None = None,
|
3673
|
+
ssekms_encryption_context: SSEKMSEncryptionContext | None = None,
|
3674
|
+
bucket_key_enabled: BucketKeyEnabled | None = None,
|
3675
|
+
copy_source_sse_customer_algorithm: CopySourceSSECustomerAlgorithm | None = None,
|
3676
|
+
copy_source_sse_customer_key: CopySourceSSECustomerKey | None = None,
|
3677
|
+
copy_source_sse_customer_key_md5: CopySourceSSECustomerKeyMD5 | None = None,
|
3678
|
+
request_payer: RequestPayer | None = None,
|
3679
|
+
tagging: TaggingHeader | None = None,
|
3680
|
+
object_lock_mode: ObjectLockMode | None = None,
|
3681
|
+
object_lock_retain_until_date: ObjectLockRetainUntilDate | None = None,
|
3682
|
+
object_lock_legal_hold_status: ObjectLockLegalHoldStatus | None = None,
|
3683
|
+
expected_bucket_owner: AccountId | None = None,
|
3684
|
+
expected_source_bucket_owner: AccountId | None = None,
|
3685
3685
|
**kwargs,
|
3686
3686
|
) -> CopyObjectOutput:
|
3687
3687
|
raise NotImplementedError
|
@@ -3691,15 +3691,15 @@ class S3Api:
|
|
3691
3691
|
self,
|
3692
3692
|
context: RequestContext,
|
3693
3693
|
bucket: BucketName,
|
3694
|
-
acl: BucketCannedACL = None,
|
3695
|
-
create_bucket_configuration: CreateBucketConfiguration = None,
|
3696
|
-
grant_full_control: GrantFullControl = None,
|
3697
|
-
grant_read: GrantRead = None,
|
3698
|
-
grant_read_acp: GrantReadACP = None,
|
3699
|
-
grant_write: GrantWrite = None,
|
3700
|
-
grant_write_acp: GrantWriteACP = None,
|
3701
|
-
object_lock_enabled_for_bucket: ObjectLockEnabledForBucket = None,
|
3702
|
-
object_ownership: ObjectOwnership = None,
|
3694
|
+
acl: BucketCannedACL | None = None,
|
3695
|
+
create_bucket_configuration: CreateBucketConfiguration | None = None,
|
3696
|
+
grant_full_control: GrantFullControl | None = None,
|
3697
|
+
grant_read: GrantRead | None = None,
|
3698
|
+
grant_read_acp: GrantReadACP | None = None,
|
3699
|
+
grant_write: GrantWrite | None = None,
|
3700
|
+
grant_write_acp: GrantWriteACP | None = None,
|
3701
|
+
object_lock_enabled_for_bucket: ObjectLockEnabledForBucket | None = None,
|
3702
|
+
object_ownership: ObjectOwnership | None = None,
|
3703
3703
|
**kwargs,
|
3704
3704
|
) -> CreateBucketOutput:
|
3705
3705
|
raise NotImplementedError
|
@@ -3710,9 +3710,9 @@ class S3Api:
|
|
3710
3710
|
context: RequestContext,
|
3711
3711
|
bucket: BucketName,
|
3712
3712
|
metadata_table_configuration: MetadataTableConfiguration,
|
3713
|
-
content_md5: ContentMD5 = None,
|
3714
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
3715
|
-
expected_bucket_owner: AccountId = None,
|
3713
|
+
content_md5: ContentMD5 | None = None,
|
3714
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
3715
|
+
expected_bucket_owner: AccountId | None = None,
|
3716
3716
|
**kwargs,
|
3717
3717
|
) -> None:
|
3718
3718
|
raise NotImplementedError
|
@@ -3723,35 +3723,35 @@ class S3Api:
|
|
3723
3723
|
context: RequestContext,
|
3724
3724
|
bucket: BucketName,
|
3725
3725
|
key: ObjectKey,
|
3726
|
-
acl: ObjectCannedACL = None,
|
3727
|
-
cache_control: CacheControl = None,
|
3728
|
-
content_disposition: ContentDisposition = None,
|
3729
|
-
content_encoding: ContentEncoding = None,
|
3730
|
-
content_language: ContentLanguage = None,
|
3731
|
-
content_type: ContentType = None,
|
3732
|
-
expires: Expires = None,
|
3733
|
-
grant_full_control: GrantFullControl = None,
|
3734
|
-
grant_read: GrantRead = None,
|
3735
|
-
grant_read_acp: GrantReadACP = None,
|
3736
|
-
grant_write_acp: GrantWriteACP = None,
|
3737
|
-
metadata: Metadata = None,
|
3738
|
-
server_side_encryption: ServerSideEncryption = None,
|
3739
|
-
storage_class: StorageClass = None,
|
3740
|
-
website_redirect_location: WebsiteRedirectLocation = None,
|
3741
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
3742
|
-
sse_customer_key: SSECustomerKey = None,
|
3743
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
3744
|
-
ssekms_key_id: SSEKMSKeyId = None,
|
3745
|
-
ssekms_encryption_context: SSEKMSEncryptionContext = None,
|
3746
|
-
bucket_key_enabled: BucketKeyEnabled = None,
|
3747
|
-
request_payer: RequestPayer = None,
|
3748
|
-
tagging: TaggingHeader = None,
|
3749
|
-
object_lock_mode: ObjectLockMode = None,
|
3750
|
-
object_lock_retain_until_date: ObjectLockRetainUntilDate = None,
|
3751
|
-
object_lock_legal_hold_status: ObjectLockLegalHoldStatus = None,
|
3752
|
-
expected_bucket_owner: AccountId = None,
|
3753
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
3754
|
-
checksum_type: ChecksumType = None,
|
3726
|
+
acl: ObjectCannedACL | None = None,
|
3727
|
+
cache_control: CacheControl | None = None,
|
3728
|
+
content_disposition: ContentDisposition | None = None,
|
3729
|
+
content_encoding: ContentEncoding | None = None,
|
3730
|
+
content_language: ContentLanguage | None = None,
|
3731
|
+
content_type: ContentType | None = None,
|
3732
|
+
expires: Expires | None = None,
|
3733
|
+
grant_full_control: GrantFullControl | None = None,
|
3734
|
+
grant_read: GrantRead | None = None,
|
3735
|
+
grant_read_acp: GrantReadACP | None = None,
|
3736
|
+
grant_write_acp: GrantWriteACP | None = None,
|
3737
|
+
metadata: Metadata | None = None,
|
3738
|
+
server_side_encryption: ServerSideEncryption | None = None,
|
3739
|
+
storage_class: StorageClass | None = None,
|
3740
|
+
website_redirect_location: WebsiteRedirectLocation | None = None,
|
3741
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
3742
|
+
sse_customer_key: SSECustomerKey | None = None,
|
3743
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
3744
|
+
ssekms_key_id: SSEKMSKeyId | None = None,
|
3745
|
+
ssekms_encryption_context: SSEKMSEncryptionContext | None = None,
|
3746
|
+
bucket_key_enabled: BucketKeyEnabled | None = None,
|
3747
|
+
request_payer: RequestPayer | None = None,
|
3748
|
+
tagging: TaggingHeader | None = None,
|
3749
|
+
object_lock_mode: ObjectLockMode | None = None,
|
3750
|
+
object_lock_retain_until_date: ObjectLockRetainUntilDate | None = None,
|
3751
|
+
object_lock_legal_hold_status: ObjectLockLegalHoldStatus | None = None,
|
3752
|
+
expected_bucket_owner: AccountId | None = None,
|
3753
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
3754
|
+
checksum_type: ChecksumType | None = None,
|
3755
3755
|
**kwargs,
|
3756
3756
|
) -> CreateMultipartUploadOutput:
|
3757
3757
|
raise NotImplementedError
|
@@ -3761,11 +3761,11 @@ class S3Api:
|
|
3761
3761
|
self,
|
3762
3762
|
context: RequestContext,
|
3763
3763
|
bucket: BucketName,
|
3764
|
-
session_mode: SessionMode = None,
|
3765
|
-
server_side_encryption: ServerSideEncryption = None,
|
3766
|
-
ssekms_key_id: SSEKMSKeyId = None,
|
3767
|
-
ssekms_encryption_context: SSEKMSEncryptionContext = None,
|
3768
|
-
bucket_key_enabled: BucketKeyEnabled = None,
|
3764
|
+
session_mode: SessionMode | None = None,
|
3765
|
+
server_side_encryption: ServerSideEncryption | None = None,
|
3766
|
+
ssekms_key_id: SSEKMSKeyId | None = None,
|
3767
|
+
ssekms_encryption_context: SSEKMSEncryptionContext | None = None,
|
3768
|
+
bucket_key_enabled: BucketKeyEnabled | None = None,
|
3769
3769
|
**kwargs,
|
3770
3770
|
) -> CreateSessionOutput:
|
3771
3771
|
raise NotImplementedError
|
@@ -3775,7 +3775,7 @@ class S3Api:
|
|
3775
3775
|
self,
|
3776
3776
|
context: RequestContext,
|
3777
3777
|
bucket: BucketName,
|
3778
|
-
expected_bucket_owner: AccountId = None,
|
3778
|
+
expected_bucket_owner: AccountId | None = None,
|
3779
3779
|
**kwargs,
|
3780
3780
|
) -> None:
|
3781
3781
|
raise NotImplementedError
|
@@ -3786,7 +3786,7 @@ class S3Api:
|
|
3786
3786
|
context: RequestContext,
|
3787
3787
|
bucket: BucketName,
|
3788
3788
|
id: AnalyticsId,
|
3789
|
-
expected_bucket_owner: AccountId = None,
|
3789
|
+
expected_bucket_owner: AccountId | None = None,
|
3790
3790
|
**kwargs,
|
3791
3791
|
) -> None:
|
3792
3792
|
raise NotImplementedError
|
@@ -3796,7 +3796,7 @@ class S3Api:
|
|
3796
3796
|
self,
|
3797
3797
|
context: RequestContext,
|
3798
3798
|
bucket: BucketName,
|
3799
|
-
expected_bucket_owner: AccountId = None,
|
3799
|
+
expected_bucket_owner: AccountId | None = None,
|
3800
3800
|
**kwargs,
|
3801
3801
|
) -> None:
|
3802
3802
|
raise NotImplementedError
|
@@ -3806,7 +3806,7 @@ class S3Api:
|
|
3806
3806
|
self,
|
3807
3807
|
context: RequestContext,
|
3808
3808
|
bucket: BucketName,
|
3809
|
-
expected_bucket_owner: AccountId = None,
|
3809
|
+
expected_bucket_owner: AccountId | None = None,
|
3810
3810
|
**kwargs,
|
3811
3811
|
) -> None:
|
3812
3812
|
raise NotImplementedError
|
@@ -3823,7 +3823,7 @@ class S3Api:
|
|
3823
3823
|
context: RequestContext,
|
3824
3824
|
bucket: BucketName,
|
3825
3825
|
id: InventoryId,
|
3826
|
-
expected_bucket_owner: AccountId = None,
|
3826
|
+
expected_bucket_owner: AccountId | None = None,
|
3827
3827
|
**kwargs,
|
3828
3828
|
) -> None:
|
3829
3829
|
raise NotImplementedError
|
@@ -3833,7 +3833,7 @@ class S3Api:
|
|
3833
3833
|
self,
|
3834
3834
|
context: RequestContext,
|
3835
3835
|
bucket: BucketName,
|
3836
|
-
expected_bucket_owner: AccountId = None,
|
3836
|
+
expected_bucket_owner: AccountId | None = None,
|
3837
3837
|
**kwargs,
|
3838
3838
|
) -> None:
|
3839
3839
|
raise NotImplementedError
|
@@ -3843,7 +3843,7 @@ class S3Api:
|
|
3843
3843
|
self,
|
3844
3844
|
context: RequestContext,
|
3845
3845
|
bucket: BucketName,
|
3846
|
-
expected_bucket_owner: AccountId = None,
|
3846
|
+
expected_bucket_owner: AccountId | None = None,
|
3847
3847
|
**kwargs,
|
3848
3848
|
) -> None:
|
3849
3849
|
raise NotImplementedError
|
@@ -3854,7 +3854,7 @@ class S3Api:
|
|
3854
3854
|
context: RequestContext,
|
3855
3855
|
bucket: BucketName,
|
3856
3856
|
id: MetricsId,
|
3857
|
-
expected_bucket_owner: AccountId = None,
|
3857
|
+
expected_bucket_owner: AccountId | None = None,
|
3858
3858
|
**kwargs,
|
3859
3859
|
) -> None:
|
3860
3860
|
raise NotImplementedError
|
@@ -3864,7 +3864,7 @@ class S3Api:
|
|
3864
3864
|
self,
|
3865
3865
|
context: RequestContext,
|
3866
3866
|
bucket: BucketName,
|
3867
|
-
expected_bucket_owner: AccountId = None,
|
3867
|
+
expected_bucket_owner: AccountId | None = None,
|
3868
3868
|
**kwargs,
|
3869
3869
|
) -> None:
|
3870
3870
|
raise NotImplementedError
|
@@ -3874,7 +3874,7 @@ class S3Api:
|
|
3874
3874
|
self,
|
3875
3875
|
context: RequestContext,
|
3876
3876
|
bucket: BucketName,
|
3877
|
-
expected_bucket_owner: AccountId = None,
|
3877
|
+
expected_bucket_owner: AccountId | None = None,
|
3878
3878
|
**kwargs,
|
3879
3879
|
) -> None:
|
3880
3880
|
raise NotImplementedError
|
@@ -3884,7 +3884,7 @@ class S3Api:
|
|
3884
3884
|
self,
|
3885
3885
|
context: RequestContext,
|
3886
3886
|
bucket: BucketName,
|
3887
|
-
expected_bucket_owner: AccountId = None,
|
3887
|
+
expected_bucket_owner: AccountId | None = None,
|
3888
3888
|
**kwargs,
|
3889
3889
|
) -> None:
|
3890
3890
|
raise NotImplementedError
|
@@ -3894,7 +3894,7 @@ class S3Api:
|
|
3894
3894
|
self,
|
3895
3895
|
context: RequestContext,
|
3896
3896
|
bucket: BucketName,
|
3897
|
-
expected_bucket_owner: AccountId = None,
|
3897
|
+
expected_bucket_owner: AccountId | None = None,
|
3898
3898
|
**kwargs,
|
3899
3899
|
) -> None:
|
3900
3900
|
raise NotImplementedError
|
@@ -3904,7 +3904,7 @@ class S3Api:
|
|
3904
3904
|
self,
|
3905
3905
|
context: RequestContext,
|
3906
3906
|
bucket: BucketName,
|
3907
|
-
expected_bucket_owner: AccountId = None,
|
3907
|
+
expected_bucket_owner: AccountId | None = None,
|
3908
3908
|
**kwargs,
|
3909
3909
|
) -> None:
|
3910
3910
|
raise NotImplementedError
|
@@ -3915,14 +3915,14 @@ class S3Api:
|
|
3915
3915
|
context: RequestContext,
|
3916
3916
|
bucket: BucketName,
|
3917
3917
|
key: ObjectKey,
|
3918
|
-
mfa: MFA = None,
|
3919
|
-
version_id: ObjectVersionId = None,
|
3920
|
-
request_payer: RequestPayer = None,
|
3921
|
-
bypass_governance_retention: BypassGovernanceRetention = None,
|
3922
|
-
expected_bucket_owner: AccountId = None,
|
3923
|
-
if_match: IfMatch = None,
|
3924
|
-
if_match_last_modified_time: IfMatchLastModifiedTime = None,
|
3925
|
-
if_match_size: IfMatchSize = None,
|
3918
|
+
mfa: MFA | None = None,
|
3919
|
+
version_id: ObjectVersionId | None = None,
|
3920
|
+
request_payer: RequestPayer | None = None,
|
3921
|
+
bypass_governance_retention: BypassGovernanceRetention | None = None,
|
3922
|
+
expected_bucket_owner: AccountId | None = None,
|
3923
|
+
if_match: IfMatch | None = None,
|
3924
|
+
if_match_last_modified_time: IfMatchLastModifiedTime | None = None,
|
3925
|
+
if_match_size: IfMatchSize | None = None,
|
3926
3926
|
**kwargs,
|
3927
3927
|
) -> DeleteObjectOutput:
|
3928
3928
|
raise NotImplementedError
|
@@ -3933,8 +3933,8 @@ class S3Api:
|
|
3933
3933
|
context: RequestContext,
|
3934
3934
|
bucket: BucketName,
|
3935
3935
|
key: ObjectKey,
|
3936
|
-
version_id: ObjectVersionId = None,
|
3937
|
-
expected_bucket_owner: AccountId = None,
|
3936
|
+
version_id: ObjectVersionId | None = None,
|
3937
|
+
expected_bucket_owner: AccountId | None = None,
|
3938
3938
|
**kwargs,
|
3939
3939
|
) -> DeleteObjectTaggingOutput:
|
3940
3940
|
raise NotImplementedError
|
@@ -3945,11 +3945,11 @@ class S3Api:
|
|
3945
3945
|
context: RequestContext,
|
3946
3946
|
bucket: BucketName,
|
3947
3947
|
delete: Delete,
|
3948
|
-
mfa: MFA = None,
|
3949
|
-
request_payer: RequestPayer = None,
|
3950
|
-
bypass_governance_retention: BypassGovernanceRetention = None,
|
3951
|
-
expected_bucket_owner: AccountId = None,
|
3952
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
3948
|
+
mfa: MFA | None = None,
|
3949
|
+
request_payer: RequestPayer | None = None,
|
3950
|
+
bypass_governance_retention: BypassGovernanceRetention | None = None,
|
3951
|
+
expected_bucket_owner: AccountId | None = None,
|
3952
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
3953
3953
|
**kwargs,
|
3954
3954
|
) -> DeleteObjectsOutput:
|
3955
3955
|
raise NotImplementedError
|
@@ -3959,7 +3959,7 @@ class S3Api:
|
|
3959
3959
|
self,
|
3960
3960
|
context: RequestContext,
|
3961
3961
|
bucket: BucketName,
|
3962
|
-
expected_bucket_owner: AccountId = None,
|
3962
|
+
expected_bucket_owner: AccountId | None = None,
|
3963
3963
|
**kwargs,
|
3964
3964
|
) -> None:
|
3965
3965
|
raise NotImplementedError
|
@@ -3969,8 +3969,8 @@ class S3Api:
|
|
3969
3969
|
self,
|
3970
3970
|
context: RequestContext,
|
3971
3971
|
bucket: BucketName,
|
3972
|
-
expected_bucket_owner: AccountId = None,
|
3973
|
-
request_payer: RequestPayer = None,
|
3972
|
+
expected_bucket_owner: AccountId | None = None,
|
3973
|
+
request_payer: RequestPayer | None = None,
|
3974
3974
|
**kwargs,
|
3975
3975
|
) -> GetBucketAccelerateConfigurationOutput:
|
3976
3976
|
raise NotImplementedError
|
@@ -3980,7 +3980,7 @@ class S3Api:
|
|
3980
3980
|
self,
|
3981
3981
|
context: RequestContext,
|
3982
3982
|
bucket: BucketName,
|
3983
|
-
expected_bucket_owner: AccountId = None,
|
3983
|
+
expected_bucket_owner: AccountId | None = None,
|
3984
3984
|
**kwargs,
|
3985
3985
|
) -> GetBucketAclOutput:
|
3986
3986
|
raise NotImplementedError
|
@@ -3991,7 +3991,7 @@ class S3Api:
|
|
3991
3991
|
context: RequestContext,
|
3992
3992
|
bucket: BucketName,
|
3993
3993
|
id: AnalyticsId,
|
3994
|
-
expected_bucket_owner: AccountId = None,
|
3994
|
+
expected_bucket_owner: AccountId | None = None,
|
3995
3995
|
**kwargs,
|
3996
3996
|
) -> GetBucketAnalyticsConfigurationOutput:
|
3997
3997
|
raise NotImplementedError
|
@@ -4001,7 +4001,7 @@ class S3Api:
|
|
4001
4001
|
self,
|
4002
4002
|
context: RequestContext,
|
4003
4003
|
bucket: BucketName,
|
4004
|
-
expected_bucket_owner: AccountId = None,
|
4004
|
+
expected_bucket_owner: AccountId | None = None,
|
4005
4005
|
**kwargs,
|
4006
4006
|
) -> GetBucketCorsOutput:
|
4007
4007
|
raise NotImplementedError
|
@@ -4011,7 +4011,7 @@ class S3Api:
|
|
4011
4011
|
self,
|
4012
4012
|
context: RequestContext,
|
4013
4013
|
bucket: BucketName,
|
4014
|
-
expected_bucket_owner: AccountId = None,
|
4014
|
+
expected_bucket_owner: AccountId | None = None,
|
4015
4015
|
**kwargs,
|
4016
4016
|
) -> GetBucketEncryptionOutput:
|
4017
4017
|
raise NotImplementedError
|
@@ -4028,7 +4028,7 @@ class S3Api:
|
|
4028
4028
|
context: RequestContext,
|
4029
4029
|
bucket: BucketName,
|
4030
4030
|
id: InventoryId,
|
4031
|
-
expected_bucket_owner: AccountId = None,
|
4031
|
+
expected_bucket_owner: AccountId | None = None,
|
4032
4032
|
**kwargs,
|
4033
4033
|
) -> GetBucketInventoryConfigurationOutput:
|
4034
4034
|
raise NotImplementedError
|
@@ -4038,7 +4038,7 @@ class S3Api:
|
|
4038
4038
|
self,
|
4039
4039
|
context: RequestContext,
|
4040
4040
|
bucket: BucketName,
|
4041
|
-
expected_bucket_owner: AccountId = None,
|
4041
|
+
expected_bucket_owner: AccountId | None = None,
|
4042
4042
|
**kwargs,
|
4043
4043
|
) -> GetBucketLifecycleOutput:
|
4044
4044
|
raise NotImplementedError
|
@@ -4048,7 +4048,7 @@ class S3Api:
|
|
4048
4048
|
self,
|
4049
4049
|
context: RequestContext,
|
4050
4050
|
bucket: BucketName,
|
4051
|
-
expected_bucket_owner: AccountId = None,
|
4051
|
+
expected_bucket_owner: AccountId | None = None,
|
4052
4052
|
**kwargs,
|
4053
4053
|
) -> GetBucketLifecycleConfigurationOutput:
|
4054
4054
|
raise NotImplementedError
|
@@ -4058,7 +4058,7 @@ class S3Api:
|
|
4058
4058
|
self,
|
4059
4059
|
context: RequestContext,
|
4060
4060
|
bucket: BucketName,
|
4061
|
-
expected_bucket_owner: AccountId = None,
|
4061
|
+
expected_bucket_owner: AccountId | None = None,
|
4062
4062
|
**kwargs,
|
4063
4063
|
) -> GetBucketLocationOutput:
|
4064
4064
|
raise NotImplementedError
|
@@ -4068,7 +4068,7 @@ class S3Api:
|
|
4068
4068
|
self,
|
4069
4069
|
context: RequestContext,
|
4070
4070
|
bucket: BucketName,
|
4071
|
-
expected_bucket_owner: AccountId = None,
|
4071
|
+
expected_bucket_owner: AccountId | None = None,
|
4072
4072
|
**kwargs,
|
4073
4073
|
) -> GetBucketLoggingOutput:
|
4074
4074
|
raise NotImplementedError
|
@@ -4078,7 +4078,7 @@ class S3Api:
|
|
4078
4078
|
self,
|
4079
4079
|
context: RequestContext,
|
4080
4080
|
bucket: BucketName,
|
4081
|
-
expected_bucket_owner: AccountId = None,
|
4081
|
+
expected_bucket_owner: AccountId | None = None,
|
4082
4082
|
**kwargs,
|
4083
4083
|
) -> GetBucketMetadataTableConfigurationOutput:
|
4084
4084
|
raise NotImplementedError
|
@@ -4089,7 +4089,7 @@ class S3Api:
|
|
4089
4089
|
context: RequestContext,
|
4090
4090
|
bucket: BucketName,
|
4091
4091
|
id: MetricsId,
|
4092
|
-
expected_bucket_owner: AccountId = None,
|
4092
|
+
expected_bucket_owner: AccountId | None = None,
|
4093
4093
|
**kwargs,
|
4094
4094
|
) -> GetBucketMetricsConfigurationOutput:
|
4095
4095
|
raise NotImplementedError
|
@@ -4099,7 +4099,7 @@ class S3Api:
|
|
4099
4099
|
self,
|
4100
4100
|
context: RequestContext,
|
4101
4101
|
bucket: BucketName,
|
4102
|
-
expected_bucket_owner: AccountId = None,
|
4102
|
+
expected_bucket_owner: AccountId | None = None,
|
4103
4103
|
**kwargs,
|
4104
4104
|
) -> NotificationConfigurationDeprecated:
|
4105
4105
|
raise NotImplementedError
|
@@ -4109,7 +4109,7 @@ class S3Api:
|
|
4109
4109
|
self,
|
4110
4110
|
context: RequestContext,
|
4111
4111
|
bucket: BucketName,
|
4112
|
-
expected_bucket_owner: AccountId = None,
|
4112
|
+
expected_bucket_owner: AccountId | None = None,
|
4113
4113
|
**kwargs,
|
4114
4114
|
) -> NotificationConfiguration:
|
4115
4115
|
raise NotImplementedError
|
@@ -4119,7 +4119,7 @@ class S3Api:
|
|
4119
4119
|
self,
|
4120
4120
|
context: RequestContext,
|
4121
4121
|
bucket: BucketName,
|
4122
|
-
expected_bucket_owner: AccountId = None,
|
4122
|
+
expected_bucket_owner: AccountId | None = None,
|
4123
4123
|
**kwargs,
|
4124
4124
|
) -> GetBucketOwnershipControlsOutput:
|
4125
4125
|
raise NotImplementedError
|
@@ -4129,7 +4129,7 @@ class S3Api:
|
|
4129
4129
|
self,
|
4130
4130
|
context: RequestContext,
|
4131
4131
|
bucket: BucketName,
|
4132
|
-
expected_bucket_owner: AccountId = None,
|
4132
|
+
expected_bucket_owner: AccountId | None = None,
|
4133
4133
|
**kwargs,
|
4134
4134
|
) -> GetBucketPolicyOutput:
|
4135
4135
|
raise NotImplementedError
|
@@ -4139,7 +4139,7 @@ class S3Api:
|
|
4139
4139
|
self,
|
4140
4140
|
context: RequestContext,
|
4141
4141
|
bucket: BucketName,
|
4142
|
-
expected_bucket_owner: AccountId = None,
|
4142
|
+
expected_bucket_owner: AccountId | None = None,
|
4143
4143
|
**kwargs,
|
4144
4144
|
) -> GetBucketPolicyStatusOutput:
|
4145
4145
|
raise NotImplementedError
|
@@ -4149,7 +4149,7 @@ class S3Api:
|
|
4149
4149
|
self,
|
4150
4150
|
context: RequestContext,
|
4151
4151
|
bucket: BucketName,
|
4152
|
-
expected_bucket_owner: AccountId = None,
|
4152
|
+
expected_bucket_owner: AccountId | None = None,
|
4153
4153
|
**kwargs,
|
4154
4154
|
) -> GetBucketReplicationOutput:
|
4155
4155
|
raise NotImplementedError
|
@@ -4159,7 +4159,7 @@ class S3Api:
|
|
4159
4159
|
self,
|
4160
4160
|
context: RequestContext,
|
4161
4161
|
bucket: BucketName,
|
4162
|
-
expected_bucket_owner: AccountId = None,
|
4162
|
+
expected_bucket_owner: AccountId | None = None,
|
4163
4163
|
**kwargs,
|
4164
4164
|
) -> GetBucketRequestPaymentOutput:
|
4165
4165
|
raise NotImplementedError
|
@@ -4169,7 +4169,7 @@ class S3Api:
|
|
4169
4169
|
self,
|
4170
4170
|
context: RequestContext,
|
4171
4171
|
bucket: BucketName,
|
4172
|
-
expected_bucket_owner: AccountId = None,
|
4172
|
+
expected_bucket_owner: AccountId | None = None,
|
4173
4173
|
**kwargs,
|
4174
4174
|
) -> GetBucketTaggingOutput:
|
4175
4175
|
raise NotImplementedError
|
@@ -4179,7 +4179,7 @@ class S3Api:
|
|
4179
4179
|
self,
|
4180
4180
|
context: RequestContext,
|
4181
4181
|
bucket: BucketName,
|
4182
|
-
expected_bucket_owner: AccountId = None,
|
4182
|
+
expected_bucket_owner: AccountId | None = None,
|
4183
4183
|
**kwargs,
|
4184
4184
|
) -> GetBucketVersioningOutput:
|
4185
4185
|
raise NotImplementedError
|
@@ -4189,7 +4189,7 @@ class S3Api:
|
|
4189
4189
|
self,
|
4190
4190
|
context: RequestContext,
|
4191
4191
|
bucket: BucketName,
|
4192
|
-
expected_bucket_owner: AccountId = None,
|
4192
|
+
expected_bucket_owner: AccountId | None = None,
|
4193
4193
|
**kwargs,
|
4194
4194
|
) -> GetBucketWebsiteOutput:
|
4195
4195
|
raise NotImplementedError
|
@@ -4200,25 +4200,25 @@ class S3Api:
|
|
4200
4200
|
context: RequestContext,
|
4201
4201
|
bucket: BucketName,
|
4202
4202
|
key: ObjectKey,
|
4203
|
-
if_match: IfMatch = None,
|
4204
|
-
if_modified_since: IfModifiedSince = None,
|
4205
|
-
if_none_match: IfNoneMatch = None,
|
4206
|
-
if_unmodified_since: IfUnmodifiedSince = None,
|
4207
|
-
range: Range = None,
|
4208
|
-
response_cache_control: ResponseCacheControl = None,
|
4209
|
-
response_content_disposition: ResponseContentDisposition = None,
|
4210
|
-
response_content_encoding: ResponseContentEncoding = None,
|
4211
|
-
response_content_language: ResponseContentLanguage = None,
|
4212
|
-
response_content_type: ResponseContentType = None,
|
4213
|
-
response_expires: ResponseExpires = None,
|
4214
|
-
version_id: ObjectVersionId = None,
|
4215
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
4216
|
-
sse_customer_key: SSECustomerKey = None,
|
4217
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
4218
|
-
request_payer: RequestPayer = None,
|
4219
|
-
part_number: PartNumber = None,
|
4220
|
-
expected_bucket_owner: AccountId = None,
|
4221
|
-
checksum_mode: ChecksumMode = None,
|
4203
|
+
if_match: IfMatch | None = None,
|
4204
|
+
if_modified_since: IfModifiedSince | None = None,
|
4205
|
+
if_none_match: IfNoneMatch | None = None,
|
4206
|
+
if_unmodified_since: IfUnmodifiedSince | None = None,
|
4207
|
+
range: Range | None = None,
|
4208
|
+
response_cache_control: ResponseCacheControl | None = None,
|
4209
|
+
response_content_disposition: ResponseContentDisposition | None = None,
|
4210
|
+
response_content_encoding: ResponseContentEncoding | None = None,
|
4211
|
+
response_content_language: ResponseContentLanguage | None = None,
|
4212
|
+
response_content_type: ResponseContentType | None = None,
|
4213
|
+
response_expires: ResponseExpires | None = None,
|
4214
|
+
version_id: ObjectVersionId | None = None,
|
4215
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
4216
|
+
sse_customer_key: SSECustomerKey | None = None,
|
4217
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
4218
|
+
request_payer: RequestPayer | None = None,
|
4219
|
+
part_number: PartNumber | None = None,
|
4220
|
+
expected_bucket_owner: AccountId | None = None,
|
4221
|
+
checksum_mode: ChecksumMode | None = None,
|
4222
4222
|
**kwargs,
|
4223
4223
|
) -> GetObjectOutput:
|
4224
4224
|
raise NotImplementedError
|
@@ -4229,9 +4229,9 @@ class S3Api:
|
|
4229
4229
|
context: RequestContext,
|
4230
4230
|
bucket: BucketName,
|
4231
4231
|
key: ObjectKey,
|
4232
|
-
version_id: ObjectVersionId = None,
|
4233
|
-
request_payer: RequestPayer = None,
|
4234
|
-
expected_bucket_owner: AccountId = None,
|
4232
|
+
version_id: ObjectVersionId | None = None,
|
4233
|
+
request_payer: RequestPayer | None = None,
|
4234
|
+
expected_bucket_owner: AccountId | None = None,
|
4235
4235
|
**kwargs,
|
4236
4236
|
) -> GetObjectAclOutput:
|
4237
4237
|
raise NotImplementedError
|
@@ -4243,14 +4243,14 @@ class S3Api:
|
|
4243
4243
|
bucket: BucketName,
|
4244
4244
|
key: ObjectKey,
|
4245
4245
|
object_attributes: ObjectAttributesList,
|
4246
|
-
version_id: ObjectVersionId = None,
|
4247
|
-
max_parts: MaxParts = None,
|
4248
|
-
part_number_marker: PartNumberMarker = None,
|
4249
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
4250
|
-
sse_customer_key: SSECustomerKey = None,
|
4251
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
4252
|
-
request_payer: RequestPayer = None,
|
4253
|
-
expected_bucket_owner: AccountId = None,
|
4246
|
+
version_id: ObjectVersionId | None = None,
|
4247
|
+
max_parts: MaxParts | None = None,
|
4248
|
+
part_number_marker: PartNumberMarker | None = None,
|
4249
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
4250
|
+
sse_customer_key: SSECustomerKey | None = None,
|
4251
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
4252
|
+
request_payer: RequestPayer | None = None,
|
4253
|
+
expected_bucket_owner: AccountId | None = None,
|
4254
4254
|
**kwargs,
|
4255
4255
|
) -> GetObjectAttributesOutput:
|
4256
4256
|
raise NotImplementedError
|
@@ -4261,9 +4261,9 @@ class S3Api:
|
|
4261
4261
|
context: RequestContext,
|
4262
4262
|
bucket: BucketName,
|
4263
4263
|
key: ObjectKey,
|
4264
|
-
version_id: ObjectVersionId = None,
|
4265
|
-
request_payer: RequestPayer = None,
|
4266
|
-
expected_bucket_owner: AccountId = None,
|
4264
|
+
version_id: ObjectVersionId | None = None,
|
4265
|
+
request_payer: RequestPayer | None = None,
|
4266
|
+
expected_bucket_owner: AccountId | None = None,
|
4267
4267
|
**kwargs,
|
4268
4268
|
) -> GetObjectLegalHoldOutput:
|
4269
4269
|
raise NotImplementedError
|
@@ -4273,7 +4273,7 @@ class S3Api:
|
|
4273
4273
|
self,
|
4274
4274
|
context: RequestContext,
|
4275
4275
|
bucket: BucketName,
|
4276
|
-
expected_bucket_owner: AccountId = None,
|
4276
|
+
expected_bucket_owner: AccountId | None = None,
|
4277
4277
|
**kwargs,
|
4278
4278
|
) -> GetObjectLockConfigurationOutput:
|
4279
4279
|
raise NotImplementedError
|
@@ -4284,9 +4284,9 @@ class S3Api:
|
|
4284
4284
|
context: RequestContext,
|
4285
4285
|
bucket: BucketName,
|
4286
4286
|
key: ObjectKey,
|
4287
|
-
version_id: ObjectVersionId = None,
|
4288
|
-
request_payer: RequestPayer = None,
|
4289
|
-
expected_bucket_owner: AccountId = None,
|
4287
|
+
version_id: ObjectVersionId | None = None,
|
4288
|
+
request_payer: RequestPayer | None = None,
|
4289
|
+
expected_bucket_owner: AccountId | None = None,
|
4290
4290
|
**kwargs,
|
4291
4291
|
) -> GetObjectRetentionOutput:
|
4292
4292
|
raise NotImplementedError
|
@@ -4297,9 +4297,9 @@ class S3Api:
|
|
4297
4297
|
context: RequestContext,
|
4298
4298
|
bucket: BucketName,
|
4299
4299
|
key: ObjectKey,
|
4300
|
-
version_id: ObjectVersionId = None,
|
4301
|
-
expected_bucket_owner: AccountId = None,
|
4302
|
-
request_payer: RequestPayer = None,
|
4300
|
+
version_id: ObjectVersionId | None = None,
|
4301
|
+
expected_bucket_owner: AccountId | None = None,
|
4302
|
+
request_payer: RequestPayer | None = None,
|
4303
4303
|
**kwargs,
|
4304
4304
|
) -> GetObjectTaggingOutput:
|
4305
4305
|
raise NotImplementedError
|
@@ -4310,8 +4310,8 @@ class S3Api:
|
|
4310
4310
|
context: RequestContext,
|
4311
4311
|
bucket: BucketName,
|
4312
4312
|
key: ObjectKey,
|
4313
|
-
request_payer: RequestPayer = None,
|
4314
|
-
expected_bucket_owner: AccountId = None,
|
4313
|
+
request_payer: RequestPayer | None = None,
|
4314
|
+
expected_bucket_owner: AccountId | None = None,
|
4315
4315
|
**kwargs,
|
4316
4316
|
) -> GetObjectTorrentOutput:
|
4317
4317
|
raise NotImplementedError
|
@@ -4321,7 +4321,7 @@ class S3Api:
|
|
4321
4321
|
self,
|
4322
4322
|
context: RequestContext,
|
4323
4323
|
bucket: BucketName,
|
4324
|
-
expected_bucket_owner: AccountId = None,
|
4324
|
+
expected_bucket_owner: AccountId | None = None,
|
4325
4325
|
**kwargs,
|
4326
4326
|
) -> GetPublicAccessBlockOutput:
|
4327
4327
|
raise NotImplementedError
|
@@ -4331,7 +4331,7 @@ class S3Api:
|
|
4331
4331
|
self,
|
4332
4332
|
context: RequestContext,
|
4333
4333
|
bucket: BucketName,
|
4334
|
-
expected_bucket_owner: AccountId = None,
|
4334
|
+
expected_bucket_owner: AccountId | None = None,
|
4335
4335
|
**kwargs,
|
4336
4336
|
) -> HeadBucketOutput:
|
4337
4337
|
raise NotImplementedError
|
@@ -4342,25 +4342,25 @@ class S3Api:
|
|
4342
4342
|
context: RequestContext,
|
4343
4343
|
bucket: BucketName,
|
4344
4344
|
key: ObjectKey,
|
4345
|
-
if_match: IfMatch = None,
|
4346
|
-
if_modified_since: IfModifiedSince = None,
|
4347
|
-
if_none_match: IfNoneMatch = None,
|
4348
|
-
if_unmodified_since: IfUnmodifiedSince = None,
|
4349
|
-
range: Range = None,
|
4350
|
-
response_cache_control: ResponseCacheControl = None,
|
4351
|
-
response_content_disposition: ResponseContentDisposition = None,
|
4352
|
-
response_content_encoding: ResponseContentEncoding = None,
|
4353
|
-
response_content_language: ResponseContentLanguage = None,
|
4354
|
-
response_content_type: ResponseContentType = None,
|
4355
|
-
response_expires: ResponseExpires = None,
|
4356
|
-
version_id: ObjectVersionId = None,
|
4357
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
4358
|
-
sse_customer_key: SSECustomerKey = None,
|
4359
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
4360
|
-
request_payer: RequestPayer = None,
|
4361
|
-
part_number: PartNumber = None,
|
4362
|
-
expected_bucket_owner: AccountId = None,
|
4363
|
-
checksum_mode: ChecksumMode = None,
|
4345
|
+
if_match: IfMatch | None = None,
|
4346
|
+
if_modified_since: IfModifiedSince | None = None,
|
4347
|
+
if_none_match: IfNoneMatch | None = None,
|
4348
|
+
if_unmodified_since: IfUnmodifiedSince | None = None,
|
4349
|
+
range: Range | None = None,
|
4350
|
+
response_cache_control: ResponseCacheControl | None = None,
|
4351
|
+
response_content_disposition: ResponseContentDisposition | None = None,
|
4352
|
+
response_content_encoding: ResponseContentEncoding | None = None,
|
4353
|
+
response_content_language: ResponseContentLanguage | None = None,
|
4354
|
+
response_content_type: ResponseContentType | None = None,
|
4355
|
+
response_expires: ResponseExpires | None = None,
|
4356
|
+
version_id: ObjectVersionId | None = None,
|
4357
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
4358
|
+
sse_customer_key: SSECustomerKey | None = None,
|
4359
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
4360
|
+
request_payer: RequestPayer | None = None,
|
4361
|
+
part_number: PartNumber | None = None,
|
4362
|
+
expected_bucket_owner: AccountId | None = None,
|
4363
|
+
checksum_mode: ChecksumMode | None = None,
|
4364
4364
|
**kwargs,
|
4365
4365
|
) -> HeadObjectOutput:
|
4366
4366
|
raise NotImplementedError
|
@@ -4370,8 +4370,8 @@ class S3Api:
|
|
4370
4370
|
self,
|
4371
4371
|
context: RequestContext,
|
4372
4372
|
bucket: BucketName,
|
4373
|
-
continuation_token: Token = None,
|
4374
|
-
expected_bucket_owner: AccountId = None,
|
4373
|
+
continuation_token: Token | None = None,
|
4374
|
+
expected_bucket_owner: AccountId | None = None,
|
4375
4375
|
**kwargs,
|
4376
4376
|
) -> ListBucketAnalyticsConfigurationsOutput:
|
4377
4377
|
raise NotImplementedError
|
@@ -4381,7 +4381,7 @@ class S3Api:
|
|
4381
4381
|
self,
|
4382
4382
|
context: RequestContext,
|
4383
4383
|
bucket: BucketName,
|
4384
|
-
continuation_token: Token = None,
|
4384
|
+
continuation_token: Token | None = None,
|
4385
4385
|
**kwargs,
|
4386
4386
|
) -> ListBucketIntelligentTieringConfigurationsOutput:
|
4387
4387
|
raise NotImplementedError
|
@@ -4391,8 +4391,8 @@ class S3Api:
|
|
4391
4391
|
self,
|
4392
4392
|
context: RequestContext,
|
4393
4393
|
bucket: BucketName,
|
4394
|
-
continuation_token: Token = None,
|
4395
|
-
expected_bucket_owner: AccountId = None,
|
4394
|
+
continuation_token: Token | None = None,
|
4395
|
+
expected_bucket_owner: AccountId | None = None,
|
4396
4396
|
**kwargs,
|
4397
4397
|
) -> ListBucketInventoryConfigurationsOutput:
|
4398
4398
|
raise NotImplementedError
|
@@ -4402,8 +4402,8 @@ class S3Api:
|
|
4402
4402
|
self,
|
4403
4403
|
context: RequestContext,
|
4404
4404
|
bucket: BucketName,
|
4405
|
-
continuation_token: Token = None,
|
4406
|
-
expected_bucket_owner: AccountId = None,
|
4405
|
+
continuation_token: Token | None = None,
|
4406
|
+
expected_bucket_owner: AccountId | None = None,
|
4407
4407
|
**kwargs,
|
4408
4408
|
) -> ListBucketMetricsConfigurationsOutput:
|
4409
4409
|
raise NotImplementedError
|
@@ -4412,10 +4412,10 @@ class S3Api:
|
|
4412
4412
|
def list_buckets(
|
4413
4413
|
self,
|
4414
4414
|
context: RequestContext,
|
4415
|
-
max_buckets: MaxBuckets = None,
|
4416
|
-
continuation_token: Token = None,
|
4417
|
-
prefix: Prefix = None,
|
4418
|
-
bucket_region: BucketRegion = None,
|
4415
|
+
max_buckets: MaxBuckets | None = None,
|
4416
|
+
continuation_token: Token | None = None,
|
4417
|
+
prefix: Prefix | None = None,
|
4418
|
+
bucket_region: BucketRegion | None = None,
|
4419
4419
|
**kwargs,
|
4420
4420
|
) -> ListBucketsOutput:
|
4421
4421
|
raise NotImplementedError
|
@@ -4424,8 +4424,8 @@ class S3Api:
|
|
4424
4424
|
def list_directory_buckets(
|
4425
4425
|
self,
|
4426
4426
|
context: RequestContext,
|
4427
|
-
continuation_token: DirectoryBucketToken = None,
|
4428
|
-
max_directory_buckets: MaxDirectoryBuckets = None,
|
4427
|
+
continuation_token: DirectoryBucketToken | None = None,
|
4428
|
+
max_directory_buckets: MaxDirectoryBuckets | None = None,
|
4429
4429
|
**kwargs,
|
4430
4430
|
) -> ListDirectoryBucketsOutput:
|
4431
4431
|
raise NotImplementedError
|
@@ -4435,14 +4435,14 @@ class S3Api:
|
|
4435
4435
|
self,
|
4436
4436
|
context: RequestContext,
|
4437
4437
|
bucket: BucketName,
|
4438
|
-
delimiter: Delimiter = None,
|
4439
|
-
encoding_type: EncodingType = None,
|
4440
|
-
key_marker: KeyMarker = None,
|
4441
|
-
max_uploads: MaxUploads = None,
|
4442
|
-
prefix: Prefix = None,
|
4443
|
-
upload_id_marker: UploadIdMarker = None,
|
4444
|
-
expected_bucket_owner: AccountId = None,
|
4445
|
-
request_payer: RequestPayer = None,
|
4438
|
+
delimiter: Delimiter | None = None,
|
4439
|
+
encoding_type: EncodingType | None = None,
|
4440
|
+
key_marker: KeyMarker | None = None,
|
4441
|
+
max_uploads: MaxUploads | None = None,
|
4442
|
+
prefix: Prefix | None = None,
|
4443
|
+
upload_id_marker: UploadIdMarker | None = None,
|
4444
|
+
expected_bucket_owner: AccountId | None = None,
|
4445
|
+
request_payer: RequestPayer | None = None,
|
4446
4446
|
**kwargs,
|
4447
4447
|
) -> ListMultipartUploadsOutput:
|
4448
4448
|
raise NotImplementedError
|
@@ -4452,15 +4452,15 @@ class S3Api:
|
|
4452
4452
|
self,
|
4453
4453
|
context: RequestContext,
|
4454
4454
|
bucket: BucketName,
|
4455
|
-
delimiter: Delimiter = None,
|
4456
|
-
encoding_type: EncodingType = None,
|
4457
|
-
key_marker: KeyMarker = None,
|
4458
|
-
max_keys: MaxKeys = None,
|
4459
|
-
prefix: Prefix = None,
|
4460
|
-
version_id_marker: VersionIdMarker = None,
|
4461
|
-
expected_bucket_owner: AccountId = None,
|
4462
|
-
request_payer: RequestPayer = None,
|
4463
|
-
optional_object_attributes: OptionalObjectAttributesList = None,
|
4455
|
+
delimiter: Delimiter | None = None,
|
4456
|
+
encoding_type: EncodingType | None = None,
|
4457
|
+
key_marker: KeyMarker | None = None,
|
4458
|
+
max_keys: MaxKeys | None = None,
|
4459
|
+
prefix: Prefix | None = None,
|
4460
|
+
version_id_marker: VersionIdMarker | None = None,
|
4461
|
+
expected_bucket_owner: AccountId | None = None,
|
4462
|
+
request_payer: RequestPayer | None = None,
|
4463
|
+
optional_object_attributes: OptionalObjectAttributesList | None = None,
|
4464
4464
|
**kwargs,
|
4465
4465
|
) -> ListObjectVersionsOutput:
|
4466
4466
|
raise NotImplementedError
|
@@ -4470,14 +4470,14 @@ class S3Api:
|
|
4470
4470
|
self,
|
4471
4471
|
context: RequestContext,
|
4472
4472
|
bucket: BucketName,
|
4473
|
-
delimiter: Delimiter = None,
|
4474
|
-
encoding_type: EncodingType = None,
|
4475
|
-
marker: Marker = None,
|
4476
|
-
max_keys: MaxKeys = None,
|
4477
|
-
prefix: Prefix = None,
|
4478
|
-
request_payer: RequestPayer = None,
|
4479
|
-
expected_bucket_owner: AccountId = None,
|
4480
|
-
optional_object_attributes: OptionalObjectAttributesList = None,
|
4473
|
+
delimiter: Delimiter | None = None,
|
4474
|
+
encoding_type: EncodingType | None = None,
|
4475
|
+
marker: Marker | None = None,
|
4476
|
+
max_keys: MaxKeys | None = None,
|
4477
|
+
prefix: Prefix | None = None,
|
4478
|
+
request_payer: RequestPayer | None = None,
|
4479
|
+
expected_bucket_owner: AccountId | None = None,
|
4480
|
+
optional_object_attributes: OptionalObjectAttributesList | None = None,
|
4481
4481
|
**kwargs,
|
4482
4482
|
) -> ListObjectsOutput:
|
4483
4483
|
raise NotImplementedError
|
@@ -4487,16 +4487,16 @@ class S3Api:
|
|
4487
4487
|
self,
|
4488
4488
|
context: RequestContext,
|
4489
4489
|
bucket: BucketName,
|
4490
|
-
delimiter: Delimiter = None,
|
4491
|
-
encoding_type: EncodingType = None,
|
4492
|
-
max_keys: MaxKeys = None,
|
4493
|
-
prefix: Prefix = None,
|
4494
|
-
continuation_token: Token = None,
|
4495
|
-
fetch_owner: FetchOwner = None,
|
4496
|
-
start_after: StartAfter = None,
|
4497
|
-
request_payer: RequestPayer = None,
|
4498
|
-
expected_bucket_owner: AccountId = None,
|
4499
|
-
optional_object_attributes: OptionalObjectAttributesList = None,
|
4490
|
+
delimiter: Delimiter | None = None,
|
4491
|
+
encoding_type: EncodingType | None = None,
|
4492
|
+
max_keys: MaxKeys | None = None,
|
4493
|
+
prefix: Prefix | None = None,
|
4494
|
+
continuation_token: Token | None = None,
|
4495
|
+
fetch_owner: FetchOwner | None = None,
|
4496
|
+
start_after: StartAfter | None = None,
|
4497
|
+
request_payer: RequestPayer | None = None,
|
4498
|
+
expected_bucket_owner: AccountId | None = None,
|
4499
|
+
optional_object_attributes: OptionalObjectAttributesList | None = None,
|
4500
4500
|
**kwargs,
|
4501
4501
|
) -> ListObjectsV2Output:
|
4502
4502
|
raise NotImplementedError
|
@@ -4508,13 +4508,13 @@ class S3Api:
|
|
4508
4508
|
bucket: BucketName,
|
4509
4509
|
key: ObjectKey,
|
4510
4510
|
upload_id: MultipartUploadId,
|
4511
|
-
max_parts: MaxParts = None,
|
4512
|
-
part_number_marker: PartNumberMarker = None,
|
4513
|
-
request_payer: RequestPayer = None,
|
4514
|
-
expected_bucket_owner: AccountId = None,
|
4515
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
4516
|
-
sse_customer_key: SSECustomerKey = None,
|
4517
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
4511
|
+
max_parts: MaxParts | None = None,
|
4512
|
+
part_number_marker: PartNumberMarker | None = None,
|
4513
|
+
request_payer: RequestPayer | None = None,
|
4514
|
+
expected_bucket_owner: AccountId | None = None,
|
4515
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
4516
|
+
sse_customer_key: SSECustomerKey | None = None,
|
4517
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
4518
4518
|
**kwargs,
|
4519
4519
|
) -> ListPartsOutput:
|
4520
4520
|
raise NotImplementedError
|
@@ -4525,8 +4525,8 @@ class S3Api:
|
|
4525
4525
|
context: RequestContext,
|
4526
4526
|
bucket: BucketName,
|
4527
4527
|
accelerate_configuration: AccelerateConfiguration,
|
4528
|
-
expected_bucket_owner: AccountId = None,
|
4529
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4528
|
+
expected_bucket_owner: AccountId | None = None,
|
4529
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4530
4530
|
**kwargs,
|
4531
4531
|
) -> None:
|
4532
4532
|
raise NotImplementedError
|
@@ -4536,16 +4536,16 @@ class S3Api:
|
|
4536
4536
|
self,
|
4537
4537
|
context: RequestContext,
|
4538
4538
|
bucket: BucketName,
|
4539
|
-
acl: BucketCannedACL = None,
|
4540
|
-
access_control_policy: AccessControlPolicy = None,
|
4541
|
-
content_md5: ContentMD5 = None,
|
4542
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4543
|
-
grant_full_control: GrantFullControl = None,
|
4544
|
-
grant_read: GrantRead = None,
|
4545
|
-
grant_read_acp: GrantReadACP = None,
|
4546
|
-
grant_write: GrantWrite = None,
|
4547
|
-
grant_write_acp: GrantWriteACP = None,
|
4548
|
-
expected_bucket_owner: AccountId = None,
|
4539
|
+
acl: BucketCannedACL | None = None,
|
4540
|
+
access_control_policy: AccessControlPolicy | None = None,
|
4541
|
+
content_md5: ContentMD5 | None = None,
|
4542
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4543
|
+
grant_full_control: GrantFullControl | None = None,
|
4544
|
+
grant_read: GrantRead | None = None,
|
4545
|
+
grant_read_acp: GrantReadACP | None = None,
|
4546
|
+
grant_write: GrantWrite | None = None,
|
4547
|
+
grant_write_acp: GrantWriteACP | None = None,
|
4548
|
+
expected_bucket_owner: AccountId | None = None,
|
4549
4549
|
**kwargs,
|
4550
4550
|
) -> None:
|
4551
4551
|
raise NotImplementedError
|
@@ -4557,7 +4557,7 @@ class S3Api:
|
|
4557
4557
|
bucket: BucketName,
|
4558
4558
|
id: AnalyticsId,
|
4559
4559
|
analytics_configuration: AnalyticsConfiguration,
|
4560
|
-
expected_bucket_owner: AccountId = None,
|
4560
|
+
expected_bucket_owner: AccountId | None = None,
|
4561
4561
|
**kwargs,
|
4562
4562
|
) -> None:
|
4563
4563
|
raise NotImplementedError
|
@@ -4568,9 +4568,9 @@ class S3Api:
|
|
4568
4568
|
context: RequestContext,
|
4569
4569
|
bucket: BucketName,
|
4570
4570
|
cors_configuration: CORSConfiguration,
|
4571
|
-
content_md5: ContentMD5 = None,
|
4572
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4573
|
-
expected_bucket_owner: AccountId = None,
|
4571
|
+
content_md5: ContentMD5 | None = None,
|
4572
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4573
|
+
expected_bucket_owner: AccountId | None = None,
|
4574
4574
|
**kwargs,
|
4575
4575
|
) -> None:
|
4576
4576
|
raise NotImplementedError
|
@@ -4581,9 +4581,9 @@ class S3Api:
|
|
4581
4581
|
context: RequestContext,
|
4582
4582
|
bucket: BucketName,
|
4583
4583
|
server_side_encryption_configuration: ServerSideEncryptionConfiguration,
|
4584
|
-
content_md5: ContentMD5 = None,
|
4585
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4586
|
-
expected_bucket_owner: AccountId = None,
|
4584
|
+
content_md5: ContentMD5 | None = None,
|
4585
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4586
|
+
expected_bucket_owner: AccountId | None = None,
|
4587
4587
|
**kwargs,
|
4588
4588
|
) -> None:
|
4589
4589
|
raise NotImplementedError
|
@@ -4606,7 +4606,7 @@ class S3Api:
|
|
4606
4606
|
bucket: BucketName,
|
4607
4607
|
id: InventoryId,
|
4608
4608
|
inventory_configuration: InventoryConfiguration,
|
4609
|
-
expected_bucket_owner: AccountId = None,
|
4609
|
+
expected_bucket_owner: AccountId | None = None,
|
4610
4610
|
**kwargs,
|
4611
4611
|
) -> None:
|
4612
4612
|
raise NotImplementedError
|
@@ -4616,10 +4616,10 @@ class S3Api:
|
|
4616
4616
|
self,
|
4617
4617
|
context: RequestContext,
|
4618
4618
|
bucket: BucketName,
|
4619
|
-
content_md5: ContentMD5 = None,
|
4620
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4621
|
-
lifecycle_configuration: LifecycleConfiguration = None,
|
4622
|
-
expected_bucket_owner: AccountId = None,
|
4619
|
+
content_md5: ContentMD5 | None = None,
|
4620
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4621
|
+
lifecycle_configuration: LifecycleConfiguration | None = None,
|
4622
|
+
expected_bucket_owner: AccountId | None = None,
|
4623
4623
|
**kwargs,
|
4624
4624
|
) -> None:
|
4625
4625
|
raise NotImplementedError
|
@@ -4629,10 +4629,10 @@ class S3Api:
|
|
4629
4629
|
self,
|
4630
4630
|
context: RequestContext,
|
4631
4631
|
bucket: BucketName,
|
4632
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4633
|
-
lifecycle_configuration: BucketLifecycleConfiguration = None,
|
4634
|
-
expected_bucket_owner: AccountId = None,
|
4635
|
-
transition_default_minimum_object_size: TransitionDefaultMinimumObjectSize = None,
|
4632
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4633
|
+
lifecycle_configuration: BucketLifecycleConfiguration | None = None,
|
4634
|
+
expected_bucket_owner: AccountId | None = None,
|
4635
|
+
transition_default_minimum_object_size: TransitionDefaultMinimumObjectSize | None = None,
|
4636
4636
|
**kwargs,
|
4637
4637
|
) -> PutBucketLifecycleConfigurationOutput:
|
4638
4638
|
raise NotImplementedError
|
@@ -4643,9 +4643,9 @@ class S3Api:
|
|
4643
4643
|
context: RequestContext,
|
4644
4644
|
bucket: BucketName,
|
4645
4645
|
bucket_logging_status: BucketLoggingStatus,
|
4646
|
-
content_md5: ContentMD5 = None,
|
4647
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4648
|
-
expected_bucket_owner: AccountId = None,
|
4646
|
+
content_md5: ContentMD5 | None = None,
|
4647
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4648
|
+
expected_bucket_owner: AccountId | None = None,
|
4649
4649
|
**kwargs,
|
4650
4650
|
) -> None:
|
4651
4651
|
raise NotImplementedError
|
@@ -4657,7 +4657,7 @@ class S3Api:
|
|
4657
4657
|
bucket: BucketName,
|
4658
4658
|
id: MetricsId,
|
4659
4659
|
metrics_configuration: MetricsConfiguration,
|
4660
|
-
expected_bucket_owner: AccountId = None,
|
4660
|
+
expected_bucket_owner: AccountId | None = None,
|
4661
4661
|
**kwargs,
|
4662
4662
|
) -> None:
|
4663
4663
|
raise NotImplementedError
|
@@ -4668,9 +4668,9 @@ class S3Api:
|
|
4668
4668
|
context: RequestContext,
|
4669
4669
|
bucket: BucketName,
|
4670
4670
|
notification_configuration: NotificationConfigurationDeprecated,
|
4671
|
-
content_md5: ContentMD5 = None,
|
4672
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4673
|
-
expected_bucket_owner: AccountId = None,
|
4671
|
+
content_md5: ContentMD5 | None = None,
|
4672
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4673
|
+
expected_bucket_owner: AccountId | None = None,
|
4674
4674
|
**kwargs,
|
4675
4675
|
) -> None:
|
4676
4676
|
raise NotImplementedError
|
@@ -4681,8 +4681,8 @@ class S3Api:
|
|
4681
4681
|
context: RequestContext,
|
4682
4682
|
bucket: BucketName,
|
4683
4683
|
notification_configuration: NotificationConfiguration,
|
4684
|
-
expected_bucket_owner: AccountId = None,
|
4685
|
-
skip_destination_validation: SkipValidation = None,
|
4684
|
+
expected_bucket_owner: AccountId | None = None,
|
4685
|
+
skip_destination_validation: SkipValidation | None = None,
|
4686
4686
|
**kwargs,
|
4687
4687
|
) -> None:
|
4688
4688
|
raise NotImplementedError
|
@@ -4693,8 +4693,8 @@ class S3Api:
|
|
4693
4693
|
context: RequestContext,
|
4694
4694
|
bucket: BucketName,
|
4695
4695
|
ownership_controls: OwnershipControls,
|
4696
|
-
content_md5: ContentMD5 = None,
|
4697
|
-
expected_bucket_owner: AccountId = None,
|
4696
|
+
content_md5: ContentMD5 | None = None,
|
4697
|
+
expected_bucket_owner: AccountId | None = None,
|
4698
4698
|
**kwargs,
|
4699
4699
|
) -> None:
|
4700
4700
|
raise NotImplementedError
|
@@ -4705,10 +4705,10 @@ class S3Api:
|
|
4705
4705
|
context: RequestContext,
|
4706
4706
|
bucket: BucketName,
|
4707
4707
|
policy: Policy,
|
4708
|
-
content_md5: ContentMD5 = None,
|
4709
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4710
|
-
confirm_remove_self_bucket_access: ConfirmRemoveSelfBucketAccess = None,
|
4711
|
-
expected_bucket_owner: AccountId = None,
|
4708
|
+
content_md5: ContentMD5 | None = None,
|
4709
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4710
|
+
confirm_remove_self_bucket_access: ConfirmRemoveSelfBucketAccess | None = None,
|
4711
|
+
expected_bucket_owner: AccountId | None = None,
|
4712
4712
|
**kwargs,
|
4713
4713
|
) -> None:
|
4714
4714
|
raise NotImplementedError
|
@@ -4719,10 +4719,10 @@ class S3Api:
|
|
4719
4719
|
context: RequestContext,
|
4720
4720
|
bucket: BucketName,
|
4721
4721
|
replication_configuration: ReplicationConfiguration,
|
4722
|
-
content_md5: ContentMD5 = None,
|
4723
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4724
|
-
token: ObjectLockToken = None,
|
4725
|
-
expected_bucket_owner: AccountId = None,
|
4722
|
+
content_md5: ContentMD5 | None = None,
|
4723
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4724
|
+
token: ObjectLockToken | None = None,
|
4725
|
+
expected_bucket_owner: AccountId | None = None,
|
4726
4726
|
**kwargs,
|
4727
4727
|
) -> None:
|
4728
4728
|
raise NotImplementedError
|
@@ -4733,9 +4733,9 @@ class S3Api:
|
|
4733
4733
|
context: RequestContext,
|
4734
4734
|
bucket: BucketName,
|
4735
4735
|
request_payment_configuration: RequestPaymentConfiguration,
|
4736
|
-
content_md5: ContentMD5 = None,
|
4737
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4738
|
-
expected_bucket_owner: AccountId = None,
|
4736
|
+
content_md5: ContentMD5 | None = None,
|
4737
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4738
|
+
expected_bucket_owner: AccountId | None = None,
|
4739
4739
|
**kwargs,
|
4740
4740
|
) -> None:
|
4741
4741
|
raise NotImplementedError
|
@@ -4746,9 +4746,9 @@ class S3Api:
|
|
4746
4746
|
context: RequestContext,
|
4747
4747
|
bucket: BucketName,
|
4748
4748
|
tagging: Tagging,
|
4749
|
-
content_md5: ContentMD5 = None,
|
4750
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4751
|
-
expected_bucket_owner: AccountId = None,
|
4749
|
+
content_md5: ContentMD5 | None = None,
|
4750
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4751
|
+
expected_bucket_owner: AccountId | None = None,
|
4752
4752
|
**kwargs,
|
4753
4753
|
) -> None:
|
4754
4754
|
raise NotImplementedError
|
@@ -4759,10 +4759,10 @@ class S3Api:
|
|
4759
4759
|
context: RequestContext,
|
4760
4760
|
bucket: BucketName,
|
4761
4761
|
versioning_configuration: VersioningConfiguration,
|
4762
|
-
content_md5: ContentMD5 = None,
|
4763
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4764
|
-
mfa: MFA = None,
|
4765
|
-
expected_bucket_owner: AccountId = None,
|
4762
|
+
content_md5: ContentMD5 | None = None,
|
4763
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4764
|
+
mfa: MFA | None = None,
|
4765
|
+
expected_bucket_owner: AccountId | None = None,
|
4766
4766
|
**kwargs,
|
4767
4767
|
) -> None:
|
4768
4768
|
raise NotImplementedError
|
@@ -4773,9 +4773,9 @@ class S3Api:
|
|
4773
4773
|
context: RequestContext,
|
4774
4774
|
bucket: BucketName,
|
4775
4775
|
website_configuration: WebsiteConfiguration,
|
4776
|
-
content_md5: ContentMD5 = None,
|
4777
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4778
|
-
expected_bucket_owner: AccountId = None,
|
4776
|
+
content_md5: ContentMD5 | None = None,
|
4777
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4778
|
+
expected_bucket_owner: AccountId | None = None,
|
4779
4779
|
**kwargs,
|
4780
4780
|
) -> None:
|
4781
4781
|
raise NotImplementedError
|
@@ -4786,45 +4786,45 @@ class S3Api:
|
|
4786
4786
|
context: RequestContext,
|
4787
4787
|
bucket: BucketName,
|
4788
4788
|
key: ObjectKey,
|
4789
|
-
acl: ObjectCannedACL = None,
|
4790
|
-
body: IO[Body] = None,
|
4791
|
-
cache_control: CacheControl = None,
|
4792
|
-
content_disposition: ContentDisposition = None,
|
4793
|
-
content_encoding: ContentEncoding = None,
|
4794
|
-
content_language: ContentLanguage = None,
|
4795
|
-
content_length: ContentLength = None,
|
4796
|
-
content_md5: ContentMD5 = None,
|
4797
|
-
content_type: ContentType = None,
|
4798
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4799
|
-
checksum_crc32: ChecksumCRC32 = None,
|
4800
|
-
checksum_crc32_c: ChecksumCRC32C = None,
|
4801
|
-
checksum_crc64_nvme: ChecksumCRC64NVME = None,
|
4802
|
-
checksum_sha1: ChecksumSHA1 = None,
|
4803
|
-
checksum_sha256: ChecksumSHA256 = None,
|
4804
|
-
expires: Expires = None,
|
4805
|
-
if_match: IfMatch = None,
|
4806
|
-
if_none_match: IfNoneMatch = None,
|
4807
|
-
grant_full_control: GrantFullControl = None,
|
4808
|
-
grant_read: GrantRead = None,
|
4809
|
-
grant_read_acp: GrantReadACP = None,
|
4810
|
-
grant_write_acp: GrantWriteACP = None,
|
4811
|
-
write_offset_bytes: WriteOffsetBytes = None,
|
4812
|
-
metadata: Metadata = None,
|
4813
|
-
server_side_encryption: ServerSideEncryption = None,
|
4814
|
-
storage_class: StorageClass = None,
|
4815
|
-
website_redirect_location: WebsiteRedirectLocation = None,
|
4816
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
4817
|
-
sse_customer_key: SSECustomerKey = None,
|
4818
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
4819
|
-
ssekms_key_id: SSEKMSKeyId = None,
|
4820
|
-
ssekms_encryption_context: SSEKMSEncryptionContext = None,
|
4821
|
-
bucket_key_enabled: BucketKeyEnabled = None,
|
4822
|
-
request_payer: RequestPayer = None,
|
4823
|
-
tagging: TaggingHeader = None,
|
4824
|
-
object_lock_mode: ObjectLockMode = None,
|
4825
|
-
object_lock_retain_until_date: ObjectLockRetainUntilDate = None,
|
4826
|
-
object_lock_legal_hold_status: ObjectLockLegalHoldStatus = None,
|
4827
|
-
expected_bucket_owner: AccountId = None,
|
4789
|
+
acl: ObjectCannedACL | None = None,
|
4790
|
+
body: IO[Body] | None = None,
|
4791
|
+
cache_control: CacheControl | None = None,
|
4792
|
+
content_disposition: ContentDisposition | None = None,
|
4793
|
+
content_encoding: ContentEncoding | None = None,
|
4794
|
+
content_language: ContentLanguage | None = None,
|
4795
|
+
content_length: ContentLength | None = None,
|
4796
|
+
content_md5: ContentMD5 | None = None,
|
4797
|
+
content_type: ContentType | None = None,
|
4798
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4799
|
+
checksum_crc32: ChecksumCRC32 | None = None,
|
4800
|
+
checksum_crc32_c: ChecksumCRC32C | None = None,
|
4801
|
+
checksum_crc64_nvme: ChecksumCRC64NVME | None = None,
|
4802
|
+
checksum_sha1: ChecksumSHA1 | None = None,
|
4803
|
+
checksum_sha256: ChecksumSHA256 | None = None,
|
4804
|
+
expires: Expires | None = None,
|
4805
|
+
if_match: IfMatch | None = None,
|
4806
|
+
if_none_match: IfNoneMatch | None = None,
|
4807
|
+
grant_full_control: GrantFullControl | None = None,
|
4808
|
+
grant_read: GrantRead | None = None,
|
4809
|
+
grant_read_acp: GrantReadACP | None = None,
|
4810
|
+
grant_write_acp: GrantWriteACP | None = None,
|
4811
|
+
write_offset_bytes: WriteOffsetBytes | None = None,
|
4812
|
+
metadata: Metadata | None = None,
|
4813
|
+
server_side_encryption: ServerSideEncryption | None = None,
|
4814
|
+
storage_class: StorageClass | None = None,
|
4815
|
+
website_redirect_location: WebsiteRedirectLocation | None = None,
|
4816
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
4817
|
+
sse_customer_key: SSECustomerKey | None = None,
|
4818
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
4819
|
+
ssekms_key_id: SSEKMSKeyId | None = None,
|
4820
|
+
ssekms_encryption_context: SSEKMSEncryptionContext | None = None,
|
4821
|
+
bucket_key_enabled: BucketKeyEnabled | None = None,
|
4822
|
+
request_payer: RequestPayer | None = None,
|
4823
|
+
tagging: TaggingHeader | None = None,
|
4824
|
+
object_lock_mode: ObjectLockMode | None = None,
|
4825
|
+
object_lock_retain_until_date: ObjectLockRetainUntilDate | None = None,
|
4826
|
+
object_lock_legal_hold_status: ObjectLockLegalHoldStatus | None = None,
|
4827
|
+
expected_bucket_owner: AccountId | None = None,
|
4828
4828
|
**kwargs,
|
4829
4829
|
) -> PutObjectOutput:
|
4830
4830
|
raise NotImplementedError
|
@@ -4835,18 +4835,18 @@ class S3Api:
|
|
4835
4835
|
context: RequestContext,
|
4836
4836
|
bucket: BucketName,
|
4837
4837
|
key: ObjectKey,
|
4838
|
-
acl: ObjectCannedACL = None,
|
4839
|
-
access_control_policy: AccessControlPolicy = None,
|
4840
|
-
content_md5: ContentMD5 = None,
|
4841
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4842
|
-
grant_full_control: GrantFullControl = None,
|
4843
|
-
grant_read: GrantRead = None,
|
4844
|
-
grant_read_acp: GrantReadACP = None,
|
4845
|
-
grant_write: GrantWrite = None,
|
4846
|
-
grant_write_acp: GrantWriteACP = None,
|
4847
|
-
request_payer: RequestPayer = None,
|
4848
|
-
version_id: ObjectVersionId = None,
|
4849
|
-
expected_bucket_owner: AccountId = None,
|
4838
|
+
acl: ObjectCannedACL | None = None,
|
4839
|
+
access_control_policy: AccessControlPolicy | None = None,
|
4840
|
+
content_md5: ContentMD5 | None = None,
|
4841
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4842
|
+
grant_full_control: GrantFullControl | None = None,
|
4843
|
+
grant_read: GrantRead | None = None,
|
4844
|
+
grant_read_acp: GrantReadACP | None = None,
|
4845
|
+
grant_write: GrantWrite | None = None,
|
4846
|
+
grant_write_acp: GrantWriteACP | None = None,
|
4847
|
+
request_payer: RequestPayer | None = None,
|
4848
|
+
version_id: ObjectVersionId | None = None,
|
4849
|
+
expected_bucket_owner: AccountId | None = None,
|
4850
4850
|
**kwargs,
|
4851
4851
|
) -> PutObjectAclOutput:
|
4852
4852
|
raise NotImplementedError
|
@@ -4857,12 +4857,12 @@ class S3Api:
|
|
4857
4857
|
context: RequestContext,
|
4858
4858
|
bucket: BucketName,
|
4859
4859
|
key: ObjectKey,
|
4860
|
-
legal_hold: ObjectLockLegalHold = None,
|
4861
|
-
request_payer: RequestPayer = None,
|
4862
|
-
version_id: ObjectVersionId = None,
|
4863
|
-
content_md5: ContentMD5 = None,
|
4864
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4865
|
-
expected_bucket_owner: AccountId = None,
|
4860
|
+
legal_hold: ObjectLockLegalHold | None = None,
|
4861
|
+
request_payer: RequestPayer | None = None,
|
4862
|
+
version_id: ObjectVersionId | None = None,
|
4863
|
+
content_md5: ContentMD5 | None = None,
|
4864
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4865
|
+
expected_bucket_owner: AccountId | None = None,
|
4866
4866
|
**kwargs,
|
4867
4867
|
) -> PutObjectLegalHoldOutput:
|
4868
4868
|
raise NotImplementedError
|
@@ -4872,12 +4872,12 @@ class S3Api:
|
|
4872
4872
|
self,
|
4873
4873
|
context: RequestContext,
|
4874
4874
|
bucket: BucketName,
|
4875
|
-
object_lock_configuration: ObjectLockConfiguration = None,
|
4876
|
-
request_payer: RequestPayer = None,
|
4877
|
-
token: ObjectLockToken = None,
|
4878
|
-
content_md5: ContentMD5 = None,
|
4879
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4880
|
-
expected_bucket_owner: AccountId = None,
|
4875
|
+
object_lock_configuration: ObjectLockConfiguration | None = None,
|
4876
|
+
request_payer: RequestPayer | None = None,
|
4877
|
+
token: ObjectLockToken | None = None,
|
4878
|
+
content_md5: ContentMD5 | None = None,
|
4879
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4880
|
+
expected_bucket_owner: AccountId | None = None,
|
4881
4881
|
**kwargs,
|
4882
4882
|
) -> PutObjectLockConfigurationOutput:
|
4883
4883
|
raise NotImplementedError
|
@@ -4888,13 +4888,13 @@ class S3Api:
|
|
4888
4888
|
context: RequestContext,
|
4889
4889
|
bucket: BucketName,
|
4890
4890
|
key: ObjectKey,
|
4891
|
-
retention: ObjectLockRetention = None,
|
4892
|
-
request_payer: RequestPayer = None,
|
4893
|
-
version_id: ObjectVersionId = None,
|
4894
|
-
bypass_governance_retention: BypassGovernanceRetention = None,
|
4895
|
-
content_md5: ContentMD5 = None,
|
4896
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4897
|
-
expected_bucket_owner: AccountId = None,
|
4891
|
+
retention: ObjectLockRetention | None = None,
|
4892
|
+
request_payer: RequestPayer | None = None,
|
4893
|
+
version_id: ObjectVersionId | None = None,
|
4894
|
+
bypass_governance_retention: BypassGovernanceRetention | None = None,
|
4895
|
+
content_md5: ContentMD5 | None = None,
|
4896
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4897
|
+
expected_bucket_owner: AccountId | None = None,
|
4898
4898
|
**kwargs,
|
4899
4899
|
) -> PutObjectRetentionOutput:
|
4900
4900
|
raise NotImplementedError
|
@@ -4906,11 +4906,11 @@ class S3Api:
|
|
4906
4906
|
bucket: BucketName,
|
4907
4907
|
key: ObjectKey,
|
4908
4908
|
tagging: Tagging,
|
4909
|
-
version_id: ObjectVersionId = None,
|
4910
|
-
content_md5: ContentMD5 = None,
|
4911
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4912
|
-
expected_bucket_owner: AccountId = None,
|
4913
|
-
request_payer: RequestPayer = None,
|
4909
|
+
version_id: ObjectVersionId | None = None,
|
4910
|
+
content_md5: ContentMD5 | None = None,
|
4911
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4912
|
+
expected_bucket_owner: AccountId | None = None,
|
4913
|
+
request_payer: RequestPayer | None = None,
|
4914
4914
|
**kwargs,
|
4915
4915
|
) -> PutObjectTaggingOutput:
|
4916
4916
|
raise NotImplementedError
|
@@ -4921,9 +4921,9 @@ class S3Api:
|
|
4921
4921
|
context: RequestContext,
|
4922
4922
|
bucket: BucketName,
|
4923
4923
|
public_access_block_configuration: PublicAccessBlockConfiguration,
|
4924
|
-
content_md5: ContentMD5 = None,
|
4925
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4926
|
-
expected_bucket_owner: AccountId = None,
|
4924
|
+
content_md5: ContentMD5 | None = None,
|
4925
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4926
|
+
expected_bucket_owner: AccountId | None = None,
|
4927
4927
|
**kwargs,
|
4928
4928
|
) -> None:
|
4929
4929
|
raise NotImplementedError
|
@@ -4934,11 +4934,11 @@ class S3Api:
|
|
4934
4934
|
context: RequestContext,
|
4935
4935
|
bucket: BucketName,
|
4936
4936
|
key: ObjectKey,
|
4937
|
-
version_id: ObjectVersionId = None,
|
4938
|
-
restore_request: RestoreRequest = None,
|
4939
|
-
request_payer: RequestPayer = None,
|
4940
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4941
|
-
expected_bucket_owner: AccountId = None,
|
4937
|
+
version_id: ObjectVersionId | None = None,
|
4938
|
+
restore_request: RestoreRequest | None = None,
|
4939
|
+
request_payer: RequestPayer | None = None,
|
4940
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4941
|
+
expected_bucket_owner: AccountId | None = None,
|
4942
4942
|
**kwargs,
|
4943
4943
|
) -> RestoreObjectOutput:
|
4944
4944
|
raise NotImplementedError
|
@@ -4953,12 +4953,12 @@ class S3Api:
|
|
4953
4953
|
expression_type: ExpressionType,
|
4954
4954
|
input_serialization: InputSerialization,
|
4955
4955
|
output_serialization: OutputSerialization,
|
4956
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
4957
|
-
sse_customer_key: SSECustomerKey = None,
|
4958
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
4959
|
-
request_progress: RequestProgress = None,
|
4960
|
-
scan_range: ScanRange = None,
|
4961
|
-
expected_bucket_owner: AccountId = None,
|
4956
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
4957
|
+
sse_customer_key: SSECustomerKey | None = None,
|
4958
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
4959
|
+
request_progress: RequestProgress | None = None,
|
4960
|
+
scan_range: ScanRange | None = None,
|
4961
|
+
expected_bucket_owner: AccountId | None = None,
|
4962
4962
|
**kwargs,
|
4963
4963
|
) -> SelectObjectContentOutput:
|
4964
4964
|
raise NotImplementedError
|
@@ -4971,20 +4971,20 @@ class S3Api:
|
|
4971
4971
|
key: ObjectKey,
|
4972
4972
|
part_number: PartNumber,
|
4973
4973
|
upload_id: MultipartUploadId,
|
4974
|
-
body: IO[Body] = None,
|
4975
|
-
content_length: ContentLength = None,
|
4976
|
-
content_md5: ContentMD5 = None,
|
4977
|
-
checksum_algorithm: ChecksumAlgorithm = None,
|
4978
|
-
checksum_crc32: ChecksumCRC32 = None,
|
4979
|
-
checksum_crc32_c: ChecksumCRC32C = None,
|
4980
|
-
checksum_crc64_nvme: ChecksumCRC64NVME = None,
|
4981
|
-
checksum_sha1: ChecksumSHA1 = None,
|
4982
|
-
checksum_sha256: ChecksumSHA256 = None,
|
4983
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
4984
|
-
sse_customer_key: SSECustomerKey = None,
|
4985
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
4986
|
-
request_payer: RequestPayer = None,
|
4987
|
-
expected_bucket_owner: AccountId = None,
|
4974
|
+
body: IO[Body] | None = None,
|
4975
|
+
content_length: ContentLength | None = None,
|
4976
|
+
content_md5: ContentMD5 | None = None,
|
4977
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4978
|
+
checksum_crc32: ChecksumCRC32 | None = None,
|
4979
|
+
checksum_crc32_c: ChecksumCRC32C | None = None,
|
4980
|
+
checksum_crc64_nvme: ChecksumCRC64NVME | None = None,
|
4981
|
+
checksum_sha1: ChecksumSHA1 | None = None,
|
4982
|
+
checksum_sha256: ChecksumSHA256 | None = None,
|
4983
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
4984
|
+
sse_customer_key: SSECustomerKey | None = None,
|
4985
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
4986
|
+
request_payer: RequestPayer | None = None,
|
4987
|
+
expected_bucket_owner: AccountId | None = None,
|
4988
4988
|
**kwargs,
|
4989
4989
|
) -> UploadPartOutput:
|
4990
4990
|
raise NotImplementedError
|
@@ -4998,20 +4998,20 @@ class S3Api:
|
|
4998
4998
|
key: ObjectKey,
|
4999
4999
|
part_number: PartNumber,
|
5000
5000
|
upload_id: MultipartUploadId,
|
5001
|
-
copy_source_if_match: CopySourceIfMatch = None,
|
5002
|
-
copy_source_if_modified_since: CopySourceIfModifiedSince = None,
|
5003
|
-
copy_source_if_none_match: CopySourceIfNoneMatch = None,
|
5004
|
-
copy_source_if_unmodified_since: CopySourceIfUnmodifiedSince = None,
|
5005
|
-
copy_source_range: CopySourceRange = None,
|
5006
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
5007
|
-
sse_customer_key: SSECustomerKey = None,
|
5008
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
5009
|
-
copy_source_sse_customer_algorithm: CopySourceSSECustomerAlgorithm = None,
|
5010
|
-
copy_source_sse_customer_key: CopySourceSSECustomerKey = None,
|
5011
|
-
copy_source_sse_customer_key_md5: CopySourceSSECustomerKeyMD5 = None,
|
5012
|
-
request_payer: RequestPayer = None,
|
5013
|
-
expected_bucket_owner: AccountId = None,
|
5014
|
-
expected_source_bucket_owner: AccountId = None,
|
5001
|
+
copy_source_if_match: CopySourceIfMatch | None = None,
|
5002
|
+
copy_source_if_modified_since: CopySourceIfModifiedSince | None = None,
|
5003
|
+
copy_source_if_none_match: CopySourceIfNoneMatch | None = None,
|
5004
|
+
copy_source_if_unmodified_since: CopySourceIfUnmodifiedSince | None = None,
|
5005
|
+
copy_source_range: CopySourceRange | None = None,
|
5006
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
5007
|
+
sse_customer_key: SSECustomerKey | None = None,
|
5008
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
5009
|
+
copy_source_sse_customer_algorithm: CopySourceSSECustomerAlgorithm | None = None,
|
5010
|
+
copy_source_sse_customer_key: CopySourceSSECustomerKey | None = None,
|
5011
|
+
copy_source_sse_customer_key_md5: CopySourceSSECustomerKeyMD5 | None = None,
|
5012
|
+
request_payer: RequestPayer | None = None,
|
5013
|
+
expected_bucket_owner: AccountId | None = None,
|
5014
|
+
expected_source_bucket_owner: AccountId | None = None,
|
5015
5015
|
**kwargs,
|
5016
5016
|
) -> UploadPartCopyOutput:
|
5017
5017
|
raise NotImplementedError
|
@@ -5022,51 +5022,51 @@ class S3Api:
|
|
5022
5022
|
context: RequestContext,
|
5023
5023
|
request_route: RequestRoute,
|
5024
5024
|
request_token: RequestToken,
|
5025
|
-
body: IO[Body] = None,
|
5026
|
-
status_code: GetObjectResponseStatusCode = None,
|
5027
|
-
error_code: ErrorCode = None,
|
5028
|
-
error_message: ErrorMessage = None,
|
5029
|
-
accept_ranges: AcceptRanges = None,
|
5030
|
-
cache_control: CacheControl = None,
|
5031
|
-
content_disposition: ContentDisposition = None,
|
5032
|
-
content_encoding: ContentEncoding = None,
|
5033
|
-
content_language: ContentLanguage = None,
|
5034
|
-
content_length: ContentLength = None,
|
5035
|
-
content_range: ContentRange = None,
|
5036
|
-
content_type: ContentType = None,
|
5037
|
-
checksum_crc32: ChecksumCRC32 = None,
|
5038
|
-
checksum_crc32_c: ChecksumCRC32C = None,
|
5039
|
-
checksum_crc64_nvme: ChecksumCRC64NVME = None,
|
5040
|
-
checksum_sha1: ChecksumSHA1 = None,
|
5041
|
-
checksum_sha256: ChecksumSHA256 = None,
|
5042
|
-
delete_marker: DeleteMarker = None,
|
5043
|
-
e_tag: ETag = None,
|
5044
|
-
expires: Expires = None,
|
5045
|
-
expiration: Expiration = None,
|
5046
|
-
last_modified: LastModified = None,
|
5047
|
-
missing_meta: MissingMeta = None,
|
5048
|
-
metadata: Metadata = None,
|
5049
|
-
object_lock_mode: ObjectLockMode = None,
|
5050
|
-
object_lock_legal_hold_status: ObjectLockLegalHoldStatus = None,
|
5051
|
-
object_lock_retain_until_date: ObjectLockRetainUntilDate = None,
|
5052
|
-
parts_count: PartsCount = None,
|
5053
|
-
replication_status: ReplicationStatus = None,
|
5054
|
-
request_charged: RequestCharged = None,
|
5055
|
-
restore: Restore = None,
|
5056
|
-
server_side_encryption: ServerSideEncryption = None,
|
5057
|
-
sse_customer_algorithm: SSECustomerAlgorithm = None,
|
5058
|
-
ssekms_key_id: SSEKMSKeyId = None,
|
5059
|
-
sse_customer_key_md5: SSECustomerKeyMD5 = None,
|
5060
|
-
storage_class: StorageClass = None,
|
5061
|
-
tag_count: TagCount = None,
|
5062
|
-
version_id: ObjectVersionId = None,
|
5063
|
-
bucket_key_enabled: BucketKeyEnabled = None,
|
5025
|
+
body: IO[Body] | None = None,
|
5026
|
+
status_code: GetObjectResponseStatusCode | None = None,
|
5027
|
+
error_code: ErrorCode | None = None,
|
5028
|
+
error_message: ErrorMessage | None = None,
|
5029
|
+
accept_ranges: AcceptRanges | None = None,
|
5030
|
+
cache_control: CacheControl | None = None,
|
5031
|
+
content_disposition: ContentDisposition | None = None,
|
5032
|
+
content_encoding: ContentEncoding | None = None,
|
5033
|
+
content_language: ContentLanguage | None = None,
|
5034
|
+
content_length: ContentLength | None = None,
|
5035
|
+
content_range: ContentRange | None = None,
|
5036
|
+
content_type: ContentType | None = None,
|
5037
|
+
checksum_crc32: ChecksumCRC32 | None = None,
|
5038
|
+
checksum_crc32_c: ChecksumCRC32C | None = None,
|
5039
|
+
checksum_crc64_nvme: ChecksumCRC64NVME | None = None,
|
5040
|
+
checksum_sha1: ChecksumSHA1 | None = None,
|
5041
|
+
checksum_sha256: ChecksumSHA256 | None = None,
|
5042
|
+
delete_marker: DeleteMarker | None = None,
|
5043
|
+
e_tag: ETag | None = None,
|
5044
|
+
expires: Expires | None = None,
|
5045
|
+
expiration: Expiration | None = None,
|
5046
|
+
last_modified: LastModified | None = None,
|
5047
|
+
missing_meta: MissingMeta | None = None,
|
5048
|
+
metadata: Metadata | None = None,
|
5049
|
+
object_lock_mode: ObjectLockMode | None = None,
|
5050
|
+
object_lock_legal_hold_status: ObjectLockLegalHoldStatus | None = None,
|
5051
|
+
object_lock_retain_until_date: ObjectLockRetainUntilDate | None = None,
|
5052
|
+
parts_count: PartsCount | None = None,
|
5053
|
+
replication_status: ReplicationStatus | None = None,
|
5054
|
+
request_charged: RequestCharged | None = None,
|
5055
|
+
restore: Restore | None = None,
|
5056
|
+
server_side_encryption: ServerSideEncryption | None = None,
|
5057
|
+
sse_customer_algorithm: SSECustomerAlgorithm | None = None,
|
5058
|
+
ssekms_key_id: SSEKMSKeyId | None = None,
|
5059
|
+
sse_customer_key_md5: SSECustomerKeyMD5 | None = None,
|
5060
|
+
storage_class: StorageClass | None = None,
|
5061
|
+
tag_count: TagCount | None = None,
|
5062
|
+
version_id: ObjectVersionId | None = None,
|
5063
|
+
bucket_key_enabled: BucketKeyEnabled | None = None,
|
5064
5064
|
**kwargs,
|
5065
5065
|
) -> None:
|
5066
5066
|
raise NotImplementedError
|
5067
5067
|
|
5068
5068
|
@handler("PostObject")
|
5069
5069
|
def post_object(
|
5070
|
-
self, context: RequestContext, bucket: BucketName, body: IO[Body] = None, **kwargs
|
5070
|
+
self, context: RequestContext, bucket: BucketName, body: IO[Body] | None = None, **kwargs
|
5071
5071
|
) -> PostResponse:
|
5072
5072
|
raise NotImplementedError
|