@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,732 @@
|
|
|
1
|
+
import {
|
|
2
|
+
FlexibleChecksumsInputConfig,
|
|
3
|
+
FlexibleChecksumsResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-flexible-checksums";
|
|
5
|
+
import {
|
|
6
|
+
HostHeaderInputConfig,
|
|
7
|
+
HostHeaderResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-host-header";
|
|
9
|
+
import { S3InputConfig, S3ResolvedConfig } from "@aws-sdk/middleware-sdk-s3";
|
|
10
|
+
import {
|
|
11
|
+
UserAgentInputConfig,
|
|
12
|
+
UserAgentResolvedConfig,
|
|
13
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
14
|
+
import { GetAwsChunkedEncodingStream } from "@aws-sdk/types";
|
|
15
|
+
import {
|
|
16
|
+
RegionInputConfig,
|
|
17
|
+
RegionResolvedConfig,
|
|
18
|
+
} from "@smithy/config-resolver";
|
|
19
|
+
import {
|
|
20
|
+
EventStreamSerdeInputConfig,
|
|
21
|
+
EventStreamSerdeResolvedConfig,
|
|
22
|
+
} from "@smithy/eventstream-serde-config-resolver";
|
|
23
|
+
import {
|
|
24
|
+
EndpointInputConfig,
|
|
25
|
+
EndpointResolvedConfig,
|
|
26
|
+
} from "@smithy/middleware-endpoint";
|
|
27
|
+
import {
|
|
28
|
+
RetryInputConfig,
|
|
29
|
+
RetryResolvedConfig,
|
|
30
|
+
} from "@smithy/middleware-retry";
|
|
31
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
32
|
+
import {
|
|
33
|
+
Client as __Client,
|
|
34
|
+
DefaultsMode as __DefaultsMode,
|
|
35
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
36
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
37
|
+
} from "@smithy/smithy-client";
|
|
38
|
+
import {
|
|
39
|
+
AwsCredentialIdentityProvider,
|
|
40
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
41
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
42
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
43
|
+
Decoder as __Decoder,
|
|
44
|
+
Encoder as __Encoder,
|
|
45
|
+
EventStreamSerdeProvider as __EventStreamSerdeProvider,
|
|
46
|
+
HashConstructor as __HashConstructor,
|
|
47
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
48
|
+
Logger as __Logger,
|
|
49
|
+
Provider as __Provider,
|
|
50
|
+
Provider,
|
|
51
|
+
SdkStreamMixinInjector as __SdkStreamMixinInjector,
|
|
52
|
+
StreamCollector as __StreamCollector,
|
|
53
|
+
StreamHasher as __StreamHasher,
|
|
54
|
+
UrlParser as __UrlParser,
|
|
55
|
+
UserAgent as __UserAgent,
|
|
56
|
+
} from "@smithy/types";
|
|
57
|
+
import { Readable } from "stream";
|
|
58
|
+
import {
|
|
59
|
+
HttpAuthSchemeInputConfig,
|
|
60
|
+
HttpAuthSchemeResolvedConfig,
|
|
61
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
62
|
+
import {
|
|
63
|
+
AbortMultipartUploadCommandInput,
|
|
64
|
+
AbortMultipartUploadCommandOutput,
|
|
65
|
+
} from "./commands/AbortMultipartUploadCommand";
|
|
66
|
+
import {
|
|
67
|
+
CompleteMultipartUploadCommandInput,
|
|
68
|
+
CompleteMultipartUploadCommandOutput,
|
|
69
|
+
} from "./commands/CompleteMultipartUploadCommand";
|
|
70
|
+
import {
|
|
71
|
+
CopyObjectCommandInput,
|
|
72
|
+
CopyObjectCommandOutput,
|
|
73
|
+
} from "./commands/CopyObjectCommand";
|
|
74
|
+
import {
|
|
75
|
+
CreateBucketCommandInput,
|
|
76
|
+
CreateBucketCommandOutput,
|
|
77
|
+
} from "./commands/CreateBucketCommand";
|
|
78
|
+
import {
|
|
79
|
+
CreateBucketMetadataTableConfigurationCommandInput,
|
|
80
|
+
CreateBucketMetadataTableConfigurationCommandOutput,
|
|
81
|
+
} from "./commands/CreateBucketMetadataTableConfigurationCommand";
|
|
82
|
+
import {
|
|
83
|
+
CreateMultipartUploadCommandInput,
|
|
84
|
+
CreateMultipartUploadCommandOutput,
|
|
85
|
+
} from "./commands/CreateMultipartUploadCommand";
|
|
86
|
+
import {
|
|
87
|
+
CreateSessionCommandInput,
|
|
88
|
+
CreateSessionCommandOutput,
|
|
89
|
+
} from "./commands/CreateSessionCommand";
|
|
90
|
+
import {
|
|
91
|
+
DeleteBucketAnalyticsConfigurationCommandInput,
|
|
92
|
+
DeleteBucketAnalyticsConfigurationCommandOutput,
|
|
93
|
+
} from "./commands/DeleteBucketAnalyticsConfigurationCommand";
|
|
94
|
+
import {
|
|
95
|
+
DeleteBucketCommandInput,
|
|
96
|
+
DeleteBucketCommandOutput,
|
|
97
|
+
} from "./commands/DeleteBucketCommand";
|
|
98
|
+
import {
|
|
99
|
+
DeleteBucketCorsCommandInput,
|
|
100
|
+
DeleteBucketCorsCommandOutput,
|
|
101
|
+
} from "./commands/DeleteBucketCorsCommand";
|
|
102
|
+
import {
|
|
103
|
+
DeleteBucketEncryptionCommandInput,
|
|
104
|
+
DeleteBucketEncryptionCommandOutput,
|
|
105
|
+
} from "./commands/DeleteBucketEncryptionCommand";
|
|
106
|
+
import {
|
|
107
|
+
DeleteBucketIntelligentTieringConfigurationCommandInput,
|
|
108
|
+
DeleteBucketIntelligentTieringConfigurationCommandOutput,
|
|
109
|
+
} from "./commands/DeleteBucketIntelligentTieringConfigurationCommand";
|
|
110
|
+
import {
|
|
111
|
+
DeleteBucketInventoryConfigurationCommandInput,
|
|
112
|
+
DeleteBucketInventoryConfigurationCommandOutput,
|
|
113
|
+
} from "./commands/DeleteBucketInventoryConfigurationCommand";
|
|
114
|
+
import {
|
|
115
|
+
DeleteBucketLifecycleCommandInput,
|
|
116
|
+
DeleteBucketLifecycleCommandOutput,
|
|
117
|
+
} from "./commands/DeleteBucketLifecycleCommand";
|
|
118
|
+
import {
|
|
119
|
+
DeleteBucketMetadataTableConfigurationCommandInput,
|
|
120
|
+
DeleteBucketMetadataTableConfigurationCommandOutput,
|
|
121
|
+
} from "./commands/DeleteBucketMetadataTableConfigurationCommand";
|
|
122
|
+
import {
|
|
123
|
+
DeleteBucketMetricsConfigurationCommandInput,
|
|
124
|
+
DeleteBucketMetricsConfigurationCommandOutput,
|
|
125
|
+
} from "./commands/DeleteBucketMetricsConfigurationCommand";
|
|
126
|
+
import {
|
|
127
|
+
DeleteBucketOwnershipControlsCommandInput,
|
|
128
|
+
DeleteBucketOwnershipControlsCommandOutput,
|
|
129
|
+
} from "./commands/DeleteBucketOwnershipControlsCommand";
|
|
130
|
+
import {
|
|
131
|
+
DeleteBucketPolicyCommandInput,
|
|
132
|
+
DeleteBucketPolicyCommandOutput,
|
|
133
|
+
} from "./commands/DeleteBucketPolicyCommand";
|
|
134
|
+
import {
|
|
135
|
+
DeleteBucketReplicationCommandInput,
|
|
136
|
+
DeleteBucketReplicationCommandOutput,
|
|
137
|
+
} from "./commands/DeleteBucketReplicationCommand";
|
|
138
|
+
import {
|
|
139
|
+
DeleteBucketTaggingCommandInput,
|
|
140
|
+
DeleteBucketTaggingCommandOutput,
|
|
141
|
+
} from "./commands/DeleteBucketTaggingCommand";
|
|
142
|
+
import {
|
|
143
|
+
DeleteBucketWebsiteCommandInput,
|
|
144
|
+
DeleteBucketWebsiteCommandOutput,
|
|
145
|
+
} from "./commands/DeleteBucketWebsiteCommand";
|
|
146
|
+
import {
|
|
147
|
+
DeleteObjectCommandInput,
|
|
148
|
+
DeleteObjectCommandOutput,
|
|
149
|
+
} from "./commands/DeleteObjectCommand";
|
|
150
|
+
import {
|
|
151
|
+
DeleteObjectsCommandInput,
|
|
152
|
+
DeleteObjectsCommandOutput,
|
|
153
|
+
} from "./commands/DeleteObjectsCommand";
|
|
154
|
+
import {
|
|
155
|
+
DeleteObjectTaggingCommandInput,
|
|
156
|
+
DeleteObjectTaggingCommandOutput,
|
|
157
|
+
} from "./commands/DeleteObjectTaggingCommand";
|
|
158
|
+
import {
|
|
159
|
+
DeletePublicAccessBlockCommandInput,
|
|
160
|
+
DeletePublicAccessBlockCommandOutput,
|
|
161
|
+
} from "./commands/DeletePublicAccessBlockCommand";
|
|
162
|
+
import {
|
|
163
|
+
GetBucketAccelerateConfigurationCommandInput,
|
|
164
|
+
GetBucketAccelerateConfigurationCommandOutput,
|
|
165
|
+
} from "./commands/GetBucketAccelerateConfigurationCommand";
|
|
166
|
+
import {
|
|
167
|
+
GetBucketAclCommandInput,
|
|
168
|
+
GetBucketAclCommandOutput,
|
|
169
|
+
} from "./commands/GetBucketAclCommand";
|
|
170
|
+
import {
|
|
171
|
+
GetBucketAnalyticsConfigurationCommandInput,
|
|
172
|
+
GetBucketAnalyticsConfigurationCommandOutput,
|
|
173
|
+
} from "./commands/GetBucketAnalyticsConfigurationCommand";
|
|
174
|
+
import {
|
|
175
|
+
GetBucketCorsCommandInput,
|
|
176
|
+
GetBucketCorsCommandOutput,
|
|
177
|
+
} from "./commands/GetBucketCorsCommand";
|
|
178
|
+
import {
|
|
179
|
+
GetBucketEncryptionCommandInput,
|
|
180
|
+
GetBucketEncryptionCommandOutput,
|
|
181
|
+
} from "./commands/GetBucketEncryptionCommand";
|
|
182
|
+
import {
|
|
183
|
+
GetBucketIntelligentTieringConfigurationCommandInput,
|
|
184
|
+
GetBucketIntelligentTieringConfigurationCommandOutput,
|
|
185
|
+
} from "./commands/GetBucketIntelligentTieringConfigurationCommand";
|
|
186
|
+
import {
|
|
187
|
+
GetBucketInventoryConfigurationCommandInput,
|
|
188
|
+
GetBucketInventoryConfigurationCommandOutput,
|
|
189
|
+
} from "./commands/GetBucketInventoryConfigurationCommand";
|
|
190
|
+
import {
|
|
191
|
+
GetBucketLifecycleConfigurationCommandInput,
|
|
192
|
+
GetBucketLifecycleConfigurationCommandOutput,
|
|
193
|
+
} from "./commands/GetBucketLifecycleConfigurationCommand";
|
|
194
|
+
import {
|
|
195
|
+
GetBucketLocationCommandInput,
|
|
196
|
+
GetBucketLocationCommandOutput,
|
|
197
|
+
} from "./commands/GetBucketLocationCommand";
|
|
198
|
+
import {
|
|
199
|
+
GetBucketLoggingCommandInput,
|
|
200
|
+
GetBucketLoggingCommandOutput,
|
|
201
|
+
} from "./commands/GetBucketLoggingCommand";
|
|
202
|
+
import {
|
|
203
|
+
GetBucketMetadataTableConfigurationCommandInput,
|
|
204
|
+
GetBucketMetadataTableConfigurationCommandOutput,
|
|
205
|
+
} from "./commands/GetBucketMetadataTableConfigurationCommand";
|
|
206
|
+
import {
|
|
207
|
+
GetBucketMetricsConfigurationCommandInput,
|
|
208
|
+
GetBucketMetricsConfigurationCommandOutput,
|
|
209
|
+
} from "./commands/GetBucketMetricsConfigurationCommand";
|
|
210
|
+
import {
|
|
211
|
+
GetBucketNotificationConfigurationCommandInput,
|
|
212
|
+
GetBucketNotificationConfigurationCommandOutput,
|
|
213
|
+
} from "./commands/GetBucketNotificationConfigurationCommand";
|
|
214
|
+
import {
|
|
215
|
+
GetBucketOwnershipControlsCommandInput,
|
|
216
|
+
GetBucketOwnershipControlsCommandOutput,
|
|
217
|
+
} from "./commands/GetBucketOwnershipControlsCommand";
|
|
218
|
+
import {
|
|
219
|
+
GetBucketPolicyCommandInput,
|
|
220
|
+
GetBucketPolicyCommandOutput,
|
|
221
|
+
} from "./commands/GetBucketPolicyCommand";
|
|
222
|
+
import {
|
|
223
|
+
GetBucketPolicyStatusCommandInput,
|
|
224
|
+
GetBucketPolicyStatusCommandOutput,
|
|
225
|
+
} from "./commands/GetBucketPolicyStatusCommand";
|
|
226
|
+
import {
|
|
227
|
+
GetBucketReplicationCommandInput,
|
|
228
|
+
GetBucketReplicationCommandOutput,
|
|
229
|
+
} from "./commands/GetBucketReplicationCommand";
|
|
230
|
+
import {
|
|
231
|
+
GetBucketRequestPaymentCommandInput,
|
|
232
|
+
GetBucketRequestPaymentCommandOutput,
|
|
233
|
+
} from "./commands/GetBucketRequestPaymentCommand";
|
|
234
|
+
import {
|
|
235
|
+
GetBucketTaggingCommandInput,
|
|
236
|
+
GetBucketTaggingCommandOutput,
|
|
237
|
+
} from "./commands/GetBucketTaggingCommand";
|
|
238
|
+
import {
|
|
239
|
+
GetBucketVersioningCommandInput,
|
|
240
|
+
GetBucketVersioningCommandOutput,
|
|
241
|
+
} from "./commands/GetBucketVersioningCommand";
|
|
242
|
+
import {
|
|
243
|
+
GetBucketWebsiteCommandInput,
|
|
244
|
+
GetBucketWebsiteCommandOutput,
|
|
245
|
+
} from "./commands/GetBucketWebsiteCommand";
|
|
246
|
+
import {
|
|
247
|
+
GetObjectAclCommandInput,
|
|
248
|
+
GetObjectAclCommandOutput,
|
|
249
|
+
} from "./commands/GetObjectAclCommand";
|
|
250
|
+
import {
|
|
251
|
+
GetObjectAttributesCommandInput,
|
|
252
|
+
GetObjectAttributesCommandOutput,
|
|
253
|
+
} from "./commands/GetObjectAttributesCommand";
|
|
254
|
+
import {
|
|
255
|
+
GetObjectCommandInput,
|
|
256
|
+
GetObjectCommandOutput,
|
|
257
|
+
} from "./commands/GetObjectCommand";
|
|
258
|
+
import {
|
|
259
|
+
GetObjectLegalHoldCommandInput,
|
|
260
|
+
GetObjectLegalHoldCommandOutput,
|
|
261
|
+
} from "./commands/GetObjectLegalHoldCommand";
|
|
262
|
+
import {
|
|
263
|
+
GetObjectLockConfigurationCommandInput,
|
|
264
|
+
GetObjectLockConfigurationCommandOutput,
|
|
265
|
+
} from "./commands/GetObjectLockConfigurationCommand";
|
|
266
|
+
import {
|
|
267
|
+
GetObjectRetentionCommandInput,
|
|
268
|
+
GetObjectRetentionCommandOutput,
|
|
269
|
+
} from "./commands/GetObjectRetentionCommand";
|
|
270
|
+
import {
|
|
271
|
+
GetObjectTaggingCommandInput,
|
|
272
|
+
GetObjectTaggingCommandOutput,
|
|
273
|
+
} from "./commands/GetObjectTaggingCommand";
|
|
274
|
+
import {
|
|
275
|
+
GetObjectTorrentCommandInput,
|
|
276
|
+
GetObjectTorrentCommandOutput,
|
|
277
|
+
} from "./commands/GetObjectTorrentCommand";
|
|
278
|
+
import {
|
|
279
|
+
GetPublicAccessBlockCommandInput,
|
|
280
|
+
GetPublicAccessBlockCommandOutput,
|
|
281
|
+
} from "./commands/GetPublicAccessBlockCommand";
|
|
282
|
+
import {
|
|
283
|
+
HeadBucketCommandInput,
|
|
284
|
+
HeadBucketCommandOutput,
|
|
285
|
+
} from "./commands/HeadBucketCommand";
|
|
286
|
+
import {
|
|
287
|
+
HeadObjectCommandInput,
|
|
288
|
+
HeadObjectCommandOutput,
|
|
289
|
+
} from "./commands/HeadObjectCommand";
|
|
290
|
+
import {
|
|
291
|
+
ListBucketAnalyticsConfigurationsCommandInput,
|
|
292
|
+
ListBucketAnalyticsConfigurationsCommandOutput,
|
|
293
|
+
} from "./commands/ListBucketAnalyticsConfigurationsCommand";
|
|
294
|
+
import {
|
|
295
|
+
ListBucketIntelligentTieringConfigurationsCommandInput,
|
|
296
|
+
ListBucketIntelligentTieringConfigurationsCommandOutput,
|
|
297
|
+
} from "./commands/ListBucketIntelligentTieringConfigurationsCommand";
|
|
298
|
+
import {
|
|
299
|
+
ListBucketInventoryConfigurationsCommandInput,
|
|
300
|
+
ListBucketInventoryConfigurationsCommandOutput,
|
|
301
|
+
} from "./commands/ListBucketInventoryConfigurationsCommand";
|
|
302
|
+
import {
|
|
303
|
+
ListBucketMetricsConfigurationsCommandInput,
|
|
304
|
+
ListBucketMetricsConfigurationsCommandOutput,
|
|
305
|
+
} from "./commands/ListBucketMetricsConfigurationsCommand";
|
|
306
|
+
import {
|
|
307
|
+
ListBucketsCommandInput,
|
|
308
|
+
ListBucketsCommandOutput,
|
|
309
|
+
} from "./commands/ListBucketsCommand";
|
|
310
|
+
import {
|
|
311
|
+
ListDirectoryBucketsCommandInput,
|
|
312
|
+
ListDirectoryBucketsCommandOutput,
|
|
313
|
+
} from "./commands/ListDirectoryBucketsCommand";
|
|
314
|
+
import {
|
|
315
|
+
ListMultipartUploadsCommandInput,
|
|
316
|
+
ListMultipartUploadsCommandOutput,
|
|
317
|
+
} from "./commands/ListMultipartUploadsCommand";
|
|
318
|
+
import {
|
|
319
|
+
ListObjectsCommandInput,
|
|
320
|
+
ListObjectsCommandOutput,
|
|
321
|
+
} from "./commands/ListObjectsCommand";
|
|
322
|
+
import {
|
|
323
|
+
ListObjectsV2CommandInput,
|
|
324
|
+
ListObjectsV2CommandOutput,
|
|
325
|
+
} from "./commands/ListObjectsV2Command";
|
|
326
|
+
import {
|
|
327
|
+
ListObjectVersionsCommandInput,
|
|
328
|
+
ListObjectVersionsCommandOutput,
|
|
329
|
+
} from "./commands/ListObjectVersionsCommand";
|
|
330
|
+
import {
|
|
331
|
+
ListPartsCommandInput,
|
|
332
|
+
ListPartsCommandOutput,
|
|
333
|
+
} from "./commands/ListPartsCommand";
|
|
334
|
+
import {
|
|
335
|
+
PutBucketAccelerateConfigurationCommandInput,
|
|
336
|
+
PutBucketAccelerateConfigurationCommandOutput,
|
|
337
|
+
} from "./commands/PutBucketAccelerateConfigurationCommand";
|
|
338
|
+
import {
|
|
339
|
+
PutBucketAclCommandInput,
|
|
340
|
+
PutBucketAclCommandOutput,
|
|
341
|
+
} from "./commands/PutBucketAclCommand";
|
|
342
|
+
import {
|
|
343
|
+
PutBucketAnalyticsConfigurationCommandInput,
|
|
344
|
+
PutBucketAnalyticsConfigurationCommandOutput,
|
|
345
|
+
} from "./commands/PutBucketAnalyticsConfigurationCommand";
|
|
346
|
+
import {
|
|
347
|
+
PutBucketCorsCommandInput,
|
|
348
|
+
PutBucketCorsCommandOutput,
|
|
349
|
+
} from "./commands/PutBucketCorsCommand";
|
|
350
|
+
import {
|
|
351
|
+
PutBucketEncryptionCommandInput,
|
|
352
|
+
PutBucketEncryptionCommandOutput,
|
|
353
|
+
} from "./commands/PutBucketEncryptionCommand";
|
|
354
|
+
import {
|
|
355
|
+
PutBucketIntelligentTieringConfigurationCommandInput,
|
|
356
|
+
PutBucketIntelligentTieringConfigurationCommandOutput,
|
|
357
|
+
} from "./commands/PutBucketIntelligentTieringConfigurationCommand";
|
|
358
|
+
import {
|
|
359
|
+
PutBucketInventoryConfigurationCommandInput,
|
|
360
|
+
PutBucketInventoryConfigurationCommandOutput,
|
|
361
|
+
} from "./commands/PutBucketInventoryConfigurationCommand";
|
|
362
|
+
import {
|
|
363
|
+
PutBucketLifecycleConfigurationCommandInput,
|
|
364
|
+
PutBucketLifecycleConfigurationCommandOutput,
|
|
365
|
+
} from "./commands/PutBucketLifecycleConfigurationCommand";
|
|
366
|
+
import {
|
|
367
|
+
PutBucketLoggingCommandInput,
|
|
368
|
+
PutBucketLoggingCommandOutput,
|
|
369
|
+
} from "./commands/PutBucketLoggingCommand";
|
|
370
|
+
import {
|
|
371
|
+
PutBucketMetricsConfigurationCommandInput,
|
|
372
|
+
PutBucketMetricsConfigurationCommandOutput,
|
|
373
|
+
} from "./commands/PutBucketMetricsConfigurationCommand";
|
|
374
|
+
import {
|
|
375
|
+
PutBucketNotificationConfigurationCommandInput,
|
|
376
|
+
PutBucketNotificationConfigurationCommandOutput,
|
|
377
|
+
} from "./commands/PutBucketNotificationConfigurationCommand";
|
|
378
|
+
import {
|
|
379
|
+
PutBucketOwnershipControlsCommandInput,
|
|
380
|
+
PutBucketOwnershipControlsCommandOutput,
|
|
381
|
+
} from "./commands/PutBucketOwnershipControlsCommand";
|
|
382
|
+
import {
|
|
383
|
+
PutBucketPolicyCommandInput,
|
|
384
|
+
PutBucketPolicyCommandOutput,
|
|
385
|
+
} from "./commands/PutBucketPolicyCommand";
|
|
386
|
+
import {
|
|
387
|
+
PutBucketReplicationCommandInput,
|
|
388
|
+
PutBucketReplicationCommandOutput,
|
|
389
|
+
} from "./commands/PutBucketReplicationCommand";
|
|
390
|
+
import {
|
|
391
|
+
PutBucketRequestPaymentCommandInput,
|
|
392
|
+
PutBucketRequestPaymentCommandOutput,
|
|
393
|
+
} from "./commands/PutBucketRequestPaymentCommand";
|
|
394
|
+
import {
|
|
395
|
+
PutBucketTaggingCommandInput,
|
|
396
|
+
PutBucketTaggingCommandOutput,
|
|
397
|
+
} from "./commands/PutBucketTaggingCommand";
|
|
398
|
+
import {
|
|
399
|
+
PutBucketVersioningCommandInput,
|
|
400
|
+
PutBucketVersioningCommandOutput,
|
|
401
|
+
} from "./commands/PutBucketVersioningCommand";
|
|
402
|
+
import {
|
|
403
|
+
PutBucketWebsiteCommandInput,
|
|
404
|
+
PutBucketWebsiteCommandOutput,
|
|
405
|
+
} from "./commands/PutBucketWebsiteCommand";
|
|
406
|
+
import {
|
|
407
|
+
PutObjectAclCommandInput,
|
|
408
|
+
PutObjectAclCommandOutput,
|
|
409
|
+
} from "./commands/PutObjectAclCommand";
|
|
410
|
+
import {
|
|
411
|
+
PutObjectCommandInput,
|
|
412
|
+
PutObjectCommandOutput,
|
|
413
|
+
} from "./commands/PutObjectCommand";
|
|
414
|
+
import {
|
|
415
|
+
PutObjectLegalHoldCommandInput,
|
|
416
|
+
PutObjectLegalHoldCommandOutput,
|
|
417
|
+
} from "./commands/PutObjectLegalHoldCommand";
|
|
418
|
+
import {
|
|
419
|
+
PutObjectLockConfigurationCommandInput,
|
|
420
|
+
PutObjectLockConfigurationCommandOutput,
|
|
421
|
+
} from "./commands/PutObjectLockConfigurationCommand";
|
|
422
|
+
import {
|
|
423
|
+
PutObjectRetentionCommandInput,
|
|
424
|
+
PutObjectRetentionCommandOutput,
|
|
425
|
+
} from "./commands/PutObjectRetentionCommand";
|
|
426
|
+
import {
|
|
427
|
+
PutObjectTaggingCommandInput,
|
|
428
|
+
PutObjectTaggingCommandOutput,
|
|
429
|
+
} from "./commands/PutObjectTaggingCommand";
|
|
430
|
+
import {
|
|
431
|
+
PutPublicAccessBlockCommandInput,
|
|
432
|
+
PutPublicAccessBlockCommandOutput,
|
|
433
|
+
} from "./commands/PutPublicAccessBlockCommand";
|
|
434
|
+
import {
|
|
435
|
+
RestoreObjectCommandInput,
|
|
436
|
+
RestoreObjectCommandOutput,
|
|
437
|
+
} from "./commands/RestoreObjectCommand";
|
|
438
|
+
import {
|
|
439
|
+
SelectObjectContentCommandInput,
|
|
440
|
+
SelectObjectContentCommandOutput,
|
|
441
|
+
} from "./commands/SelectObjectContentCommand";
|
|
442
|
+
import {
|
|
443
|
+
UploadPartCommandInput,
|
|
444
|
+
UploadPartCommandOutput,
|
|
445
|
+
} from "./commands/UploadPartCommand";
|
|
446
|
+
import {
|
|
447
|
+
UploadPartCopyCommandInput,
|
|
448
|
+
UploadPartCopyCommandOutput,
|
|
449
|
+
} from "./commands/UploadPartCopyCommand";
|
|
450
|
+
import {
|
|
451
|
+
WriteGetObjectResponseCommandInput,
|
|
452
|
+
WriteGetObjectResponseCommandOutput,
|
|
453
|
+
} from "./commands/WriteGetObjectResponseCommand";
|
|
454
|
+
import {
|
|
455
|
+
ClientInputEndpointParameters,
|
|
456
|
+
ClientResolvedEndpointParameters,
|
|
457
|
+
EndpointParameters,
|
|
458
|
+
} from "./endpoint/EndpointParameters";
|
|
459
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
460
|
+
export { __Client };
|
|
461
|
+
export type ServiceInputTypes =
|
|
462
|
+
| AbortMultipartUploadCommandInput
|
|
463
|
+
| CompleteMultipartUploadCommandInput
|
|
464
|
+
| CopyObjectCommandInput
|
|
465
|
+
| CreateBucketCommandInput
|
|
466
|
+
| CreateBucketMetadataTableConfigurationCommandInput
|
|
467
|
+
| CreateMultipartUploadCommandInput
|
|
468
|
+
| CreateSessionCommandInput
|
|
469
|
+
| DeleteBucketAnalyticsConfigurationCommandInput
|
|
470
|
+
| DeleteBucketCommandInput
|
|
471
|
+
| DeleteBucketCorsCommandInput
|
|
472
|
+
| DeleteBucketEncryptionCommandInput
|
|
473
|
+
| DeleteBucketIntelligentTieringConfigurationCommandInput
|
|
474
|
+
| DeleteBucketInventoryConfigurationCommandInput
|
|
475
|
+
| DeleteBucketLifecycleCommandInput
|
|
476
|
+
| DeleteBucketMetadataTableConfigurationCommandInput
|
|
477
|
+
| DeleteBucketMetricsConfigurationCommandInput
|
|
478
|
+
| DeleteBucketOwnershipControlsCommandInput
|
|
479
|
+
| DeleteBucketPolicyCommandInput
|
|
480
|
+
| DeleteBucketReplicationCommandInput
|
|
481
|
+
| DeleteBucketTaggingCommandInput
|
|
482
|
+
| DeleteBucketWebsiteCommandInput
|
|
483
|
+
| DeleteObjectCommandInput
|
|
484
|
+
| DeleteObjectTaggingCommandInput
|
|
485
|
+
| DeleteObjectsCommandInput
|
|
486
|
+
| DeletePublicAccessBlockCommandInput
|
|
487
|
+
| GetBucketAccelerateConfigurationCommandInput
|
|
488
|
+
| GetBucketAclCommandInput
|
|
489
|
+
| GetBucketAnalyticsConfigurationCommandInput
|
|
490
|
+
| GetBucketCorsCommandInput
|
|
491
|
+
| GetBucketEncryptionCommandInput
|
|
492
|
+
| GetBucketIntelligentTieringConfigurationCommandInput
|
|
493
|
+
| GetBucketInventoryConfigurationCommandInput
|
|
494
|
+
| GetBucketLifecycleConfigurationCommandInput
|
|
495
|
+
| GetBucketLocationCommandInput
|
|
496
|
+
| GetBucketLoggingCommandInput
|
|
497
|
+
| GetBucketMetadataTableConfigurationCommandInput
|
|
498
|
+
| GetBucketMetricsConfigurationCommandInput
|
|
499
|
+
| GetBucketNotificationConfigurationCommandInput
|
|
500
|
+
| GetBucketOwnershipControlsCommandInput
|
|
501
|
+
| GetBucketPolicyCommandInput
|
|
502
|
+
| GetBucketPolicyStatusCommandInput
|
|
503
|
+
| GetBucketReplicationCommandInput
|
|
504
|
+
| GetBucketRequestPaymentCommandInput
|
|
505
|
+
| GetBucketTaggingCommandInput
|
|
506
|
+
| GetBucketVersioningCommandInput
|
|
507
|
+
| GetBucketWebsiteCommandInput
|
|
508
|
+
| GetObjectAclCommandInput
|
|
509
|
+
| GetObjectAttributesCommandInput
|
|
510
|
+
| GetObjectCommandInput
|
|
511
|
+
| GetObjectLegalHoldCommandInput
|
|
512
|
+
| GetObjectLockConfigurationCommandInput
|
|
513
|
+
| GetObjectRetentionCommandInput
|
|
514
|
+
| GetObjectTaggingCommandInput
|
|
515
|
+
| GetObjectTorrentCommandInput
|
|
516
|
+
| GetPublicAccessBlockCommandInput
|
|
517
|
+
| HeadBucketCommandInput
|
|
518
|
+
| HeadObjectCommandInput
|
|
519
|
+
| ListBucketAnalyticsConfigurationsCommandInput
|
|
520
|
+
| ListBucketIntelligentTieringConfigurationsCommandInput
|
|
521
|
+
| ListBucketInventoryConfigurationsCommandInput
|
|
522
|
+
| ListBucketMetricsConfigurationsCommandInput
|
|
523
|
+
| ListBucketsCommandInput
|
|
524
|
+
| ListDirectoryBucketsCommandInput
|
|
525
|
+
| ListMultipartUploadsCommandInput
|
|
526
|
+
| ListObjectVersionsCommandInput
|
|
527
|
+
| ListObjectsCommandInput
|
|
528
|
+
| ListObjectsV2CommandInput
|
|
529
|
+
| ListPartsCommandInput
|
|
530
|
+
| PutBucketAccelerateConfigurationCommandInput
|
|
531
|
+
| PutBucketAclCommandInput
|
|
532
|
+
| PutBucketAnalyticsConfigurationCommandInput
|
|
533
|
+
| PutBucketCorsCommandInput
|
|
534
|
+
| PutBucketEncryptionCommandInput
|
|
535
|
+
| PutBucketIntelligentTieringConfigurationCommandInput
|
|
536
|
+
| PutBucketInventoryConfigurationCommandInput
|
|
537
|
+
| PutBucketLifecycleConfigurationCommandInput
|
|
538
|
+
| PutBucketLoggingCommandInput
|
|
539
|
+
| PutBucketMetricsConfigurationCommandInput
|
|
540
|
+
| PutBucketNotificationConfigurationCommandInput
|
|
541
|
+
| PutBucketOwnershipControlsCommandInput
|
|
542
|
+
| PutBucketPolicyCommandInput
|
|
543
|
+
| PutBucketReplicationCommandInput
|
|
544
|
+
| PutBucketRequestPaymentCommandInput
|
|
545
|
+
| PutBucketTaggingCommandInput
|
|
546
|
+
| PutBucketVersioningCommandInput
|
|
547
|
+
| PutBucketWebsiteCommandInput
|
|
548
|
+
| PutObjectAclCommandInput
|
|
549
|
+
| PutObjectCommandInput
|
|
550
|
+
| PutObjectLegalHoldCommandInput
|
|
551
|
+
| PutObjectLockConfigurationCommandInput
|
|
552
|
+
| PutObjectRetentionCommandInput
|
|
553
|
+
| PutObjectTaggingCommandInput
|
|
554
|
+
| PutPublicAccessBlockCommandInput
|
|
555
|
+
| RestoreObjectCommandInput
|
|
556
|
+
| SelectObjectContentCommandInput
|
|
557
|
+
| UploadPartCommandInput
|
|
558
|
+
| UploadPartCopyCommandInput
|
|
559
|
+
| WriteGetObjectResponseCommandInput;
|
|
560
|
+
export type ServiceOutputTypes =
|
|
561
|
+
| AbortMultipartUploadCommandOutput
|
|
562
|
+
| CompleteMultipartUploadCommandOutput
|
|
563
|
+
| CopyObjectCommandOutput
|
|
564
|
+
| CreateBucketCommandOutput
|
|
565
|
+
| CreateBucketMetadataTableConfigurationCommandOutput
|
|
566
|
+
| CreateMultipartUploadCommandOutput
|
|
567
|
+
| CreateSessionCommandOutput
|
|
568
|
+
| DeleteBucketAnalyticsConfigurationCommandOutput
|
|
569
|
+
| DeleteBucketCommandOutput
|
|
570
|
+
| DeleteBucketCorsCommandOutput
|
|
571
|
+
| DeleteBucketEncryptionCommandOutput
|
|
572
|
+
| DeleteBucketIntelligentTieringConfigurationCommandOutput
|
|
573
|
+
| DeleteBucketInventoryConfigurationCommandOutput
|
|
574
|
+
| DeleteBucketLifecycleCommandOutput
|
|
575
|
+
| DeleteBucketMetadataTableConfigurationCommandOutput
|
|
576
|
+
| DeleteBucketMetricsConfigurationCommandOutput
|
|
577
|
+
| DeleteBucketOwnershipControlsCommandOutput
|
|
578
|
+
| DeleteBucketPolicyCommandOutput
|
|
579
|
+
| DeleteBucketReplicationCommandOutput
|
|
580
|
+
| DeleteBucketTaggingCommandOutput
|
|
581
|
+
| DeleteBucketWebsiteCommandOutput
|
|
582
|
+
| DeleteObjectCommandOutput
|
|
583
|
+
| DeleteObjectTaggingCommandOutput
|
|
584
|
+
| DeleteObjectsCommandOutput
|
|
585
|
+
| DeletePublicAccessBlockCommandOutput
|
|
586
|
+
| GetBucketAccelerateConfigurationCommandOutput
|
|
587
|
+
| GetBucketAclCommandOutput
|
|
588
|
+
| GetBucketAnalyticsConfigurationCommandOutput
|
|
589
|
+
| GetBucketCorsCommandOutput
|
|
590
|
+
| GetBucketEncryptionCommandOutput
|
|
591
|
+
| GetBucketIntelligentTieringConfigurationCommandOutput
|
|
592
|
+
| GetBucketInventoryConfigurationCommandOutput
|
|
593
|
+
| GetBucketLifecycleConfigurationCommandOutput
|
|
594
|
+
| GetBucketLocationCommandOutput
|
|
595
|
+
| GetBucketLoggingCommandOutput
|
|
596
|
+
| GetBucketMetadataTableConfigurationCommandOutput
|
|
597
|
+
| GetBucketMetricsConfigurationCommandOutput
|
|
598
|
+
| GetBucketNotificationConfigurationCommandOutput
|
|
599
|
+
| GetBucketOwnershipControlsCommandOutput
|
|
600
|
+
| GetBucketPolicyCommandOutput
|
|
601
|
+
| GetBucketPolicyStatusCommandOutput
|
|
602
|
+
| GetBucketReplicationCommandOutput
|
|
603
|
+
| GetBucketRequestPaymentCommandOutput
|
|
604
|
+
| GetBucketTaggingCommandOutput
|
|
605
|
+
| GetBucketVersioningCommandOutput
|
|
606
|
+
| GetBucketWebsiteCommandOutput
|
|
607
|
+
| GetObjectAclCommandOutput
|
|
608
|
+
| GetObjectAttributesCommandOutput
|
|
609
|
+
| GetObjectCommandOutput
|
|
610
|
+
| GetObjectLegalHoldCommandOutput
|
|
611
|
+
| GetObjectLockConfigurationCommandOutput
|
|
612
|
+
| GetObjectRetentionCommandOutput
|
|
613
|
+
| GetObjectTaggingCommandOutput
|
|
614
|
+
| GetObjectTorrentCommandOutput
|
|
615
|
+
| GetPublicAccessBlockCommandOutput
|
|
616
|
+
| HeadBucketCommandOutput
|
|
617
|
+
| HeadObjectCommandOutput
|
|
618
|
+
| ListBucketAnalyticsConfigurationsCommandOutput
|
|
619
|
+
| ListBucketIntelligentTieringConfigurationsCommandOutput
|
|
620
|
+
| ListBucketInventoryConfigurationsCommandOutput
|
|
621
|
+
| ListBucketMetricsConfigurationsCommandOutput
|
|
622
|
+
| ListBucketsCommandOutput
|
|
623
|
+
| ListDirectoryBucketsCommandOutput
|
|
624
|
+
| ListMultipartUploadsCommandOutput
|
|
625
|
+
| ListObjectVersionsCommandOutput
|
|
626
|
+
| ListObjectsCommandOutput
|
|
627
|
+
| ListObjectsV2CommandOutput
|
|
628
|
+
| ListPartsCommandOutput
|
|
629
|
+
| PutBucketAccelerateConfigurationCommandOutput
|
|
630
|
+
| PutBucketAclCommandOutput
|
|
631
|
+
| PutBucketAnalyticsConfigurationCommandOutput
|
|
632
|
+
| PutBucketCorsCommandOutput
|
|
633
|
+
| PutBucketEncryptionCommandOutput
|
|
634
|
+
| PutBucketIntelligentTieringConfigurationCommandOutput
|
|
635
|
+
| PutBucketInventoryConfigurationCommandOutput
|
|
636
|
+
| PutBucketLifecycleConfigurationCommandOutput
|
|
637
|
+
| PutBucketLoggingCommandOutput
|
|
638
|
+
| PutBucketMetricsConfigurationCommandOutput
|
|
639
|
+
| PutBucketNotificationConfigurationCommandOutput
|
|
640
|
+
| PutBucketOwnershipControlsCommandOutput
|
|
641
|
+
| PutBucketPolicyCommandOutput
|
|
642
|
+
| PutBucketReplicationCommandOutput
|
|
643
|
+
| PutBucketRequestPaymentCommandOutput
|
|
644
|
+
| PutBucketTaggingCommandOutput
|
|
645
|
+
| PutBucketVersioningCommandOutput
|
|
646
|
+
| PutBucketWebsiteCommandOutput
|
|
647
|
+
| PutObjectAclCommandOutput
|
|
648
|
+
| PutObjectCommandOutput
|
|
649
|
+
| PutObjectLegalHoldCommandOutput
|
|
650
|
+
| PutObjectLockConfigurationCommandOutput
|
|
651
|
+
| PutObjectRetentionCommandOutput
|
|
652
|
+
| PutObjectTaggingCommandOutput
|
|
653
|
+
| PutPublicAccessBlockCommandOutput
|
|
654
|
+
| RestoreObjectCommandOutput
|
|
655
|
+
| SelectObjectContentCommandOutput
|
|
656
|
+
| UploadPartCommandOutput
|
|
657
|
+
| UploadPartCopyCommandOutput
|
|
658
|
+
| WriteGetObjectResponseCommandOutput;
|
|
659
|
+
export interface ClientDefaults
|
|
660
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
661
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
662
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
663
|
+
urlParser?: __UrlParser;
|
|
664
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
665
|
+
streamCollector?: __StreamCollector;
|
|
666
|
+
base64Decoder?: __Decoder;
|
|
667
|
+
base64Encoder?: __Encoder;
|
|
668
|
+
utf8Decoder?: __Decoder;
|
|
669
|
+
utf8Encoder?: __Encoder;
|
|
670
|
+
runtime?: string;
|
|
671
|
+
disableHostPrefix?: boolean;
|
|
672
|
+
serviceId?: string;
|
|
673
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
674
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
675
|
+
region?: string | __Provider<string>;
|
|
676
|
+
profile?: string;
|
|
677
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
678
|
+
streamHasher?: __StreamHasher<Readable> | __StreamHasher<Blob>;
|
|
679
|
+
md5?: __ChecksumConstructor | __HashConstructor;
|
|
680
|
+
sha1?: __ChecksumConstructor | __HashConstructor;
|
|
681
|
+
getAwsChunkedEncodingStream?: GetAwsChunkedEncodingStream;
|
|
682
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
683
|
+
maxAttempts?: number | __Provider<number>;
|
|
684
|
+
retryMode?: string | __Provider<string>;
|
|
685
|
+
logger?: __Logger;
|
|
686
|
+
extensions?: RuntimeExtension[];
|
|
687
|
+
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
688
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
689
|
+
signingEscapePath?: boolean;
|
|
690
|
+
useArnRegion?: boolean | Provider<boolean>;
|
|
691
|
+
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
692
|
+
}
|
|
693
|
+
export type S3ClientConfigType = Partial<
|
|
694
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
695
|
+
> &
|
|
696
|
+
ClientDefaults &
|
|
697
|
+
UserAgentInputConfig &
|
|
698
|
+
FlexibleChecksumsInputConfig &
|
|
699
|
+
RetryInputConfig &
|
|
700
|
+
RegionInputConfig &
|
|
701
|
+
HostHeaderInputConfig &
|
|
702
|
+
EndpointInputConfig<EndpointParameters> &
|
|
703
|
+
EventStreamSerdeInputConfig &
|
|
704
|
+
HttpAuthSchemeInputConfig &
|
|
705
|
+
S3InputConfig &
|
|
706
|
+
ClientInputEndpointParameters;
|
|
707
|
+
export interface S3ClientConfig extends S3ClientConfigType {}
|
|
708
|
+
export type S3ClientResolvedConfigType =
|
|
709
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
710
|
+
Required<ClientDefaults> &
|
|
711
|
+
RuntimeExtensionsConfig &
|
|
712
|
+
UserAgentResolvedConfig &
|
|
713
|
+
FlexibleChecksumsResolvedConfig &
|
|
714
|
+
RetryResolvedConfig &
|
|
715
|
+
RegionResolvedConfig &
|
|
716
|
+
HostHeaderResolvedConfig &
|
|
717
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
718
|
+
EventStreamSerdeResolvedConfig &
|
|
719
|
+
HttpAuthSchemeResolvedConfig &
|
|
720
|
+
S3ResolvedConfig &
|
|
721
|
+
ClientResolvedEndpointParameters;
|
|
722
|
+
export interface S3ClientResolvedConfig extends S3ClientResolvedConfigType {}
|
|
723
|
+
export declare class S3Client extends __Client<
|
|
724
|
+
__HttpHandlerOptions,
|
|
725
|
+
ServiceInputTypes,
|
|
726
|
+
ServiceOutputTypes,
|
|
727
|
+
S3ClientResolvedConfig
|
|
728
|
+
> {
|
|
729
|
+
readonly config: S3ClientResolvedConfig;
|
|
730
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<S3ClientConfig>);
|
|
731
|
+
destroy(): void;
|
|
732
|
+
}
|