@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,580 @@
|
|
|
1
|
+
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
+
import { S3ServiceException as __BaseException } from "./S3ServiceException";
|
|
3
|
+
export const RequestCharged = {
|
|
4
|
+
requester: "requester",
|
|
5
|
+
};
|
|
6
|
+
export const RequestPayer = {
|
|
7
|
+
requester: "requester",
|
|
8
|
+
};
|
|
9
|
+
export class NoSuchUpload extends __BaseException {
|
|
10
|
+
constructor(opts) {
|
|
11
|
+
super({
|
|
12
|
+
name: "NoSuchUpload",
|
|
13
|
+
$fault: "client",
|
|
14
|
+
...opts,
|
|
15
|
+
});
|
|
16
|
+
this.name = "NoSuchUpload";
|
|
17
|
+
this.$fault = "client";
|
|
18
|
+
Object.setPrototypeOf(this, NoSuchUpload.prototype);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
export const BucketAccelerateStatus = {
|
|
22
|
+
Enabled: "Enabled",
|
|
23
|
+
Suspended: "Suspended",
|
|
24
|
+
};
|
|
25
|
+
export const Type = {
|
|
26
|
+
AmazonCustomerByEmail: "AmazonCustomerByEmail",
|
|
27
|
+
CanonicalUser: "CanonicalUser",
|
|
28
|
+
Group: "Group",
|
|
29
|
+
};
|
|
30
|
+
export const Permission = {
|
|
31
|
+
FULL_CONTROL: "FULL_CONTROL",
|
|
32
|
+
READ: "READ",
|
|
33
|
+
READ_ACP: "READ_ACP",
|
|
34
|
+
WRITE: "WRITE",
|
|
35
|
+
WRITE_ACP: "WRITE_ACP",
|
|
36
|
+
};
|
|
37
|
+
export const OwnerOverride = {
|
|
38
|
+
Destination: "Destination",
|
|
39
|
+
};
|
|
40
|
+
export const ServerSideEncryption = {
|
|
41
|
+
AES256: "AES256",
|
|
42
|
+
aws_kms: "aws:kms",
|
|
43
|
+
aws_kms_dsse: "aws:kms:dsse",
|
|
44
|
+
};
|
|
45
|
+
export const ObjectCannedACL = {
|
|
46
|
+
authenticated_read: "authenticated-read",
|
|
47
|
+
aws_exec_read: "aws-exec-read",
|
|
48
|
+
bucket_owner_full_control: "bucket-owner-full-control",
|
|
49
|
+
bucket_owner_read: "bucket-owner-read",
|
|
50
|
+
private: "private",
|
|
51
|
+
public_read: "public-read",
|
|
52
|
+
public_read_write: "public-read-write",
|
|
53
|
+
};
|
|
54
|
+
export const ChecksumAlgorithm = {
|
|
55
|
+
CRC32: "CRC32",
|
|
56
|
+
CRC32C: "CRC32C",
|
|
57
|
+
SHA1: "SHA1",
|
|
58
|
+
SHA256: "SHA256",
|
|
59
|
+
};
|
|
60
|
+
export const MetadataDirective = {
|
|
61
|
+
COPY: "COPY",
|
|
62
|
+
REPLACE: "REPLACE",
|
|
63
|
+
};
|
|
64
|
+
export const ObjectLockLegalHoldStatus = {
|
|
65
|
+
OFF: "OFF",
|
|
66
|
+
ON: "ON",
|
|
67
|
+
};
|
|
68
|
+
export const ObjectLockMode = {
|
|
69
|
+
COMPLIANCE: "COMPLIANCE",
|
|
70
|
+
GOVERNANCE: "GOVERNANCE",
|
|
71
|
+
};
|
|
72
|
+
export const StorageClass = {
|
|
73
|
+
DEEP_ARCHIVE: "DEEP_ARCHIVE",
|
|
74
|
+
EXPRESS_ONEZONE: "EXPRESS_ONEZONE",
|
|
75
|
+
GLACIER: "GLACIER",
|
|
76
|
+
GLACIER_IR: "GLACIER_IR",
|
|
77
|
+
INTELLIGENT_TIERING: "INTELLIGENT_TIERING",
|
|
78
|
+
ONEZONE_IA: "ONEZONE_IA",
|
|
79
|
+
OUTPOSTS: "OUTPOSTS",
|
|
80
|
+
REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY",
|
|
81
|
+
SNOW: "SNOW",
|
|
82
|
+
STANDARD: "STANDARD",
|
|
83
|
+
STANDARD_IA: "STANDARD_IA",
|
|
84
|
+
};
|
|
85
|
+
export const TaggingDirective = {
|
|
86
|
+
COPY: "COPY",
|
|
87
|
+
REPLACE: "REPLACE",
|
|
88
|
+
};
|
|
89
|
+
export class ObjectNotInActiveTierError extends __BaseException {
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "ObjectNotInActiveTierError",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
this.name = "ObjectNotInActiveTierError";
|
|
97
|
+
this.$fault = "client";
|
|
98
|
+
Object.setPrototypeOf(this, ObjectNotInActiveTierError.prototype);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
export class BucketAlreadyExists extends __BaseException {
|
|
102
|
+
constructor(opts) {
|
|
103
|
+
super({
|
|
104
|
+
name: "BucketAlreadyExists",
|
|
105
|
+
$fault: "client",
|
|
106
|
+
...opts,
|
|
107
|
+
});
|
|
108
|
+
this.name = "BucketAlreadyExists";
|
|
109
|
+
this.$fault = "client";
|
|
110
|
+
Object.setPrototypeOf(this, BucketAlreadyExists.prototype);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
export class BucketAlreadyOwnedByYou extends __BaseException {
|
|
114
|
+
constructor(opts) {
|
|
115
|
+
super({
|
|
116
|
+
name: "BucketAlreadyOwnedByYou",
|
|
117
|
+
$fault: "client",
|
|
118
|
+
...opts,
|
|
119
|
+
});
|
|
120
|
+
this.name = "BucketAlreadyOwnedByYou";
|
|
121
|
+
this.$fault = "client";
|
|
122
|
+
Object.setPrototypeOf(this, BucketAlreadyOwnedByYou.prototype);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
export const BucketCannedACL = {
|
|
126
|
+
authenticated_read: "authenticated-read",
|
|
127
|
+
private: "private",
|
|
128
|
+
public_read: "public-read",
|
|
129
|
+
public_read_write: "public-read-write",
|
|
130
|
+
};
|
|
131
|
+
export const DataRedundancy = {
|
|
132
|
+
SingleAvailabilityZone: "SingleAvailabilityZone",
|
|
133
|
+
SingleLocalZone: "SingleLocalZone",
|
|
134
|
+
};
|
|
135
|
+
export const BucketType = {
|
|
136
|
+
Directory: "Directory",
|
|
137
|
+
};
|
|
138
|
+
export const LocationType = {
|
|
139
|
+
AvailabilityZone: "AvailabilityZone",
|
|
140
|
+
LocalZone: "LocalZone",
|
|
141
|
+
};
|
|
142
|
+
export const BucketLocationConstraint = {
|
|
143
|
+
EU: "EU",
|
|
144
|
+
af_south_1: "af-south-1",
|
|
145
|
+
ap_east_1: "ap-east-1",
|
|
146
|
+
ap_northeast_1: "ap-northeast-1",
|
|
147
|
+
ap_northeast_2: "ap-northeast-2",
|
|
148
|
+
ap_northeast_3: "ap-northeast-3",
|
|
149
|
+
ap_south_1: "ap-south-1",
|
|
150
|
+
ap_south_2: "ap-south-2",
|
|
151
|
+
ap_southeast_1: "ap-southeast-1",
|
|
152
|
+
ap_southeast_2: "ap-southeast-2",
|
|
153
|
+
ap_southeast_3: "ap-southeast-3",
|
|
154
|
+
ca_central_1: "ca-central-1",
|
|
155
|
+
cn_north_1: "cn-north-1",
|
|
156
|
+
cn_northwest_1: "cn-northwest-1",
|
|
157
|
+
eu_central_1: "eu-central-1",
|
|
158
|
+
eu_north_1: "eu-north-1",
|
|
159
|
+
eu_south_1: "eu-south-1",
|
|
160
|
+
eu_south_2: "eu-south-2",
|
|
161
|
+
eu_west_1: "eu-west-1",
|
|
162
|
+
eu_west_2: "eu-west-2",
|
|
163
|
+
eu_west_3: "eu-west-3",
|
|
164
|
+
me_south_1: "me-south-1",
|
|
165
|
+
sa_east_1: "sa-east-1",
|
|
166
|
+
us_east_2: "us-east-2",
|
|
167
|
+
us_gov_east_1: "us-gov-east-1",
|
|
168
|
+
us_gov_west_1: "us-gov-west-1",
|
|
169
|
+
us_west_1: "us-west-1",
|
|
170
|
+
us_west_2: "us-west-2",
|
|
171
|
+
};
|
|
172
|
+
export const ObjectOwnership = {
|
|
173
|
+
BucketOwnerEnforced: "BucketOwnerEnforced",
|
|
174
|
+
BucketOwnerPreferred: "BucketOwnerPreferred",
|
|
175
|
+
ObjectWriter: "ObjectWriter",
|
|
176
|
+
};
|
|
177
|
+
export const SessionMode = {
|
|
178
|
+
ReadOnly: "ReadOnly",
|
|
179
|
+
ReadWrite: "ReadWrite",
|
|
180
|
+
};
|
|
181
|
+
export class NoSuchBucket extends __BaseException {
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "NoSuchBucket",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
this.name = "NoSuchBucket";
|
|
189
|
+
this.$fault = "client";
|
|
190
|
+
Object.setPrototypeOf(this, NoSuchBucket.prototype);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
export var AnalyticsFilter;
|
|
194
|
+
(function (AnalyticsFilter) {
|
|
195
|
+
AnalyticsFilter.visit = (value, visitor) => {
|
|
196
|
+
if (value.Prefix !== undefined)
|
|
197
|
+
return visitor.Prefix(value.Prefix);
|
|
198
|
+
if (value.Tag !== undefined)
|
|
199
|
+
return visitor.Tag(value.Tag);
|
|
200
|
+
if (value.And !== undefined)
|
|
201
|
+
return visitor.And(value.And);
|
|
202
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
203
|
+
};
|
|
204
|
+
})(AnalyticsFilter || (AnalyticsFilter = {}));
|
|
205
|
+
export const AnalyticsS3ExportFileFormat = {
|
|
206
|
+
CSV: "CSV",
|
|
207
|
+
};
|
|
208
|
+
export const StorageClassAnalysisSchemaVersion = {
|
|
209
|
+
V_1: "V_1",
|
|
210
|
+
};
|
|
211
|
+
export const IntelligentTieringStatus = {
|
|
212
|
+
Disabled: "Disabled",
|
|
213
|
+
Enabled: "Enabled",
|
|
214
|
+
};
|
|
215
|
+
export const IntelligentTieringAccessTier = {
|
|
216
|
+
ARCHIVE_ACCESS: "ARCHIVE_ACCESS",
|
|
217
|
+
DEEP_ARCHIVE_ACCESS: "DEEP_ARCHIVE_ACCESS",
|
|
218
|
+
};
|
|
219
|
+
export const InventoryFormat = {
|
|
220
|
+
CSV: "CSV",
|
|
221
|
+
ORC: "ORC",
|
|
222
|
+
Parquet: "Parquet",
|
|
223
|
+
};
|
|
224
|
+
export const InventoryIncludedObjectVersions = {
|
|
225
|
+
All: "All",
|
|
226
|
+
Current: "Current",
|
|
227
|
+
};
|
|
228
|
+
export const InventoryOptionalField = {
|
|
229
|
+
BucketKeyStatus: "BucketKeyStatus",
|
|
230
|
+
ChecksumAlgorithm: "ChecksumAlgorithm",
|
|
231
|
+
ETag: "ETag",
|
|
232
|
+
EncryptionStatus: "EncryptionStatus",
|
|
233
|
+
IntelligentTieringAccessTier: "IntelligentTieringAccessTier",
|
|
234
|
+
IsMultipartUploaded: "IsMultipartUploaded",
|
|
235
|
+
LastModifiedDate: "LastModifiedDate",
|
|
236
|
+
ObjectAccessControlList: "ObjectAccessControlList",
|
|
237
|
+
ObjectLockLegalHoldStatus: "ObjectLockLegalHoldStatus",
|
|
238
|
+
ObjectLockMode: "ObjectLockMode",
|
|
239
|
+
ObjectLockRetainUntilDate: "ObjectLockRetainUntilDate",
|
|
240
|
+
ObjectOwner: "ObjectOwner",
|
|
241
|
+
ReplicationStatus: "ReplicationStatus",
|
|
242
|
+
Size: "Size",
|
|
243
|
+
StorageClass: "StorageClass",
|
|
244
|
+
};
|
|
245
|
+
export const InventoryFrequency = {
|
|
246
|
+
Daily: "Daily",
|
|
247
|
+
Weekly: "Weekly",
|
|
248
|
+
};
|
|
249
|
+
export const TransitionStorageClass = {
|
|
250
|
+
DEEP_ARCHIVE: "DEEP_ARCHIVE",
|
|
251
|
+
GLACIER: "GLACIER",
|
|
252
|
+
GLACIER_IR: "GLACIER_IR",
|
|
253
|
+
INTELLIGENT_TIERING: "INTELLIGENT_TIERING",
|
|
254
|
+
ONEZONE_IA: "ONEZONE_IA",
|
|
255
|
+
STANDARD_IA: "STANDARD_IA",
|
|
256
|
+
};
|
|
257
|
+
export const ExpirationStatus = {
|
|
258
|
+
Disabled: "Disabled",
|
|
259
|
+
Enabled: "Enabled",
|
|
260
|
+
};
|
|
261
|
+
export const TransitionDefaultMinimumObjectSize = {
|
|
262
|
+
all_storage_classes_128K: "all_storage_classes_128K",
|
|
263
|
+
varies_by_storage_class: "varies_by_storage_class",
|
|
264
|
+
};
|
|
265
|
+
export const BucketLogsPermission = {
|
|
266
|
+
FULL_CONTROL: "FULL_CONTROL",
|
|
267
|
+
READ: "READ",
|
|
268
|
+
WRITE: "WRITE",
|
|
269
|
+
};
|
|
270
|
+
export const PartitionDateSource = {
|
|
271
|
+
DeliveryTime: "DeliveryTime",
|
|
272
|
+
EventTime: "EventTime",
|
|
273
|
+
};
|
|
274
|
+
export var MetricsFilter;
|
|
275
|
+
(function (MetricsFilter) {
|
|
276
|
+
MetricsFilter.visit = (value, visitor) => {
|
|
277
|
+
if (value.Prefix !== undefined)
|
|
278
|
+
return visitor.Prefix(value.Prefix);
|
|
279
|
+
if (value.Tag !== undefined)
|
|
280
|
+
return visitor.Tag(value.Tag);
|
|
281
|
+
if (value.AccessPointArn !== undefined)
|
|
282
|
+
return visitor.AccessPointArn(value.AccessPointArn);
|
|
283
|
+
if (value.And !== undefined)
|
|
284
|
+
return visitor.And(value.And);
|
|
285
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
286
|
+
};
|
|
287
|
+
})(MetricsFilter || (MetricsFilter = {}));
|
|
288
|
+
export const Event = {
|
|
289
|
+
s3_IntelligentTiering: "s3:IntelligentTiering",
|
|
290
|
+
s3_LifecycleExpiration_: "s3:LifecycleExpiration:*",
|
|
291
|
+
s3_LifecycleExpiration_Delete: "s3:LifecycleExpiration:Delete",
|
|
292
|
+
s3_LifecycleExpiration_DeleteMarkerCreated: "s3:LifecycleExpiration:DeleteMarkerCreated",
|
|
293
|
+
s3_LifecycleTransition: "s3:LifecycleTransition",
|
|
294
|
+
s3_ObjectAcl_Put: "s3:ObjectAcl:Put",
|
|
295
|
+
s3_ObjectCreated_: "s3:ObjectCreated:*",
|
|
296
|
+
s3_ObjectCreated_CompleteMultipartUpload: "s3:ObjectCreated:CompleteMultipartUpload",
|
|
297
|
+
s3_ObjectCreated_Copy: "s3:ObjectCreated:Copy",
|
|
298
|
+
s3_ObjectCreated_Post: "s3:ObjectCreated:Post",
|
|
299
|
+
s3_ObjectCreated_Put: "s3:ObjectCreated:Put",
|
|
300
|
+
s3_ObjectRemoved_: "s3:ObjectRemoved:*",
|
|
301
|
+
s3_ObjectRemoved_Delete: "s3:ObjectRemoved:Delete",
|
|
302
|
+
s3_ObjectRemoved_DeleteMarkerCreated: "s3:ObjectRemoved:DeleteMarkerCreated",
|
|
303
|
+
s3_ObjectRestore_: "s3:ObjectRestore:*",
|
|
304
|
+
s3_ObjectRestore_Completed: "s3:ObjectRestore:Completed",
|
|
305
|
+
s3_ObjectRestore_Delete: "s3:ObjectRestore:Delete",
|
|
306
|
+
s3_ObjectRestore_Post: "s3:ObjectRestore:Post",
|
|
307
|
+
s3_ObjectTagging_: "s3:ObjectTagging:*",
|
|
308
|
+
s3_ObjectTagging_Delete: "s3:ObjectTagging:Delete",
|
|
309
|
+
s3_ObjectTagging_Put: "s3:ObjectTagging:Put",
|
|
310
|
+
s3_ReducedRedundancyLostObject: "s3:ReducedRedundancyLostObject",
|
|
311
|
+
s3_Replication_: "s3:Replication:*",
|
|
312
|
+
s3_Replication_OperationFailedReplication: "s3:Replication:OperationFailedReplication",
|
|
313
|
+
s3_Replication_OperationMissedThreshold: "s3:Replication:OperationMissedThreshold",
|
|
314
|
+
s3_Replication_OperationNotTracked: "s3:Replication:OperationNotTracked",
|
|
315
|
+
s3_Replication_OperationReplicatedAfterThreshold: "s3:Replication:OperationReplicatedAfterThreshold",
|
|
316
|
+
};
|
|
317
|
+
export const FilterRuleName = {
|
|
318
|
+
prefix: "prefix",
|
|
319
|
+
suffix: "suffix",
|
|
320
|
+
};
|
|
321
|
+
export const DeleteMarkerReplicationStatus = {
|
|
322
|
+
Disabled: "Disabled",
|
|
323
|
+
Enabled: "Enabled",
|
|
324
|
+
};
|
|
325
|
+
export const MetricsStatus = {
|
|
326
|
+
Disabled: "Disabled",
|
|
327
|
+
Enabled: "Enabled",
|
|
328
|
+
};
|
|
329
|
+
export const ReplicationTimeStatus = {
|
|
330
|
+
Disabled: "Disabled",
|
|
331
|
+
Enabled: "Enabled",
|
|
332
|
+
};
|
|
333
|
+
export const ExistingObjectReplicationStatus = {
|
|
334
|
+
Disabled: "Disabled",
|
|
335
|
+
Enabled: "Enabled",
|
|
336
|
+
};
|
|
337
|
+
export const ReplicaModificationsStatus = {
|
|
338
|
+
Disabled: "Disabled",
|
|
339
|
+
Enabled: "Enabled",
|
|
340
|
+
};
|
|
341
|
+
export const SseKmsEncryptedObjectsStatus = {
|
|
342
|
+
Disabled: "Disabled",
|
|
343
|
+
Enabled: "Enabled",
|
|
344
|
+
};
|
|
345
|
+
export const ReplicationRuleStatus = {
|
|
346
|
+
Disabled: "Disabled",
|
|
347
|
+
Enabled: "Enabled",
|
|
348
|
+
};
|
|
349
|
+
export const Payer = {
|
|
350
|
+
BucketOwner: "BucketOwner",
|
|
351
|
+
Requester: "Requester",
|
|
352
|
+
};
|
|
353
|
+
export const MFADeleteStatus = {
|
|
354
|
+
Disabled: "Disabled",
|
|
355
|
+
Enabled: "Enabled",
|
|
356
|
+
};
|
|
357
|
+
export const BucketVersioningStatus = {
|
|
358
|
+
Enabled: "Enabled",
|
|
359
|
+
Suspended: "Suspended",
|
|
360
|
+
};
|
|
361
|
+
export const Protocol = {
|
|
362
|
+
http: "http",
|
|
363
|
+
https: "https",
|
|
364
|
+
};
|
|
365
|
+
export const ReplicationStatus = {
|
|
366
|
+
COMPLETE: "COMPLETE",
|
|
367
|
+
COMPLETED: "COMPLETED",
|
|
368
|
+
FAILED: "FAILED",
|
|
369
|
+
PENDING: "PENDING",
|
|
370
|
+
REPLICA: "REPLICA",
|
|
371
|
+
};
|
|
372
|
+
export const ChecksumMode = {
|
|
373
|
+
ENABLED: "ENABLED",
|
|
374
|
+
};
|
|
375
|
+
export class InvalidObjectState extends __BaseException {
|
|
376
|
+
constructor(opts) {
|
|
377
|
+
super({
|
|
378
|
+
name: "InvalidObjectState",
|
|
379
|
+
$fault: "client",
|
|
380
|
+
...opts,
|
|
381
|
+
});
|
|
382
|
+
this.name = "InvalidObjectState";
|
|
383
|
+
this.$fault = "client";
|
|
384
|
+
Object.setPrototypeOf(this, InvalidObjectState.prototype);
|
|
385
|
+
this.StorageClass = opts.StorageClass;
|
|
386
|
+
this.AccessTier = opts.AccessTier;
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
export class NoSuchKey extends __BaseException {
|
|
390
|
+
constructor(opts) {
|
|
391
|
+
super({
|
|
392
|
+
name: "NoSuchKey",
|
|
393
|
+
$fault: "client",
|
|
394
|
+
...opts,
|
|
395
|
+
});
|
|
396
|
+
this.name = "NoSuchKey";
|
|
397
|
+
this.$fault = "client";
|
|
398
|
+
Object.setPrototypeOf(this, NoSuchKey.prototype);
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
export const ObjectAttributes = {
|
|
402
|
+
CHECKSUM: "Checksum",
|
|
403
|
+
ETAG: "ETag",
|
|
404
|
+
OBJECT_PARTS: "ObjectParts",
|
|
405
|
+
OBJECT_SIZE: "ObjectSize",
|
|
406
|
+
STORAGE_CLASS: "StorageClass",
|
|
407
|
+
};
|
|
408
|
+
export const ObjectLockEnabled = {
|
|
409
|
+
Enabled: "Enabled",
|
|
410
|
+
};
|
|
411
|
+
export const ObjectLockRetentionMode = {
|
|
412
|
+
COMPLIANCE: "COMPLIANCE",
|
|
413
|
+
GOVERNANCE: "GOVERNANCE",
|
|
414
|
+
};
|
|
415
|
+
export class NotFound extends __BaseException {
|
|
416
|
+
constructor(opts) {
|
|
417
|
+
super({
|
|
418
|
+
name: "NotFound",
|
|
419
|
+
$fault: "client",
|
|
420
|
+
...opts,
|
|
421
|
+
});
|
|
422
|
+
this.name = "NotFound";
|
|
423
|
+
this.$fault = "client";
|
|
424
|
+
Object.setPrototypeOf(this, NotFound.prototype);
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
export const ArchiveStatus = {
|
|
428
|
+
ARCHIVE_ACCESS: "ARCHIVE_ACCESS",
|
|
429
|
+
DEEP_ARCHIVE_ACCESS: "DEEP_ARCHIVE_ACCESS",
|
|
430
|
+
};
|
|
431
|
+
export const EncodingType = {
|
|
432
|
+
url: "url",
|
|
433
|
+
};
|
|
434
|
+
export const ObjectStorageClass = {
|
|
435
|
+
DEEP_ARCHIVE: "DEEP_ARCHIVE",
|
|
436
|
+
EXPRESS_ONEZONE: "EXPRESS_ONEZONE",
|
|
437
|
+
GLACIER: "GLACIER",
|
|
438
|
+
GLACIER_IR: "GLACIER_IR",
|
|
439
|
+
INTELLIGENT_TIERING: "INTELLIGENT_TIERING",
|
|
440
|
+
ONEZONE_IA: "ONEZONE_IA",
|
|
441
|
+
OUTPOSTS: "OUTPOSTS",
|
|
442
|
+
REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY",
|
|
443
|
+
SNOW: "SNOW",
|
|
444
|
+
STANDARD: "STANDARD",
|
|
445
|
+
STANDARD_IA: "STANDARD_IA",
|
|
446
|
+
};
|
|
447
|
+
export const OptionalObjectAttributes = {
|
|
448
|
+
RESTORE_STATUS: "RestoreStatus",
|
|
449
|
+
};
|
|
450
|
+
export const ObjectVersionStorageClass = {
|
|
451
|
+
STANDARD: "STANDARD",
|
|
452
|
+
};
|
|
453
|
+
export const CompleteMultipartUploadOutputFilterSensitiveLog = (obj) => ({
|
|
454
|
+
...obj,
|
|
455
|
+
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
456
|
+
});
|
|
457
|
+
export const CompleteMultipartUploadRequestFilterSensitiveLog = (obj) => ({
|
|
458
|
+
...obj,
|
|
459
|
+
...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }),
|
|
460
|
+
});
|
|
461
|
+
export const CopyObjectOutputFilterSensitiveLog = (obj) => ({
|
|
462
|
+
...obj,
|
|
463
|
+
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
464
|
+
...(obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: SENSITIVE_STRING }),
|
|
465
|
+
});
|
|
466
|
+
export const CopyObjectRequestFilterSensitiveLog = (obj) => ({
|
|
467
|
+
...obj,
|
|
468
|
+
...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }),
|
|
469
|
+
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
470
|
+
...(obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: SENSITIVE_STRING }),
|
|
471
|
+
...(obj.CopySourceSSECustomerKey && { CopySourceSSECustomerKey: SENSITIVE_STRING }),
|
|
472
|
+
});
|
|
473
|
+
export const CreateMultipartUploadOutputFilterSensitiveLog = (obj) => ({
|
|
474
|
+
...obj,
|
|
475
|
+
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
476
|
+
...(obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: SENSITIVE_STRING }),
|
|
477
|
+
});
|
|
478
|
+
export const CreateMultipartUploadRequestFilterSensitiveLog = (obj) => ({
|
|
479
|
+
...obj,
|
|
480
|
+
...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }),
|
|
481
|
+
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
482
|
+
...(obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: SENSITIVE_STRING }),
|
|
483
|
+
});
|
|
484
|
+
export const SessionCredentialsFilterSensitiveLog = (obj) => ({
|
|
485
|
+
...obj,
|
|
486
|
+
...(obj.SecretAccessKey && { SecretAccessKey: SENSITIVE_STRING }),
|
|
487
|
+
...(obj.SessionToken && { SessionToken: SENSITIVE_STRING }),
|
|
488
|
+
});
|
|
489
|
+
export const CreateSessionOutputFilterSensitiveLog = (obj) => ({
|
|
490
|
+
...obj,
|
|
491
|
+
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
492
|
+
...(obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: SENSITIVE_STRING }),
|
|
493
|
+
...(obj.Credentials && { Credentials: SessionCredentialsFilterSensitiveLog(obj.Credentials) }),
|
|
494
|
+
});
|
|
495
|
+
export const CreateSessionRequestFilterSensitiveLog = (obj) => ({
|
|
496
|
+
...obj,
|
|
497
|
+
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
498
|
+
...(obj.SSEKMSEncryptionContext && { SSEKMSEncryptionContext: SENSITIVE_STRING }),
|
|
499
|
+
});
|
|
500
|
+
export const ServerSideEncryptionByDefaultFilterSensitiveLog = (obj) => ({
|
|
501
|
+
...obj,
|
|
502
|
+
...(obj.KMSMasterKeyID && { KMSMasterKeyID: SENSITIVE_STRING }),
|
|
503
|
+
});
|
|
504
|
+
export const ServerSideEncryptionRuleFilterSensitiveLog = (obj) => ({
|
|
505
|
+
...obj,
|
|
506
|
+
...(obj.ApplyServerSideEncryptionByDefault && {
|
|
507
|
+
ApplyServerSideEncryptionByDefault: ServerSideEncryptionByDefaultFilterSensitiveLog(obj.ApplyServerSideEncryptionByDefault),
|
|
508
|
+
}),
|
|
509
|
+
});
|
|
510
|
+
export const ServerSideEncryptionConfigurationFilterSensitiveLog = (obj) => ({
|
|
511
|
+
...obj,
|
|
512
|
+
...(obj.Rules && { Rules: obj.Rules.map((item) => ServerSideEncryptionRuleFilterSensitiveLog(item)) }),
|
|
513
|
+
});
|
|
514
|
+
export const GetBucketEncryptionOutputFilterSensitiveLog = (obj) => ({
|
|
515
|
+
...obj,
|
|
516
|
+
...(obj.ServerSideEncryptionConfiguration && {
|
|
517
|
+
ServerSideEncryptionConfiguration: ServerSideEncryptionConfigurationFilterSensitiveLog(obj.ServerSideEncryptionConfiguration),
|
|
518
|
+
}),
|
|
519
|
+
});
|
|
520
|
+
export const SSEKMSFilterSensitiveLog = (obj) => ({
|
|
521
|
+
...obj,
|
|
522
|
+
...(obj.KeyId && { KeyId: SENSITIVE_STRING }),
|
|
523
|
+
});
|
|
524
|
+
export const InventoryEncryptionFilterSensitiveLog = (obj) => ({
|
|
525
|
+
...obj,
|
|
526
|
+
...(obj.SSEKMS && { SSEKMS: SSEKMSFilterSensitiveLog(obj.SSEKMS) }),
|
|
527
|
+
});
|
|
528
|
+
export const InventoryS3BucketDestinationFilterSensitiveLog = (obj) => ({
|
|
529
|
+
...obj,
|
|
530
|
+
...(obj.Encryption && { Encryption: InventoryEncryptionFilterSensitiveLog(obj.Encryption) }),
|
|
531
|
+
});
|
|
532
|
+
export const InventoryDestinationFilterSensitiveLog = (obj) => ({
|
|
533
|
+
...obj,
|
|
534
|
+
...(obj.S3BucketDestination && {
|
|
535
|
+
S3BucketDestination: InventoryS3BucketDestinationFilterSensitiveLog(obj.S3BucketDestination),
|
|
536
|
+
}),
|
|
537
|
+
});
|
|
538
|
+
export const InventoryConfigurationFilterSensitiveLog = (obj) => ({
|
|
539
|
+
...obj,
|
|
540
|
+
...(obj.Destination && { Destination: InventoryDestinationFilterSensitiveLog(obj.Destination) }),
|
|
541
|
+
});
|
|
542
|
+
export const GetBucketInventoryConfigurationOutputFilterSensitiveLog = (obj) => ({
|
|
543
|
+
...obj,
|
|
544
|
+
...(obj.InventoryConfiguration && {
|
|
545
|
+
InventoryConfiguration: InventoryConfigurationFilterSensitiveLog(obj.InventoryConfiguration),
|
|
546
|
+
}),
|
|
547
|
+
});
|
|
548
|
+
export const GetObjectOutputFilterSensitiveLog = (obj) => ({
|
|
549
|
+
...obj,
|
|
550
|
+
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
551
|
+
});
|
|
552
|
+
export const GetObjectRequestFilterSensitiveLog = (obj) => ({
|
|
553
|
+
...obj,
|
|
554
|
+
...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }),
|
|
555
|
+
});
|
|
556
|
+
export const GetObjectAttributesRequestFilterSensitiveLog = (obj) => ({
|
|
557
|
+
...obj,
|
|
558
|
+
...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }),
|
|
559
|
+
});
|
|
560
|
+
export const GetObjectTorrentOutputFilterSensitiveLog = (obj) => ({
|
|
561
|
+
...obj,
|
|
562
|
+
});
|
|
563
|
+
export const HeadObjectOutputFilterSensitiveLog = (obj) => ({
|
|
564
|
+
...obj,
|
|
565
|
+
...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }),
|
|
566
|
+
});
|
|
567
|
+
export const HeadObjectRequestFilterSensitiveLog = (obj) => ({
|
|
568
|
+
...obj,
|
|
569
|
+
...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }),
|
|
570
|
+
});
|
|
571
|
+
export const ListBucketInventoryConfigurationsOutputFilterSensitiveLog = (obj) => ({
|
|
572
|
+
...obj,
|
|
573
|
+
...(obj.InventoryConfigurationList && {
|
|
574
|
+
InventoryConfigurationList: obj.InventoryConfigurationList.map((item) => InventoryConfigurationFilterSensitiveLog(item)),
|
|
575
|
+
}),
|
|
576
|
+
});
|
|
577
|
+
export const ListPartsRequestFilterSensitiveLog = (obj) => ({
|
|
578
|
+
...obj,
|
|
579
|
+
...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }),
|
|
580
|
+
});
|