@tachybase/module-file 0.23.8
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/README.md +9 -0
- package/README.zh-CN.md +9 -0
- package/client.d.ts +2 -0
- package/client.js +1 -0
- package/dist/client/FileManagerProvider.d.ts +4 -0
- package/dist/client/FileStorage.d.ts +4 -0
- package/dist/client/StorageOptions.d.ts +2 -0
- package/dist/client/hooks/index.d.ts +1 -0
- package/dist/client/hooks/useUploadFiles.d.ts +9 -0
- package/dist/client/index.d.ts +7 -0
- package/dist/client/index.js +1 -0
- package/dist/client/initializers/UploadActionInitializer.d.ts +2 -0
- package/dist/client/initializers/index.d.ts +1 -0
- package/dist/client/interfaces/attachment.d.ts +103 -0
- package/dist/client/locale/index.d.ts +2 -0
- package/dist/client/schemas/storage.d.ts +11 -0
- package/dist/client/schemas/storageTypes/ali-oss.d.ts +82 -0
- package/dist/client/schemas/storageTypes/index.d.ts +284 -0
- package/dist/client/schemas/storageTypes/local.d.ts +56 -0
- package/dist/client/schemas/storageTypes/s3.d.ts +77 -0
- package/dist/client/schemas/storageTypes/tx-cos.d.ts +71 -0
- package/dist/client/templates/file.d.ts +133 -0
- package/dist/client/templates/index.d.ts +1 -0
- package/dist/externalVersion.js +16 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +39 -0
- package/dist/locale/en-US.json +22 -0
- package/dist/locale/fr-FR.json +21 -0
- package/dist/locale/ja-JP.json +18 -0
- package/dist/locale/ko_KR.json +32 -0
- package/dist/locale/ru-RU.json +18 -0
- package/dist/locale/tr-TR.json +17 -0
- package/dist/locale/zh-CN.json +32 -0
- package/dist/node_modules/@aws-sdk/client-s3/LICENSE +201 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +127 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +33 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +1 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +69 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/S3.js +203 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +60 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +123 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +33 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +29 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +27 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +32 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +29 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +29 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +30 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +37 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +27 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +27 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +27 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +27 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +27 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +32 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +29 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +27 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +24 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +27 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +32 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +27 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +33 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +30 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +33 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +37 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +32 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +32 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +32 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +32 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +33 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +34 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +36 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +31 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +98 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/endpoint/EndpointParameters.js +24 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +29 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +4 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/extensionConfiguration.js +1 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/index.js +7 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/S3ServiceException.js +8 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/index.js +2 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/models_0.js +580 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/models_1.js +198 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/Interfaces.js +1 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListBucketsPaginator.js +4 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListDirectoryBucketsPaginator.js +4 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectsV2Paginator.js +4 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListPartsPaginator.js +4 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +5 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/protocols/Aws_restXml.js +7635 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +42 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +64 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.native.js +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +42 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeExtensions.js +21 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/index.js +4 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +25 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +26 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +25 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +698 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +331 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthSchemeProvider.d.ts +69 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +179 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +311 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +348 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +283 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +134 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +399 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +196 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +101 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +138 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +104 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +130 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +94 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +99 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +150 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +95 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +107 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +91 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +147 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +108 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +100 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +107 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +205 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +131 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +317 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +100 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +102 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +115 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +135 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +145 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +143 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +121 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +129 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +254 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +116 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +110 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +111 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +128 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +154 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +99 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +159 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +105 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +195 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +101 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +134 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +115 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +139 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +189 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +326 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +367 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +90 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +94 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +91 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +163 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +107 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +116 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +157 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +315 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +147 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +126 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +142 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +136 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +130 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +107 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +344 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +213 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +196 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +261 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +238 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +115 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +309 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +208 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +193 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +209 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +153 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +185 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +293 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +209 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +141 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +206 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +99 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +162 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +233 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +109 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +163 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +143 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +244 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +307 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +449 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +86 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +109 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +89 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +169 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +117 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +383 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +254 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +307 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +375 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +147 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +98 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/endpoint/EndpointParameters.d.ts +83 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +15 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/S3ServiceException.d.ts +14 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/index.d.ts +2 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +13234 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +3948 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListBucketsPaginator.d.ts +7 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListDirectoryBucketsPaginator.d.ts +7 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectsV2Paginator.d.ts +7 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListPartsPaginator.d.ts +7 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +5 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/protocols/Aws_restXml.d.ts +884 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +68 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +69 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +67 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +28 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +1751 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +732 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +55 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +45 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +45 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +50 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +50 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +50 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +50 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +52 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +50 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +58 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +45 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +45 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +45 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +45 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +45 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +45 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +53 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +50 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +46 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +47 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +51 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +53 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +50 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +54 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +98 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +94 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +10 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +9 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/index.d.ts +2 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +2074 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +742 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListBucketsPaginator.d.ts +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListDirectoryBucketsPaginator.d.ts +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectsV2Paginator.d.ts +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/protocols/Aws_restXml.d.ts +1185 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +145 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +147 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +133 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +36 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +11 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/index.d.ts +4 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +14 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +14 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +14 -0
- package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +14 -0
- package/dist/node_modules/@aws-sdk/client-s3/package.json +1 -0
- package/dist/node_modules/mime-match/.travis.yml +11 -0
- package/dist/node_modules/mime-match/example.js +17 -0
- package/dist/node_modules/mime-match/index.js +1 -0
- package/dist/node_modules/mime-match/package.json +1 -0
- package/dist/node_modules/mime-match/test.js +45 -0
- package/dist/node_modules/mkdirp/LICENSE +21 -0
- package/dist/node_modules/mkdirp/bin/cmd.js +33 -0
- package/dist/node_modules/mkdirp/bin/usage.txt +12 -0
- package/dist/node_modules/mkdirp/index.js +1 -0
- package/dist/node_modules/mkdirp/package.json +1 -0
- package/dist/node_modules/mkdirp/readme.markdown +100 -0
- package/dist/node_modules/multer-aliyun-oss/index.js +74 -0
- package/dist/node_modules/multer-aliyun-oss/package.json +1 -0
- package/dist/node_modules/multer-cos/LICENSE +24 -0
- package/dist/node_modules/multer-cos/demo/index.js +39 -0
- package/dist/node_modules/multer-cos/demo/myMulter.js +88 -0
- package/dist/node_modules/multer-cos/index.js +220 -0
- package/dist/node_modules/multer-cos/package.json +1 -0
- package/dist/node_modules/multer-s3/.gitattributes +1 -0
- package/dist/node_modules/multer-s3/.travis.yml +6 -0
- package/dist/node_modules/multer-s3/LICENSE +22 -0
- package/dist/node_modules/multer-s3/index.js +5 -0
- package/dist/node_modules/multer-s3/package.json +1 -0
- package/dist/node_modules/multer-s3/test/basic.js +293 -0
- package/dist/node_modules/multer-s3/test/files/a.txt +1 -0
- package/dist/node_modules/multer-s3/test/files/test.svg +3 -0
- package/dist/node_modules/multer-s3/test/files/test2.svg +9 -0
- package/dist/node_modules/multer-s3/test/util/mock-s3.js +17 -0
- package/dist/server/FileModel.d.ts +4 -0
- package/dist/server/FileModel.js +45 -0
- package/dist/server/actions/attachments.d.ts +3 -0
- package/dist/server/actions/attachments.js +183 -0
- package/dist/server/actions/index.d.ts +3 -0
- package/dist/server/actions/index.js +39 -0
- package/dist/server/collections/attachments.d.ts +2 -0
- package/dist/server/collections/attachments.js +87 -0
- package/dist/server/collections/storages.d.ts +2 -0
- package/dist/server/collections/storages.js +85 -0
- package/dist/server/constants.d.ts +7 -0
- package/dist/server/constants.js +45 -0
- package/dist/server/index.d.ts +2 -0
- package/dist/server/index.js +39 -0
- package/dist/server/migrations/20230831160742-fix-attachment-field.d.ts +5 -0
- package/dist/server/migrations/20230831160742-fix-attachment-field.js +62 -0
- package/dist/server/migrations/20231120142523-fix-storage.d.ts +5 -0
- package/dist/server/migrations/20231120142523-fix-storage.js +63 -0
- package/dist/server/migrations/20240306223006-update-target.d.ts +6 -0
- package/dist/server/migrations/20240306223006-update-target.js +45 -0
- package/dist/server/rules/index.d.ts +1 -0
- package/dist/server/rules/index.js +37 -0
- package/dist/server/rules/mimetype.d.ts +1 -0
- package/dist/server/rules/mimetype.js +36 -0
- package/dist/server/server.d.ts +11 -0
- package/dist/server/server.js +130 -0
- package/dist/server/storages/ali-oss.d.ts +18 -0
- package/dist/server/storages/ali-oss.js +55 -0
- package/dist/server/storages/index.d.ts +33 -0
- package/dist/server/storages/index.js +52 -0
- package/dist/server/storages/local.d.ts +16 -0
- package/dist/server/storages/local.js +87 -0
- package/dist/server/storages/s3.d.ts +19 -0
- package/dist/server/storages/s3.js +82 -0
- package/dist/server/storages/tx-cos.d.ts +19 -0
- package/dist/server/storages/tx-cos.js +61 -0
- package/dist/server/utils.d.ts +2 -0
- package/dist/server/utils.js +53 -0
- package/dist/swagger/index.json +81 -0
- package/package.json +46 -0
- package/server.d.ts +2 -0
- package/server.js +1 -0
|
@@ -0,0 +1,742 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { StreamingBlobTypes } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AccessControlPolicy,
|
|
5
|
+
BucketVersioningStatus,
|
|
6
|
+
ChecksumAlgorithm,
|
|
7
|
+
CORSConfiguration,
|
|
8
|
+
ErrorDocument,
|
|
9
|
+
Grant,
|
|
10
|
+
IndexDocument,
|
|
11
|
+
IntelligentTieringConfiguration,
|
|
12
|
+
InventoryConfiguration,
|
|
13
|
+
LifecycleRule,
|
|
14
|
+
LoggingEnabled,
|
|
15
|
+
MetricsConfiguration,
|
|
16
|
+
NotificationConfiguration,
|
|
17
|
+
ObjectCannedACL,
|
|
18
|
+
ObjectLockConfiguration,
|
|
19
|
+
ObjectLockLegalHold,
|
|
20
|
+
ObjectLockLegalHoldStatus,
|
|
21
|
+
ObjectLockMode,
|
|
22
|
+
ObjectLockRetention,
|
|
23
|
+
OwnershipControls,
|
|
24
|
+
Payer,
|
|
25
|
+
PublicAccessBlockConfiguration,
|
|
26
|
+
RedirectAllRequestsTo,
|
|
27
|
+
ReplicationConfiguration,
|
|
28
|
+
ReplicationStatus,
|
|
29
|
+
RequestCharged,
|
|
30
|
+
RequestPayer,
|
|
31
|
+
RoutingRule,
|
|
32
|
+
ServerSideEncryption,
|
|
33
|
+
ServerSideEncryptionConfiguration,
|
|
34
|
+
StorageClass,
|
|
35
|
+
Tag,
|
|
36
|
+
TransitionDefaultMinimumObjectSize,
|
|
37
|
+
} from "./models_0";
|
|
38
|
+
import { S3ServiceException as __BaseException } from "./S3ServiceException";
|
|
39
|
+
export interface PutBucketCorsRequest {
|
|
40
|
+
Bucket: string | undefined;
|
|
41
|
+
CORSConfiguration: CORSConfiguration | undefined;
|
|
42
|
+
ContentMD5?: string | undefined;
|
|
43
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
44
|
+
ExpectedBucketOwner?: string | undefined;
|
|
45
|
+
}
|
|
46
|
+
export interface PutBucketEncryptionRequest {
|
|
47
|
+
Bucket: string | undefined;
|
|
48
|
+
ContentMD5?: string | undefined;
|
|
49
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
50
|
+
ServerSideEncryptionConfiguration:
|
|
51
|
+
| ServerSideEncryptionConfiguration
|
|
52
|
+
| undefined;
|
|
53
|
+
ExpectedBucketOwner?: string | undefined;
|
|
54
|
+
}
|
|
55
|
+
export interface PutBucketIntelligentTieringConfigurationRequest {
|
|
56
|
+
Bucket: string | undefined;
|
|
57
|
+
Id: string | undefined;
|
|
58
|
+
IntelligentTieringConfiguration: IntelligentTieringConfiguration | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface PutBucketInventoryConfigurationRequest {
|
|
61
|
+
Bucket: string | undefined;
|
|
62
|
+
Id: string | undefined;
|
|
63
|
+
InventoryConfiguration: InventoryConfiguration | undefined;
|
|
64
|
+
ExpectedBucketOwner?: string | undefined;
|
|
65
|
+
}
|
|
66
|
+
export interface PutBucketLifecycleConfigurationOutput {
|
|
67
|
+
TransitionDefaultMinimumObjectSize?:
|
|
68
|
+
| TransitionDefaultMinimumObjectSize
|
|
69
|
+
| undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface BucketLifecycleConfiguration {
|
|
72
|
+
Rules: LifecycleRule[] | undefined;
|
|
73
|
+
}
|
|
74
|
+
export interface PutBucketLifecycleConfigurationRequest {
|
|
75
|
+
Bucket: string | undefined;
|
|
76
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
77
|
+
LifecycleConfiguration?: BucketLifecycleConfiguration | undefined;
|
|
78
|
+
ExpectedBucketOwner?: string | undefined;
|
|
79
|
+
TransitionDefaultMinimumObjectSize?:
|
|
80
|
+
| TransitionDefaultMinimumObjectSize
|
|
81
|
+
| undefined;
|
|
82
|
+
}
|
|
83
|
+
export interface BucketLoggingStatus {
|
|
84
|
+
LoggingEnabled?: LoggingEnabled | undefined;
|
|
85
|
+
}
|
|
86
|
+
export interface PutBucketLoggingRequest {
|
|
87
|
+
Bucket: string | undefined;
|
|
88
|
+
BucketLoggingStatus: BucketLoggingStatus | undefined;
|
|
89
|
+
ContentMD5?: string | undefined;
|
|
90
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
91
|
+
ExpectedBucketOwner?: string | undefined;
|
|
92
|
+
}
|
|
93
|
+
export interface PutBucketMetricsConfigurationRequest {
|
|
94
|
+
Bucket: string | undefined;
|
|
95
|
+
Id: string | undefined;
|
|
96
|
+
MetricsConfiguration: MetricsConfiguration | undefined;
|
|
97
|
+
ExpectedBucketOwner?: string | undefined;
|
|
98
|
+
}
|
|
99
|
+
export interface PutBucketNotificationConfigurationRequest {
|
|
100
|
+
Bucket: string | undefined;
|
|
101
|
+
NotificationConfiguration: NotificationConfiguration | undefined;
|
|
102
|
+
ExpectedBucketOwner?: string | undefined;
|
|
103
|
+
SkipDestinationValidation?: boolean | undefined;
|
|
104
|
+
}
|
|
105
|
+
export interface PutBucketOwnershipControlsRequest {
|
|
106
|
+
Bucket: string | undefined;
|
|
107
|
+
ContentMD5?: string | undefined;
|
|
108
|
+
ExpectedBucketOwner?: string | undefined;
|
|
109
|
+
OwnershipControls: OwnershipControls | undefined;
|
|
110
|
+
}
|
|
111
|
+
export interface PutBucketPolicyRequest {
|
|
112
|
+
Bucket: string | undefined;
|
|
113
|
+
ContentMD5?: string | undefined;
|
|
114
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
115
|
+
ConfirmRemoveSelfBucketAccess?: boolean | undefined;
|
|
116
|
+
Policy: string | undefined;
|
|
117
|
+
ExpectedBucketOwner?: string | undefined;
|
|
118
|
+
}
|
|
119
|
+
export interface PutBucketReplicationRequest {
|
|
120
|
+
Bucket: string | undefined;
|
|
121
|
+
ContentMD5?: string | undefined;
|
|
122
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
123
|
+
ReplicationConfiguration: ReplicationConfiguration | undefined;
|
|
124
|
+
Token?: string | undefined;
|
|
125
|
+
ExpectedBucketOwner?: string | undefined;
|
|
126
|
+
}
|
|
127
|
+
export interface RequestPaymentConfiguration {
|
|
128
|
+
Payer: Payer | undefined;
|
|
129
|
+
}
|
|
130
|
+
export interface PutBucketRequestPaymentRequest {
|
|
131
|
+
Bucket: string | undefined;
|
|
132
|
+
ContentMD5?: string | undefined;
|
|
133
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
134
|
+
RequestPaymentConfiguration: RequestPaymentConfiguration | undefined;
|
|
135
|
+
ExpectedBucketOwner?: string | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface Tagging {
|
|
138
|
+
TagSet: Tag[] | undefined;
|
|
139
|
+
}
|
|
140
|
+
export interface PutBucketTaggingRequest {
|
|
141
|
+
Bucket: string | undefined;
|
|
142
|
+
ContentMD5?: string | undefined;
|
|
143
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
144
|
+
Tagging: Tagging | undefined;
|
|
145
|
+
ExpectedBucketOwner?: string | undefined;
|
|
146
|
+
}
|
|
147
|
+
export declare const MFADelete: {
|
|
148
|
+
readonly Disabled: "Disabled";
|
|
149
|
+
readonly Enabled: "Enabled";
|
|
150
|
+
};
|
|
151
|
+
export type MFADelete = (typeof MFADelete)[keyof typeof MFADelete];
|
|
152
|
+
export interface VersioningConfiguration {
|
|
153
|
+
MFADelete?: MFADelete | undefined;
|
|
154
|
+
Status?: BucketVersioningStatus | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface PutBucketVersioningRequest {
|
|
157
|
+
Bucket: string | undefined;
|
|
158
|
+
ContentMD5?: string | undefined;
|
|
159
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
160
|
+
MFA?: string | undefined;
|
|
161
|
+
VersioningConfiguration: VersioningConfiguration | undefined;
|
|
162
|
+
ExpectedBucketOwner?: string | undefined;
|
|
163
|
+
}
|
|
164
|
+
export interface WebsiteConfiguration {
|
|
165
|
+
ErrorDocument?: ErrorDocument | undefined;
|
|
166
|
+
IndexDocument?: IndexDocument | undefined;
|
|
167
|
+
RedirectAllRequestsTo?: RedirectAllRequestsTo | undefined;
|
|
168
|
+
RoutingRules?: RoutingRule[] | undefined;
|
|
169
|
+
}
|
|
170
|
+
export interface PutBucketWebsiteRequest {
|
|
171
|
+
Bucket: string | undefined;
|
|
172
|
+
ContentMD5?: string | undefined;
|
|
173
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
174
|
+
WebsiteConfiguration: WebsiteConfiguration | undefined;
|
|
175
|
+
ExpectedBucketOwner?: string | undefined;
|
|
176
|
+
}
|
|
177
|
+
export declare class EncryptionTypeMismatch extends __BaseException {
|
|
178
|
+
readonly name: "EncryptionTypeMismatch";
|
|
179
|
+
readonly $fault: "client";
|
|
180
|
+
constructor(
|
|
181
|
+
opts: __ExceptionOptionType<EncryptionTypeMismatch, __BaseException>
|
|
182
|
+
);
|
|
183
|
+
}
|
|
184
|
+
export declare class InvalidRequest extends __BaseException {
|
|
185
|
+
readonly name: "InvalidRequest";
|
|
186
|
+
readonly $fault: "client";
|
|
187
|
+
constructor(opts: __ExceptionOptionType<InvalidRequest, __BaseException>);
|
|
188
|
+
}
|
|
189
|
+
export declare class InvalidWriteOffset extends __BaseException {
|
|
190
|
+
readonly name: "InvalidWriteOffset";
|
|
191
|
+
readonly $fault: "client";
|
|
192
|
+
constructor(opts: __ExceptionOptionType<InvalidWriteOffset, __BaseException>);
|
|
193
|
+
}
|
|
194
|
+
export interface PutObjectOutput {
|
|
195
|
+
Expiration?: string | undefined;
|
|
196
|
+
ETag?: string | undefined;
|
|
197
|
+
ChecksumCRC32?: string | undefined;
|
|
198
|
+
ChecksumCRC32C?: string | undefined;
|
|
199
|
+
ChecksumSHA1?: string | undefined;
|
|
200
|
+
ChecksumSHA256?: string | undefined;
|
|
201
|
+
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
202
|
+
VersionId?: string | undefined;
|
|
203
|
+
SSECustomerAlgorithm?: string | undefined;
|
|
204
|
+
SSECustomerKeyMD5?: string | undefined;
|
|
205
|
+
SSEKMSKeyId?: string | undefined;
|
|
206
|
+
SSEKMSEncryptionContext?: string | undefined;
|
|
207
|
+
BucketKeyEnabled?: boolean | undefined;
|
|
208
|
+
Size?: number | undefined;
|
|
209
|
+
RequestCharged?: RequestCharged | undefined;
|
|
210
|
+
}
|
|
211
|
+
export interface PutObjectRequest {
|
|
212
|
+
ACL?: ObjectCannedACL | undefined;
|
|
213
|
+
Body?: StreamingBlobTypes | undefined;
|
|
214
|
+
Bucket: string | undefined;
|
|
215
|
+
CacheControl?: string | undefined;
|
|
216
|
+
ContentDisposition?: string | undefined;
|
|
217
|
+
ContentEncoding?: string | undefined;
|
|
218
|
+
ContentLanguage?: string | undefined;
|
|
219
|
+
ContentLength?: number | undefined;
|
|
220
|
+
ContentMD5?: string | undefined;
|
|
221
|
+
ContentType?: string | undefined;
|
|
222
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
223
|
+
ChecksumCRC32?: string | undefined;
|
|
224
|
+
ChecksumCRC32C?: string | undefined;
|
|
225
|
+
ChecksumSHA1?: string | undefined;
|
|
226
|
+
ChecksumSHA256?: string | undefined;
|
|
227
|
+
Expires?: Date | undefined;
|
|
228
|
+
IfMatch?: string | undefined;
|
|
229
|
+
IfNoneMatch?: string | undefined;
|
|
230
|
+
GrantFullControl?: string | undefined;
|
|
231
|
+
GrantRead?: string | undefined;
|
|
232
|
+
GrantReadACP?: string | undefined;
|
|
233
|
+
GrantWriteACP?: string | undefined;
|
|
234
|
+
Key: string | undefined;
|
|
235
|
+
WriteOffsetBytes?: number | undefined;
|
|
236
|
+
Metadata?: Record<string, string> | undefined;
|
|
237
|
+
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
238
|
+
StorageClass?: StorageClass | undefined;
|
|
239
|
+
WebsiteRedirectLocation?: string | undefined;
|
|
240
|
+
SSECustomerAlgorithm?: string | undefined;
|
|
241
|
+
SSECustomerKey?: string | undefined;
|
|
242
|
+
SSECustomerKeyMD5?: string | undefined;
|
|
243
|
+
SSEKMSKeyId?: string | undefined;
|
|
244
|
+
SSEKMSEncryptionContext?: string | undefined;
|
|
245
|
+
BucketKeyEnabled?: boolean | undefined;
|
|
246
|
+
RequestPayer?: RequestPayer | undefined;
|
|
247
|
+
Tagging?: string | undefined;
|
|
248
|
+
ObjectLockMode?: ObjectLockMode | undefined;
|
|
249
|
+
ObjectLockRetainUntilDate?: Date | undefined;
|
|
250
|
+
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | undefined;
|
|
251
|
+
ExpectedBucketOwner?: string | undefined;
|
|
252
|
+
}
|
|
253
|
+
export declare class TooManyParts extends __BaseException {
|
|
254
|
+
readonly name: "TooManyParts";
|
|
255
|
+
readonly $fault: "client";
|
|
256
|
+
constructor(opts: __ExceptionOptionType<TooManyParts, __BaseException>);
|
|
257
|
+
}
|
|
258
|
+
export interface PutObjectAclOutput {
|
|
259
|
+
RequestCharged?: RequestCharged | undefined;
|
|
260
|
+
}
|
|
261
|
+
export interface PutObjectAclRequest {
|
|
262
|
+
ACL?: ObjectCannedACL | undefined;
|
|
263
|
+
AccessControlPolicy?: AccessControlPolicy | undefined;
|
|
264
|
+
Bucket: string | undefined;
|
|
265
|
+
ContentMD5?: string | undefined;
|
|
266
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
267
|
+
GrantFullControl?: string | undefined;
|
|
268
|
+
GrantRead?: string | undefined;
|
|
269
|
+
GrantReadACP?: string | undefined;
|
|
270
|
+
GrantWrite?: string | undefined;
|
|
271
|
+
GrantWriteACP?: string | undefined;
|
|
272
|
+
Key: string | undefined;
|
|
273
|
+
RequestPayer?: RequestPayer | undefined;
|
|
274
|
+
VersionId?: string | undefined;
|
|
275
|
+
ExpectedBucketOwner?: string | undefined;
|
|
276
|
+
}
|
|
277
|
+
export interface PutObjectLegalHoldOutput {
|
|
278
|
+
RequestCharged?: RequestCharged | undefined;
|
|
279
|
+
}
|
|
280
|
+
export interface PutObjectLegalHoldRequest {
|
|
281
|
+
Bucket: string | undefined;
|
|
282
|
+
Key: string | undefined;
|
|
283
|
+
LegalHold?: ObjectLockLegalHold | undefined;
|
|
284
|
+
RequestPayer?: RequestPayer | undefined;
|
|
285
|
+
VersionId?: string | undefined;
|
|
286
|
+
ContentMD5?: string | undefined;
|
|
287
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
288
|
+
ExpectedBucketOwner?: string | undefined;
|
|
289
|
+
}
|
|
290
|
+
export interface PutObjectLockConfigurationOutput {
|
|
291
|
+
RequestCharged?: RequestCharged | undefined;
|
|
292
|
+
}
|
|
293
|
+
export interface PutObjectLockConfigurationRequest {
|
|
294
|
+
Bucket: string | undefined;
|
|
295
|
+
ObjectLockConfiguration?: ObjectLockConfiguration | undefined;
|
|
296
|
+
RequestPayer?: RequestPayer | undefined;
|
|
297
|
+
Token?: string | undefined;
|
|
298
|
+
ContentMD5?: string | undefined;
|
|
299
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
300
|
+
ExpectedBucketOwner?: string | undefined;
|
|
301
|
+
}
|
|
302
|
+
export interface PutObjectRetentionOutput {
|
|
303
|
+
RequestCharged?: RequestCharged | undefined;
|
|
304
|
+
}
|
|
305
|
+
export interface PutObjectRetentionRequest {
|
|
306
|
+
Bucket: string | undefined;
|
|
307
|
+
Key: string | undefined;
|
|
308
|
+
Retention?: ObjectLockRetention | undefined;
|
|
309
|
+
RequestPayer?: RequestPayer | undefined;
|
|
310
|
+
VersionId?: string | undefined;
|
|
311
|
+
BypassGovernanceRetention?: boolean | undefined;
|
|
312
|
+
ContentMD5?: string | undefined;
|
|
313
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
314
|
+
ExpectedBucketOwner?: string | undefined;
|
|
315
|
+
}
|
|
316
|
+
export interface PutObjectTaggingOutput {
|
|
317
|
+
VersionId?: string | undefined;
|
|
318
|
+
}
|
|
319
|
+
export interface PutObjectTaggingRequest {
|
|
320
|
+
Bucket: string | undefined;
|
|
321
|
+
Key: string | undefined;
|
|
322
|
+
VersionId?: string | undefined;
|
|
323
|
+
ContentMD5?: string | undefined;
|
|
324
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
325
|
+
Tagging: Tagging | undefined;
|
|
326
|
+
ExpectedBucketOwner?: string | undefined;
|
|
327
|
+
RequestPayer?: RequestPayer | undefined;
|
|
328
|
+
}
|
|
329
|
+
export interface PutPublicAccessBlockRequest {
|
|
330
|
+
Bucket: string | undefined;
|
|
331
|
+
ContentMD5?: string | undefined;
|
|
332
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
333
|
+
PublicAccessBlockConfiguration: PublicAccessBlockConfiguration | undefined;
|
|
334
|
+
ExpectedBucketOwner?: string | undefined;
|
|
335
|
+
}
|
|
336
|
+
export declare class ObjectAlreadyInActiveTierError extends __BaseException {
|
|
337
|
+
readonly name: "ObjectAlreadyInActiveTierError";
|
|
338
|
+
readonly $fault: "client";
|
|
339
|
+
constructor(
|
|
340
|
+
opts: __ExceptionOptionType<ObjectAlreadyInActiveTierError, __BaseException>
|
|
341
|
+
);
|
|
342
|
+
}
|
|
343
|
+
export interface RestoreObjectOutput {
|
|
344
|
+
RequestCharged?: RequestCharged | undefined;
|
|
345
|
+
RestoreOutputPath?: string | undefined;
|
|
346
|
+
}
|
|
347
|
+
export declare const Tier: {
|
|
348
|
+
readonly Bulk: "Bulk";
|
|
349
|
+
readonly Expedited: "Expedited";
|
|
350
|
+
readonly Standard: "Standard";
|
|
351
|
+
};
|
|
352
|
+
export type Tier = (typeof Tier)[keyof typeof Tier];
|
|
353
|
+
export interface GlacierJobParameters {
|
|
354
|
+
Tier: Tier | undefined;
|
|
355
|
+
}
|
|
356
|
+
export interface Encryption {
|
|
357
|
+
EncryptionType: ServerSideEncryption | undefined;
|
|
358
|
+
KMSKeyId?: string | undefined;
|
|
359
|
+
KMSContext?: string | undefined;
|
|
360
|
+
}
|
|
361
|
+
export interface MetadataEntry {
|
|
362
|
+
Name?: string | undefined;
|
|
363
|
+
Value?: string | undefined;
|
|
364
|
+
}
|
|
365
|
+
export interface S3Location {
|
|
366
|
+
BucketName: string | undefined;
|
|
367
|
+
Prefix: string | undefined;
|
|
368
|
+
Encryption?: Encryption | undefined;
|
|
369
|
+
CannedACL?: ObjectCannedACL | undefined;
|
|
370
|
+
AccessControlList?: Grant[] | undefined;
|
|
371
|
+
Tagging?: Tagging | undefined;
|
|
372
|
+
UserMetadata?: MetadataEntry[] | undefined;
|
|
373
|
+
StorageClass?: StorageClass | undefined;
|
|
374
|
+
}
|
|
375
|
+
export interface OutputLocation {
|
|
376
|
+
S3?: S3Location | undefined;
|
|
377
|
+
}
|
|
378
|
+
export declare const ExpressionType: {
|
|
379
|
+
readonly SQL: "SQL";
|
|
380
|
+
};
|
|
381
|
+
export type ExpressionType =
|
|
382
|
+
(typeof ExpressionType)[keyof typeof ExpressionType];
|
|
383
|
+
export declare const CompressionType: {
|
|
384
|
+
readonly BZIP2: "BZIP2";
|
|
385
|
+
readonly GZIP: "GZIP";
|
|
386
|
+
readonly NONE: "NONE";
|
|
387
|
+
};
|
|
388
|
+
export type CompressionType =
|
|
389
|
+
(typeof CompressionType)[keyof typeof CompressionType];
|
|
390
|
+
export declare const FileHeaderInfo: {
|
|
391
|
+
readonly IGNORE: "IGNORE";
|
|
392
|
+
readonly NONE: "NONE";
|
|
393
|
+
readonly USE: "USE";
|
|
394
|
+
};
|
|
395
|
+
export type FileHeaderInfo =
|
|
396
|
+
(typeof FileHeaderInfo)[keyof typeof FileHeaderInfo];
|
|
397
|
+
export interface CSVInput {
|
|
398
|
+
FileHeaderInfo?: FileHeaderInfo | undefined;
|
|
399
|
+
Comments?: string | undefined;
|
|
400
|
+
QuoteEscapeCharacter?: string | undefined;
|
|
401
|
+
RecordDelimiter?: string | undefined;
|
|
402
|
+
FieldDelimiter?: string | undefined;
|
|
403
|
+
QuoteCharacter?: string | undefined;
|
|
404
|
+
AllowQuotedRecordDelimiter?: boolean | undefined;
|
|
405
|
+
}
|
|
406
|
+
export declare const JSONType: {
|
|
407
|
+
readonly DOCUMENT: "DOCUMENT";
|
|
408
|
+
readonly LINES: "LINES";
|
|
409
|
+
};
|
|
410
|
+
export type JSONType = (typeof JSONType)[keyof typeof JSONType];
|
|
411
|
+
export interface JSONInput {
|
|
412
|
+
Type?: JSONType | undefined;
|
|
413
|
+
}
|
|
414
|
+
export interface ParquetInput {}
|
|
415
|
+
export interface InputSerialization {
|
|
416
|
+
CSV?: CSVInput | undefined;
|
|
417
|
+
CompressionType?: CompressionType | undefined;
|
|
418
|
+
JSON?: JSONInput | undefined;
|
|
419
|
+
Parquet?: ParquetInput | undefined;
|
|
420
|
+
}
|
|
421
|
+
export declare const QuoteFields: {
|
|
422
|
+
readonly ALWAYS: "ALWAYS";
|
|
423
|
+
readonly ASNEEDED: "ASNEEDED";
|
|
424
|
+
};
|
|
425
|
+
export type QuoteFields = (typeof QuoteFields)[keyof typeof QuoteFields];
|
|
426
|
+
export interface CSVOutput {
|
|
427
|
+
QuoteFields?: QuoteFields | undefined;
|
|
428
|
+
QuoteEscapeCharacter?: string | undefined;
|
|
429
|
+
RecordDelimiter?: string | undefined;
|
|
430
|
+
FieldDelimiter?: string | undefined;
|
|
431
|
+
QuoteCharacter?: string | undefined;
|
|
432
|
+
}
|
|
433
|
+
export interface JSONOutput {
|
|
434
|
+
RecordDelimiter?: string | undefined;
|
|
435
|
+
}
|
|
436
|
+
export interface OutputSerialization {
|
|
437
|
+
CSV?: CSVOutput | undefined;
|
|
438
|
+
JSON?: JSONOutput | undefined;
|
|
439
|
+
}
|
|
440
|
+
export interface SelectParameters {
|
|
441
|
+
InputSerialization: InputSerialization | undefined;
|
|
442
|
+
ExpressionType: ExpressionType | undefined;
|
|
443
|
+
Expression: string | undefined;
|
|
444
|
+
OutputSerialization: OutputSerialization | undefined;
|
|
445
|
+
}
|
|
446
|
+
export declare const RestoreRequestType: {
|
|
447
|
+
readonly SELECT: "SELECT";
|
|
448
|
+
};
|
|
449
|
+
export type RestoreRequestType =
|
|
450
|
+
(typeof RestoreRequestType)[keyof typeof RestoreRequestType];
|
|
451
|
+
export interface RestoreRequest {
|
|
452
|
+
Days?: number | undefined;
|
|
453
|
+
GlacierJobParameters?: GlacierJobParameters | undefined;
|
|
454
|
+
Type?: RestoreRequestType | undefined;
|
|
455
|
+
Tier?: Tier | undefined;
|
|
456
|
+
Description?: string | undefined;
|
|
457
|
+
SelectParameters?: SelectParameters | undefined;
|
|
458
|
+
OutputLocation?: OutputLocation | undefined;
|
|
459
|
+
}
|
|
460
|
+
export interface RestoreObjectRequest {
|
|
461
|
+
Bucket: string | undefined;
|
|
462
|
+
Key: string | undefined;
|
|
463
|
+
VersionId?: string | undefined;
|
|
464
|
+
RestoreRequest?: RestoreRequest | undefined;
|
|
465
|
+
RequestPayer?: RequestPayer | undefined;
|
|
466
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
467
|
+
ExpectedBucketOwner?: string | undefined;
|
|
468
|
+
}
|
|
469
|
+
export interface ContinuationEvent {}
|
|
470
|
+
export interface EndEvent {}
|
|
471
|
+
export interface Progress {
|
|
472
|
+
BytesScanned?: number | undefined;
|
|
473
|
+
BytesProcessed?: number | undefined;
|
|
474
|
+
BytesReturned?: number | undefined;
|
|
475
|
+
}
|
|
476
|
+
export interface ProgressEvent {
|
|
477
|
+
Details?: Progress | undefined;
|
|
478
|
+
}
|
|
479
|
+
export interface RecordsEvent {
|
|
480
|
+
Payload?: Uint8Array | undefined;
|
|
481
|
+
}
|
|
482
|
+
export interface Stats {
|
|
483
|
+
BytesScanned?: number | undefined;
|
|
484
|
+
BytesProcessed?: number | undefined;
|
|
485
|
+
BytesReturned?: number | undefined;
|
|
486
|
+
}
|
|
487
|
+
export interface StatsEvent {
|
|
488
|
+
Details?: Stats | undefined;
|
|
489
|
+
}
|
|
490
|
+
export type SelectObjectContentEventStream =
|
|
491
|
+
| SelectObjectContentEventStream.ContMember
|
|
492
|
+
| SelectObjectContentEventStream.EndMember
|
|
493
|
+
| SelectObjectContentEventStream.ProgressMember
|
|
494
|
+
| SelectObjectContentEventStream.RecordsMember
|
|
495
|
+
| SelectObjectContentEventStream.StatsMember
|
|
496
|
+
| SelectObjectContentEventStream.$UnknownMember;
|
|
497
|
+
export declare namespace SelectObjectContentEventStream {
|
|
498
|
+
interface RecordsMember {
|
|
499
|
+
Records: RecordsEvent;
|
|
500
|
+
Stats?: never;
|
|
501
|
+
Progress?: never;
|
|
502
|
+
Cont?: never;
|
|
503
|
+
End?: never;
|
|
504
|
+
$unknown?: never;
|
|
505
|
+
}
|
|
506
|
+
interface StatsMember {
|
|
507
|
+
Records?: never;
|
|
508
|
+
Stats: StatsEvent;
|
|
509
|
+
Progress?: never;
|
|
510
|
+
Cont?: never;
|
|
511
|
+
End?: never;
|
|
512
|
+
$unknown?: never;
|
|
513
|
+
}
|
|
514
|
+
interface ProgressMember {
|
|
515
|
+
Records?: never;
|
|
516
|
+
Stats?: never;
|
|
517
|
+
Progress: ProgressEvent;
|
|
518
|
+
Cont?: never;
|
|
519
|
+
End?: never;
|
|
520
|
+
$unknown?: never;
|
|
521
|
+
}
|
|
522
|
+
interface ContMember {
|
|
523
|
+
Records?: never;
|
|
524
|
+
Stats?: never;
|
|
525
|
+
Progress?: never;
|
|
526
|
+
Cont: ContinuationEvent;
|
|
527
|
+
End?: never;
|
|
528
|
+
$unknown?: never;
|
|
529
|
+
}
|
|
530
|
+
interface EndMember {
|
|
531
|
+
Records?: never;
|
|
532
|
+
Stats?: never;
|
|
533
|
+
Progress?: never;
|
|
534
|
+
Cont?: never;
|
|
535
|
+
End: EndEvent;
|
|
536
|
+
$unknown?: never;
|
|
537
|
+
}
|
|
538
|
+
interface $UnknownMember {
|
|
539
|
+
Records?: never;
|
|
540
|
+
Stats?: never;
|
|
541
|
+
Progress?: never;
|
|
542
|
+
Cont?: never;
|
|
543
|
+
End?: never;
|
|
544
|
+
$unknown: [string, any];
|
|
545
|
+
}
|
|
546
|
+
interface Visitor<T> {
|
|
547
|
+
Records: (value: RecordsEvent) => T;
|
|
548
|
+
Stats: (value: StatsEvent) => T;
|
|
549
|
+
Progress: (value: ProgressEvent) => T;
|
|
550
|
+
Cont: (value: ContinuationEvent) => T;
|
|
551
|
+
End: (value: EndEvent) => T;
|
|
552
|
+
_: (name: string, value: any) => T;
|
|
553
|
+
}
|
|
554
|
+
const visit: <T>(
|
|
555
|
+
value: SelectObjectContentEventStream,
|
|
556
|
+
visitor: Visitor<T>
|
|
557
|
+
) => T;
|
|
558
|
+
}
|
|
559
|
+
export interface SelectObjectContentOutput {
|
|
560
|
+
Payload?: AsyncIterable<SelectObjectContentEventStream> | undefined;
|
|
561
|
+
}
|
|
562
|
+
export interface RequestProgress {
|
|
563
|
+
Enabled?: boolean | undefined;
|
|
564
|
+
}
|
|
565
|
+
export interface ScanRange {
|
|
566
|
+
Start?: number | undefined;
|
|
567
|
+
End?: number | undefined;
|
|
568
|
+
}
|
|
569
|
+
export interface SelectObjectContentRequest {
|
|
570
|
+
Bucket: string | undefined;
|
|
571
|
+
Key: string | undefined;
|
|
572
|
+
SSECustomerAlgorithm?: string | undefined;
|
|
573
|
+
SSECustomerKey?: string | undefined;
|
|
574
|
+
SSECustomerKeyMD5?: string | undefined;
|
|
575
|
+
Expression: string | undefined;
|
|
576
|
+
ExpressionType: ExpressionType | undefined;
|
|
577
|
+
RequestProgress?: RequestProgress | undefined;
|
|
578
|
+
InputSerialization: InputSerialization | undefined;
|
|
579
|
+
OutputSerialization: OutputSerialization | undefined;
|
|
580
|
+
ScanRange?: ScanRange | undefined;
|
|
581
|
+
ExpectedBucketOwner?: string | undefined;
|
|
582
|
+
}
|
|
583
|
+
export interface UploadPartOutput {
|
|
584
|
+
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
585
|
+
ETag?: string | undefined;
|
|
586
|
+
ChecksumCRC32?: string | undefined;
|
|
587
|
+
ChecksumCRC32C?: string | undefined;
|
|
588
|
+
ChecksumSHA1?: string | undefined;
|
|
589
|
+
ChecksumSHA256?: string | undefined;
|
|
590
|
+
SSECustomerAlgorithm?: string | undefined;
|
|
591
|
+
SSECustomerKeyMD5?: string | undefined;
|
|
592
|
+
SSEKMSKeyId?: string | undefined;
|
|
593
|
+
BucketKeyEnabled?: boolean | undefined;
|
|
594
|
+
RequestCharged?: RequestCharged | undefined;
|
|
595
|
+
}
|
|
596
|
+
export interface UploadPartRequest {
|
|
597
|
+
Body?: StreamingBlobTypes | undefined;
|
|
598
|
+
Bucket: string | undefined;
|
|
599
|
+
ContentLength?: number | undefined;
|
|
600
|
+
ContentMD5?: string | undefined;
|
|
601
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
602
|
+
ChecksumCRC32?: string | undefined;
|
|
603
|
+
ChecksumCRC32C?: string | undefined;
|
|
604
|
+
ChecksumSHA1?: string | undefined;
|
|
605
|
+
ChecksumSHA256?: string | undefined;
|
|
606
|
+
Key: string | undefined;
|
|
607
|
+
PartNumber: number | undefined;
|
|
608
|
+
UploadId: string | undefined;
|
|
609
|
+
SSECustomerAlgorithm?: string | undefined;
|
|
610
|
+
SSECustomerKey?: string | undefined;
|
|
611
|
+
SSECustomerKeyMD5?: string | undefined;
|
|
612
|
+
RequestPayer?: RequestPayer | undefined;
|
|
613
|
+
ExpectedBucketOwner?: string | undefined;
|
|
614
|
+
}
|
|
615
|
+
export interface CopyPartResult {
|
|
616
|
+
ETag?: string | undefined;
|
|
617
|
+
LastModified?: Date | undefined;
|
|
618
|
+
ChecksumCRC32?: string | undefined;
|
|
619
|
+
ChecksumCRC32C?: string | undefined;
|
|
620
|
+
ChecksumSHA1?: string | undefined;
|
|
621
|
+
ChecksumSHA256?: string | undefined;
|
|
622
|
+
}
|
|
623
|
+
export interface UploadPartCopyOutput {
|
|
624
|
+
CopySourceVersionId?: string | undefined;
|
|
625
|
+
CopyPartResult?: CopyPartResult | undefined;
|
|
626
|
+
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
627
|
+
SSECustomerAlgorithm?: string | undefined;
|
|
628
|
+
SSECustomerKeyMD5?: string | undefined;
|
|
629
|
+
SSEKMSKeyId?: string | undefined;
|
|
630
|
+
BucketKeyEnabled?: boolean | undefined;
|
|
631
|
+
RequestCharged?: RequestCharged | undefined;
|
|
632
|
+
}
|
|
633
|
+
export interface UploadPartCopyRequest {
|
|
634
|
+
Bucket: string | undefined;
|
|
635
|
+
CopySource: string | undefined;
|
|
636
|
+
CopySourceIfMatch?: string | undefined;
|
|
637
|
+
CopySourceIfModifiedSince?: Date | undefined;
|
|
638
|
+
CopySourceIfNoneMatch?: string | undefined;
|
|
639
|
+
CopySourceIfUnmodifiedSince?: Date | undefined;
|
|
640
|
+
CopySourceRange?: string | undefined;
|
|
641
|
+
Key: string | undefined;
|
|
642
|
+
PartNumber: number | undefined;
|
|
643
|
+
UploadId: string | undefined;
|
|
644
|
+
SSECustomerAlgorithm?: string | undefined;
|
|
645
|
+
SSECustomerKey?: string | undefined;
|
|
646
|
+
SSECustomerKeyMD5?: string | undefined;
|
|
647
|
+
CopySourceSSECustomerAlgorithm?: string | undefined;
|
|
648
|
+
CopySourceSSECustomerKey?: string | undefined;
|
|
649
|
+
CopySourceSSECustomerKeyMD5?: string | undefined;
|
|
650
|
+
RequestPayer?: RequestPayer | undefined;
|
|
651
|
+
ExpectedBucketOwner?: string | undefined;
|
|
652
|
+
ExpectedSourceBucketOwner?: string | undefined;
|
|
653
|
+
}
|
|
654
|
+
export interface WriteGetObjectResponseRequest {
|
|
655
|
+
RequestRoute: string | undefined;
|
|
656
|
+
RequestToken: string | undefined;
|
|
657
|
+
Body?: StreamingBlobTypes | undefined;
|
|
658
|
+
StatusCode?: number | undefined;
|
|
659
|
+
ErrorCode?: string | undefined;
|
|
660
|
+
ErrorMessage?: string | undefined;
|
|
661
|
+
AcceptRanges?: string | undefined;
|
|
662
|
+
CacheControl?: string | undefined;
|
|
663
|
+
ContentDisposition?: string | undefined;
|
|
664
|
+
ContentEncoding?: string | undefined;
|
|
665
|
+
ContentLanguage?: string | undefined;
|
|
666
|
+
ContentLength?: number | undefined;
|
|
667
|
+
ContentRange?: string | undefined;
|
|
668
|
+
ContentType?: string | undefined;
|
|
669
|
+
ChecksumCRC32?: string | undefined;
|
|
670
|
+
ChecksumCRC32C?: string | undefined;
|
|
671
|
+
ChecksumSHA1?: string | undefined;
|
|
672
|
+
ChecksumSHA256?: string | undefined;
|
|
673
|
+
DeleteMarker?: boolean | undefined;
|
|
674
|
+
ETag?: string | undefined;
|
|
675
|
+
Expires?: Date | undefined;
|
|
676
|
+
Expiration?: string | undefined;
|
|
677
|
+
LastModified?: Date | undefined;
|
|
678
|
+
MissingMeta?: number | undefined;
|
|
679
|
+
Metadata?: Record<string, string> | undefined;
|
|
680
|
+
ObjectLockMode?: ObjectLockMode | undefined;
|
|
681
|
+
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | undefined;
|
|
682
|
+
ObjectLockRetainUntilDate?: Date | undefined;
|
|
683
|
+
PartsCount?: number | undefined;
|
|
684
|
+
ReplicationStatus?: ReplicationStatus | undefined;
|
|
685
|
+
RequestCharged?: RequestCharged | undefined;
|
|
686
|
+
Restore?: string | undefined;
|
|
687
|
+
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
688
|
+
SSECustomerAlgorithm?: string | undefined;
|
|
689
|
+
SSEKMSKeyId?: string | undefined;
|
|
690
|
+
SSECustomerKeyMD5?: string | undefined;
|
|
691
|
+
StorageClass?: StorageClass | undefined;
|
|
692
|
+
TagCount?: number | undefined;
|
|
693
|
+
VersionId?: string | undefined;
|
|
694
|
+
BucketKeyEnabled?: boolean | undefined;
|
|
695
|
+
}
|
|
696
|
+
export declare const PutBucketEncryptionRequestFilterSensitiveLog: (
|
|
697
|
+
obj: PutBucketEncryptionRequest
|
|
698
|
+
) => any;
|
|
699
|
+
export declare const PutBucketInventoryConfigurationRequestFilterSensitiveLog: (
|
|
700
|
+
obj: PutBucketInventoryConfigurationRequest
|
|
701
|
+
) => any;
|
|
702
|
+
export declare const PutObjectOutputFilterSensitiveLog: (
|
|
703
|
+
obj: PutObjectOutput
|
|
704
|
+
) => any;
|
|
705
|
+
export declare const PutObjectRequestFilterSensitiveLog: (
|
|
706
|
+
obj: PutObjectRequest
|
|
707
|
+
) => any;
|
|
708
|
+
export declare const EncryptionFilterSensitiveLog: (obj: Encryption) => any;
|
|
709
|
+
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
710
|
+
export declare const OutputLocationFilterSensitiveLog: (
|
|
711
|
+
obj: OutputLocation
|
|
712
|
+
) => any;
|
|
713
|
+
export declare const RestoreRequestFilterSensitiveLog: (
|
|
714
|
+
obj: RestoreRequest
|
|
715
|
+
) => any;
|
|
716
|
+
export declare const RestoreObjectRequestFilterSensitiveLog: (
|
|
717
|
+
obj: RestoreObjectRequest
|
|
718
|
+
) => any;
|
|
719
|
+
export declare const SelectObjectContentEventStreamFilterSensitiveLog: (
|
|
720
|
+
obj: SelectObjectContentEventStream
|
|
721
|
+
) => any;
|
|
722
|
+
export declare const SelectObjectContentOutputFilterSensitiveLog: (
|
|
723
|
+
obj: SelectObjectContentOutput
|
|
724
|
+
) => any;
|
|
725
|
+
export declare const SelectObjectContentRequestFilterSensitiveLog: (
|
|
726
|
+
obj: SelectObjectContentRequest
|
|
727
|
+
) => any;
|
|
728
|
+
export declare const UploadPartOutputFilterSensitiveLog: (
|
|
729
|
+
obj: UploadPartOutput
|
|
730
|
+
) => any;
|
|
731
|
+
export declare const UploadPartRequestFilterSensitiveLog: (
|
|
732
|
+
obj: UploadPartRequest
|
|
733
|
+
) => any;
|
|
734
|
+
export declare const UploadPartCopyOutputFilterSensitiveLog: (
|
|
735
|
+
obj: UploadPartCopyOutput
|
|
736
|
+
) => any;
|
|
737
|
+
export declare const UploadPartCopyRequestFilterSensitiveLog: (
|
|
738
|
+
obj: UploadPartCopyRequest
|
|
739
|
+
) => any;
|
|
740
|
+
export declare const WriteGetObjectResponseRequestFilterSensitiveLog: (
|
|
741
|
+
obj: WriteGetObjectResponseRequest
|
|
742
|
+
) => any;
|