@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.
Files changed (500) hide show
  1. package/README.md +9 -0
  2. package/README.zh-CN.md +9 -0
  3. package/client.d.ts +2 -0
  4. package/client.js +1 -0
  5. package/dist/client/FileManagerProvider.d.ts +4 -0
  6. package/dist/client/FileStorage.d.ts +4 -0
  7. package/dist/client/StorageOptions.d.ts +2 -0
  8. package/dist/client/hooks/index.d.ts +1 -0
  9. package/dist/client/hooks/useUploadFiles.d.ts +9 -0
  10. package/dist/client/index.d.ts +7 -0
  11. package/dist/client/index.js +1 -0
  12. package/dist/client/initializers/UploadActionInitializer.d.ts +2 -0
  13. package/dist/client/initializers/index.d.ts +1 -0
  14. package/dist/client/interfaces/attachment.d.ts +103 -0
  15. package/dist/client/locale/index.d.ts +2 -0
  16. package/dist/client/schemas/storage.d.ts +11 -0
  17. package/dist/client/schemas/storageTypes/ali-oss.d.ts +82 -0
  18. package/dist/client/schemas/storageTypes/index.d.ts +284 -0
  19. package/dist/client/schemas/storageTypes/local.d.ts +56 -0
  20. package/dist/client/schemas/storageTypes/s3.d.ts +77 -0
  21. package/dist/client/schemas/storageTypes/tx-cos.d.ts +71 -0
  22. package/dist/client/templates/file.d.ts +133 -0
  23. package/dist/client/templates/index.d.ts +1 -0
  24. package/dist/externalVersion.js +16 -0
  25. package/dist/index.d.ts +2 -0
  26. package/dist/index.js +39 -0
  27. package/dist/locale/en-US.json +22 -0
  28. package/dist/locale/fr-FR.json +21 -0
  29. package/dist/locale/ja-JP.json +18 -0
  30. package/dist/locale/ko_KR.json +32 -0
  31. package/dist/locale/ru-RU.json +18 -0
  32. package/dist/locale/tr-TR.json +17 -0
  33. package/dist/locale/zh-CN.json +32 -0
  34. package/dist/node_modules/@aws-sdk/client-s3/LICENSE +201 -0
  35. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +127 -0
  36. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +33 -0
  37. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +7 -0
  38. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +1 -0
  39. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +47 -0
  40. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +69 -0
  41. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +15 -0
  42. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +46 -0
  43. package/dist/node_modules/@aws-sdk/client-s3/dist-es/S3.js +203 -0
  44. package/dist/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +60 -0
  45. package/dist/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  46. package/dist/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +123 -0
  47. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +28 -0
  48. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +31 -0
  49. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +33 -0
  50. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +31 -0
  51. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +31 -0
  52. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +31 -0
  53. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +29 -0
  54. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +26 -0
  55. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +26 -0
  56. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +26 -0
  57. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +26 -0
  58. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +26 -0
  59. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +26 -0
  60. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +26 -0
  61. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +26 -0
  62. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +26 -0
  63. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +26 -0
  64. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +26 -0
  65. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +26 -0
  66. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +26 -0
  67. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +26 -0
  68. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +28 -0
  69. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +27 -0
  70. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +32 -0
  71. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +26 -0
  72. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +28 -0
  73. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +28 -0
  74. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +28 -0
  75. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +28 -0
  76. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +29 -0
  77. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +28 -0
  78. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +29 -0
  79. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +28 -0
  80. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +28 -0
  81. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +28 -0
  82. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +28 -0
  83. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +28 -0
  84. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +28 -0
  85. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +28 -0
  86. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +28 -0
  87. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +28 -0
  88. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +28 -0
  89. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +28 -0
  90. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +28 -0
  91. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +28 -0
  92. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +28 -0
  93. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +28 -0
  94. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +30 -0
  95. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +37 -0
  96. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +27 -0
  97. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +27 -0
  98. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +27 -0
  99. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +27 -0
  100. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +26 -0
  101. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +28 -0
  102. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +27 -0
  103. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +32 -0
  104. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +28 -0
  105. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +28 -0
  106. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +29 -0
  107. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +27 -0
  108. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +24 -0
  109. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +27 -0
  110. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +28 -0
  111. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +28 -0
  112. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +28 -0
  113. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +28 -0
  114. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +31 -0
  115. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +31 -0
  116. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +31 -0
  117. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +26 -0
  118. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +31 -0
  119. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +32 -0
  120. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +26 -0
  121. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +27 -0
  122. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +33 -0
  123. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +31 -0
  124. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +26 -0
  125. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +26 -0
  126. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +30 -0
  127. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +31 -0
  128. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +31 -0
  129. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +31 -0
  130. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +31 -0
  131. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +31 -0
  132. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +31 -0
  133. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +33 -0
  134. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +37 -0
  135. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +32 -0
  136. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +32 -0
  137. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +32 -0
  138. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +32 -0
  139. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +31 -0
  140. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +33 -0
  141. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +34 -0
  142. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +36 -0
  143. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +31 -0
  144. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +26 -0
  145. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +98 -0
  146. package/dist/node_modules/@aws-sdk/client-s3/dist-es/endpoint/EndpointParameters.js +24 -0
  147. package/dist/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +29 -0
  148. package/dist/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +4 -0
  149. package/dist/node_modules/@aws-sdk/client-s3/dist-es/extensionConfiguration.js +1 -0
  150. package/dist/node_modules/@aws-sdk/client-s3/dist-es/index.js +7 -0
  151. package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/S3ServiceException.js +8 -0
  152. package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/index.js +2 -0
  153. package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/models_0.js +580 -0
  154. package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/models_1.js +198 -0
  155. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/Interfaces.js +1 -0
  156. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListBucketsPaginator.js +4 -0
  157. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListDirectoryBucketsPaginator.js +4 -0
  158. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectsV2Paginator.js +4 -0
  159. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListPartsPaginator.js +4 -0
  160. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +5 -0
  161. package/dist/node_modules/@aws-sdk/client-s3/dist-es/protocols/Aws_restXml.js +7635 -0
  162. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +42 -0
  163. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +64 -0
  164. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.native.js +11 -0
  165. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +42 -0
  166. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeExtensions.js +21 -0
  167. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/index.js +4 -0
  168. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +26 -0
  169. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +25 -0
  170. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +26 -0
  171. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +25 -0
  172. package/dist/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +698 -0
  173. package/dist/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +331 -0
  174. package/dist/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  175. package/dist/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthSchemeProvider.d.ts +69 -0
  176. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +179 -0
  177. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +311 -0
  178. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +348 -0
  179. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +283 -0
  180. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +134 -0
  181. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +399 -0
  182. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +196 -0
  183. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +101 -0
  184. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +138 -0
  185. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +104 -0
  186. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +130 -0
  187. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +94 -0
  188. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +99 -0
  189. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +150 -0
  190. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +95 -0
  191. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +107 -0
  192. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +91 -0
  193. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +147 -0
  194. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +108 -0
  195. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +100 -0
  196. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +107 -0
  197. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +205 -0
  198. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +131 -0
  199. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +317 -0
  200. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +100 -0
  201. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +102 -0
  202. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +115 -0
  203. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +135 -0
  204. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +145 -0
  205. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +143 -0
  206. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +121 -0
  207. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +129 -0
  208. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +254 -0
  209. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +116 -0
  210. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +110 -0
  211. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +111 -0
  212. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +128 -0
  213. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +154 -0
  214. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +99 -0
  215. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +159 -0
  216. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +105 -0
  217. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +195 -0
  218. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +101 -0
  219. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +134 -0
  220. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +115 -0
  221. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +139 -0
  222. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +189 -0
  223. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +326 -0
  224. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +367 -0
  225. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +90 -0
  226. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +94 -0
  227. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +91 -0
  228. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +163 -0
  229. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +107 -0
  230. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +116 -0
  231. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +157 -0
  232. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +315 -0
  233. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +147 -0
  234. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +126 -0
  235. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +142 -0
  236. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +136 -0
  237. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +130 -0
  238. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +107 -0
  239. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +344 -0
  240. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +213 -0
  241. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +196 -0
  242. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +261 -0
  243. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +238 -0
  244. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +115 -0
  245. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +309 -0
  246. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +208 -0
  247. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +193 -0
  248. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +209 -0
  249. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +153 -0
  250. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +185 -0
  251. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +293 -0
  252. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +209 -0
  253. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +141 -0
  254. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +206 -0
  255. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +99 -0
  256. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +162 -0
  257. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +233 -0
  258. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +109 -0
  259. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +163 -0
  260. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +143 -0
  261. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +244 -0
  262. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +307 -0
  263. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +449 -0
  264. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +86 -0
  265. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +109 -0
  266. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +89 -0
  267. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +169 -0
  268. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +117 -0
  269. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +383 -0
  270. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +254 -0
  271. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +307 -0
  272. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +375 -0
  273. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +147 -0
  274. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +98 -0
  275. package/dist/node_modules/@aws-sdk/client-s3/dist-types/endpoint/EndpointParameters.d.ts +83 -0
  276. package/dist/node_modules/@aws-sdk/client-s3/dist-types/endpoint/endpointResolver.d.ts +5 -0
  277. package/dist/node_modules/@aws-sdk/client-s3/dist-types/endpoint/ruleset.d.ts +2 -0
  278. package/dist/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +9 -0
  279. package/dist/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +15 -0
  280. package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/S3ServiceException.d.ts +14 -0
  281. package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/index.d.ts +2 -0
  282. package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +13234 -0
  283. package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +3948 -0
  284. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/Interfaces.d.ts +8 -0
  285. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListBucketsPaginator.d.ts +7 -0
  286. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListDirectoryBucketsPaginator.d.ts +7 -0
  287. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectsV2Paginator.d.ts +7 -0
  288. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListPartsPaginator.d.ts +7 -0
  289. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +5 -0
  290. package/dist/node_modules/@aws-sdk/client-s3/dist-types/protocols/Aws_restXml.d.ts +884 -0
  291. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +68 -0
  292. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +69 -0
  293. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +67 -0
  294. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +28 -0
  295. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeExtensions.d.ts +17 -0
  296. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +1751 -0
  297. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +732 -0
  298. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  299. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +55 -0
  300. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +51 -0
  301. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +51 -0
  302. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +47 -0
  303. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +47 -0
  304. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +47 -0
  305. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +51 -0
  306. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +47 -0
  307. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +47 -0
  308. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +45 -0
  309. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +45 -0
  310. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +46 -0
  311. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +47 -0
  312. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +47 -0
  313. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +46 -0
  314. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +47 -0
  315. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +47 -0
  316. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +47 -0
  317. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +46 -0
  318. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +47 -0
  319. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +46 -0
  320. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +46 -0
  321. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +47 -0
  322. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +51 -0
  323. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +47 -0
  324. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +47 -0
  325. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +51 -0
  326. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +47 -0
  327. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +51 -0
  328. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +47 -0
  329. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +51 -0
  330. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +51 -0
  331. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +51 -0
  332. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +51 -0
  333. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +51 -0
  334. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +50 -0
  335. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +51 -0
  336. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +51 -0
  337. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +51 -0
  338. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +51 -0
  339. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +50 -0
  340. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +51 -0
  341. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +51 -0
  342. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +51 -0
  343. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +50 -0
  344. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +51 -0
  345. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +50 -0
  346. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +47 -0
  347. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +51 -0
  348. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +52 -0
  349. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +51 -0
  350. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +51 -0
  351. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +51 -0
  352. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +50 -0
  353. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +58 -0
  354. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +51 -0
  355. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +47 -0
  356. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +47 -0
  357. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +51 -0
  358. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +51 -0
  359. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +51 -0
  360. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +51 -0
  361. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +47 -0
  362. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +51 -0
  363. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +51 -0
  364. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +51 -0
  365. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +47 -0
  366. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +47 -0
  367. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +47 -0
  368. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +47 -0
  369. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +45 -0
  370. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +47 -0
  371. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +45 -0
  372. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +46 -0
  373. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +47 -0
  374. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +47 -0
  375. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +51 -0
  376. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +45 -0
  377. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +47 -0
  378. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +47 -0
  379. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +47 -0
  380. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +45 -0
  381. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +46 -0
  382. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +47 -0
  383. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +45 -0
  384. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +46 -0
  385. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +45 -0
  386. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +47 -0
  387. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +53 -0
  388. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +51 -0
  389. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +51 -0
  390. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +51 -0
  391. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +50 -0
  392. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +46 -0
  393. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +47 -0
  394. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +51 -0
  395. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +53 -0
  396. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +50 -0
  397. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +54 -0
  398. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +98 -0
  399. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +94 -0
  400. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  401. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  402. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  403. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +10 -0
  404. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +9 -0
  405. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/index.d.ts +2 -0
  406. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +2074 -0
  407. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +742 -0
  408. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  409. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListBucketsPaginator.d.ts +11 -0
  410. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListDirectoryBucketsPaginator.d.ts +11 -0
  411. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectsV2Paginator.d.ts +11 -0
  412. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +11 -0
  413. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +5 -0
  414. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/protocols/Aws_restXml.d.ts +1185 -0
  415. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +145 -0
  416. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +147 -0
  417. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +133 -0
  418. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +36 -0
  419. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  420. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/index.d.ts +4 -0
  421. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +11 -0
  422. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +11 -0
  423. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +11 -0
  424. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +11 -0
  425. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/index.d.ts +4 -0
  426. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +14 -0
  427. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +14 -0
  428. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +14 -0
  429. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +14 -0
  430. package/dist/node_modules/@aws-sdk/client-s3/package.json +1 -0
  431. package/dist/node_modules/mime-match/.travis.yml +11 -0
  432. package/dist/node_modules/mime-match/example.js +17 -0
  433. package/dist/node_modules/mime-match/index.js +1 -0
  434. package/dist/node_modules/mime-match/package.json +1 -0
  435. package/dist/node_modules/mime-match/test.js +45 -0
  436. package/dist/node_modules/mkdirp/LICENSE +21 -0
  437. package/dist/node_modules/mkdirp/bin/cmd.js +33 -0
  438. package/dist/node_modules/mkdirp/bin/usage.txt +12 -0
  439. package/dist/node_modules/mkdirp/index.js +1 -0
  440. package/dist/node_modules/mkdirp/package.json +1 -0
  441. package/dist/node_modules/mkdirp/readme.markdown +100 -0
  442. package/dist/node_modules/multer-aliyun-oss/index.js +74 -0
  443. package/dist/node_modules/multer-aliyun-oss/package.json +1 -0
  444. package/dist/node_modules/multer-cos/LICENSE +24 -0
  445. package/dist/node_modules/multer-cos/demo/index.js +39 -0
  446. package/dist/node_modules/multer-cos/demo/myMulter.js +88 -0
  447. package/dist/node_modules/multer-cos/index.js +220 -0
  448. package/dist/node_modules/multer-cos/package.json +1 -0
  449. package/dist/node_modules/multer-s3/.gitattributes +1 -0
  450. package/dist/node_modules/multer-s3/.travis.yml +6 -0
  451. package/dist/node_modules/multer-s3/LICENSE +22 -0
  452. package/dist/node_modules/multer-s3/index.js +5 -0
  453. package/dist/node_modules/multer-s3/package.json +1 -0
  454. package/dist/node_modules/multer-s3/test/basic.js +293 -0
  455. package/dist/node_modules/multer-s3/test/files/a.txt +1 -0
  456. package/dist/node_modules/multer-s3/test/files/test.svg +3 -0
  457. package/dist/node_modules/multer-s3/test/files/test2.svg +9 -0
  458. package/dist/node_modules/multer-s3/test/util/mock-s3.js +17 -0
  459. package/dist/server/FileModel.d.ts +4 -0
  460. package/dist/server/FileModel.js +45 -0
  461. package/dist/server/actions/attachments.d.ts +3 -0
  462. package/dist/server/actions/attachments.js +183 -0
  463. package/dist/server/actions/index.d.ts +3 -0
  464. package/dist/server/actions/index.js +39 -0
  465. package/dist/server/collections/attachments.d.ts +2 -0
  466. package/dist/server/collections/attachments.js +87 -0
  467. package/dist/server/collections/storages.d.ts +2 -0
  468. package/dist/server/collections/storages.js +85 -0
  469. package/dist/server/constants.d.ts +7 -0
  470. package/dist/server/constants.js +45 -0
  471. package/dist/server/index.d.ts +2 -0
  472. package/dist/server/index.js +39 -0
  473. package/dist/server/migrations/20230831160742-fix-attachment-field.d.ts +5 -0
  474. package/dist/server/migrations/20230831160742-fix-attachment-field.js +62 -0
  475. package/dist/server/migrations/20231120142523-fix-storage.d.ts +5 -0
  476. package/dist/server/migrations/20231120142523-fix-storage.js +63 -0
  477. package/dist/server/migrations/20240306223006-update-target.d.ts +6 -0
  478. package/dist/server/migrations/20240306223006-update-target.js +45 -0
  479. package/dist/server/rules/index.d.ts +1 -0
  480. package/dist/server/rules/index.js +37 -0
  481. package/dist/server/rules/mimetype.d.ts +1 -0
  482. package/dist/server/rules/mimetype.js +36 -0
  483. package/dist/server/server.d.ts +11 -0
  484. package/dist/server/server.js +130 -0
  485. package/dist/server/storages/ali-oss.d.ts +18 -0
  486. package/dist/server/storages/ali-oss.js +55 -0
  487. package/dist/server/storages/index.d.ts +33 -0
  488. package/dist/server/storages/index.js +52 -0
  489. package/dist/server/storages/local.d.ts +16 -0
  490. package/dist/server/storages/local.js +87 -0
  491. package/dist/server/storages/s3.d.ts +19 -0
  492. package/dist/server/storages/s3.js +82 -0
  493. package/dist/server/storages/tx-cos.d.ts +19 -0
  494. package/dist/server/storages/tx-cos.js +61 -0
  495. package/dist/server/utils.d.ts +2 -0
  496. package/dist/server/utils.js +53 -0
  497. package/dist/swagger/index.json +81 -0
  498. package/package.json +46 -0
  499. package/server.d.ts +2 -0
  500. package/server.js +1 -0
@@ -0,0 +1,1751 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ AbortMultipartUploadCommandInput,
4
+ AbortMultipartUploadCommandOutput,
5
+ } from "./commands/AbortMultipartUploadCommand";
6
+ import {
7
+ CompleteMultipartUploadCommandInput,
8
+ CompleteMultipartUploadCommandOutput,
9
+ } from "./commands/CompleteMultipartUploadCommand";
10
+ import {
11
+ CopyObjectCommandInput,
12
+ CopyObjectCommandOutput,
13
+ } from "./commands/CopyObjectCommand";
14
+ import {
15
+ CreateBucketCommandInput,
16
+ CreateBucketCommandOutput,
17
+ } from "./commands/CreateBucketCommand";
18
+ import {
19
+ CreateBucketMetadataTableConfigurationCommandInput,
20
+ CreateBucketMetadataTableConfigurationCommandOutput,
21
+ } from "./commands/CreateBucketMetadataTableConfigurationCommand";
22
+ import {
23
+ CreateMultipartUploadCommandInput,
24
+ CreateMultipartUploadCommandOutput,
25
+ } from "./commands/CreateMultipartUploadCommand";
26
+ import {
27
+ CreateSessionCommandInput,
28
+ CreateSessionCommandOutput,
29
+ } from "./commands/CreateSessionCommand";
30
+ import {
31
+ DeleteBucketAnalyticsConfigurationCommandInput,
32
+ DeleteBucketAnalyticsConfigurationCommandOutput,
33
+ } from "./commands/DeleteBucketAnalyticsConfigurationCommand";
34
+ import {
35
+ DeleteBucketCommandInput,
36
+ DeleteBucketCommandOutput,
37
+ } from "./commands/DeleteBucketCommand";
38
+ import {
39
+ DeleteBucketCorsCommandInput,
40
+ DeleteBucketCorsCommandOutput,
41
+ } from "./commands/DeleteBucketCorsCommand";
42
+ import {
43
+ DeleteBucketEncryptionCommandInput,
44
+ DeleteBucketEncryptionCommandOutput,
45
+ } from "./commands/DeleteBucketEncryptionCommand";
46
+ import {
47
+ DeleteBucketIntelligentTieringConfigurationCommandInput,
48
+ DeleteBucketIntelligentTieringConfigurationCommandOutput,
49
+ } from "./commands/DeleteBucketIntelligentTieringConfigurationCommand";
50
+ import {
51
+ DeleteBucketInventoryConfigurationCommandInput,
52
+ DeleteBucketInventoryConfigurationCommandOutput,
53
+ } from "./commands/DeleteBucketInventoryConfigurationCommand";
54
+ import {
55
+ DeleteBucketLifecycleCommandInput,
56
+ DeleteBucketLifecycleCommandOutput,
57
+ } from "./commands/DeleteBucketLifecycleCommand";
58
+ import {
59
+ DeleteBucketMetadataTableConfigurationCommandInput,
60
+ DeleteBucketMetadataTableConfigurationCommandOutput,
61
+ } from "./commands/DeleteBucketMetadataTableConfigurationCommand";
62
+ import {
63
+ DeleteBucketMetricsConfigurationCommandInput,
64
+ DeleteBucketMetricsConfigurationCommandOutput,
65
+ } from "./commands/DeleteBucketMetricsConfigurationCommand";
66
+ import {
67
+ DeleteBucketOwnershipControlsCommandInput,
68
+ DeleteBucketOwnershipControlsCommandOutput,
69
+ } from "./commands/DeleteBucketOwnershipControlsCommand";
70
+ import {
71
+ DeleteBucketPolicyCommandInput,
72
+ DeleteBucketPolicyCommandOutput,
73
+ } from "./commands/DeleteBucketPolicyCommand";
74
+ import {
75
+ DeleteBucketReplicationCommandInput,
76
+ DeleteBucketReplicationCommandOutput,
77
+ } from "./commands/DeleteBucketReplicationCommand";
78
+ import {
79
+ DeleteBucketTaggingCommandInput,
80
+ DeleteBucketTaggingCommandOutput,
81
+ } from "./commands/DeleteBucketTaggingCommand";
82
+ import {
83
+ DeleteBucketWebsiteCommandInput,
84
+ DeleteBucketWebsiteCommandOutput,
85
+ } from "./commands/DeleteBucketWebsiteCommand";
86
+ import {
87
+ DeleteObjectCommandInput,
88
+ DeleteObjectCommandOutput,
89
+ } from "./commands/DeleteObjectCommand";
90
+ import {
91
+ DeleteObjectsCommandInput,
92
+ DeleteObjectsCommandOutput,
93
+ } from "./commands/DeleteObjectsCommand";
94
+ import {
95
+ DeleteObjectTaggingCommandInput,
96
+ DeleteObjectTaggingCommandOutput,
97
+ } from "./commands/DeleteObjectTaggingCommand";
98
+ import {
99
+ DeletePublicAccessBlockCommandInput,
100
+ DeletePublicAccessBlockCommandOutput,
101
+ } from "./commands/DeletePublicAccessBlockCommand";
102
+ import {
103
+ GetBucketAccelerateConfigurationCommandInput,
104
+ GetBucketAccelerateConfigurationCommandOutput,
105
+ } from "./commands/GetBucketAccelerateConfigurationCommand";
106
+ import {
107
+ GetBucketAclCommandInput,
108
+ GetBucketAclCommandOutput,
109
+ } from "./commands/GetBucketAclCommand";
110
+ import {
111
+ GetBucketAnalyticsConfigurationCommandInput,
112
+ GetBucketAnalyticsConfigurationCommandOutput,
113
+ } from "./commands/GetBucketAnalyticsConfigurationCommand";
114
+ import {
115
+ GetBucketCorsCommandInput,
116
+ GetBucketCorsCommandOutput,
117
+ } from "./commands/GetBucketCorsCommand";
118
+ import {
119
+ GetBucketEncryptionCommandInput,
120
+ GetBucketEncryptionCommandOutput,
121
+ } from "./commands/GetBucketEncryptionCommand";
122
+ import {
123
+ GetBucketIntelligentTieringConfigurationCommandInput,
124
+ GetBucketIntelligentTieringConfigurationCommandOutput,
125
+ } from "./commands/GetBucketIntelligentTieringConfigurationCommand";
126
+ import {
127
+ GetBucketInventoryConfigurationCommandInput,
128
+ GetBucketInventoryConfigurationCommandOutput,
129
+ } from "./commands/GetBucketInventoryConfigurationCommand";
130
+ import {
131
+ GetBucketLifecycleConfigurationCommandInput,
132
+ GetBucketLifecycleConfigurationCommandOutput,
133
+ } from "./commands/GetBucketLifecycleConfigurationCommand";
134
+ import {
135
+ GetBucketLocationCommandInput,
136
+ GetBucketLocationCommandOutput,
137
+ } from "./commands/GetBucketLocationCommand";
138
+ import {
139
+ GetBucketLoggingCommandInput,
140
+ GetBucketLoggingCommandOutput,
141
+ } from "./commands/GetBucketLoggingCommand";
142
+ import {
143
+ GetBucketMetadataTableConfigurationCommandInput,
144
+ GetBucketMetadataTableConfigurationCommandOutput,
145
+ } from "./commands/GetBucketMetadataTableConfigurationCommand";
146
+ import {
147
+ GetBucketMetricsConfigurationCommandInput,
148
+ GetBucketMetricsConfigurationCommandOutput,
149
+ } from "./commands/GetBucketMetricsConfigurationCommand";
150
+ import {
151
+ GetBucketNotificationConfigurationCommandInput,
152
+ GetBucketNotificationConfigurationCommandOutput,
153
+ } from "./commands/GetBucketNotificationConfigurationCommand";
154
+ import {
155
+ GetBucketOwnershipControlsCommandInput,
156
+ GetBucketOwnershipControlsCommandOutput,
157
+ } from "./commands/GetBucketOwnershipControlsCommand";
158
+ import {
159
+ GetBucketPolicyCommandInput,
160
+ GetBucketPolicyCommandOutput,
161
+ } from "./commands/GetBucketPolicyCommand";
162
+ import {
163
+ GetBucketPolicyStatusCommandInput,
164
+ GetBucketPolicyStatusCommandOutput,
165
+ } from "./commands/GetBucketPolicyStatusCommand";
166
+ import {
167
+ GetBucketReplicationCommandInput,
168
+ GetBucketReplicationCommandOutput,
169
+ } from "./commands/GetBucketReplicationCommand";
170
+ import {
171
+ GetBucketRequestPaymentCommandInput,
172
+ GetBucketRequestPaymentCommandOutput,
173
+ } from "./commands/GetBucketRequestPaymentCommand";
174
+ import {
175
+ GetBucketTaggingCommandInput,
176
+ GetBucketTaggingCommandOutput,
177
+ } from "./commands/GetBucketTaggingCommand";
178
+ import {
179
+ GetBucketVersioningCommandInput,
180
+ GetBucketVersioningCommandOutput,
181
+ } from "./commands/GetBucketVersioningCommand";
182
+ import {
183
+ GetBucketWebsiteCommandInput,
184
+ GetBucketWebsiteCommandOutput,
185
+ } from "./commands/GetBucketWebsiteCommand";
186
+ import {
187
+ GetObjectAclCommandInput,
188
+ GetObjectAclCommandOutput,
189
+ } from "./commands/GetObjectAclCommand";
190
+ import {
191
+ GetObjectAttributesCommandInput,
192
+ GetObjectAttributesCommandOutput,
193
+ } from "./commands/GetObjectAttributesCommand";
194
+ import {
195
+ GetObjectCommandInput,
196
+ GetObjectCommandOutput,
197
+ } from "./commands/GetObjectCommand";
198
+ import {
199
+ GetObjectLegalHoldCommandInput,
200
+ GetObjectLegalHoldCommandOutput,
201
+ } from "./commands/GetObjectLegalHoldCommand";
202
+ import {
203
+ GetObjectLockConfigurationCommandInput,
204
+ GetObjectLockConfigurationCommandOutput,
205
+ } from "./commands/GetObjectLockConfigurationCommand";
206
+ import {
207
+ GetObjectRetentionCommandInput,
208
+ GetObjectRetentionCommandOutput,
209
+ } from "./commands/GetObjectRetentionCommand";
210
+ import {
211
+ GetObjectTaggingCommandInput,
212
+ GetObjectTaggingCommandOutput,
213
+ } from "./commands/GetObjectTaggingCommand";
214
+ import {
215
+ GetObjectTorrentCommandInput,
216
+ GetObjectTorrentCommandOutput,
217
+ } from "./commands/GetObjectTorrentCommand";
218
+ import {
219
+ GetPublicAccessBlockCommandInput,
220
+ GetPublicAccessBlockCommandOutput,
221
+ } from "./commands/GetPublicAccessBlockCommand";
222
+ import {
223
+ HeadBucketCommandInput,
224
+ HeadBucketCommandOutput,
225
+ } from "./commands/HeadBucketCommand";
226
+ import {
227
+ HeadObjectCommandInput,
228
+ HeadObjectCommandOutput,
229
+ } from "./commands/HeadObjectCommand";
230
+ import {
231
+ ListBucketAnalyticsConfigurationsCommandInput,
232
+ ListBucketAnalyticsConfigurationsCommandOutput,
233
+ } from "./commands/ListBucketAnalyticsConfigurationsCommand";
234
+ import {
235
+ ListBucketIntelligentTieringConfigurationsCommandInput,
236
+ ListBucketIntelligentTieringConfigurationsCommandOutput,
237
+ } from "./commands/ListBucketIntelligentTieringConfigurationsCommand";
238
+ import {
239
+ ListBucketInventoryConfigurationsCommandInput,
240
+ ListBucketInventoryConfigurationsCommandOutput,
241
+ } from "./commands/ListBucketInventoryConfigurationsCommand";
242
+ import {
243
+ ListBucketMetricsConfigurationsCommandInput,
244
+ ListBucketMetricsConfigurationsCommandOutput,
245
+ } from "./commands/ListBucketMetricsConfigurationsCommand";
246
+ import {
247
+ ListBucketsCommandInput,
248
+ ListBucketsCommandOutput,
249
+ } from "./commands/ListBucketsCommand";
250
+ import {
251
+ ListDirectoryBucketsCommandInput,
252
+ ListDirectoryBucketsCommandOutput,
253
+ } from "./commands/ListDirectoryBucketsCommand";
254
+ import {
255
+ ListMultipartUploadsCommandInput,
256
+ ListMultipartUploadsCommandOutput,
257
+ } from "./commands/ListMultipartUploadsCommand";
258
+ import {
259
+ ListObjectsCommandInput,
260
+ ListObjectsCommandOutput,
261
+ } from "./commands/ListObjectsCommand";
262
+ import {
263
+ ListObjectsV2CommandInput,
264
+ ListObjectsV2CommandOutput,
265
+ } from "./commands/ListObjectsV2Command";
266
+ import {
267
+ ListObjectVersionsCommandInput,
268
+ ListObjectVersionsCommandOutput,
269
+ } from "./commands/ListObjectVersionsCommand";
270
+ import {
271
+ ListPartsCommandInput,
272
+ ListPartsCommandOutput,
273
+ } from "./commands/ListPartsCommand";
274
+ import {
275
+ PutBucketAccelerateConfigurationCommandInput,
276
+ PutBucketAccelerateConfigurationCommandOutput,
277
+ } from "./commands/PutBucketAccelerateConfigurationCommand";
278
+ import {
279
+ PutBucketAclCommandInput,
280
+ PutBucketAclCommandOutput,
281
+ } from "./commands/PutBucketAclCommand";
282
+ import {
283
+ PutBucketAnalyticsConfigurationCommandInput,
284
+ PutBucketAnalyticsConfigurationCommandOutput,
285
+ } from "./commands/PutBucketAnalyticsConfigurationCommand";
286
+ import {
287
+ PutBucketCorsCommandInput,
288
+ PutBucketCorsCommandOutput,
289
+ } from "./commands/PutBucketCorsCommand";
290
+ import {
291
+ PutBucketEncryptionCommandInput,
292
+ PutBucketEncryptionCommandOutput,
293
+ } from "./commands/PutBucketEncryptionCommand";
294
+ import {
295
+ PutBucketIntelligentTieringConfigurationCommandInput,
296
+ PutBucketIntelligentTieringConfigurationCommandOutput,
297
+ } from "./commands/PutBucketIntelligentTieringConfigurationCommand";
298
+ import {
299
+ PutBucketInventoryConfigurationCommandInput,
300
+ PutBucketInventoryConfigurationCommandOutput,
301
+ } from "./commands/PutBucketInventoryConfigurationCommand";
302
+ import {
303
+ PutBucketLifecycleConfigurationCommandInput,
304
+ PutBucketLifecycleConfigurationCommandOutput,
305
+ } from "./commands/PutBucketLifecycleConfigurationCommand";
306
+ import {
307
+ PutBucketLoggingCommandInput,
308
+ PutBucketLoggingCommandOutput,
309
+ } from "./commands/PutBucketLoggingCommand";
310
+ import {
311
+ PutBucketMetricsConfigurationCommandInput,
312
+ PutBucketMetricsConfigurationCommandOutput,
313
+ } from "./commands/PutBucketMetricsConfigurationCommand";
314
+ import {
315
+ PutBucketNotificationConfigurationCommandInput,
316
+ PutBucketNotificationConfigurationCommandOutput,
317
+ } from "./commands/PutBucketNotificationConfigurationCommand";
318
+ import {
319
+ PutBucketOwnershipControlsCommandInput,
320
+ PutBucketOwnershipControlsCommandOutput,
321
+ } from "./commands/PutBucketOwnershipControlsCommand";
322
+ import {
323
+ PutBucketPolicyCommandInput,
324
+ PutBucketPolicyCommandOutput,
325
+ } from "./commands/PutBucketPolicyCommand";
326
+ import {
327
+ PutBucketReplicationCommandInput,
328
+ PutBucketReplicationCommandOutput,
329
+ } from "./commands/PutBucketReplicationCommand";
330
+ import {
331
+ PutBucketRequestPaymentCommandInput,
332
+ PutBucketRequestPaymentCommandOutput,
333
+ } from "./commands/PutBucketRequestPaymentCommand";
334
+ import {
335
+ PutBucketTaggingCommandInput,
336
+ PutBucketTaggingCommandOutput,
337
+ } from "./commands/PutBucketTaggingCommand";
338
+ import {
339
+ PutBucketVersioningCommandInput,
340
+ PutBucketVersioningCommandOutput,
341
+ } from "./commands/PutBucketVersioningCommand";
342
+ import {
343
+ PutBucketWebsiteCommandInput,
344
+ PutBucketWebsiteCommandOutput,
345
+ } from "./commands/PutBucketWebsiteCommand";
346
+ import {
347
+ PutObjectAclCommandInput,
348
+ PutObjectAclCommandOutput,
349
+ } from "./commands/PutObjectAclCommand";
350
+ import {
351
+ PutObjectCommandInput,
352
+ PutObjectCommandOutput,
353
+ } from "./commands/PutObjectCommand";
354
+ import {
355
+ PutObjectLegalHoldCommandInput,
356
+ PutObjectLegalHoldCommandOutput,
357
+ } from "./commands/PutObjectLegalHoldCommand";
358
+ import {
359
+ PutObjectLockConfigurationCommandInput,
360
+ PutObjectLockConfigurationCommandOutput,
361
+ } from "./commands/PutObjectLockConfigurationCommand";
362
+ import {
363
+ PutObjectRetentionCommandInput,
364
+ PutObjectRetentionCommandOutput,
365
+ } from "./commands/PutObjectRetentionCommand";
366
+ import {
367
+ PutObjectTaggingCommandInput,
368
+ PutObjectTaggingCommandOutput,
369
+ } from "./commands/PutObjectTaggingCommand";
370
+ import {
371
+ PutPublicAccessBlockCommandInput,
372
+ PutPublicAccessBlockCommandOutput,
373
+ } from "./commands/PutPublicAccessBlockCommand";
374
+ import {
375
+ RestoreObjectCommandInput,
376
+ RestoreObjectCommandOutput,
377
+ } from "./commands/RestoreObjectCommand";
378
+ import {
379
+ SelectObjectContentCommandInput,
380
+ SelectObjectContentCommandOutput,
381
+ } from "./commands/SelectObjectContentCommand";
382
+ import {
383
+ UploadPartCommandInput,
384
+ UploadPartCommandOutput,
385
+ } from "./commands/UploadPartCommand";
386
+ import {
387
+ UploadPartCopyCommandInput,
388
+ UploadPartCopyCommandOutput,
389
+ } from "./commands/UploadPartCopyCommand";
390
+ import {
391
+ WriteGetObjectResponseCommandInput,
392
+ WriteGetObjectResponseCommandOutput,
393
+ } from "./commands/WriteGetObjectResponseCommand";
394
+ import { S3Client } from "./S3Client";
395
+ export interface S3 {
396
+ abortMultipartUpload(
397
+ args: AbortMultipartUploadCommandInput,
398
+ options?: __HttpHandlerOptions
399
+ ): Promise<AbortMultipartUploadCommandOutput>;
400
+ abortMultipartUpload(
401
+ args: AbortMultipartUploadCommandInput,
402
+ cb: (err: any, data?: AbortMultipartUploadCommandOutput) => void
403
+ ): void;
404
+ abortMultipartUpload(
405
+ args: AbortMultipartUploadCommandInput,
406
+ options: __HttpHandlerOptions,
407
+ cb: (err: any, data?: AbortMultipartUploadCommandOutput) => void
408
+ ): void;
409
+ completeMultipartUpload(
410
+ args: CompleteMultipartUploadCommandInput,
411
+ options?: __HttpHandlerOptions
412
+ ): Promise<CompleteMultipartUploadCommandOutput>;
413
+ completeMultipartUpload(
414
+ args: CompleteMultipartUploadCommandInput,
415
+ cb: (err: any, data?: CompleteMultipartUploadCommandOutput) => void
416
+ ): void;
417
+ completeMultipartUpload(
418
+ args: CompleteMultipartUploadCommandInput,
419
+ options: __HttpHandlerOptions,
420
+ cb: (err: any, data?: CompleteMultipartUploadCommandOutput) => void
421
+ ): void;
422
+ copyObject(
423
+ args: CopyObjectCommandInput,
424
+ options?: __HttpHandlerOptions
425
+ ): Promise<CopyObjectCommandOutput>;
426
+ copyObject(
427
+ args: CopyObjectCommandInput,
428
+ cb: (err: any, data?: CopyObjectCommandOutput) => void
429
+ ): void;
430
+ copyObject(
431
+ args: CopyObjectCommandInput,
432
+ options: __HttpHandlerOptions,
433
+ cb: (err: any, data?: CopyObjectCommandOutput) => void
434
+ ): void;
435
+ createBucket(
436
+ args: CreateBucketCommandInput,
437
+ options?: __HttpHandlerOptions
438
+ ): Promise<CreateBucketCommandOutput>;
439
+ createBucket(
440
+ args: CreateBucketCommandInput,
441
+ cb: (err: any, data?: CreateBucketCommandOutput) => void
442
+ ): void;
443
+ createBucket(
444
+ args: CreateBucketCommandInput,
445
+ options: __HttpHandlerOptions,
446
+ cb: (err: any, data?: CreateBucketCommandOutput) => void
447
+ ): void;
448
+ createBucketMetadataTableConfiguration(
449
+ args: CreateBucketMetadataTableConfigurationCommandInput,
450
+ options?: __HttpHandlerOptions
451
+ ): Promise<CreateBucketMetadataTableConfigurationCommandOutput>;
452
+ createBucketMetadataTableConfiguration(
453
+ args: CreateBucketMetadataTableConfigurationCommandInput,
454
+ cb: (
455
+ err: any,
456
+ data?: CreateBucketMetadataTableConfigurationCommandOutput
457
+ ) => void
458
+ ): void;
459
+ createBucketMetadataTableConfiguration(
460
+ args: CreateBucketMetadataTableConfigurationCommandInput,
461
+ options: __HttpHandlerOptions,
462
+ cb: (
463
+ err: any,
464
+ data?: CreateBucketMetadataTableConfigurationCommandOutput
465
+ ) => void
466
+ ): void;
467
+ createMultipartUpload(
468
+ args: CreateMultipartUploadCommandInput,
469
+ options?: __HttpHandlerOptions
470
+ ): Promise<CreateMultipartUploadCommandOutput>;
471
+ createMultipartUpload(
472
+ args: CreateMultipartUploadCommandInput,
473
+ cb: (err: any, data?: CreateMultipartUploadCommandOutput) => void
474
+ ): void;
475
+ createMultipartUpload(
476
+ args: CreateMultipartUploadCommandInput,
477
+ options: __HttpHandlerOptions,
478
+ cb: (err: any, data?: CreateMultipartUploadCommandOutput) => void
479
+ ): void;
480
+ createSession(
481
+ args: CreateSessionCommandInput,
482
+ options?: __HttpHandlerOptions
483
+ ): Promise<CreateSessionCommandOutput>;
484
+ createSession(
485
+ args: CreateSessionCommandInput,
486
+ cb: (err: any, data?: CreateSessionCommandOutput) => void
487
+ ): void;
488
+ createSession(
489
+ args: CreateSessionCommandInput,
490
+ options: __HttpHandlerOptions,
491
+ cb: (err: any, data?: CreateSessionCommandOutput) => void
492
+ ): void;
493
+ deleteBucket(
494
+ args: DeleteBucketCommandInput,
495
+ options?: __HttpHandlerOptions
496
+ ): Promise<DeleteBucketCommandOutput>;
497
+ deleteBucket(
498
+ args: DeleteBucketCommandInput,
499
+ cb: (err: any, data?: DeleteBucketCommandOutput) => void
500
+ ): void;
501
+ deleteBucket(
502
+ args: DeleteBucketCommandInput,
503
+ options: __HttpHandlerOptions,
504
+ cb: (err: any, data?: DeleteBucketCommandOutput) => void
505
+ ): void;
506
+ deleteBucketAnalyticsConfiguration(
507
+ args: DeleteBucketAnalyticsConfigurationCommandInput,
508
+ options?: __HttpHandlerOptions
509
+ ): Promise<DeleteBucketAnalyticsConfigurationCommandOutput>;
510
+ deleteBucketAnalyticsConfiguration(
511
+ args: DeleteBucketAnalyticsConfigurationCommandInput,
512
+ cb: (
513
+ err: any,
514
+ data?: DeleteBucketAnalyticsConfigurationCommandOutput
515
+ ) => void
516
+ ): void;
517
+ deleteBucketAnalyticsConfiguration(
518
+ args: DeleteBucketAnalyticsConfigurationCommandInput,
519
+ options: __HttpHandlerOptions,
520
+ cb: (
521
+ err: any,
522
+ data?: DeleteBucketAnalyticsConfigurationCommandOutput
523
+ ) => void
524
+ ): void;
525
+ deleteBucketCors(
526
+ args: DeleteBucketCorsCommandInput,
527
+ options?: __HttpHandlerOptions
528
+ ): Promise<DeleteBucketCorsCommandOutput>;
529
+ deleteBucketCors(
530
+ args: DeleteBucketCorsCommandInput,
531
+ cb: (err: any, data?: DeleteBucketCorsCommandOutput) => void
532
+ ): void;
533
+ deleteBucketCors(
534
+ args: DeleteBucketCorsCommandInput,
535
+ options: __HttpHandlerOptions,
536
+ cb: (err: any, data?: DeleteBucketCorsCommandOutput) => void
537
+ ): void;
538
+ deleteBucketEncryption(
539
+ args: DeleteBucketEncryptionCommandInput,
540
+ options?: __HttpHandlerOptions
541
+ ): Promise<DeleteBucketEncryptionCommandOutput>;
542
+ deleteBucketEncryption(
543
+ args: DeleteBucketEncryptionCommandInput,
544
+ cb: (err: any, data?: DeleteBucketEncryptionCommandOutput) => void
545
+ ): void;
546
+ deleteBucketEncryption(
547
+ args: DeleteBucketEncryptionCommandInput,
548
+ options: __HttpHandlerOptions,
549
+ cb: (err: any, data?: DeleteBucketEncryptionCommandOutput) => void
550
+ ): void;
551
+ deleteBucketIntelligentTieringConfiguration(
552
+ args: DeleteBucketIntelligentTieringConfigurationCommandInput,
553
+ options?: __HttpHandlerOptions
554
+ ): Promise<DeleteBucketIntelligentTieringConfigurationCommandOutput>;
555
+ deleteBucketIntelligentTieringConfiguration(
556
+ args: DeleteBucketIntelligentTieringConfigurationCommandInput,
557
+ cb: (
558
+ err: any,
559
+ data?: DeleteBucketIntelligentTieringConfigurationCommandOutput
560
+ ) => void
561
+ ): void;
562
+ deleteBucketIntelligentTieringConfiguration(
563
+ args: DeleteBucketIntelligentTieringConfigurationCommandInput,
564
+ options: __HttpHandlerOptions,
565
+ cb: (
566
+ err: any,
567
+ data?: DeleteBucketIntelligentTieringConfigurationCommandOutput
568
+ ) => void
569
+ ): void;
570
+ deleteBucketInventoryConfiguration(
571
+ args: DeleteBucketInventoryConfigurationCommandInput,
572
+ options?: __HttpHandlerOptions
573
+ ): Promise<DeleteBucketInventoryConfigurationCommandOutput>;
574
+ deleteBucketInventoryConfiguration(
575
+ args: DeleteBucketInventoryConfigurationCommandInput,
576
+ cb: (
577
+ err: any,
578
+ data?: DeleteBucketInventoryConfigurationCommandOutput
579
+ ) => void
580
+ ): void;
581
+ deleteBucketInventoryConfiguration(
582
+ args: DeleteBucketInventoryConfigurationCommandInput,
583
+ options: __HttpHandlerOptions,
584
+ cb: (
585
+ err: any,
586
+ data?: DeleteBucketInventoryConfigurationCommandOutput
587
+ ) => void
588
+ ): void;
589
+ deleteBucketLifecycle(
590
+ args: DeleteBucketLifecycleCommandInput,
591
+ options?: __HttpHandlerOptions
592
+ ): Promise<DeleteBucketLifecycleCommandOutput>;
593
+ deleteBucketLifecycle(
594
+ args: DeleteBucketLifecycleCommandInput,
595
+ cb: (err: any, data?: DeleteBucketLifecycleCommandOutput) => void
596
+ ): void;
597
+ deleteBucketLifecycle(
598
+ args: DeleteBucketLifecycleCommandInput,
599
+ options: __HttpHandlerOptions,
600
+ cb: (err: any, data?: DeleteBucketLifecycleCommandOutput) => void
601
+ ): void;
602
+ deleteBucketMetadataTableConfiguration(
603
+ args: DeleteBucketMetadataTableConfigurationCommandInput,
604
+ options?: __HttpHandlerOptions
605
+ ): Promise<DeleteBucketMetadataTableConfigurationCommandOutput>;
606
+ deleteBucketMetadataTableConfiguration(
607
+ args: DeleteBucketMetadataTableConfigurationCommandInput,
608
+ cb: (
609
+ err: any,
610
+ data?: DeleteBucketMetadataTableConfigurationCommandOutput
611
+ ) => void
612
+ ): void;
613
+ deleteBucketMetadataTableConfiguration(
614
+ args: DeleteBucketMetadataTableConfigurationCommandInput,
615
+ options: __HttpHandlerOptions,
616
+ cb: (
617
+ err: any,
618
+ data?: DeleteBucketMetadataTableConfigurationCommandOutput
619
+ ) => void
620
+ ): void;
621
+ deleteBucketMetricsConfiguration(
622
+ args: DeleteBucketMetricsConfigurationCommandInput,
623
+ options?: __HttpHandlerOptions
624
+ ): Promise<DeleteBucketMetricsConfigurationCommandOutput>;
625
+ deleteBucketMetricsConfiguration(
626
+ args: DeleteBucketMetricsConfigurationCommandInput,
627
+ cb: (err: any, data?: DeleteBucketMetricsConfigurationCommandOutput) => void
628
+ ): void;
629
+ deleteBucketMetricsConfiguration(
630
+ args: DeleteBucketMetricsConfigurationCommandInput,
631
+ options: __HttpHandlerOptions,
632
+ cb: (err: any, data?: DeleteBucketMetricsConfigurationCommandOutput) => void
633
+ ): void;
634
+ deleteBucketOwnershipControls(
635
+ args: DeleteBucketOwnershipControlsCommandInput,
636
+ options?: __HttpHandlerOptions
637
+ ): Promise<DeleteBucketOwnershipControlsCommandOutput>;
638
+ deleteBucketOwnershipControls(
639
+ args: DeleteBucketOwnershipControlsCommandInput,
640
+ cb: (err: any, data?: DeleteBucketOwnershipControlsCommandOutput) => void
641
+ ): void;
642
+ deleteBucketOwnershipControls(
643
+ args: DeleteBucketOwnershipControlsCommandInput,
644
+ options: __HttpHandlerOptions,
645
+ cb: (err: any, data?: DeleteBucketOwnershipControlsCommandOutput) => void
646
+ ): void;
647
+ deleteBucketPolicy(
648
+ args: DeleteBucketPolicyCommandInput,
649
+ options?: __HttpHandlerOptions
650
+ ): Promise<DeleteBucketPolicyCommandOutput>;
651
+ deleteBucketPolicy(
652
+ args: DeleteBucketPolicyCommandInput,
653
+ cb: (err: any, data?: DeleteBucketPolicyCommandOutput) => void
654
+ ): void;
655
+ deleteBucketPolicy(
656
+ args: DeleteBucketPolicyCommandInput,
657
+ options: __HttpHandlerOptions,
658
+ cb: (err: any, data?: DeleteBucketPolicyCommandOutput) => void
659
+ ): void;
660
+ deleteBucketReplication(
661
+ args: DeleteBucketReplicationCommandInput,
662
+ options?: __HttpHandlerOptions
663
+ ): Promise<DeleteBucketReplicationCommandOutput>;
664
+ deleteBucketReplication(
665
+ args: DeleteBucketReplicationCommandInput,
666
+ cb: (err: any, data?: DeleteBucketReplicationCommandOutput) => void
667
+ ): void;
668
+ deleteBucketReplication(
669
+ args: DeleteBucketReplicationCommandInput,
670
+ options: __HttpHandlerOptions,
671
+ cb: (err: any, data?: DeleteBucketReplicationCommandOutput) => void
672
+ ): void;
673
+ deleteBucketTagging(
674
+ args: DeleteBucketTaggingCommandInput,
675
+ options?: __HttpHandlerOptions
676
+ ): Promise<DeleteBucketTaggingCommandOutput>;
677
+ deleteBucketTagging(
678
+ args: DeleteBucketTaggingCommandInput,
679
+ cb: (err: any, data?: DeleteBucketTaggingCommandOutput) => void
680
+ ): void;
681
+ deleteBucketTagging(
682
+ args: DeleteBucketTaggingCommandInput,
683
+ options: __HttpHandlerOptions,
684
+ cb: (err: any, data?: DeleteBucketTaggingCommandOutput) => void
685
+ ): void;
686
+ deleteBucketWebsite(
687
+ args: DeleteBucketWebsiteCommandInput,
688
+ options?: __HttpHandlerOptions
689
+ ): Promise<DeleteBucketWebsiteCommandOutput>;
690
+ deleteBucketWebsite(
691
+ args: DeleteBucketWebsiteCommandInput,
692
+ cb: (err: any, data?: DeleteBucketWebsiteCommandOutput) => void
693
+ ): void;
694
+ deleteBucketWebsite(
695
+ args: DeleteBucketWebsiteCommandInput,
696
+ options: __HttpHandlerOptions,
697
+ cb: (err: any, data?: DeleteBucketWebsiteCommandOutput) => void
698
+ ): void;
699
+ deleteObject(
700
+ args: DeleteObjectCommandInput,
701
+ options?: __HttpHandlerOptions
702
+ ): Promise<DeleteObjectCommandOutput>;
703
+ deleteObject(
704
+ args: DeleteObjectCommandInput,
705
+ cb: (err: any, data?: DeleteObjectCommandOutput) => void
706
+ ): void;
707
+ deleteObject(
708
+ args: DeleteObjectCommandInput,
709
+ options: __HttpHandlerOptions,
710
+ cb: (err: any, data?: DeleteObjectCommandOutput) => void
711
+ ): void;
712
+ deleteObjects(
713
+ args: DeleteObjectsCommandInput,
714
+ options?: __HttpHandlerOptions
715
+ ): Promise<DeleteObjectsCommandOutput>;
716
+ deleteObjects(
717
+ args: DeleteObjectsCommandInput,
718
+ cb: (err: any, data?: DeleteObjectsCommandOutput) => void
719
+ ): void;
720
+ deleteObjects(
721
+ args: DeleteObjectsCommandInput,
722
+ options: __HttpHandlerOptions,
723
+ cb: (err: any, data?: DeleteObjectsCommandOutput) => void
724
+ ): void;
725
+ deleteObjectTagging(
726
+ args: DeleteObjectTaggingCommandInput,
727
+ options?: __HttpHandlerOptions
728
+ ): Promise<DeleteObjectTaggingCommandOutput>;
729
+ deleteObjectTagging(
730
+ args: DeleteObjectTaggingCommandInput,
731
+ cb: (err: any, data?: DeleteObjectTaggingCommandOutput) => void
732
+ ): void;
733
+ deleteObjectTagging(
734
+ args: DeleteObjectTaggingCommandInput,
735
+ options: __HttpHandlerOptions,
736
+ cb: (err: any, data?: DeleteObjectTaggingCommandOutput) => void
737
+ ): void;
738
+ deletePublicAccessBlock(
739
+ args: DeletePublicAccessBlockCommandInput,
740
+ options?: __HttpHandlerOptions
741
+ ): Promise<DeletePublicAccessBlockCommandOutput>;
742
+ deletePublicAccessBlock(
743
+ args: DeletePublicAccessBlockCommandInput,
744
+ cb: (err: any, data?: DeletePublicAccessBlockCommandOutput) => void
745
+ ): void;
746
+ deletePublicAccessBlock(
747
+ args: DeletePublicAccessBlockCommandInput,
748
+ options: __HttpHandlerOptions,
749
+ cb: (err: any, data?: DeletePublicAccessBlockCommandOutput) => void
750
+ ): void;
751
+ getBucketAccelerateConfiguration(
752
+ args: GetBucketAccelerateConfigurationCommandInput,
753
+ options?: __HttpHandlerOptions
754
+ ): Promise<GetBucketAccelerateConfigurationCommandOutput>;
755
+ getBucketAccelerateConfiguration(
756
+ args: GetBucketAccelerateConfigurationCommandInput,
757
+ cb: (err: any, data?: GetBucketAccelerateConfigurationCommandOutput) => void
758
+ ): void;
759
+ getBucketAccelerateConfiguration(
760
+ args: GetBucketAccelerateConfigurationCommandInput,
761
+ options: __HttpHandlerOptions,
762
+ cb: (err: any, data?: GetBucketAccelerateConfigurationCommandOutput) => void
763
+ ): void;
764
+ getBucketAcl(
765
+ args: GetBucketAclCommandInput,
766
+ options?: __HttpHandlerOptions
767
+ ): Promise<GetBucketAclCommandOutput>;
768
+ getBucketAcl(
769
+ args: GetBucketAclCommandInput,
770
+ cb: (err: any, data?: GetBucketAclCommandOutput) => void
771
+ ): void;
772
+ getBucketAcl(
773
+ args: GetBucketAclCommandInput,
774
+ options: __HttpHandlerOptions,
775
+ cb: (err: any, data?: GetBucketAclCommandOutput) => void
776
+ ): void;
777
+ getBucketAnalyticsConfiguration(
778
+ args: GetBucketAnalyticsConfigurationCommandInput,
779
+ options?: __HttpHandlerOptions
780
+ ): Promise<GetBucketAnalyticsConfigurationCommandOutput>;
781
+ getBucketAnalyticsConfiguration(
782
+ args: GetBucketAnalyticsConfigurationCommandInput,
783
+ cb: (err: any, data?: GetBucketAnalyticsConfigurationCommandOutput) => void
784
+ ): void;
785
+ getBucketAnalyticsConfiguration(
786
+ args: GetBucketAnalyticsConfigurationCommandInput,
787
+ options: __HttpHandlerOptions,
788
+ cb: (err: any, data?: GetBucketAnalyticsConfigurationCommandOutput) => void
789
+ ): void;
790
+ getBucketCors(
791
+ args: GetBucketCorsCommandInput,
792
+ options?: __HttpHandlerOptions
793
+ ): Promise<GetBucketCorsCommandOutput>;
794
+ getBucketCors(
795
+ args: GetBucketCorsCommandInput,
796
+ cb: (err: any, data?: GetBucketCorsCommandOutput) => void
797
+ ): void;
798
+ getBucketCors(
799
+ args: GetBucketCorsCommandInput,
800
+ options: __HttpHandlerOptions,
801
+ cb: (err: any, data?: GetBucketCorsCommandOutput) => void
802
+ ): void;
803
+ getBucketEncryption(
804
+ args: GetBucketEncryptionCommandInput,
805
+ options?: __HttpHandlerOptions
806
+ ): Promise<GetBucketEncryptionCommandOutput>;
807
+ getBucketEncryption(
808
+ args: GetBucketEncryptionCommandInput,
809
+ cb: (err: any, data?: GetBucketEncryptionCommandOutput) => void
810
+ ): void;
811
+ getBucketEncryption(
812
+ args: GetBucketEncryptionCommandInput,
813
+ options: __HttpHandlerOptions,
814
+ cb: (err: any, data?: GetBucketEncryptionCommandOutput) => void
815
+ ): void;
816
+ getBucketIntelligentTieringConfiguration(
817
+ args: GetBucketIntelligentTieringConfigurationCommandInput,
818
+ options?: __HttpHandlerOptions
819
+ ): Promise<GetBucketIntelligentTieringConfigurationCommandOutput>;
820
+ getBucketIntelligentTieringConfiguration(
821
+ args: GetBucketIntelligentTieringConfigurationCommandInput,
822
+ cb: (
823
+ err: any,
824
+ data?: GetBucketIntelligentTieringConfigurationCommandOutput
825
+ ) => void
826
+ ): void;
827
+ getBucketIntelligentTieringConfiguration(
828
+ args: GetBucketIntelligentTieringConfigurationCommandInput,
829
+ options: __HttpHandlerOptions,
830
+ cb: (
831
+ err: any,
832
+ data?: GetBucketIntelligentTieringConfigurationCommandOutput
833
+ ) => void
834
+ ): void;
835
+ getBucketInventoryConfiguration(
836
+ args: GetBucketInventoryConfigurationCommandInput,
837
+ options?: __HttpHandlerOptions
838
+ ): Promise<GetBucketInventoryConfigurationCommandOutput>;
839
+ getBucketInventoryConfiguration(
840
+ args: GetBucketInventoryConfigurationCommandInput,
841
+ cb: (err: any, data?: GetBucketInventoryConfigurationCommandOutput) => void
842
+ ): void;
843
+ getBucketInventoryConfiguration(
844
+ args: GetBucketInventoryConfigurationCommandInput,
845
+ options: __HttpHandlerOptions,
846
+ cb: (err: any, data?: GetBucketInventoryConfigurationCommandOutput) => void
847
+ ): void;
848
+ getBucketLifecycleConfiguration(
849
+ args: GetBucketLifecycleConfigurationCommandInput,
850
+ options?: __HttpHandlerOptions
851
+ ): Promise<GetBucketLifecycleConfigurationCommandOutput>;
852
+ getBucketLifecycleConfiguration(
853
+ args: GetBucketLifecycleConfigurationCommandInput,
854
+ cb: (err: any, data?: GetBucketLifecycleConfigurationCommandOutput) => void
855
+ ): void;
856
+ getBucketLifecycleConfiguration(
857
+ args: GetBucketLifecycleConfigurationCommandInput,
858
+ options: __HttpHandlerOptions,
859
+ cb: (err: any, data?: GetBucketLifecycleConfigurationCommandOutput) => void
860
+ ): void;
861
+ getBucketLocation(
862
+ args: GetBucketLocationCommandInput,
863
+ options?: __HttpHandlerOptions
864
+ ): Promise<GetBucketLocationCommandOutput>;
865
+ getBucketLocation(
866
+ args: GetBucketLocationCommandInput,
867
+ cb: (err: any, data?: GetBucketLocationCommandOutput) => void
868
+ ): void;
869
+ getBucketLocation(
870
+ args: GetBucketLocationCommandInput,
871
+ options: __HttpHandlerOptions,
872
+ cb: (err: any, data?: GetBucketLocationCommandOutput) => void
873
+ ): void;
874
+ getBucketLogging(
875
+ args: GetBucketLoggingCommandInput,
876
+ options?: __HttpHandlerOptions
877
+ ): Promise<GetBucketLoggingCommandOutput>;
878
+ getBucketLogging(
879
+ args: GetBucketLoggingCommandInput,
880
+ cb: (err: any, data?: GetBucketLoggingCommandOutput) => void
881
+ ): void;
882
+ getBucketLogging(
883
+ args: GetBucketLoggingCommandInput,
884
+ options: __HttpHandlerOptions,
885
+ cb: (err: any, data?: GetBucketLoggingCommandOutput) => void
886
+ ): void;
887
+ getBucketMetadataTableConfiguration(
888
+ args: GetBucketMetadataTableConfigurationCommandInput,
889
+ options?: __HttpHandlerOptions
890
+ ): Promise<GetBucketMetadataTableConfigurationCommandOutput>;
891
+ getBucketMetadataTableConfiguration(
892
+ args: GetBucketMetadataTableConfigurationCommandInput,
893
+ cb: (
894
+ err: any,
895
+ data?: GetBucketMetadataTableConfigurationCommandOutput
896
+ ) => void
897
+ ): void;
898
+ getBucketMetadataTableConfiguration(
899
+ args: GetBucketMetadataTableConfigurationCommandInput,
900
+ options: __HttpHandlerOptions,
901
+ cb: (
902
+ err: any,
903
+ data?: GetBucketMetadataTableConfigurationCommandOutput
904
+ ) => void
905
+ ): void;
906
+ getBucketMetricsConfiguration(
907
+ args: GetBucketMetricsConfigurationCommandInput,
908
+ options?: __HttpHandlerOptions
909
+ ): Promise<GetBucketMetricsConfigurationCommandOutput>;
910
+ getBucketMetricsConfiguration(
911
+ args: GetBucketMetricsConfigurationCommandInput,
912
+ cb: (err: any, data?: GetBucketMetricsConfigurationCommandOutput) => void
913
+ ): void;
914
+ getBucketMetricsConfiguration(
915
+ args: GetBucketMetricsConfigurationCommandInput,
916
+ options: __HttpHandlerOptions,
917
+ cb: (err: any, data?: GetBucketMetricsConfigurationCommandOutput) => void
918
+ ): void;
919
+ getBucketNotificationConfiguration(
920
+ args: GetBucketNotificationConfigurationCommandInput,
921
+ options?: __HttpHandlerOptions
922
+ ): Promise<GetBucketNotificationConfigurationCommandOutput>;
923
+ getBucketNotificationConfiguration(
924
+ args: GetBucketNotificationConfigurationCommandInput,
925
+ cb: (
926
+ err: any,
927
+ data?: GetBucketNotificationConfigurationCommandOutput
928
+ ) => void
929
+ ): void;
930
+ getBucketNotificationConfiguration(
931
+ args: GetBucketNotificationConfigurationCommandInput,
932
+ options: __HttpHandlerOptions,
933
+ cb: (
934
+ err: any,
935
+ data?: GetBucketNotificationConfigurationCommandOutput
936
+ ) => void
937
+ ): void;
938
+ getBucketOwnershipControls(
939
+ args: GetBucketOwnershipControlsCommandInput,
940
+ options?: __HttpHandlerOptions
941
+ ): Promise<GetBucketOwnershipControlsCommandOutput>;
942
+ getBucketOwnershipControls(
943
+ args: GetBucketOwnershipControlsCommandInput,
944
+ cb: (err: any, data?: GetBucketOwnershipControlsCommandOutput) => void
945
+ ): void;
946
+ getBucketOwnershipControls(
947
+ args: GetBucketOwnershipControlsCommandInput,
948
+ options: __HttpHandlerOptions,
949
+ cb: (err: any, data?: GetBucketOwnershipControlsCommandOutput) => void
950
+ ): void;
951
+ getBucketPolicy(
952
+ args: GetBucketPolicyCommandInput,
953
+ options?: __HttpHandlerOptions
954
+ ): Promise<GetBucketPolicyCommandOutput>;
955
+ getBucketPolicy(
956
+ args: GetBucketPolicyCommandInput,
957
+ cb: (err: any, data?: GetBucketPolicyCommandOutput) => void
958
+ ): void;
959
+ getBucketPolicy(
960
+ args: GetBucketPolicyCommandInput,
961
+ options: __HttpHandlerOptions,
962
+ cb: (err: any, data?: GetBucketPolicyCommandOutput) => void
963
+ ): void;
964
+ getBucketPolicyStatus(
965
+ args: GetBucketPolicyStatusCommandInput,
966
+ options?: __HttpHandlerOptions
967
+ ): Promise<GetBucketPolicyStatusCommandOutput>;
968
+ getBucketPolicyStatus(
969
+ args: GetBucketPolicyStatusCommandInput,
970
+ cb: (err: any, data?: GetBucketPolicyStatusCommandOutput) => void
971
+ ): void;
972
+ getBucketPolicyStatus(
973
+ args: GetBucketPolicyStatusCommandInput,
974
+ options: __HttpHandlerOptions,
975
+ cb: (err: any, data?: GetBucketPolicyStatusCommandOutput) => void
976
+ ): void;
977
+ getBucketReplication(
978
+ args: GetBucketReplicationCommandInput,
979
+ options?: __HttpHandlerOptions
980
+ ): Promise<GetBucketReplicationCommandOutput>;
981
+ getBucketReplication(
982
+ args: GetBucketReplicationCommandInput,
983
+ cb: (err: any, data?: GetBucketReplicationCommandOutput) => void
984
+ ): void;
985
+ getBucketReplication(
986
+ args: GetBucketReplicationCommandInput,
987
+ options: __HttpHandlerOptions,
988
+ cb: (err: any, data?: GetBucketReplicationCommandOutput) => void
989
+ ): void;
990
+ getBucketRequestPayment(
991
+ args: GetBucketRequestPaymentCommandInput,
992
+ options?: __HttpHandlerOptions
993
+ ): Promise<GetBucketRequestPaymentCommandOutput>;
994
+ getBucketRequestPayment(
995
+ args: GetBucketRequestPaymentCommandInput,
996
+ cb: (err: any, data?: GetBucketRequestPaymentCommandOutput) => void
997
+ ): void;
998
+ getBucketRequestPayment(
999
+ args: GetBucketRequestPaymentCommandInput,
1000
+ options: __HttpHandlerOptions,
1001
+ cb: (err: any, data?: GetBucketRequestPaymentCommandOutput) => void
1002
+ ): void;
1003
+ getBucketTagging(
1004
+ args: GetBucketTaggingCommandInput,
1005
+ options?: __HttpHandlerOptions
1006
+ ): Promise<GetBucketTaggingCommandOutput>;
1007
+ getBucketTagging(
1008
+ args: GetBucketTaggingCommandInput,
1009
+ cb: (err: any, data?: GetBucketTaggingCommandOutput) => void
1010
+ ): void;
1011
+ getBucketTagging(
1012
+ args: GetBucketTaggingCommandInput,
1013
+ options: __HttpHandlerOptions,
1014
+ cb: (err: any, data?: GetBucketTaggingCommandOutput) => void
1015
+ ): void;
1016
+ getBucketVersioning(
1017
+ args: GetBucketVersioningCommandInput,
1018
+ options?: __HttpHandlerOptions
1019
+ ): Promise<GetBucketVersioningCommandOutput>;
1020
+ getBucketVersioning(
1021
+ args: GetBucketVersioningCommandInput,
1022
+ cb: (err: any, data?: GetBucketVersioningCommandOutput) => void
1023
+ ): void;
1024
+ getBucketVersioning(
1025
+ args: GetBucketVersioningCommandInput,
1026
+ options: __HttpHandlerOptions,
1027
+ cb: (err: any, data?: GetBucketVersioningCommandOutput) => void
1028
+ ): void;
1029
+ getBucketWebsite(
1030
+ args: GetBucketWebsiteCommandInput,
1031
+ options?: __HttpHandlerOptions
1032
+ ): Promise<GetBucketWebsiteCommandOutput>;
1033
+ getBucketWebsite(
1034
+ args: GetBucketWebsiteCommandInput,
1035
+ cb: (err: any, data?: GetBucketWebsiteCommandOutput) => void
1036
+ ): void;
1037
+ getBucketWebsite(
1038
+ args: GetBucketWebsiteCommandInput,
1039
+ options: __HttpHandlerOptions,
1040
+ cb: (err: any, data?: GetBucketWebsiteCommandOutput) => void
1041
+ ): void;
1042
+ getObject(
1043
+ args: GetObjectCommandInput,
1044
+ options?: __HttpHandlerOptions
1045
+ ): Promise<GetObjectCommandOutput>;
1046
+ getObject(
1047
+ args: GetObjectCommandInput,
1048
+ cb: (err: any, data?: GetObjectCommandOutput) => void
1049
+ ): void;
1050
+ getObject(
1051
+ args: GetObjectCommandInput,
1052
+ options: __HttpHandlerOptions,
1053
+ cb: (err: any, data?: GetObjectCommandOutput) => void
1054
+ ): void;
1055
+ getObjectAcl(
1056
+ args: GetObjectAclCommandInput,
1057
+ options?: __HttpHandlerOptions
1058
+ ): Promise<GetObjectAclCommandOutput>;
1059
+ getObjectAcl(
1060
+ args: GetObjectAclCommandInput,
1061
+ cb: (err: any, data?: GetObjectAclCommandOutput) => void
1062
+ ): void;
1063
+ getObjectAcl(
1064
+ args: GetObjectAclCommandInput,
1065
+ options: __HttpHandlerOptions,
1066
+ cb: (err: any, data?: GetObjectAclCommandOutput) => void
1067
+ ): void;
1068
+ getObjectAttributes(
1069
+ args: GetObjectAttributesCommandInput,
1070
+ options?: __HttpHandlerOptions
1071
+ ): Promise<GetObjectAttributesCommandOutput>;
1072
+ getObjectAttributes(
1073
+ args: GetObjectAttributesCommandInput,
1074
+ cb: (err: any, data?: GetObjectAttributesCommandOutput) => void
1075
+ ): void;
1076
+ getObjectAttributes(
1077
+ args: GetObjectAttributesCommandInput,
1078
+ options: __HttpHandlerOptions,
1079
+ cb: (err: any, data?: GetObjectAttributesCommandOutput) => void
1080
+ ): void;
1081
+ getObjectLegalHold(
1082
+ args: GetObjectLegalHoldCommandInput,
1083
+ options?: __HttpHandlerOptions
1084
+ ): Promise<GetObjectLegalHoldCommandOutput>;
1085
+ getObjectLegalHold(
1086
+ args: GetObjectLegalHoldCommandInput,
1087
+ cb: (err: any, data?: GetObjectLegalHoldCommandOutput) => void
1088
+ ): void;
1089
+ getObjectLegalHold(
1090
+ args: GetObjectLegalHoldCommandInput,
1091
+ options: __HttpHandlerOptions,
1092
+ cb: (err: any, data?: GetObjectLegalHoldCommandOutput) => void
1093
+ ): void;
1094
+ getObjectLockConfiguration(
1095
+ args: GetObjectLockConfigurationCommandInput,
1096
+ options?: __HttpHandlerOptions
1097
+ ): Promise<GetObjectLockConfigurationCommandOutput>;
1098
+ getObjectLockConfiguration(
1099
+ args: GetObjectLockConfigurationCommandInput,
1100
+ cb: (err: any, data?: GetObjectLockConfigurationCommandOutput) => void
1101
+ ): void;
1102
+ getObjectLockConfiguration(
1103
+ args: GetObjectLockConfigurationCommandInput,
1104
+ options: __HttpHandlerOptions,
1105
+ cb: (err: any, data?: GetObjectLockConfigurationCommandOutput) => void
1106
+ ): void;
1107
+ getObjectRetention(
1108
+ args: GetObjectRetentionCommandInput,
1109
+ options?: __HttpHandlerOptions
1110
+ ): Promise<GetObjectRetentionCommandOutput>;
1111
+ getObjectRetention(
1112
+ args: GetObjectRetentionCommandInput,
1113
+ cb: (err: any, data?: GetObjectRetentionCommandOutput) => void
1114
+ ): void;
1115
+ getObjectRetention(
1116
+ args: GetObjectRetentionCommandInput,
1117
+ options: __HttpHandlerOptions,
1118
+ cb: (err: any, data?: GetObjectRetentionCommandOutput) => void
1119
+ ): void;
1120
+ getObjectTagging(
1121
+ args: GetObjectTaggingCommandInput,
1122
+ options?: __HttpHandlerOptions
1123
+ ): Promise<GetObjectTaggingCommandOutput>;
1124
+ getObjectTagging(
1125
+ args: GetObjectTaggingCommandInput,
1126
+ cb: (err: any, data?: GetObjectTaggingCommandOutput) => void
1127
+ ): void;
1128
+ getObjectTagging(
1129
+ args: GetObjectTaggingCommandInput,
1130
+ options: __HttpHandlerOptions,
1131
+ cb: (err: any, data?: GetObjectTaggingCommandOutput) => void
1132
+ ): void;
1133
+ getObjectTorrent(
1134
+ args: GetObjectTorrentCommandInput,
1135
+ options?: __HttpHandlerOptions
1136
+ ): Promise<GetObjectTorrentCommandOutput>;
1137
+ getObjectTorrent(
1138
+ args: GetObjectTorrentCommandInput,
1139
+ cb: (err: any, data?: GetObjectTorrentCommandOutput) => void
1140
+ ): void;
1141
+ getObjectTorrent(
1142
+ args: GetObjectTorrentCommandInput,
1143
+ options: __HttpHandlerOptions,
1144
+ cb: (err: any, data?: GetObjectTorrentCommandOutput) => void
1145
+ ): void;
1146
+ getPublicAccessBlock(
1147
+ args: GetPublicAccessBlockCommandInput,
1148
+ options?: __HttpHandlerOptions
1149
+ ): Promise<GetPublicAccessBlockCommandOutput>;
1150
+ getPublicAccessBlock(
1151
+ args: GetPublicAccessBlockCommandInput,
1152
+ cb: (err: any, data?: GetPublicAccessBlockCommandOutput) => void
1153
+ ): void;
1154
+ getPublicAccessBlock(
1155
+ args: GetPublicAccessBlockCommandInput,
1156
+ options: __HttpHandlerOptions,
1157
+ cb: (err: any, data?: GetPublicAccessBlockCommandOutput) => void
1158
+ ): void;
1159
+ headBucket(
1160
+ args: HeadBucketCommandInput,
1161
+ options?: __HttpHandlerOptions
1162
+ ): Promise<HeadBucketCommandOutput>;
1163
+ headBucket(
1164
+ args: HeadBucketCommandInput,
1165
+ cb: (err: any, data?: HeadBucketCommandOutput) => void
1166
+ ): void;
1167
+ headBucket(
1168
+ args: HeadBucketCommandInput,
1169
+ options: __HttpHandlerOptions,
1170
+ cb: (err: any, data?: HeadBucketCommandOutput) => void
1171
+ ): void;
1172
+ headObject(
1173
+ args: HeadObjectCommandInput,
1174
+ options?: __HttpHandlerOptions
1175
+ ): Promise<HeadObjectCommandOutput>;
1176
+ headObject(
1177
+ args: HeadObjectCommandInput,
1178
+ cb: (err: any, data?: HeadObjectCommandOutput) => void
1179
+ ): void;
1180
+ headObject(
1181
+ args: HeadObjectCommandInput,
1182
+ options: __HttpHandlerOptions,
1183
+ cb: (err: any, data?: HeadObjectCommandOutput) => void
1184
+ ): void;
1185
+ listBucketAnalyticsConfigurations(
1186
+ args: ListBucketAnalyticsConfigurationsCommandInput,
1187
+ options?: __HttpHandlerOptions
1188
+ ): Promise<ListBucketAnalyticsConfigurationsCommandOutput>;
1189
+ listBucketAnalyticsConfigurations(
1190
+ args: ListBucketAnalyticsConfigurationsCommandInput,
1191
+ cb: (
1192
+ err: any,
1193
+ data?: ListBucketAnalyticsConfigurationsCommandOutput
1194
+ ) => void
1195
+ ): void;
1196
+ listBucketAnalyticsConfigurations(
1197
+ args: ListBucketAnalyticsConfigurationsCommandInput,
1198
+ options: __HttpHandlerOptions,
1199
+ cb: (
1200
+ err: any,
1201
+ data?: ListBucketAnalyticsConfigurationsCommandOutput
1202
+ ) => void
1203
+ ): void;
1204
+ listBucketIntelligentTieringConfigurations(
1205
+ args: ListBucketIntelligentTieringConfigurationsCommandInput,
1206
+ options?: __HttpHandlerOptions
1207
+ ): Promise<ListBucketIntelligentTieringConfigurationsCommandOutput>;
1208
+ listBucketIntelligentTieringConfigurations(
1209
+ args: ListBucketIntelligentTieringConfigurationsCommandInput,
1210
+ cb: (
1211
+ err: any,
1212
+ data?: ListBucketIntelligentTieringConfigurationsCommandOutput
1213
+ ) => void
1214
+ ): void;
1215
+ listBucketIntelligentTieringConfigurations(
1216
+ args: ListBucketIntelligentTieringConfigurationsCommandInput,
1217
+ options: __HttpHandlerOptions,
1218
+ cb: (
1219
+ err: any,
1220
+ data?: ListBucketIntelligentTieringConfigurationsCommandOutput
1221
+ ) => void
1222
+ ): void;
1223
+ listBucketInventoryConfigurations(
1224
+ args: ListBucketInventoryConfigurationsCommandInput,
1225
+ options?: __HttpHandlerOptions
1226
+ ): Promise<ListBucketInventoryConfigurationsCommandOutput>;
1227
+ listBucketInventoryConfigurations(
1228
+ args: ListBucketInventoryConfigurationsCommandInput,
1229
+ cb: (
1230
+ err: any,
1231
+ data?: ListBucketInventoryConfigurationsCommandOutput
1232
+ ) => void
1233
+ ): void;
1234
+ listBucketInventoryConfigurations(
1235
+ args: ListBucketInventoryConfigurationsCommandInput,
1236
+ options: __HttpHandlerOptions,
1237
+ cb: (
1238
+ err: any,
1239
+ data?: ListBucketInventoryConfigurationsCommandOutput
1240
+ ) => void
1241
+ ): void;
1242
+ listBucketMetricsConfigurations(
1243
+ args: ListBucketMetricsConfigurationsCommandInput,
1244
+ options?: __HttpHandlerOptions
1245
+ ): Promise<ListBucketMetricsConfigurationsCommandOutput>;
1246
+ listBucketMetricsConfigurations(
1247
+ args: ListBucketMetricsConfigurationsCommandInput,
1248
+ cb: (err: any, data?: ListBucketMetricsConfigurationsCommandOutput) => void
1249
+ ): void;
1250
+ listBucketMetricsConfigurations(
1251
+ args: ListBucketMetricsConfigurationsCommandInput,
1252
+ options: __HttpHandlerOptions,
1253
+ cb: (err: any, data?: ListBucketMetricsConfigurationsCommandOutput) => void
1254
+ ): void;
1255
+ listBuckets(): Promise<ListBucketsCommandOutput>;
1256
+ listBuckets(
1257
+ args: ListBucketsCommandInput,
1258
+ options?: __HttpHandlerOptions
1259
+ ): Promise<ListBucketsCommandOutput>;
1260
+ listBuckets(
1261
+ args: ListBucketsCommandInput,
1262
+ cb: (err: any, data?: ListBucketsCommandOutput) => void
1263
+ ): void;
1264
+ listBuckets(
1265
+ args: ListBucketsCommandInput,
1266
+ options: __HttpHandlerOptions,
1267
+ cb: (err: any, data?: ListBucketsCommandOutput) => void
1268
+ ): void;
1269
+ listDirectoryBuckets(): Promise<ListDirectoryBucketsCommandOutput>;
1270
+ listDirectoryBuckets(
1271
+ args: ListDirectoryBucketsCommandInput,
1272
+ options?: __HttpHandlerOptions
1273
+ ): Promise<ListDirectoryBucketsCommandOutput>;
1274
+ listDirectoryBuckets(
1275
+ args: ListDirectoryBucketsCommandInput,
1276
+ cb: (err: any, data?: ListDirectoryBucketsCommandOutput) => void
1277
+ ): void;
1278
+ listDirectoryBuckets(
1279
+ args: ListDirectoryBucketsCommandInput,
1280
+ options: __HttpHandlerOptions,
1281
+ cb: (err: any, data?: ListDirectoryBucketsCommandOutput) => void
1282
+ ): void;
1283
+ listMultipartUploads(
1284
+ args: ListMultipartUploadsCommandInput,
1285
+ options?: __HttpHandlerOptions
1286
+ ): Promise<ListMultipartUploadsCommandOutput>;
1287
+ listMultipartUploads(
1288
+ args: ListMultipartUploadsCommandInput,
1289
+ cb: (err: any, data?: ListMultipartUploadsCommandOutput) => void
1290
+ ): void;
1291
+ listMultipartUploads(
1292
+ args: ListMultipartUploadsCommandInput,
1293
+ options: __HttpHandlerOptions,
1294
+ cb: (err: any, data?: ListMultipartUploadsCommandOutput) => void
1295
+ ): void;
1296
+ listObjects(
1297
+ args: ListObjectsCommandInput,
1298
+ options?: __HttpHandlerOptions
1299
+ ): Promise<ListObjectsCommandOutput>;
1300
+ listObjects(
1301
+ args: ListObjectsCommandInput,
1302
+ cb: (err: any, data?: ListObjectsCommandOutput) => void
1303
+ ): void;
1304
+ listObjects(
1305
+ args: ListObjectsCommandInput,
1306
+ options: __HttpHandlerOptions,
1307
+ cb: (err: any, data?: ListObjectsCommandOutput) => void
1308
+ ): void;
1309
+ listObjectsV2(
1310
+ args: ListObjectsV2CommandInput,
1311
+ options?: __HttpHandlerOptions
1312
+ ): Promise<ListObjectsV2CommandOutput>;
1313
+ listObjectsV2(
1314
+ args: ListObjectsV2CommandInput,
1315
+ cb: (err: any, data?: ListObjectsV2CommandOutput) => void
1316
+ ): void;
1317
+ listObjectsV2(
1318
+ args: ListObjectsV2CommandInput,
1319
+ options: __HttpHandlerOptions,
1320
+ cb: (err: any, data?: ListObjectsV2CommandOutput) => void
1321
+ ): void;
1322
+ listObjectVersions(
1323
+ args: ListObjectVersionsCommandInput,
1324
+ options?: __HttpHandlerOptions
1325
+ ): Promise<ListObjectVersionsCommandOutput>;
1326
+ listObjectVersions(
1327
+ args: ListObjectVersionsCommandInput,
1328
+ cb: (err: any, data?: ListObjectVersionsCommandOutput) => void
1329
+ ): void;
1330
+ listObjectVersions(
1331
+ args: ListObjectVersionsCommandInput,
1332
+ options: __HttpHandlerOptions,
1333
+ cb: (err: any, data?: ListObjectVersionsCommandOutput) => void
1334
+ ): void;
1335
+ listParts(
1336
+ args: ListPartsCommandInput,
1337
+ options?: __HttpHandlerOptions
1338
+ ): Promise<ListPartsCommandOutput>;
1339
+ listParts(
1340
+ args: ListPartsCommandInput,
1341
+ cb: (err: any, data?: ListPartsCommandOutput) => void
1342
+ ): void;
1343
+ listParts(
1344
+ args: ListPartsCommandInput,
1345
+ options: __HttpHandlerOptions,
1346
+ cb: (err: any, data?: ListPartsCommandOutput) => void
1347
+ ): void;
1348
+ putBucketAccelerateConfiguration(
1349
+ args: PutBucketAccelerateConfigurationCommandInput,
1350
+ options?: __HttpHandlerOptions
1351
+ ): Promise<PutBucketAccelerateConfigurationCommandOutput>;
1352
+ putBucketAccelerateConfiguration(
1353
+ args: PutBucketAccelerateConfigurationCommandInput,
1354
+ cb: (err: any, data?: PutBucketAccelerateConfigurationCommandOutput) => void
1355
+ ): void;
1356
+ putBucketAccelerateConfiguration(
1357
+ args: PutBucketAccelerateConfigurationCommandInput,
1358
+ options: __HttpHandlerOptions,
1359
+ cb: (err: any, data?: PutBucketAccelerateConfigurationCommandOutput) => void
1360
+ ): void;
1361
+ putBucketAcl(
1362
+ args: PutBucketAclCommandInput,
1363
+ options?: __HttpHandlerOptions
1364
+ ): Promise<PutBucketAclCommandOutput>;
1365
+ putBucketAcl(
1366
+ args: PutBucketAclCommandInput,
1367
+ cb: (err: any, data?: PutBucketAclCommandOutput) => void
1368
+ ): void;
1369
+ putBucketAcl(
1370
+ args: PutBucketAclCommandInput,
1371
+ options: __HttpHandlerOptions,
1372
+ cb: (err: any, data?: PutBucketAclCommandOutput) => void
1373
+ ): void;
1374
+ putBucketAnalyticsConfiguration(
1375
+ args: PutBucketAnalyticsConfigurationCommandInput,
1376
+ options?: __HttpHandlerOptions
1377
+ ): Promise<PutBucketAnalyticsConfigurationCommandOutput>;
1378
+ putBucketAnalyticsConfiguration(
1379
+ args: PutBucketAnalyticsConfigurationCommandInput,
1380
+ cb: (err: any, data?: PutBucketAnalyticsConfigurationCommandOutput) => void
1381
+ ): void;
1382
+ putBucketAnalyticsConfiguration(
1383
+ args: PutBucketAnalyticsConfigurationCommandInput,
1384
+ options: __HttpHandlerOptions,
1385
+ cb: (err: any, data?: PutBucketAnalyticsConfigurationCommandOutput) => void
1386
+ ): void;
1387
+ putBucketCors(
1388
+ args: PutBucketCorsCommandInput,
1389
+ options?: __HttpHandlerOptions
1390
+ ): Promise<PutBucketCorsCommandOutput>;
1391
+ putBucketCors(
1392
+ args: PutBucketCorsCommandInput,
1393
+ cb: (err: any, data?: PutBucketCorsCommandOutput) => void
1394
+ ): void;
1395
+ putBucketCors(
1396
+ args: PutBucketCorsCommandInput,
1397
+ options: __HttpHandlerOptions,
1398
+ cb: (err: any, data?: PutBucketCorsCommandOutput) => void
1399
+ ): void;
1400
+ putBucketEncryption(
1401
+ args: PutBucketEncryptionCommandInput,
1402
+ options?: __HttpHandlerOptions
1403
+ ): Promise<PutBucketEncryptionCommandOutput>;
1404
+ putBucketEncryption(
1405
+ args: PutBucketEncryptionCommandInput,
1406
+ cb: (err: any, data?: PutBucketEncryptionCommandOutput) => void
1407
+ ): void;
1408
+ putBucketEncryption(
1409
+ args: PutBucketEncryptionCommandInput,
1410
+ options: __HttpHandlerOptions,
1411
+ cb: (err: any, data?: PutBucketEncryptionCommandOutput) => void
1412
+ ): void;
1413
+ putBucketIntelligentTieringConfiguration(
1414
+ args: PutBucketIntelligentTieringConfigurationCommandInput,
1415
+ options?: __HttpHandlerOptions
1416
+ ): Promise<PutBucketIntelligentTieringConfigurationCommandOutput>;
1417
+ putBucketIntelligentTieringConfiguration(
1418
+ args: PutBucketIntelligentTieringConfigurationCommandInput,
1419
+ cb: (
1420
+ err: any,
1421
+ data?: PutBucketIntelligentTieringConfigurationCommandOutput
1422
+ ) => void
1423
+ ): void;
1424
+ putBucketIntelligentTieringConfiguration(
1425
+ args: PutBucketIntelligentTieringConfigurationCommandInput,
1426
+ options: __HttpHandlerOptions,
1427
+ cb: (
1428
+ err: any,
1429
+ data?: PutBucketIntelligentTieringConfigurationCommandOutput
1430
+ ) => void
1431
+ ): void;
1432
+ putBucketInventoryConfiguration(
1433
+ args: PutBucketInventoryConfigurationCommandInput,
1434
+ options?: __HttpHandlerOptions
1435
+ ): Promise<PutBucketInventoryConfigurationCommandOutput>;
1436
+ putBucketInventoryConfiguration(
1437
+ args: PutBucketInventoryConfigurationCommandInput,
1438
+ cb: (err: any, data?: PutBucketInventoryConfigurationCommandOutput) => void
1439
+ ): void;
1440
+ putBucketInventoryConfiguration(
1441
+ args: PutBucketInventoryConfigurationCommandInput,
1442
+ options: __HttpHandlerOptions,
1443
+ cb: (err: any, data?: PutBucketInventoryConfigurationCommandOutput) => void
1444
+ ): void;
1445
+ putBucketLifecycleConfiguration(
1446
+ args: PutBucketLifecycleConfigurationCommandInput,
1447
+ options?: __HttpHandlerOptions
1448
+ ): Promise<PutBucketLifecycleConfigurationCommandOutput>;
1449
+ putBucketLifecycleConfiguration(
1450
+ args: PutBucketLifecycleConfigurationCommandInput,
1451
+ cb: (err: any, data?: PutBucketLifecycleConfigurationCommandOutput) => void
1452
+ ): void;
1453
+ putBucketLifecycleConfiguration(
1454
+ args: PutBucketLifecycleConfigurationCommandInput,
1455
+ options: __HttpHandlerOptions,
1456
+ cb: (err: any, data?: PutBucketLifecycleConfigurationCommandOutput) => void
1457
+ ): void;
1458
+ putBucketLogging(
1459
+ args: PutBucketLoggingCommandInput,
1460
+ options?: __HttpHandlerOptions
1461
+ ): Promise<PutBucketLoggingCommandOutput>;
1462
+ putBucketLogging(
1463
+ args: PutBucketLoggingCommandInput,
1464
+ cb: (err: any, data?: PutBucketLoggingCommandOutput) => void
1465
+ ): void;
1466
+ putBucketLogging(
1467
+ args: PutBucketLoggingCommandInput,
1468
+ options: __HttpHandlerOptions,
1469
+ cb: (err: any, data?: PutBucketLoggingCommandOutput) => void
1470
+ ): void;
1471
+ putBucketMetricsConfiguration(
1472
+ args: PutBucketMetricsConfigurationCommandInput,
1473
+ options?: __HttpHandlerOptions
1474
+ ): Promise<PutBucketMetricsConfigurationCommandOutput>;
1475
+ putBucketMetricsConfiguration(
1476
+ args: PutBucketMetricsConfigurationCommandInput,
1477
+ cb: (err: any, data?: PutBucketMetricsConfigurationCommandOutput) => void
1478
+ ): void;
1479
+ putBucketMetricsConfiguration(
1480
+ args: PutBucketMetricsConfigurationCommandInput,
1481
+ options: __HttpHandlerOptions,
1482
+ cb: (err: any, data?: PutBucketMetricsConfigurationCommandOutput) => void
1483
+ ): void;
1484
+ putBucketNotificationConfiguration(
1485
+ args: PutBucketNotificationConfigurationCommandInput,
1486
+ options?: __HttpHandlerOptions
1487
+ ): Promise<PutBucketNotificationConfigurationCommandOutput>;
1488
+ putBucketNotificationConfiguration(
1489
+ args: PutBucketNotificationConfigurationCommandInput,
1490
+ cb: (
1491
+ err: any,
1492
+ data?: PutBucketNotificationConfigurationCommandOutput
1493
+ ) => void
1494
+ ): void;
1495
+ putBucketNotificationConfiguration(
1496
+ args: PutBucketNotificationConfigurationCommandInput,
1497
+ options: __HttpHandlerOptions,
1498
+ cb: (
1499
+ err: any,
1500
+ data?: PutBucketNotificationConfigurationCommandOutput
1501
+ ) => void
1502
+ ): void;
1503
+ putBucketOwnershipControls(
1504
+ args: PutBucketOwnershipControlsCommandInput,
1505
+ options?: __HttpHandlerOptions
1506
+ ): Promise<PutBucketOwnershipControlsCommandOutput>;
1507
+ putBucketOwnershipControls(
1508
+ args: PutBucketOwnershipControlsCommandInput,
1509
+ cb: (err: any, data?: PutBucketOwnershipControlsCommandOutput) => void
1510
+ ): void;
1511
+ putBucketOwnershipControls(
1512
+ args: PutBucketOwnershipControlsCommandInput,
1513
+ options: __HttpHandlerOptions,
1514
+ cb: (err: any, data?: PutBucketOwnershipControlsCommandOutput) => void
1515
+ ): void;
1516
+ putBucketPolicy(
1517
+ args: PutBucketPolicyCommandInput,
1518
+ options?: __HttpHandlerOptions
1519
+ ): Promise<PutBucketPolicyCommandOutput>;
1520
+ putBucketPolicy(
1521
+ args: PutBucketPolicyCommandInput,
1522
+ cb: (err: any, data?: PutBucketPolicyCommandOutput) => void
1523
+ ): void;
1524
+ putBucketPolicy(
1525
+ args: PutBucketPolicyCommandInput,
1526
+ options: __HttpHandlerOptions,
1527
+ cb: (err: any, data?: PutBucketPolicyCommandOutput) => void
1528
+ ): void;
1529
+ putBucketReplication(
1530
+ args: PutBucketReplicationCommandInput,
1531
+ options?: __HttpHandlerOptions
1532
+ ): Promise<PutBucketReplicationCommandOutput>;
1533
+ putBucketReplication(
1534
+ args: PutBucketReplicationCommandInput,
1535
+ cb: (err: any, data?: PutBucketReplicationCommandOutput) => void
1536
+ ): void;
1537
+ putBucketReplication(
1538
+ args: PutBucketReplicationCommandInput,
1539
+ options: __HttpHandlerOptions,
1540
+ cb: (err: any, data?: PutBucketReplicationCommandOutput) => void
1541
+ ): void;
1542
+ putBucketRequestPayment(
1543
+ args: PutBucketRequestPaymentCommandInput,
1544
+ options?: __HttpHandlerOptions
1545
+ ): Promise<PutBucketRequestPaymentCommandOutput>;
1546
+ putBucketRequestPayment(
1547
+ args: PutBucketRequestPaymentCommandInput,
1548
+ cb: (err: any, data?: PutBucketRequestPaymentCommandOutput) => void
1549
+ ): void;
1550
+ putBucketRequestPayment(
1551
+ args: PutBucketRequestPaymentCommandInput,
1552
+ options: __HttpHandlerOptions,
1553
+ cb: (err: any, data?: PutBucketRequestPaymentCommandOutput) => void
1554
+ ): void;
1555
+ putBucketTagging(
1556
+ args: PutBucketTaggingCommandInput,
1557
+ options?: __HttpHandlerOptions
1558
+ ): Promise<PutBucketTaggingCommandOutput>;
1559
+ putBucketTagging(
1560
+ args: PutBucketTaggingCommandInput,
1561
+ cb: (err: any, data?: PutBucketTaggingCommandOutput) => void
1562
+ ): void;
1563
+ putBucketTagging(
1564
+ args: PutBucketTaggingCommandInput,
1565
+ options: __HttpHandlerOptions,
1566
+ cb: (err: any, data?: PutBucketTaggingCommandOutput) => void
1567
+ ): void;
1568
+ putBucketVersioning(
1569
+ args: PutBucketVersioningCommandInput,
1570
+ options?: __HttpHandlerOptions
1571
+ ): Promise<PutBucketVersioningCommandOutput>;
1572
+ putBucketVersioning(
1573
+ args: PutBucketVersioningCommandInput,
1574
+ cb: (err: any, data?: PutBucketVersioningCommandOutput) => void
1575
+ ): void;
1576
+ putBucketVersioning(
1577
+ args: PutBucketVersioningCommandInput,
1578
+ options: __HttpHandlerOptions,
1579
+ cb: (err: any, data?: PutBucketVersioningCommandOutput) => void
1580
+ ): void;
1581
+ putBucketWebsite(
1582
+ args: PutBucketWebsiteCommandInput,
1583
+ options?: __HttpHandlerOptions
1584
+ ): Promise<PutBucketWebsiteCommandOutput>;
1585
+ putBucketWebsite(
1586
+ args: PutBucketWebsiteCommandInput,
1587
+ cb: (err: any, data?: PutBucketWebsiteCommandOutput) => void
1588
+ ): void;
1589
+ putBucketWebsite(
1590
+ args: PutBucketWebsiteCommandInput,
1591
+ options: __HttpHandlerOptions,
1592
+ cb: (err: any, data?: PutBucketWebsiteCommandOutput) => void
1593
+ ): void;
1594
+ putObject(
1595
+ args: PutObjectCommandInput,
1596
+ options?: __HttpHandlerOptions
1597
+ ): Promise<PutObjectCommandOutput>;
1598
+ putObject(
1599
+ args: PutObjectCommandInput,
1600
+ cb: (err: any, data?: PutObjectCommandOutput) => void
1601
+ ): void;
1602
+ putObject(
1603
+ args: PutObjectCommandInput,
1604
+ options: __HttpHandlerOptions,
1605
+ cb: (err: any, data?: PutObjectCommandOutput) => void
1606
+ ): void;
1607
+ putObjectAcl(
1608
+ args: PutObjectAclCommandInput,
1609
+ options?: __HttpHandlerOptions
1610
+ ): Promise<PutObjectAclCommandOutput>;
1611
+ putObjectAcl(
1612
+ args: PutObjectAclCommandInput,
1613
+ cb: (err: any, data?: PutObjectAclCommandOutput) => void
1614
+ ): void;
1615
+ putObjectAcl(
1616
+ args: PutObjectAclCommandInput,
1617
+ options: __HttpHandlerOptions,
1618
+ cb: (err: any, data?: PutObjectAclCommandOutput) => void
1619
+ ): void;
1620
+ putObjectLegalHold(
1621
+ args: PutObjectLegalHoldCommandInput,
1622
+ options?: __HttpHandlerOptions
1623
+ ): Promise<PutObjectLegalHoldCommandOutput>;
1624
+ putObjectLegalHold(
1625
+ args: PutObjectLegalHoldCommandInput,
1626
+ cb: (err: any, data?: PutObjectLegalHoldCommandOutput) => void
1627
+ ): void;
1628
+ putObjectLegalHold(
1629
+ args: PutObjectLegalHoldCommandInput,
1630
+ options: __HttpHandlerOptions,
1631
+ cb: (err: any, data?: PutObjectLegalHoldCommandOutput) => void
1632
+ ): void;
1633
+ putObjectLockConfiguration(
1634
+ args: PutObjectLockConfigurationCommandInput,
1635
+ options?: __HttpHandlerOptions
1636
+ ): Promise<PutObjectLockConfigurationCommandOutput>;
1637
+ putObjectLockConfiguration(
1638
+ args: PutObjectLockConfigurationCommandInput,
1639
+ cb: (err: any, data?: PutObjectLockConfigurationCommandOutput) => void
1640
+ ): void;
1641
+ putObjectLockConfiguration(
1642
+ args: PutObjectLockConfigurationCommandInput,
1643
+ options: __HttpHandlerOptions,
1644
+ cb: (err: any, data?: PutObjectLockConfigurationCommandOutput) => void
1645
+ ): void;
1646
+ putObjectRetention(
1647
+ args: PutObjectRetentionCommandInput,
1648
+ options?: __HttpHandlerOptions
1649
+ ): Promise<PutObjectRetentionCommandOutput>;
1650
+ putObjectRetention(
1651
+ args: PutObjectRetentionCommandInput,
1652
+ cb: (err: any, data?: PutObjectRetentionCommandOutput) => void
1653
+ ): void;
1654
+ putObjectRetention(
1655
+ args: PutObjectRetentionCommandInput,
1656
+ options: __HttpHandlerOptions,
1657
+ cb: (err: any, data?: PutObjectRetentionCommandOutput) => void
1658
+ ): void;
1659
+ putObjectTagging(
1660
+ args: PutObjectTaggingCommandInput,
1661
+ options?: __HttpHandlerOptions
1662
+ ): Promise<PutObjectTaggingCommandOutput>;
1663
+ putObjectTagging(
1664
+ args: PutObjectTaggingCommandInput,
1665
+ cb: (err: any, data?: PutObjectTaggingCommandOutput) => void
1666
+ ): void;
1667
+ putObjectTagging(
1668
+ args: PutObjectTaggingCommandInput,
1669
+ options: __HttpHandlerOptions,
1670
+ cb: (err: any, data?: PutObjectTaggingCommandOutput) => void
1671
+ ): void;
1672
+ putPublicAccessBlock(
1673
+ args: PutPublicAccessBlockCommandInput,
1674
+ options?: __HttpHandlerOptions
1675
+ ): Promise<PutPublicAccessBlockCommandOutput>;
1676
+ putPublicAccessBlock(
1677
+ args: PutPublicAccessBlockCommandInput,
1678
+ cb: (err: any, data?: PutPublicAccessBlockCommandOutput) => void
1679
+ ): void;
1680
+ putPublicAccessBlock(
1681
+ args: PutPublicAccessBlockCommandInput,
1682
+ options: __HttpHandlerOptions,
1683
+ cb: (err: any, data?: PutPublicAccessBlockCommandOutput) => void
1684
+ ): void;
1685
+ restoreObject(
1686
+ args: RestoreObjectCommandInput,
1687
+ options?: __HttpHandlerOptions
1688
+ ): Promise<RestoreObjectCommandOutput>;
1689
+ restoreObject(
1690
+ args: RestoreObjectCommandInput,
1691
+ cb: (err: any, data?: RestoreObjectCommandOutput) => void
1692
+ ): void;
1693
+ restoreObject(
1694
+ args: RestoreObjectCommandInput,
1695
+ options: __HttpHandlerOptions,
1696
+ cb: (err: any, data?: RestoreObjectCommandOutput) => void
1697
+ ): void;
1698
+ selectObjectContent(
1699
+ args: SelectObjectContentCommandInput,
1700
+ options?: __HttpHandlerOptions
1701
+ ): Promise<SelectObjectContentCommandOutput>;
1702
+ selectObjectContent(
1703
+ args: SelectObjectContentCommandInput,
1704
+ cb: (err: any, data?: SelectObjectContentCommandOutput) => void
1705
+ ): void;
1706
+ selectObjectContent(
1707
+ args: SelectObjectContentCommandInput,
1708
+ options: __HttpHandlerOptions,
1709
+ cb: (err: any, data?: SelectObjectContentCommandOutput) => void
1710
+ ): void;
1711
+ uploadPart(
1712
+ args: UploadPartCommandInput,
1713
+ options?: __HttpHandlerOptions
1714
+ ): Promise<UploadPartCommandOutput>;
1715
+ uploadPart(
1716
+ args: UploadPartCommandInput,
1717
+ cb: (err: any, data?: UploadPartCommandOutput) => void
1718
+ ): void;
1719
+ uploadPart(
1720
+ args: UploadPartCommandInput,
1721
+ options: __HttpHandlerOptions,
1722
+ cb: (err: any, data?: UploadPartCommandOutput) => void
1723
+ ): void;
1724
+ uploadPartCopy(
1725
+ args: UploadPartCopyCommandInput,
1726
+ options?: __HttpHandlerOptions
1727
+ ): Promise<UploadPartCopyCommandOutput>;
1728
+ uploadPartCopy(
1729
+ args: UploadPartCopyCommandInput,
1730
+ cb: (err: any, data?: UploadPartCopyCommandOutput) => void
1731
+ ): void;
1732
+ uploadPartCopy(
1733
+ args: UploadPartCopyCommandInput,
1734
+ options: __HttpHandlerOptions,
1735
+ cb: (err: any, data?: UploadPartCopyCommandOutput) => void
1736
+ ): void;
1737
+ writeGetObjectResponse(
1738
+ args: WriteGetObjectResponseCommandInput,
1739
+ options?: __HttpHandlerOptions
1740
+ ): Promise<WriteGetObjectResponseCommandOutput>;
1741
+ writeGetObjectResponse(
1742
+ args: WriteGetObjectResponseCommandInput,
1743
+ cb: (err: any, data?: WriteGetObjectResponseCommandOutput) => void
1744
+ ): void;
1745
+ writeGetObjectResponse(
1746
+ args: WriteGetObjectResponseCommandInput,
1747
+ options: __HttpHandlerOptions,
1748
+ cb: (err: any, data?: WriteGetObjectResponseCommandOutput) => void
1749
+ ): void;
1750
+ }
1751
+ export declare class S3 extends S3Client implements S3 {}