ruby_snowflake_client 1.0.0

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 (2097) hide show
  1. checksums.yaml +7 -0
  2. data/.github/dependabot.yml +11 -0
  3. data/.github/workflows/ci.yml +42 -0
  4. data/.github/workflows/release.yml +30 -0
  5. data/.gitignore +10 -0
  6. data/Gemfile +12 -0
  7. data/Gemfile.lock +43 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +130 -0
  10. data/Rakefile +3 -0
  11. data/ext/c-decl.go +54 -0
  12. data/ext/extconf.rb +21 -0
  13. data/ext/go.mod +60 -0
  14. data/ext/go.sum +173 -0
  15. data/ext/result.go +181 -0
  16. data/ext/ruby_snowflake.go +179 -0
  17. data/ext/vendor/github.com/99designs/go-keychain/.gitignore +24 -0
  18. data/ext/vendor/github.com/99designs/go-keychain/.golangci.yml +11 -0
  19. data/ext/vendor/github.com/99designs/go-keychain/.travis.yml +20 -0
  20. data/ext/vendor/github.com/99designs/go-keychain/LICENSE +22 -0
  21. data/ext/vendor/github.com/99designs/go-keychain/README.md +159 -0
  22. data/ext/vendor/github.com/99designs/go-keychain/corefoundation.go +359 -0
  23. data/ext/vendor/github.com/99designs/go-keychain/datetime.go +68 -0
  24. data/ext/vendor/github.com/99designs/go-keychain/ios.go +22 -0
  25. data/ext/vendor/github.com/99designs/go-keychain/keychain.go +531 -0
  26. data/ext/vendor/github.com/99designs/go-keychain/macos.go +272 -0
  27. data/ext/vendor/github.com/99designs/go-keychain/util.go +31 -0
  28. data/ext/vendor/github.com/99designs/keyring/.gitattributes +1 -0
  29. data/ext/vendor/github.com/99designs/keyring/.gitignore +1 -0
  30. data/ext/vendor/github.com/99designs/keyring/.golangci.yml +39 -0
  31. data/ext/vendor/github.com/99designs/keyring/LICENSE +22 -0
  32. data/ext/vendor/github.com/99designs/keyring/README.md +67 -0
  33. data/ext/vendor/github.com/99designs/keyring/Vagrantfile +85 -0
  34. data/ext/vendor/github.com/99designs/keyring/array.go +54 -0
  35. data/ext/vendor/github.com/99designs/keyring/config.go +58 -0
  36. data/ext/vendor/github.com/99designs/keyring/docker-compose.yml +7 -0
  37. data/ext/vendor/github.com/99designs/keyring/file.go +181 -0
  38. data/ext/vendor/github.com/99designs/keyring/keychain.go +296 -0
  39. data/ext/vendor/github.com/99designs/keyring/keyctl.go +327 -0
  40. data/ext/vendor/github.com/99designs/keyring/keyring.go +134 -0
  41. data/ext/vendor/github.com/99designs/keyring/kwallet.go +237 -0
  42. data/ext/vendor/github.com/99designs/keyring/pass.go +166 -0
  43. data/ext/vendor/github.com/99designs/keyring/prompt.go +27 -0
  44. data/ext/vendor/github.com/99designs/keyring/secretservice.go +293 -0
  45. data/ext/vendor/github.com/99designs/keyring/tilde.go +22 -0
  46. data/ext/vendor/github.com/99designs/keyring/wincred.go +98 -0
  47. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/CHANGELOG.md +537 -0
  48. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/LICENSE.txt +21 -0
  49. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/README.md +39 -0
  50. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/ci.yml +29 -0
  51. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/cloud/cloud.go +44 -0
  52. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/cloud/doc.go +53 -0
  53. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/core.go +113 -0
  54. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/doc.go +257 -0
  55. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/errors.go +14 -0
  56. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/etag.go +48 -0
  57. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/exported.go +83 -0
  58. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/pipeline.go +97 -0
  59. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/request.go +182 -0
  60. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/response_error.go +142 -0
  61. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/log/log.go +38 -0
  62. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/async/async.go +158 -0
  63. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/body/body.go +134 -0
  64. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/loc/loc.go +118 -0
  65. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/op/op.go +144 -0
  66. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/poller.go +24 -0
  67. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/util.go +317 -0
  68. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/shared/constants.go +35 -0
  69. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/shared/shared.go +159 -0
  70. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/log/doc.go +10 -0
  71. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/log/log.go +50 -0
  72. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/policy/doc.go +10 -0
  73. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/policy/policy.go +155 -0
  74. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/doc.go +10 -0
  75. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/errors.go +19 -0
  76. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/pager.go +77 -0
  77. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/pipeline.go +66 -0
  78. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_api_version.go +75 -0
  79. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_bearer_token.go +116 -0
  80. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_body_download.go +73 -0
  81. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_http_header.go +39 -0
  82. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_include_response.go +34 -0
  83. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_logging.go +263 -0
  84. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_request_id.go +34 -0
  85. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_retry.go +251 -0
  86. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_telemetry.go +79 -0
  87. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/poller.go +326 -0
  88. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/request.go +248 -0
  89. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/response.go +136 -0
  90. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/transport_default_http_client.go +37 -0
  91. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/streaming/doc.go +9 -0
  92. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/streaming/progress.go +75 -0
  93. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/to/doc.go +9 -0
  94. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/to/to.go +21 -0
  95. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/tracing/constants.go +41 -0
  96. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/tracing/tracing.go +168 -0
  97. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/LICENSE.txt +21 -0
  98. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/diag/diag.go +51 -0
  99. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/diag/doc.go +7 -0
  100. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/errorinfo/doc.go +7 -0
  101. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/errorinfo/errorinfo.go +16 -0
  102. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/log/doc.go +7 -0
  103. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/log/log.go +104 -0
  104. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/temporal/resource.go +123 -0
  105. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/uuid/doc.go +7 -0
  106. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/uuid/uuid.go +76 -0
  107. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/CHANGELOG.md +167 -0
  108. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/LICENSE.txt +21 -0
  109. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/README.md +274 -0
  110. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/appendblob/client.go +352 -0
  111. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/appendblob/models.go +176 -0
  112. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/appendblob/responses.go +26 -0
  113. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/assets.json +6 -0
  114. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/client.go +446 -0
  115. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/constants.go +229 -0
  116. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/models.go +567 -0
  117. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/responses.go +116 -0
  118. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/retry_reader.go +192 -0
  119. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/utils.go +79 -0
  120. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/bloberror/error_codes.go +156 -0
  121. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/chunkwriting.go +313 -0
  122. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/client.go +532 -0
  123. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/constants.go +39 -0
  124. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/mmf_unix.go +38 -0
  125. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/mmf_windows.go +54 -0
  126. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/models.go +348 -0
  127. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/responses.go +114 -0
  128. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/ci.yml +28 -0
  129. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/client.go +176 -0
  130. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/common.go +36 -0
  131. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/constants.go +37 -0
  132. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container/client.go +331 -0
  133. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container/constants.go +150 -0
  134. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container/models.go +331 -0
  135. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container/responses.go +44 -0
  136. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/doc.go +213 -0
  137. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/base/clients.go +89 -0
  138. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/access_conditions.go +43 -0
  139. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/access_policy.go +67 -0
  140. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/exported.go +33 -0
  141. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/log_events.go +14 -0
  142. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/set_expiry.go +71 -0
  143. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/shared_key_credential.go +218 -0
  144. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/transfer_validation_option.go +67 -0
  145. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/user_delegation_credential.go +64 -0
  146. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/version.go +12 -0
  147. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/appendblob_client.go +19 -0
  148. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/autorest.md +387 -0
  149. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/blob_client.go +17 -0
  150. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/block_blob_client.go +19 -0
  151. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/build.go +10 -0
  152. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/container_client.go +17 -0
  153. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/models.go +65 -0
  154. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/pageblob_client.go +17 -0
  155. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/service_client.go +17 -0
  156. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_appendblob_client.go +659 -0
  157. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_blob_client.go +2879 -0
  158. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_blockblob_client.go +972 -0
  159. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_constants.go +714 -0
  160. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_container_client.go +1478 -0
  161. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_models.go +1733 -0
  162. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_models_serde.go +481 -0
  163. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_pageblob_client.go +1297 -0
  164. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_response_types.go +1972 -0
  165. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_service_client.go +558 -0
  166. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_time_rfc1123.go +43 -0
  167. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_time_rfc3339.go +59 -0
  168. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_xml_helper.go +41 -0
  169. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/shared/batch_transfer.go +77 -0
  170. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/shared/bytes_writer.go +30 -0
  171. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/shared/section_writer.go +53 -0
  172. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/shared/shared.go +243 -0
  173. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/log.go +11 -0
  174. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/migrationguide.md +76 -0
  175. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/models.go +69 -0
  176. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/pageblob/client.go +433 -0
  177. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/pageblob/constants.go +65 -0
  178. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/pageblob/models.go +330 -0
  179. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/pageblob/responses.go +38 -0
  180. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/responses.go +51 -0
  181. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/sas/account.go +202 -0
  182. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/sas/query_params.go +440 -0
  183. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/sas/service.go +448 -0
  184. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/sas/url_parts.go +166 -0
  185. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/service/client.go +282 -0
  186. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/service/constants.go +92 -0
  187. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/service/models.go +301 -0
  188. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/service/responses.go +44 -0
  189. data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/test-resources.json +579 -0
  190. data/ext/vendor/github.com/andybalholm/brotli/LICENSE +19 -0
  191. data/ext/vendor/github.com/andybalholm/brotli/README.md +7 -0
  192. data/ext/vendor/github.com/andybalholm/brotli/backward_references.go +185 -0
  193. data/ext/vendor/github.com/andybalholm/brotli/backward_references_hq.go +796 -0
  194. data/ext/vendor/github.com/andybalholm/brotli/bit_cost.go +436 -0
  195. data/ext/vendor/github.com/andybalholm/brotli/bit_reader.go +266 -0
  196. data/ext/vendor/github.com/andybalholm/brotli/block_splitter.go +144 -0
  197. data/ext/vendor/github.com/andybalholm/brotli/block_splitter_command.go +434 -0
  198. data/ext/vendor/github.com/andybalholm/brotli/block_splitter_distance.go +433 -0
  199. data/ext/vendor/github.com/andybalholm/brotli/block_splitter_literal.go +433 -0
  200. data/ext/vendor/github.com/andybalholm/brotli/brotli_bit_stream.go +1300 -0
  201. data/ext/vendor/github.com/andybalholm/brotli/cluster.go +30 -0
  202. data/ext/vendor/github.com/andybalholm/brotli/cluster_command.go +164 -0
  203. data/ext/vendor/github.com/andybalholm/brotli/cluster_distance.go +326 -0
  204. data/ext/vendor/github.com/andybalholm/brotli/cluster_literal.go +326 -0
  205. data/ext/vendor/github.com/andybalholm/brotli/command.go +254 -0
  206. data/ext/vendor/github.com/andybalholm/brotli/compress_fragment.go +834 -0
  207. data/ext/vendor/github.com/andybalholm/brotli/compress_fragment_two_pass.go +748 -0
  208. data/ext/vendor/github.com/andybalholm/brotli/constants.go +77 -0
  209. data/ext/vendor/github.com/andybalholm/brotli/context.go +2176 -0
  210. data/ext/vendor/github.com/andybalholm/brotli/decode.go +2586 -0
  211. data/ext/vendor/github.com/andybalholm/brotli/dictionary.go +122890 -0
  212. data/ext/vendor/github.com/andybalholm/brotli/dictionary_hash.go +32779 -0
  213. data/ext/vendor/github.com/andybalholm/brotli/encode.go +1220 -0
  214. data/ext/vendor/github.com/andybalholm/brotli/encoder_dict.go +22 -0
  215. data/ext/vendor/github.com/andybalholm/brotli/entropy_encode.go +592 -0
  216. data/ext/vendor/github.com/andybalholm/brotli/entropy_encode_static.go +4394 -0
  217. data/ext/vendor/github.com/andybalholm/brotli/fast_log.go +290 -0
  218. data/ext/vendor/github.com/andybalholm/brotli/find_match_length.go +45 -0
  219. data/ext/vendor/github.com/andybalholm/brotli/h10.go +287 -0
  220. data/ext/vendor/github.com/andybalholm/brotli/h5.go +214 -0
  221. data/ext/vendor/github.com/andybalholm/brotli/h6.go +216 -0
  222. data/ext/vendor/github.com/andybalholm/brotli/hash.go +342 -0
  223. data/ext/vendor/github.com/andybalholm/brotli/hash_composite.go +93 -0
  224. data/ext/vendor/github.com/andybalholm/brotli/hash_forgetful_chain.go +252 -0
  225. data/ext/vendor/github.com/andybalholm/brotli/hash_longest_match_quickly.go +214 -0
  226. data/ext/vendor/github.com/andybalholm/brotli/hash_rolling.go +168 -0
  227. data/ext/vendor/github.com/andybalholm/brotli/histogram.go +226 -0
  228. data/ext/vendor/github.com/andybalholm/brotli/http.go +192 -0
  229. data/ext/vendor/github.com/andybalholm/brotli/huffman.go +653 -0
  230. data/ext/vendor/github.com/andybalholm/brotli/literal_cost.go +182 -0
  231. data/ext/vendor/github.com/andybalholm/brotli/memory.go +66 -0
  232. data/ext/vendor/github.com/andybalholm/brotli/metablock.go +574 -0
  233. data/ext/vendor/github.com/andybalholm/brotli/metablock_command.go +165 -0
  234. data/ext/vendor/github.com/andybalholm/brotli/metablock_distance.go +165 -0
  235. data/ext/vendor/github.com/andybalholm/brotli/metablock_literal.go +165 -0
  236. data/ext/vendor/github.com/andybalholm/brotli/params.go +37 -0
  237. data/ext/vendor/github.com/andybalholm/brotli/platform.go +103 -0
  238. data/ext/vendor/github.com/andybalholm/brotli/prefix.go +30 -0
  239. data/ext/vendor/github.com/andybalholm/brotli/prefix_dec.go +723 -0
  240. data/ext/vendor/github.com/andybalholm/brotli/quality.go +196 -0
  241. data/ext/vendor/github.com/andybalholm/brotli/reader.go +102 -0
  242. data/ext/vendor/github.com/andybalholm/brotli/ringbuffer.go +134 -0
  243. data/ext/vendor/github.com/andybalholm/brotli/state.go +295 -0
  244. data/ext/vendor/github.com/andybalholm/brotli/static_dict.go +662 -0
  245. data/ext/vendor/github.com/andybalholm/brotli/static_dict_lut.go +75094 -0
  246. data/ext/vendor/github.com/andybalholm/brotli/symbol_list.go +22 -0
  247. data/ext/vendor/github.com/andybalholm/brotli/transform.go +641 -0
  248. data/ext/vendor/github.com/andybalholm/brotli/utf8_util.go +70 -0
  249. data/ext/vendor/github.com/andybalholm/brotli/util.go +7 -0
  250. data/ext/vendor/github.com/andybalholm/brotli/write_bits.go +52 -0
  251. data/ext/vendor/github.com/andybalholm/brotli/writer.go +119 -0
  252. data/ext/vendor/github.com/apache/arrow/go/v10/LICENSE.txt +1873 -0
  253. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/.editorconfig +21 -0
  254. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/.gitignore +35 -0
  255. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/Gopkg.lock +44 -0
  256. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/Gopkg.toml +23 -0
  257. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/Makefile +54 -0
  258. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/array.go +184 -0
  259. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/binary.go +308 -0
  260. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/binarybuilder.go +335 -0
  261. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/boolean.go +117 -0
  262. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/booleanbuilder.go +234 -0
  263. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/bufferbuilder.go +143 -0
  264. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/bufferbuilder_byte.go +30 -0
  265. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/bufferbuilder_numeric.gen.go +124 -0
  266. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/bufferbuilder_numeric.gen.go.tmpl +61 -0
  267. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/builder.go +337 -0
  268. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/compare.go +728 -0
  269. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/concat.go +567 -0
  270. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/data.go +250 -0
  271. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/decimal128.go +334 -0
  272. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/decimal256.go +333 -0
  273. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/dictionary.go +1666 -0
  274. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/doc.go +20 -0
  275. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/extension.go +256 -0
  276. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/fixed_size_list.go +337 -0
  277. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/fixedsize_binary.go +116 -0
  278. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/fixedsize_binarybuilder.go +229 -0
  279. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/float16.go +107 -0
  280. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/float16_builder.go +237 -0
  281. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/interval.go +847 -0
  282. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/json_reader.go +205 -0
  283. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/list.go +589 -0
  284. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/map.go +304 -0
  285. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/null.go +198 -0
  286. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numeric.gen.go +1406 -0
  287. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numeric.gen.go.tmpl +136 -0
  288. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numericbuilder.gen.go +3429 -0
  289. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numericbuilder.gen.go.tmpl +371 -0
  290. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numericbuilder.gen_test.go.tmpl +216 -0
  291. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/record.go +383 -0
  292. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/string.go +498 -0
  293. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/struct.go +442 -0
  294. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/table.go +337 -0
  295. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/union.go +1308 -0
  296. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/util.go +492 -0
  297. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array.go +122 -0
  298. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/arrio/arrio.go +92 -0
  299. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/Makefile +62 -0
  300. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops.go +63 -0
  301. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_amd64.go +35 -0
  302. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_arm64.go +25 -0
  303. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_avx2_amd64.go +38 -0
  304. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_avx2_amd64.s +192 -0
  305. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_noasm.go +25 -0
  306. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_ppc64le.go +25 -0
  307. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_s390x.go +25 -0
  308. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_sse4_amd64.go +38 -0
  309. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_sse4_amd64.s +256 -0
  310. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmaps.go +586 -0
  311. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitutil.go +220 -0
  312. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/endian_default.go +33 -0
  313. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/endian_s390x.go +32 -0
  314. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/compare.go +127 -0
  315. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype.go +376 -0
  316. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_binary.go +98 -0
  317. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_extension.go +173 -0
  318. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_fixedwidth.go +786 -0
  319. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_nested.go +732 -0
  320. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_null.go +33 -0
  321. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_numeric.gen.go +206 -0
  322. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_numeric.gen.go.tmpl +45 -0
  323. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_numeric.gen.go.tmpldata +66 -0
  324. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/decimal128/decimal128.go +445 -0
  325. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/decimal256/decimal256.go +545 -0
  326. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/doc.go +43 -0
  327. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/endian/big.go +30 -0
  328. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/endian/endian.go +41 -0
  329. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/endian/little.go +30 -0
  330. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/errors.go +27 -0
  331. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/float16/float16.go +70 -0
  332. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/assert_off.go +24 -0
  333. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/assert_on.go +28 -0
  334. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/doc.go +32 -0
  335. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/log_off.go +21 -0
  336. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/log_on.go +32 -0
  337. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/util.go +37 -0
  338. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/dictutils/dict.go +406 -0
  339. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Binary.go +51 -0
  340. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Block.go +74 -0
  341. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/BodyCompression.go +89 -0
  342. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/BodyCompressionMethod.go +52 -0
  343. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Bool.go +50 -0
  344. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Buffer.go +73 -0
  345. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/CompressionType.go +45 -0
  346. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Date.go +71 -0
  347. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/DateUnit.go +45 -0
  348. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Decimal.go +107 -0
  349. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/DictionaryBatch.go +108 -0
  350. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/DictionaryEncoding.go +135 -0
  351. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/DictionaryKind.go +47 -0
  352. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Duration.go +65 -0
  353. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Endianness.go +47 -0
  354. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Feature.go +71 -0
  355. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Field.go +188 -0
  356. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/FieldNode.go +76 -0
  357. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/FixedSizeBinary.go +67 -0
  358. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/FixedSizeList.go +67 -0
  359. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/FloatingPoint.go +65 -0
  360. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Footer.go +162 -0
  361. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Int.go +80 -0
  362. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Interval.go +65 -0
  363. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/IntervalUnit.go +48 -0
  364. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/KeyValue.go +75 -0
  365. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/LargeBinary.go +52 -0
  366. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/LargeList.go +52 -0
  367. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/LargeUtf8.go +52 -0
  368. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/List.go +50 -0
  369. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Map.go +92 -0
  370. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Message.go +133 -0
  371. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/MessageHeader.go +65 -0
  372. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/MetadataVersion.go +65 -0
  373. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Null.go +51 -0
  374. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Precision.go +48 -0
  375. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/RecordBatch.go +154 -0
  376. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Schema.go +159 -0
  377. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseMatrixCompressedAxis.go +45 -0
  378. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseMatrixIndexCSR.go +181 -0
  379. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseMatrixIndexCSX.go +200 -0
  380. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseTensor.go +175 -0
  381. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseTensorIndex.go +51 -0
  382. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseTensorIndexCOO.go +179 -0
  383. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseTensorIndexCSF.go +291 -0
  384. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Struct_.go +53 -0
  385. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Tensor.go +163 -0
  386. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/TensorDim.go +83 -0
  387. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Time.go +94 -0
  388. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/TimeUnit.go +51 -0
  389. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Timestamp.go +201 -0
  390. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Type.go +108 -0
  391. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Union.go +101 -0
  392. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/UnionMode.go +45 -0
  393. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Utf8.go +51 -0
  394. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/utils.go +47 -0
  395. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/compression.go +120 -0
  396. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/endian_swap.go +162 -0
  397. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/file_reader.go +728 -0
  398. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/file_writer.go +392 -0
  399. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/ipc.go +178 -0
  400. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/message.go +242 -0
  401. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/metadata.go +1237 -0
  402. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/reader.go +284 -0
  403. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/writer.go +892 -0
  404. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/Makefile +66 -0
  405. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/allocator.go +33 -0
  406. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/buffer.go +145 -0
  407. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/cgo_allocator.go +108 -0
  408. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/cgo_allocator_defaults.go +23 -0
  409. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/cgo_allocator_logging.go +23 -0
  410. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/checked_allocator.go +157 -0
  411. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/doc.go +20 -0
  412. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/go_allocator.go +48 -0
  413. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/internal/cgoalloc/allocator.cc +71 -0
  414. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/internal/cgoalloc/allocator.go +107 -0
  415. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/internal/cgoalloc/allocator.h +39 -0
  416. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/internal/cgoalloc/helpers.h +52 -0
  417. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory.go +33 -0
  418. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_amd64.go +33 -0
  419. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_arm64.go +31 -0
  420. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_avx2_amd64.go +41 -0
  421. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_avx2_amd64.s +85 -0
  422. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_js_wasm.go +23 -0
  423. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_neon_arm64.go +31 -0
  424. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_neon_arm64.s +43 -0
  425. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_noasm.go +23 -0
  426. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_sse4_amd64.go +31 -0
  427. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_sse4_amd64.s +84 -0
  428. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/util.go +37 -0
  429. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/numeric.schema.json +15 -0
  430. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/numeric.tmpldata +147 -0
  431. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/record.go +48 -0
  432. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/schema.go +266 -0
  433. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/table.go +189 -0
  434. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/tools.go +25 -0
  435. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_string.go +61 -0
  436. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_boolean.go +28 -0
  437. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_decimal128.go +75 -0
  438. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_decimal256.go +70 -0
  439. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_float16.go +74 -0
  440. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_interval.go +184 -0
  441. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_numeric.gen.go +814 -0
  442. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_numeric.gen.go.tmpl +95 -0
  443. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_numeric.gen_test.go.tmpl +61 -0
  444. data/ext/vendor/github.com/apache/arrow/go/v10/arrow/unionmode_string.go +25 -0
  445. data/ext/vendor/github.com/apache/arrow/go/v10/internal/bitutils/bit_block_counter.go +417 -0
  446. data/ext/vendor/github.com/apache/arrow/go/v10/internal/bitutils/bit_run_reader.go +151 -0
  447. data/ext/vendor/github.com/apache/arrow/go/v10/internal/bitutils/bit_set_run_reader.go +346 -0
  448. data/ext/vendor/github.com/apache/arrow/go/v10/internal/bitutils/bitmap_generate.go +107 -0
  449. data/ext/vendor/github.com/apache/arrow/go/v10/internal/hashing/types.tmpldata +42 -0
  450. data/ext/vendor/github.com/apache/arrow/go/v10/internal/hashing/xxh3_memo_table.gen.go +2783 -0
  451. data/ext/vendor/github.com/apache/arrow/go/v10/internal/hashing/xxh3_memo_table.gen.go.tmpl +343 -0
  452. data/ext/vendor/github.com/apache/arrow/go/v10/internal/hashing/xxh3_memo_table.go +465 -0
  453. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/Makefile +80 -0
  454. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/buf_reader.go +212 -0
  455. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/endians_default.go +31 -0
  456. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/endians_s390x.go +33 -0
  457. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/math.go +49 -0
  458. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max.go +212 -0
  459. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_amd64.go +56 -0
  460. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_arm64.go +66 -0
  461. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_avx2_amd64.go +91 -0
  462. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_avx2_amd64.s +927 -0
  463. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_neon_arm64.go +56 -0
  464. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_neon_arm64.s +324 -0
  465. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_noasm.go +32 -0
  466. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_ppc64le.go +31 -0
  467. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_s390x.go +31 -0
  468. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_sse4_amd64.go +89 -0
  469. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_sse4_amd64.s +1044 -0
  470. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints.go +407 -0
  471. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints.go.tmpl +34 -0
  472. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints.tmpldata +34 -0
  473. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_amd64.go +326 -0
  474. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_amd64.go.tmpl +75 -0
  475. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_arm64.go +97 -0
  476. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_avx2_amd64.go +474 -0
  477. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_avx2_amd64.s +3074 -0
  478. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_def.go +227 -0
  479. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_noasm.go +97 -0
  480. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_noasm.go.tmpl +34 -0
  481. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_ppc64le.go +97 -0
  482. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_s390x.go +97 -0
  483. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_s390x.go.tmpl +34 -0
  484. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_simd.go.tmpl +42 -0
  485. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_sse4_amd64.go +474 -0
  486. data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_sse4_amd64.s +3074 -0
  487. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/.gitignore +31 -0
  488. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/brotli.go +115 -0
  489. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/compress.go +156 -0
  490. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/gzip.go +98 -0
  491. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/snappy.go +62 -0
  492. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/zstd.go +112 -0
  493. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/doc.go +67 -0
  494. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/encryption_properties.go +711 -0
  495. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/assert_off.go +24 -0
  496. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/assert_on.go +28 -0
  497. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/doc.go +23 -0
  498. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/log_off.go +24 -0
  499. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/log_on.go +32 -0
  500. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/gen-go/parquet/GoUnusedProtection__.go +6 -0
  501. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/gen-go/parquet/parquet-consts.go +23 -0
  502. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/gen-go/parquet/parquet.go +10967 -0
  503. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/gen-go/parquet/staticcheck.conf +17 -0
  504. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/reader_properties.go +88 -0
  505. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/tools.go +26 -0
  506. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/types.go +391 -0
  507. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/version_string.go +25 -0
  508. data/ext/vendor/github.com/apache/arrow/go/v10/parquet/writer_properties.go +533 -0
  509. data/ext/vendor/github.com/apache/thrift/LICENSE +306 -0
  510. data/ext/vendor/github.com/apache/thrift/NOTICE +5 -0
  511. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/application_exception.go +183 -0
  512. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/binary_protocol.go +548 -0
  513. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/buf_pool.go +52 -0
  514. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/buffered_transport.go +99 -0
  515. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/client.go +109 -0
  516. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/compact_protocol.go +846 -0
  517. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/configuration.go +378 -0
  518. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/context.go +24 -0
  519. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/debug_protocol.go +447 -0
  520. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/deserializer.go +121 -0
  521. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/exception.go +116 -0
  522. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/framed_transport.go +250 -0
  523. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/header_context.go +110 -0
  524. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/header_protocol.go +351 -0
  525. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/header_transport.go +816 -0
  526. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/http_client.go +256 -0
  527. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/http_transport.go +74 -0
  528. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/iostream_transport.go +222 -0
  529. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/json_protocol.go +564 -0
  530. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/logger.go +69 -0
  531. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/memory_buffer.go +80 -0
  532. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/messagetype.go +31 -0
  533. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/middleware.go +109 -0
  534. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/multiplexed_protocol.go +237 -0
  535. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/numeric.go +164 -0
  536. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/pointerize.go +52 -0
  537. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/processor_factory.go +80 -0
  538. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/protocol.go +184 -0
  539. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/protocol_exception.go +104 -0
  540. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/protocol_factory.go +25 -0
  541. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/response_helper.go +94 -0
  542. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/rich_transport.go +71 -0
  543. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/serializer.go +136 -0
  544. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/server.go +35 -0
  545. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/server_socket.go +137 -0
  546. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/server_transport.go +34 -0
  547. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go +1334 -0
  548. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/simple_server.go +336 -0
  549. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/socket.go +241 -0
  550. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/socket_conn.go +124 -0
  551. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/socket_non_unix_conn.go +35 -0
  552. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/socket_unix_conn.go +84 -0
  553. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/ssl_server_socket.go +112 -0
  554. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/ssl_socket.go +262 -0
  555. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/staticcheck.conf +4 -0
  556. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/transport.go +70 -0
  557. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/transport_exception.go +131 -0
  558. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/transport_factory.go +39 -0
  559. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/type.go +69 -0
  560. data/ext/vendor/github.com/apache/thrift/lib/go/thrift/zlib_transport.go +137 -0
  561. data/ext/vendor/github.com/aws/aws-sdk-go-v2/LICENSE.txt +202 -0
  562. data/ext/vendor/github.com/aws/aws-sdk-go-v2/NOTICE.txt +3 -0
  563. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/arn/arn.go +92 -0
  564. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/config.go +179 -0
  565. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/context.go +22 -0
  566. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/credential_cache.go +218 -0
  567. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/credentials.go +131 -0
  568. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaults/auto.go +38 -0
  569. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaults/configuration.go +43 -0
  570. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaults/defaults.go +50 -0
  571. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaults/doc.go +2 -0
  572. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaultsmode.go +95 -0
  573. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/doc.go +62 -0
  574. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/endpoints.go +229 -0
  575. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/errors.go +9 -0
  576. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/from_ptr.go +365 -0
  577. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/go_module_metadata.go +6 -0
  578. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/logging.go +119 -0
  579. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/logging_generate.go +95 -0
  580. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/metadata.go +180 -0
  581. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/middleware.go +168 -0
  582. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/osname.go +24 -0
  583. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/osname_go115.go +24 -0
  584. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/request_id.go +27 -0
  585. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/request_id_retriever.go +49 -0
  586. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/user_agent.go +243 -0
  587. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/CHANGELOG.md +54 -0
  588. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/LICENSE.txt +202 -0
  589. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/debug.go +144 -0
  590. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/decode.go +218 -0
  591. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/encode.go +167 -0
  592. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/error.go +23 -0
  593. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi/headers.go +24 -0
  594. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi/middleware.go +71 -0
  595. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi/transport.go +13 -0
  596. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi/transport_go117.go +12 -0
  597. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/go_module_metadata.go +6 -0
  598. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/header.go +175 -0
  599. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/header_value.go +521 -0
  600. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/message.go +117 -0
  601. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/xml/error_utils.go +56 -0
  602. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/ratelimit/token_bucket.go +96 -0
  603. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/ratelimit/token_rate_limit.go +87 -0
  604. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/request.go +25 -0
  605. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/adaptive.go +156 -0
  606. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/adaptive_ratelimit.go +158 -0
  607. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/adaptive_token_bucket.go +83 -0
  608. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/doc.go +80 -0
  609. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/errors.go +20 -0
  610. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/jitter_backoff.go +49 -0
  611. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/metadata.go +52 -0
  612. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/middleware.go +331 -0
  613. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/retry.go +90 -0
  614. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/retryable_error.go +186 -0
  615. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/standard.go +258 -0
  616. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/throttle_error.go +60 -0
  617. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/timeout_error.go +52 -0
  618. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retryer.go +127 -0
  619. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/runtime.go +14 -0
  620. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/cache.go +115 -0
  621. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/const.go +40 -0
  622. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/header_rules.go +82 -0
  623. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/headers.go +68 -0
  624. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/hmac.go +13 -0
  625. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/host.go +75 -0
  626. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/scope.go +13 -0
  627. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/time.go +36 -0
  628. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/util.go +80 -0
  629. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/v4/middleware.go +400 -0
  630. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/v4/presign_middleware.go +127 -0
  631. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/v4/stream.go +86 -0
  632. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/v4/v4.go +548 -0
  633. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/to_ptr.go +297 -0
  634. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/client.go +310 -0
  635. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/content_type.go +42 -0
  636. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/response_error.go +33 -0
  637. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/response_error_middleware.go +54 -0
  638. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/timeout_read_closer.go +104 -0
  639. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/types.go +42 -0
  640. data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/version.go +8 -0
  641. data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/CHANGELOG.md +197 -0
  642. data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/LICENSE.txt +202 -0
  643. data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/doc.go +4 -0
  644. data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/go_module_metadata.go +6 -0
  645. data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/static_provider.go +53 -0
  646. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/CHANGELOG.md +249 -0
  647. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/LICENSE.txt +202 -0
  648. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/api.go +37 -0
  649. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/arn.go +23 -0
  650. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/bucket_region.go +139 -0
  651. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/buffered_read_seeker.go +79 -0
  652. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/default_read_seeker_write_to.go +8 -0
  653. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/default_read_seeker_write_to_windows.go +5 -0
  654. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/default_writer_read_from.go +8 -0
  655. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/default_writer_read_from_windows.go +5 -0
  656. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/doc.go +3 -0
  657. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/download.go +525 -0
  658. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/go_module_metadata.go +6 -0
  659. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/pool.go +251 -0
  660. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/read_seeker_write_to.go +65 -0
  661. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/types.go +187 -0
  662. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/upload.go +808 -0
  663. data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/writer_read_from.go +83 -0
  664. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/copy.go +112 -0
  665. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/equal.go +33 -0
  666. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/path_value.go +225 -0
  667. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/prettify.go +131 -0
  668. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/string_value.go +88 -0
  669. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/CHANGELOG.md +130 -0
  670. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/LICENSE.txt +202 -0
  671. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/config.go +65 -0
  672. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/go_module_metadata.go +6 -0
  673. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/CHANGELOG.md +103 -0
  674. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/LICENSE.txt +202 -0
  675. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/endpoints.go +302 -0
  676. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/go_module_metadata.go +6 -0
  677. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/rand/rand.go +33 -0
  678. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sdk/interfaces.go +9 -0
  679. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sdk/time.go +74 -0
  680. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sdkio/byte.go +12 -0
  681. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/strings/strings.go +11 -0
  682. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sync/singleflight/LICENSE +28 -0
  683. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sync/singleflight/docs.go +7 -0
  684. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sync/singleflight/singleflight.go +210 -0
  685. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/timeconv/duration.go +13 -0
  686. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/CHANGELOG.md +61 -0
  687. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/LICENSE.txt +202 -0
  688. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/credentials.go +141 -0
  689. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/error.go +17 -0
  690. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/go_module_metadata.go +6 -0
  691. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/crypto/compare.go +30 -0
  692. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/crypto/ecc.go +113 -0
  693. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/const.go +36 -0
  694. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/header_rules.go +82 -0
  695. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/headers.go +67 -0
  696. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/hmac.go +13 -0
  697. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/host.go +75 -0
  698. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/time.go +36 -0
  699. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/util.go +64 -0
  700. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/middleware.go +105 -0
  701. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/presign_middleware.go +117 -0
  702. data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/v4a.go +520 -0
  703. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/CHANGELOG.md +80 -0
  704. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/LICENSE.txt +202 -0
  705. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/accept_encoding_gzip.go +176 -0
  706. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/doc.go +22 -0
  707. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/go_module_metadata.go +6 -0
  708. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/CHANGELOG.md +84 -0
  709. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/LICENSE.txt +202 -0
  710. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/algorithms.go +323 -0
  711. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/aws_chunked_encoding.go +389 -0
  712. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/go_module_metadata.go +6 -0
  713. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/middleware_add.go +185 -0
  714. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/middleware_compute_input_checksum.go +479 -0
  715. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/middleware_setup_context.go +117 -0
  716. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/middleware_validate_output.go +131 -0
  717. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/CHANGELOG.md +147 -0
  718. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/LICENSE.txt +202 -0
  719. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/context.go +48 -0
  720. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/doc.go +3 -0
  721. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/go_module_metadata.go +6 -0
  722. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/middleware.go +110 -0
  723. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/CHANGELOG.md +156 -0
  724. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/LICENSE.txt +202 -0
  725. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn/accesspoint_arn.go +53 -0
  726. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn/arn.go +85 -0
  727. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn/outpost_arn.go +128 -0
  728. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn/s3_object_lambda_arn.go +15 -0
  729. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn_lookup.go +73 -0
  730. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/config/config.go +22 -0
  731. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/endpoint_error.go +183 -0
  732. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/go_module_metadata.go +6 -0
  733. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/host_id.go +29 -0
  734. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/metadata.go +28 -0
  735. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/metadata_retriever.go +52 -0
  736. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/resource_request.go +77 -0
  737. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/response_error.go +33 -0
  738. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/response_error_middleware.go +60 -0
  739. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/update_endpoint.go +78 -0
  740. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/xml_utils.go +89 -0
  741. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/CHANGELOG.md +228 -0
  742. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/LICENSE.txt +202 -0
  743. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_client.go +772 -0
  744. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_AbortMultipartUpload.go +232 -0
  745. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_CompleteMultipartUpload.go +436 -0
  746. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_CopyObject.go +574 -0
  747. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_CreateBucket.go +318 -0
  748. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_CreateMultipartUpload.go +604 -0
  749. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucket.go +200 -0
  750. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketAnalyticsConfiguration.go +189 -0
  751. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketCors.go +172 -0
  752. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketEncryption.go +180 -0
  753. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketIntelligentTieringConfiguration.go +188 -0
  754. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketInventoryConfiguration.go +188 -0
  755. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketLifecycle.go +178 -0
  756. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketMetricsConfiguration.go +194 -0
  757. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketOwnershipControls.go +171 -0
  758. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketPolicy.go +181 -0
  759. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketReplication.go +179 -0
  760. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketTagging.go +170 -0
  761. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketWebsite.go +179 -0
  762. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteObject.go +270 -0
  763. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteObjectTagging.go +202 -0
  764. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteObjects.go +294 -0
  765. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeletePublicAccessBlock.go +183 -0
  766. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketAccelerateConfiguration.go +188 -0
  767. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketAcl.go +181 -0
  768. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketAnalyticsConfiguration.go +194 -0
  769. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketCors.go +179 -0
  770. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketEncryption.go +188 -0
  771. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketIntelligentTieringConfiguration.go +193 -0
  772. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketInventoryConfiguration.go +192 -0
  773. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketLifecycleConfiguration.go +209 -0
  774. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketLocation.go +248 -0
  775. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketLogging.go +177 -0
  776. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketMetricsConfiguration.go +199 -0
  777. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketNotificationConfiguration.go +193 -0
  778. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketOwnershipControls.go +177 -0
  779. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketPolicy.go +180 -0
  780. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketPolicyStatus.go +189 -0
  781. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketReplication.go +188 -0
  782. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketRequestPayment.go +172 -0
  783. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketTagging.go +185 -0
  784. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketVersioning.go +186 -0
  785. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketWebsite.go +190 -0
  786. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObject.go +593 -0
  787. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectAcl.go +224 -0
  788. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectAttributes.go +363 -0
  789. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectLegalHold.go +195 -0
  790. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectLockConfiguration.go +181 -0
  791. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectRetention.go +195 -0
  792. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectTagging.go +223 -0
  793. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectTorrent.go +191 -0
  794. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetPublicAccessBlock.go +196 -0
  795. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_HeadBucket.go +541 -0
  796. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_HeadObject.go +884 -0
  797. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBucketAnalyticsConfigurations.go +214 -0
  798. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBucketIntelligentTieringConfigurations.go +206 -0
  799. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBucketInventoryConfigurations.go +215 -0
  800. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBucketMetricsConfigurations.go +218 -0
  801. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBuckets.go +145 -0
  802. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListMultipartUploads.go +310 -0
  803. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListObjectVersions.go +276 -0
  804. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListObjects.go +284 -0
  805. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListObjectsV2.go +408 -0
  806. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListParts.go +424 -0
  807. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketAccelerateConfiguration.go +237 -0
  808. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketAcl.go +368 -0
  809. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketAnalyticsConfiguration.go +234 -0
  810. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketCors.go +253 -0
  811. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketEncryption.go +243 -0
  812. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketIntelligentTieringConfiguration.go +225 -0
  813. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketInventoryConfiguration.go +235 -0
  814. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketLifecycleConfiguration.go +269 -0
  815. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketLogging.go +258 -0
  816. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketMetricsConfiguration.go +209 -0
  817. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketNotificationConfiguration.go +209 -0
  818. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketOwnershipControls.go +197 -0
  819. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketPolicy.go +229 -0
  820. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketReplication.go +264 -0
  821. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketRequestPayment.go +221 -0
  822. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketTagging.go +266 -0
  823. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketVersioning.go +243 -0
  824. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketWebsite.go +279 -0
  825. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObject.go +613 -0
  826. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectAcl.go +410 -0
  827. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectLegalHold.go +237 -0
  828. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectLockConfiguration.go +234 -0
  829. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectRetention.go +244 -0
  830. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectTagging.go +291 -0
  831. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutPublicAccessBlock.go +240 -0
  832. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_RestoreObject.go +457 -0
  833. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_SelectObjectContent.go +426 -0
  834. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_UploadPart.go +496 -0
  835. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_UploadPartCopy.go +437 -0
  836. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_WriteGetObjectResponse.go +457 -0
  837. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/deserializers.go +21940 -0
  838. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/doc.go +5 -0
  839. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/endpoints.go +208 -0
  840. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/eventstream.go +285 -0
  841. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/generated.json +128 -0
  842. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/go_module_metadata.go +6 -0
  843. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/arn/arn_parser.go +106 -0
  844. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/doc.go +80 -0
  845. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/handle_200_error.go +74 -0
  846. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/host.go +22 -0
  847. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/presigned_expires.go +49 -0
  848. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/process_arn_resource.go +564 -0
  849. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/remove_bucket_middleware.go +58 -0
  850. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/s3_object_lambda.go +84 -0
  851. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/signer_wrapper.go +213 -0
  852. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/update_endpoint.go +306 -0
  853. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/endpoints/endpoints.go +836 -0
  854. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/serializers.go +12713 -0
  855. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/types/enums.go +1200 -0
  856. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/types/errors.go +188 -0
  857. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/types/types.go +3892 -0
  858. data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/validators.go +5494 -0
  859. data/ext/vendor/github.com/aws/smithy-go/.gitignore +22 -0
  860. data/ext/vendor/github.com/aws/smithy-go/.travis.yml +28 -0
  861. data/ext/vendor/github.com/aws/smithy-go/CHANGELOG.md +157 -0
  862. data/ext/vendor/github.com/aws/smithy-go/CODE_OF_CONDUCT.md +4 -0
  863. data/ext/vendor/github.com/aws/smithy-go/CONTRIBUTING.md +59 -0
  864. data/ext/vendor/github.com/aws/smithy-go/LICENSE +175 -0
  865. data/ext/vendor/github.com/aws/smithy-go/Makefile +63 -0
  866. data/ext/vendor/github.com/aws/smithy-go/NOTICE +1 -0
  867. data/ext/vendor/github.com/aws/smithy-go/README.md +12 -0
  868. data/ext/vendor/github.com/aws/smithy-go/auth/bearer/docs.go +3 -0
  869. data/ext/vendor/github.com/aws/smithy-go/auth/bearer/middleware.go +104 -0
  870. data/ext/vendor/github.com/aws/smithy-go/auth/bearer/token.go +50 -0
  871. data/ext/vendor/github.com/aws/smithy-go/auth/bearer/token_cache.go +208 -0
  872. data/ext/vendor/github.com/aws/smithy-go/context/suppress_expired.go +81 -0
  873. data/ext/vendor/github.com/aws/smithy-go/doc.go +2 -0
  874. data/ext/vendor/github.com/aws/smithy-go/document/doc.go +12 -0
  875. data/ext/vendor/github.com/aws/smithy-go/document/document.go +153 -0
  876. data/ext/vendor/github.com/aws/smithy-go/document/errors.go +75 -0
  877. data/ext/vendor/github.com/aws/smithy-go/document.go +10 -0
  878. data/ext/vendor/github.com/aws/smithy-go/encoding/doc.go +4 -0
  879. data/ext/vendor/github.com/aws/smithy-go/encoding/encoding.go +40 -0
  880. data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/encode.go +116 -0
  881. data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/header.go +122 -0
  882. data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/path_replace.go +108 -0
  883. data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/query.go +107 -0
  884. data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/uri.go +111 -0
  885. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/array.go +49 -0
  886. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/constants.go +10 -0
  887. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/doc.go +49 -0
  888. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/element.go +91 -0
  889. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/encoder.go +51 -0
  890. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/error_utils.go +51 -0
  891. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/escape.go +137 -0
  892. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/map.go +53 -0
  893. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/value.go +302 -0
  894. data/ext/vendor/github.com/aws/smithy-go/encoding/xml/xml_decoder.go +154 -0
  895. data/ext/vendor/github.com/aws/smithy-go/errors.go +137 -0
  896. data/ext/vendor/github.com/aws/smithy-go/go_module_metadata.go +6 -0
  897. data/ext/vendor/github.com/aws/smithy-go/internal/sync/singleflight/LICENSE +28 -0
  898. data/ext/vendor/github.com/aws/smithy-go/internal/sync/singleflight/docs.go +8 -0
  899. data/ext/vendor/github.com/aws/smithy-go/internal/sync/singleflight/singleflight.go +210 -0
  900. data/ext/vendor/github.com/aws/smithy-go/io/byte.go +12 -0
  901. data/ext/vendor/github.com/aws/smithy-go/io/doc.go +2 -0
  902. data/ext/vendor/github.com/aws/smithy-go/io/reader.go +16 -0
  903. data/ext/vendor/github.com/aws/smithy-go/io/ringbuffer.go +94 -0
  904. data/ext/vendor/github.com/aws/smithy-go/local-mod-replace.sh +39 -0
  905. data/ext/vendor/github.com/aws/smithy-go/logging/logger.go +82 -0
  906. data/ext/vendor/github.com/aws/smithy-go/middleware/doc.go +67 -0
  907. data/ext/vendor/github.com/aws/smithy-go/middleware/logging.go +46 -0
  908. data/ext/vendor/github.com/aws/smithy-go/middleware/metadata.go +65 -0
  909. data/ext/vendor/github.com/aws/smithy-go/middleware/middleware.go +71 -0
  910. data/ext/vendor/github.com/aws/smithy-go/middleware/ordered_group.go +268 -0
  911. data/ext/vendor/github.com/aws/smithy-go/middleware/stack.go +209 -0
  912. data/ext/vendor/github.com/aws/smithy-go/middleware/stack_values.go +100 -0
  913. data/ext/vendor/github.com/aws/smithy-go/middleware/step_build.go +211 -0
  914. data/ext/vendor/github.com/aws/smithy-go/middleware/step_deserialize.go +217 -0
  915. data/ext/vendor/github.com/aws/smithy-go/middleware/step_finalize.go +211 -0
  916. data/ext/vendor/github.com/aws/smithy-go/middleware/step_initialize.go +211 -0
  917. data/ext/vendor/github.com/aws/smithy-go/middleware/step_serialize.go +219 -0
  918. data/ext/vendor/github.com/aws/smithy-go/modman.toml +11 -0
  919. data/ext/vendor/github.com/aws/smithy-go/ptr/doc.go +5 -0
  920. data/ext/vendor/github.com/aws/smithy-go/ptr/from_ptr.go +601 -0
  921. data/ext/vendor/github.com/aws/smithy-go/ptr/gen_scalars.go +83 -0
  922. data/ext/vendor/github.com/aws/smithy-go/ptr/to_ptr.go +499 -0
  923. data/ext/vendor/github.com/aws/smithy-go/rand/doc.go +3 -0
  924. data/ext/vendor/github.com/aws/smithy-go/rand/rand.go +31 -0
  925. data/ext/vendor/github.com/aws/smithy-go/rand/uuid.go +87 -0
  926. data/ext/vendor/github.com/aws/smithy-go/sync/error.go +53 -0
  927. data/ext/vendor/github.com/aws/smithy-go/time/time.go +134 -0
  928. data/ext/vendor/github.com/aws/smithy-go/transport/http/checksum_middleware.go +70 -0
  929. data/ext/vendor/github.com/aws/smithy-go/transport/http/client.go +120 -0
  930. data/ext/vendor/github.com/aws/smithy-go/transport/http/doc.go +5 -0
  931. data/ext/vendor/github.com/aws/smithy-go/transport/http/headerlist.go +163 -0
  932. data/ext/vendor/github.com/aws/smithy-go/transport/http/host.go +89 -0
  933. data/ext/vendor/github.com/aws/smithy-go/transport/http/internal/io/safe.go +75 -0
  934. data/ext/vendor/github.com/aws/smithy-go/transport/http/md5_checksum.go +25 -0
  935. data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_close_response_body.go +79 -0
  936. data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_content_length.go +84 -0
  937. data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_headers.go +167 -0
  938. data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_http_logging.go +75 -0
  939. data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_metadata.go +51 -0
  940. data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_min_proto.go +79 -0
  941. data/ext/vendor/github.com/aws/smithy-go/transport/http/request.go +189 -0
  942. data/ext/vendor/github.com/aws/smithy-go/transport/http/response.go +34 -0
  943. data/ext/vendor/github.com/aws/smithy-go/transport/http/time.go +13 -0
  944. data/ext/vendor/github.com/aws/smithy-go/transport/http/url.go +44 -0
  945. data/ext/vendor/github.com/aws/smithy-go/transport/http/user_agent.go +37 -0
  946. data/ext/vendor/github.com/aws/smithy-go/validation.go +140 -0
  947. data/ext/vendor/github.com/aws/smithy-go/waiter/logger.go +36 -0
  948. data/ext/vendor/github.com/aws/smithy-go/waiter/waiter.go +66 -0
  949. data/ext/vendor/github.com/danieljoos/wincred/.gitattributes +1 -0
  950. data/ext/vendor/github.com/danieljoos/wincred/.gitignore +25 -0
  951. data/ext/vendor/github.com/danieljoos/wincred/LICENSE +21 -0
  952. data/ext/vendor/github.com/danieljoos/wincred/README.md +145 -0
  953. data/ext/vendor/github.com/danieljoos/wincred/conversion.go +116 -0
  954. data/ext/vendor/github.com/danieljoos/wincred/conversion_unsupported.go +11 -0
  955. data/ext/vendor/github.com/danieljoos/wincred/sys.go +143 -0
  956. data/ext/vendor/github.com/danieljoos/wincred/sys_unsupported.go +36 -0
  957. data/ext/vendor/github.com/danieljoos/wincred/types.go +69 -0
  958. data/ext/vendor/github.com/danieljoos/wincred/wincred.go +111 -0
  959. data/ext/vendor/github.com/dvsekhvalnov/jose2go/.gitignore +23 -0
  960. data/ext/vendor/github.com/dvsekhvalnov/jose2go/LICENSE +21 -0
  961. data/ext/vendor/github.com/dvsekhvalnov/jose2go/README.md +938 -0
  962. data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes/ecb.go +68 -0
  963. data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes/key_wrap.go +113 -0
  964. data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes_cbc_hmac.go +112 -0
  965. data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes_gcm.go +98 -0
  966. data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes_gcm_kw.go +128 -0
  967. data/ext/vendor/github.com/dvsekhvalnov/jose2go/aeskw.go +64 -0
  968. data/ext/vendor/github.com/dvsekhvalnov/jose2go/arrays/arrays.go +116 -0
  969. data/ext/vendor/github.com/dvsekhvalnov/jose2go/base64url/base64url.go +31 -0
  970. data/ext/vendor/github.com/dvsekhvalnov/jose2go/compact/compact.go +33 -0
  971. data/ext/vendor/github.com/dvsekhvalnov/jose2go/deflate.go +39 -0
  972. data/ext/vendor/github.com/dvsekhvalnov/jose2go/direct.go +39 -0
  973. data/ext/vendor/github.com/dvsekhvalnov/jose2go/ecdh.go +157 -0
  974. data/ext/vendor/github.com/dvsekhvalnov/jose2go/ecdh_aeskw.go +42 -0
  975. data/ext/vendor/github.com/dvsekhvalnov/jose2go/ecdsa_using_sha.go +76 -0
  976. data/ext/vendor/github.com/dvsekhvalnov/jose2go/hmac.go +13 -0
  977. data/ext/vendor/github.com/dvsekhvalnov/jose2go/hmac_using_sha.go +46 -0
  978. data/ext/vendor/github.com/dvsekhvalnov/jose2go/jose.go +424 -0
  979. data/ext/vendor/github.com/dvsekhvalnov/jose2go/kdf/nist_sp800_56a.go +43 -0
  980. data/ext/vendor/github.com/dvsekhvalnov/jose2go/kdf/pbkdf2.go +63 -0
  981. data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_cert.pem +14 -0
  982. data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.key +5 -0
  983. data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.pem +5 -0
  984. data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_public.key +4 -0
  985. data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ecc.go +88 -0
  986. data/ext/vendor/github.com/dvsekhvalnov/jose2go/padding/align.go +23 -0
  987. data/ext/vendor/github.com/dvsekhvalnov/jose2go/padding/pkcs7.go +38 -0
  988. data/ext/vendor/github.com/dvsekhvalnov/jose2go/pbse2_hmac_aeskw.go +103 -0
  989. data/ext/vendor/github.com/dvsekhvalnov/jose2go/plaintext.go +38 -0
  990. data/ext/vendor/github.com/dvsekhvalnov/jose2go/rsa_oaep.go +57 -0
  991. data/ext/vendor/github.com/dvsekhvalnov/jose2go/rsa_pkcs1v15.go +41 -0
  992. data/ext/vendor/github.com/dvsekhvalnov/jose2go/rsa_using_sha.go +50 -0
  993. data/ext/vendor/github.com/dvsekhvalnov/jose2go/rsapss_using_sha.go +43 -0
  994. data/ext/vendor/github.com/dvsekhvalnov/jose2go/sha.go +24 -0
  995. data/ext/vendor/github.com/form3tech-oss/jwt-go/.gitignore +5 -0
  996. data/ext/vendor/github.com/form3tech-oss/jwt-go/.travis.yml +12 -0
  997. data/ext/vendor/github.com/form3tech-oss/jwt-go/LICENSE +8 -0
  998. data/ext/vendor/github.com/form3tech-oss/jwt-go/MIGRATION_GUIDE.md +97 -0
  999. data/ext/vendor/github.com/form3tech-oss/jwt-go/README.md +104 -0
  1000. data/ext/vendor/github.com/form3tech-oss/jwt-go/VERSION_HISTORY.md +118 -0
  1001. data/ext/vendor/github.com/form3tech-oss/jwt-go/claims.go +136 -0
  1002. data/ext/vendor/github.com/form3tech-oss/jwt-go/doc.go +4 -0
  1003. data/ext/vendor/github.com/form3tech-oss/jwt-go/ecdsa.go +148 -0
  1004. data/ext/vendor/github.com/form3tech-oss/jwt-go/ecdsa_utils.go +69 -0
  1005. data/ext/vendor/github.com/form3tech-oss/jwt-go/errors.go +59 -0
  1006. data/ext/vendor/github.com/form3tech-oss/jwt-go/hmac.go +95 -0
  1007. data/ext/vendor/github.com/form3tech-oss/jwt-go/map_claims.go +122 -0
  1008. data/ext/vendor/github.com/form3tech-oss/jwt-go/none.go +52 -0
  1009. data/ext/vendor/github.com/form3tech-oss/jwt-go/parser.go +148 -0
  1010. data/ext/vendor/github.com/form3tech-oss/jwt-go/rsa.go +101 -0
  1011. data/ext/vendor/github.com/form3tech-oss/jwt-go/rsa_pss.go +142 -0
  1012. data/ext/vendor/github.com/form3tech-oss/jwt-go/rsa_utils.go +101 -0
  1013. data/ext/vendor/github.com/form3tech-oss/jwt-go/signing_method.go +35 -0
  1014. data/ext/vendor/github.com/form3tech-oss/jwt-go/token.go +108 -0
  1015. data/ext/vendor/github.com/gabriel-vasile/mimetype/.gitattributes +1 -0
  1016. data/ext/vendor/github.com/gabriel-vasile/mimetype/CODE_OF_CONDUCT.md +76 -0
  1017. data/ext/vendor/github.com/gabriel-vasile/mimetype/CONTRIBUTING.md +12 -0
  1018. data/ext/vendor/github.com/gabriel-vasile/mimetype/LICENSE +21 -0
  1019. data/ext/vendor/github.com/gabriel-vasile/mimetype/README.md +108 -0
  1020. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/charset/charset.go +309 -0
  1021. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/json/json.go +544 -0
  1022. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/archive.go +116 -0
  1023. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/audio.go +76 -0
  1024. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/binary.go +196 -0
  1025. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/database.go +13 -0
  1026. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/document.go +62 -0
  1027. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/font.go +39 -0
  1028. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/ftyp.go +57 -0
  1029. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/geo.go +55 -0
  1030. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/image.go +106 -0
  1031. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/magic.go +239 -0
  1032. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/ms_office.go +225 -0
  1033. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/ogg.go +42 -0
  1034. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/text.go +375 -0
  1035. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/text_csv.go +51 -0
  1036. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/video.go +85 -0
  1037. data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/zip.go +92 -0
  1038. data/ext/vendor/github.com/gabriel-vasile/mimetype/mime.go +186 -0
  1039. data/ext/vendor/github.com/gabriel-vasile/mimetype/mimetype.gif +0 -0
  1040. data/ext/vendor/github.com/gabriel-vasile/mimetype/mimetype.go +123 -0
  1041. data/ext/vendor/github.com/gabriel-vasile/mimetype/supported_mimes.md +176 -0
  1042. data/ext/vendor/github.com/gabriel-vasile/mimetype/tree.go +258 -0
  1043. data/ext/vendor/github.com/goccy/go-json/.codecov.yml +32 -0
  1044. data/ext/vendor/github.com/goccy/go-json/.gitignore +2 -0
  1045. data/ext/vendor/github.com/goccy/go-json/.golangci.yml +83 -0
  1046. data/ext/vendor/github.com/goccy/go-json/CHANGELOG.md +393 -0
  1047. data/ext/vendor/github.com/goccy/go-json/LICENSE +21 -0
  1048. data/ext/vendor/github.com/goccy/go-json/Makefile +39 -0
  1049. data/ext/vendor/github.com/goccy/go-json/README.md +529 -0
  1050. data/ext/vendor/github.com/goccy/go-json/color.go +68 -0
  1051. data/ext/vendor/github.com/goccy/go-json/decode.go +232 -0
  1052. data/ext/vendor/github.com/goccy/go-json/docker-compose.yml +13 -0
  1053. data/ext/vendor/github.com/goccy/go-json/encode.go +326 -0
  1054. data/ext/vendor/github.com/goccy/go-json/error.go +39 -0
  1055. data/ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go +37 -0
  1056. data/ext/vendor/github.com/goccy/go-json/internal/decoder/array.go +169 -0
  1057. data/ext/vendor/github.com/goccy/go-json/internal/decoder/bool.go +78 -0
  1058. data/ext/vendor/github.com/goccy/go-json/internal/decoder/bytes.go +113 -0
  1059. data/ext/vendor/github.com/goccy/go-json/internal/decoder/compile.go +487 -0
  1060. data/ext/vendor/github.com/goccy/go-json/internal/decoder/compile_norace.go +29 -0
  1061. data/ext/vendor/github.com/goccy/go-json/internal/decoder/compile_race.go +37 -0
  1062. data/ext/vendor/github.com/goccy/go-json/internal/decoder/context.go +254 -0
  1063. data/ext/vendor/github.com/goccy/go-json/internal/decoder/float.go +158 -0
  1064. data/ext/vendor/github.com/goccy/go-json/internal/decoder/func.go +141 -0
  1065. data/ext/vendor/github.com/goccy/go-json/internal/decoder/int.go +242 -0
  1066. data/ext/vendor/github.com/goccy/go-json/internal/decoder/interface.go +458 -0
  1067. data/ext/vendor/github.com/goccy/go-json/internal/decoder/invalid.go +45 -0
  1068. data/ext/vendor/github.com/goccy/go-json/internal/decoder/map.go +187 -0
  1069. data/ext/vendor/github.com/goccy/go-json/internal/decoder/number.go +112 -0
  1070. data/ext/vendor/github.com/goccy/go-json/internal/decoder/option.go +15 -0
  1071. data/ext/vendor/github.com/goccy/go-json/internal/decoder/ptr.go +87 -0
  1072. data/ext/vendor/github.com/goccy/go-json/internal/decoder/slice.go +301 -0
  1073. data/ext/vendor/github.com/goccy/go-json/internal/decoder/stream.go +556 -0
  1074. data/ext/vendor/github.com/goccy/go-json/internal/decoder/string.go +441 -0
  1075. data/ext/vendor/github.com/goccy/go-json/internal/decoder/struct.go +819 -0
  1076. data/ext/vendor/github.com/goccy/go-json/internal/decoder/type.go +29 -0
  1077. data/ext/vendor/github.com/goccy/go-json/internal/decoder/uint.go +190 -0
  1078. data/ext/vendor/github.com/goccy/go-json/internal/decoder/unmarshal_json.go +99 -0
  1079. data/ext/vendor/github.com/goccy/go-json/internal/decoder/unmarshal_text.go +280 -0
  1080. data/ext/vendor/github.com/goccy/go-json/internal/decoder/wrapped_string.go +68 -0
  1081. data/ext/vendor/github.com/goccy/go-json/internal/encoder/code.go +1017 -0
  1082. data/ext/vendor/github.com/goccy/go-json/internal/encoder/compact.go +286 -0
  1083. data/ext/vendor/github.com/goccy/go-json/internal/encoder/compiler.go +930 -0
  1084. data/ext/vendor/github.com/goccy/go-json/internal/encoder/compiler_norace.go +32 -0
  1085. data/ext/vendor/github.com/goccy/go-json/internal/encoder/compiler_race.go +45 -0
  1086. data/ext/vendor/github.com/goccy/go-json/internal/encoder/context.go +105 -0
  1087. data/ext/vendor/github.com/goccy/go-json/internal/encoder/decode_rune.go +126 -0
  1088. data/ext/vendor/github.com/goccy/go-json/internal/encoder/encoder.go +596 -0
  1089. data/ext/vendor/github.com/goccy/go-json/internal/encoder/indent.go +211 -0
  1090. data/ext/vendor/github.com/goccy/go-json/internal/encoder/int.go +152 -0
  1091. data/ext/vendor/github.com/goccy/go-json/internal/encoder/map112.go +9 -0
  1092. data/ext/vendor/github.com/goccy/go-json/internal/encoder/map113.go +9 -0
  1093. data/ext/vendor/github.com/goccy/go-json/internal/encoder/opcode.go +669 -0
  1094. data/ext/vendor/github.com/goccy/go-json/internal/encoder/option.go +47 -0
  1095. data/ext/vendor/github.com/goccy/go-json/internal/encoder/optype.go +932 -0
  1096. data/ext/vendor/github.com/goccy/go-json/internal/encoder/query.go +135 -0
  1097. data/ext/vendor/github.com/goccy/go-json/internal/encoder/string.go +459 -0
  1098. data/ext/vendor/github.com/goccy/go-json/internal/encoder/string_table.go +415 -0
  1099. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm/debug_vm.go +35 -0
  1100. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm/hack.go +9 -0
  1101. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm/util.go +207 -0
  1102. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm/vm.go +4859 -0
  1103. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color/debug_vm.go +35 -0
  1104. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color/hack.go +9 -0
  1105. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color/util.go +274 -0
  1106. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color/vm.go +4859 -0
  1107. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color_indent/debug_vm.go +35 -0
  1108. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color_indent/util.go +296 -0
  1109. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color_indent/vm.go +4859 -0
  1110. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_indent/debug_vm.go +35 -0
  1111. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_indent/hack.go +9 -0
  1112. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_indent/util.go +229 -0
  1113. data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_indent/vm.go +4859 -0
  1114. data/ext/vendor/github.com/goccy/go-json/internal/errors/error.go +164 -0
  1115. data/ext/vendor/github.com/goccy/go-json/internal/runtime/rtype.go +263 -0
  1116. data/ext/vendor/github.com/goccy/go-json/internal/runtime/struct_field.go +91 -0
  1117. data/ext/vendor/github.com/goccy/go-json/internal/runtime/type.go +100 -0
  1118. data/ext/vendor/github.com/goccy/go-json/json.go +371 -0
  1119. data/ext/vendor/github.com/goccy/go-json/option.go +72 -0
  1120. data/ext/vendor/github.com/goccy/go-json/query.go +47 -0
  1121. data/ext/vendor/github.com/godbus/dbus/.travis.yml +46 -0
  1122. data/ext/vendor/github.com/godbus/dbus/CONTRIBUTING.md +50 -0
  1123. data/ext/vendor/github.com/godbus/dbus/LICENSE +25 -0
  1124. data/ext/vendor/github.com/godbus/dbus/MAINTAINERS +3 -0
  1125. data/ext/vendor/github.com/godbus/dbus/README.markdown +44 -0
  1126. data/ext/vendor/github.com/godbus/dbus/auth.go +252 -0
  1127. data/ext/vendor/github.com/godbus/dbus/auth_anonymous.go +16 -0
  1128. data/ext/vendor/github.com/godbus/dbus/auth_external.go +26 -0
  1129. data/ext/vendor/github.com/godbus/dbus/auth_sha1.go +102 -0
  1130. data/ext/vendor/github.com/godbus/dbus/call.go +60 -0
  1131. data/ext/vendor/github.com/godbus/dbus/conn.go +865 -0
  1132. data/ext/vendor/github.com/godbus/dbus/conn_darwin.go +37 -0
  1133. data/ext/vendor/github.com/godbus/dbus/conn_other.go +93 -0
  1134. data/ext/vendor/github.com/godbus/dbus/conn_unix.go +17 -0
  1135. data/ext/vendor/github.com/godbus/dbus/conn_windows.go +15 -0
  1136. data/ext/vendor/github.com/godbus/dbus/dbus.go +427 -0
  1137. data/ext/vendor/github.com/godbus/dbus/decoder.go +286 -0
  1138. data/ext/vendor/github.com/godbus/dbus/default_handler.go +328 -0
  1139. data/ext/vendor/github.com/godbus/dbus/doc.go +69 -0
  1140. data/ext/vendor/github.com/godbus/dbus/encoder.go +210 -0
  1141. data/ext/vendor/github.com/godbus/dbus/export.go +412 -0
  1142. data/ext/vendor/github.com/godbus/dbus/homedir.go +28 -0
  1143. data/ext/vendor/github.com/godbus/dbus/homedir_dynamic.go +15 -0
  1144. data/ext/vendor/github.com/godbus/dbus/homedir_static.go +45 -0
  1145. data/ext/vendor/github.com/godbus/dbus/match.go +62 -0
  1146. data/ext/vendor/github.com/godbus/dbus/message.go +353 -0
  1147. data/ext/vendor/github.com/godbus/dbus/object.go +211 -0
  1148. data/ext/vendor/github.com/godbus/dbus/server_interfaces.go +107 -0
  1149. data/ext/vendor/github.com/godbus/dbus/sig.go +259 -0
  1150. data/ext/vendor/github.com/godbus/dbus/transport_darwin.go +6 -0
  1151. data/ext/vendor/github.com/godbus/dbus/transport_generic.go +50 -0
  1152. data/ext/vendor/github.com/godbus/dbus/transport_nonce_tcp.go +39 -0
  1153. data/ext/vendor/github.com/godbus/dbus/transport_tcp.go +41 -0
  1154. data/ext/vendor/github.com/godbus/dbus/transport_unix.go +214 -0
  1155. data/ext/vendor/github.com/godbus/dbus/transport_unixcred_dragonfly.go +95 -0
  1156. data/ext/vendor/github.com/godbus/dbus/transport_unixcred_freebsd.go +91 -0
  1157. data/ext/vendor/github.com/godbus/dbus/transport_unixcred_linux.go +25 -0
  1158. data/ext/vendor/github.com/godbus/dbus/transport_unixcred_openbsd.go +14 -0
  1159. data/ext/vendor/github.com/godbus/dbus/variant.go +144 -0
  1160. data/ext/vendor/github.com/godbus/dbus/variant_lexer.go +284 -0
  1161. data/ext/vendor/github.com/godbus/dbus/variant_parser.go +817 -0
  1162. data/ext/vendor/github.com/golang/snappy/.gitignore +16 -0
  1163. data/ext/vendor/github.com/golang/snappy/AUTHORS +18 -0
  1164. data/ext/vendor/github.com/golang/snappy/CONTRIBUTORS +41 -0
  1165. data/ext/vendor/github.com/golang/snappy/LICENSE +27 -0
  1166. data/ext/vendor/github.com/golang/snappy/README +107 -0
  1167. data/ext/vendor/github.com/golang/snappy/decode.go +264 -0
  1168. data/ext/vendor/github.com/golang/snappy/decode_amd64.s +490 -0
  1169. data/ext/vendor/github.com/golang/snappy/decode_arm64.s +494 -0
  1170. data/ext/vendor/github.com/golang/snappy/decode_asm.go +15 -0
  1171. data/ext/vendor/github.com/golang/snappy/decode_other.go +115 -0
  1172. data/ext/vendor/github.com/golang/snappy/encode.go +289 -0
  1173. data/ext/vendor/github.com/golang/snappy/encode_amd64.s +730 -0
  1174. data/ext/vendor/github.com/golang/snappy/encode_arm64.s +722 -0
  1175. data/ext/vendor/github.com/golang/snappy/encode_asm.go +30 -0
  1176. data/ext/vendor/github.com/golang/snappy/encode_other.go +238 -0
  1177. data/ext/vendor/github.com/golang/snappy/snappy.go +98 -0
  1178. data/ext/vendor/github.com/google/flatbuffers/LICENSE.txt +202 -0
  1179. data/ext/vendor/github.com/google/flatbuffers/go/BUILD.bazel +23 -0
  1180. data/ext/vendor/github.com/google/flatbuffers/go/builder.go +835 -0
  1181. data/ext/vendor/github.com/google/flatbuffers/go/doc.go +3 -0
  1182. data/ext/vendor/github.com/google/flatbuffers/go/encode.go +238 -0
  1183. data/ext/vendor/github.com/google/flatbuffers/go/grpc.go +38 -0
  1184. data/ext/vendor/github.com/google/flatbuffers/go/lib.go +25 -0
  1185. data/ext/vendor/github.com/google/flatbuffers/go/sizes.go +55 -0
  1186. data/ext/vendor/github.com/google/flatbuffers/go/struct.go +8 -0
  1187. data/ext/vendor/github.com/google/flatbuffers/go/table.go +505 -0
  1188. data/ext/vendor/github.com/gsterjov/go-libsecret/LICENSE +22 -0
  1189. data/ext/vendor/github.com/gsterjov/go-libsecret/collection.go +124 -0
  1190. data/ext/vendor/github.com/gsterjov/go-libsecret/item.go +77 -0
  1191. data/ext/vendor/github.com/gsterjov/go-libsecret/prompt.go +55 -0
  1192. data/ext/vendor/github.com/gsterjov/go-libsecret/secret.go +21 -0
  1193. data/ext/vendor/github.com/gsterjov/go-libsecret/service.go +141 -0
  1194. data/ext/vendor/github.com/gsterjov/go-libsecret/session.go +22 -0
  1195. data/ext/vendor/github.com/jmespath/go-jmespath/.gitignore +4 -0
  1196. data/ext/vendor/github.com/jmespath/go-jmespath/.travis.yml +28 -0
  1197. data/ext/vendor/github.com/jmespath/go-jmespath/LICENSE +13 -0
  1198. data/ext/vendor/github.com/jmespath/go-jmespath/Makefile +51 -0
  1199. data/ext/vendor/github.com/jmespath/go-jmespath/README.md +87 -0
  1200. data/ext/vendor/github.com/jmespath/go-jmespath/api.go +49 -0
  1201. data/ext/vendor/github.com/jmespath/go-jmespath/astnodetype_string.go +16 -0
  1202. data/ext/vendor/github.com/jmespath/go-jmespath/functions.go +842 -0
  1203. data/ext/vendor/github.com/jmespath/go-jmespath/interpreter.go +418 -0
  1204. data/ext/vendor/github.com/jmespath/go-jmespath/lexer.go +420 -0
  1205. data/ext/vendor/github.com/jmespath/go-jmespath/parser.go +603 -0
  1206. data/ext/vendor/github.com/jmespath/go-jmespath/toktype_string.go +16 -0
  1207. data/ext/vendor/github.com/jmespath/go-jmespath/util.go +185 -0
  1208. data/ext/vendor/github.com/klauspost/asmfmt/.gitignore +24 -0
  1209. data/ext/vendor/github.com/klauspost/asmfmt/.goreleaser.yml +77 -0
  1210. data/ext/vendor/github.com/klauspost/asmfmt/LICENSE +22 -0
  1211. data/ext/vendor/github.com/klauspost/asmfmt/README.md +113 -0
  1212. data/ext/vendor/github.com/klauspost/asmfmt/asmfmt.go +652 -0
  1213. data/ext/vendor/github.com/klauspost/asmfmt/cmd/asmfmt/LICENSE +27 -0
  1214. data/ext/vendor/github.com/klauspost/asmfmt/cmd/asmfmt/doc.go +43 -0
  1215. data/ext/vendor/github.com/klauspost/asmfmt/cmd/asmfmt/main.go +203 -0
  1216. data/ext/vendor/github.com/klauspost/compress/.gitattributes +2 -0
  1217. data/ext/vendor/github.com/klauspost/compress/.gitignore +32 -0
  1218. data/ext/vendor/github.com/klauspost/compress/.goreleaser.yml +141 -0
  1219. data/ext/vendor/github.com/klauspost/compress/LICENSE +304 -0
  1220. data/ext/vendor/github.com/klauspost/compress/README.md +578 -0
  1221. data/ext/vendor/github.com/klauspost/compress/compressible.go +85 -0
  1222. data/ext/vendor/github.com/klauspost/compress/flate/deflate.go +910 -0
  1223. data/ext/vendor/github.com/klauspost/compress/flate/dict_decoder.go +184 -0
  1224. data/ext/vendor/github.com/klauspost/compress/flate/fast_encoder.go +216 -0
  1225. data/ext/vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go +1187 -0
  1226. data/ext/vendor/github.com/klauspost/compress/flate/huffman_code.go +417 -0
  1227. data/ext/vendor/github.com/klauspost/compress/flate/huffman_sortByFreq.go +178 -0
  1228. data/ext/vendor/github.com/klauspost/compress/flate/huffman_sortByLiteral.go +201 -0
  1229. data/ext/vendor/github.com/klauspost/compress/flate/inflate.go +793 -0
  1230. data/ext/vendor/github.com/klauspost/compress/flate/inflate_gen.go +1283 -0
  1231. data/ext/vendor/github.com/klauspost/compress/flate/level1.go +241 -0
  1232. data/ext/vendor/github.com/klauspost/compress/flate/level2.go +214 -0
  1233. data/ext/vendor/github.com/klauspost/compress/flate/level3.go +241 -0
  1234. data/ext/vendor/github.com/klauspost/compress/flate/level4.go +221 -0
  1235. data/ext/vendor/github.com/klauspost/compress/flate/level5.go +310 -0
  1236. data/ext/vendor/github.com/klauspost/compress/flate/level6.go +325 -0
  1237. data/ext/vendor/github.com/klauspost/compress/flate/regmask_amd64.go +37 -0
  1238. data/ext/vendor/github.com/klauspost/compress/flate/regmask_other.go +40 -0
  1239. data/ext/vendor/github.com/klauspost/compress/flate/stateless.go +305 -0
  1240. data/ext/vendor/github.com/klauspost/compress/flate/token.go +379 -0
  1241. data/ext/vendor/github.com/klauspost/compress/fse/README.md +79 -0
  1242. data/ext/vendor/github.com/klauspost/compress/fse/bitreader.go +122 -0
  1243. data/ext/vendor/github.com/klauspost/compress/fse/bitwriter.go +168 -0
  1244. data/ext/vendor/github.com/klauspost/compress/fse/bytereader.go +47 -0
  1245. data/ext/vendor/github.com/klauspost/compress/fse/compress.go +683 -0
  1246. data/ext/vendor/github.com/klauspost/compress/fse/decompress.go +374 -0
  1247. data/ext/vendor/github.com/klauspost/compress/fse/fse.go +144 -0
  1248. data/ext/vendor/github.com/klauspost/compress/gen.sh +4 -0
  1249. data/ext/vendor/github.com/klauspost/compress/gzip/gunzip.go +349 -0
  1250. data/ext/vendor/github.com/klauspost/compress/gzip/gzip.go +269 -0
  1251. data/ext/vendor/github.com/klauspost/compress/huff0/.gitignore +1 -0
  1252. data/ext/vendor/github.com/klauspost/compress/huff0/README.md +89 -0
  1253. data/ext/vendor/github.com/klauspost/compress/huff0/bitreader.go +233 -0
  1254. data/ext/vendor/github.com/klauspost/compress/huff0/bitwriter.go +95 -0
  1255. data/ext/vendor/github.com/klauspost/compress/huff0/bytereader.go +44 -0
  1256. data/ext/vendor/github.com/klauspost/compress/huff0/compress.go +730 -0
  1257. data/ext/vendor/github.com/klauspost/compress/huff0/decompress.go +1167 -0
  1258. data/ext/vendor/github.com/klauspost/compress/huff0/decompress_amd64.go +226 -0
  1259. data/ext/vendor/github.com/klauspost/compress/huff0/decompress_amd64.s +846 -0
  1260. data/ext/vendor/github.com/klauspost/compress/huff0/decompress_generic.go +299 -0
  1261. data/ext/vendor/github.com/klauspost/compress/huff0/huff0.go +337 -0
  1262. data/ext/vendor/github.com/klauspost/compress/internal/cpuinfo/cpuinfo.go +34 -0
  1263. data/ext/vendor/github.com/klauspost/compress/internal/cpuinfo/cpuinfo_amd64.go +11 -0
  1264. data/ext/vendor/github.com/klauspost/compress/internal/cpuinfo/cpuinfo_amd64.s +36 -0
  1265. data/ext/vendor/github.com/klauspost/compress/internal/snapref/LICENSE +27 -0
  1266. data/ext/vendor/github.com/klauspost/compress/internal/snapref/decode.go +264 -0
  1267. data/ext/vendor/github.com/klauspost/compress/internal/snapref/decode_other.go +113 -0
  1268. data/ext/vendor/github.com/klauspost/compress/internal/snapref/encode.go +289 -0
  1269. data/ext/vendor/github.com/klauspost/compress/internal/snapref/encode_other.go +240 -0
  1270. data/ext/vendor/github.com/klauspost/compress/internal/snapref/snappy.go +98 -0
  1271. data/ext/vendor/github.com/klauspost/compress/s2sx.mod +4 -0
  1272. data/ext/vendor/github.com/klauspost/compress/s2sx.sum +0 -0
  1273. data/ext/vendor/github.com/klauspost/compress/zstd/README.md +441 -0
  1274. data/ext/vendor/github.com/klauspost/compress/zstd/bitreader.go +140 -0
  1275. data/ext/vendor/github.com/klauspost/compress/zstd/bitwriter.go +113 -0
  1276. data/ext/vendor/github.com/klauspost/compress/zstd/blockdec.go +720 -0
  1277. data/ext/vendor/github.com/klauspost/compress/zstd/blockenc.go +871 -0
  1278. data/ext/vendor/github.com/klauspost/compress/zstd/blocktype_string.go +85 -0
  1279. data/ext/vendor/github.com/klauspost/compress/zstd/bytebuf.go +131 -0
  1280. data/ext/vendor/github.com/klauspost/compress/zstd/bytereader.go +82 -0
  1281. data/ext/vendor/github.com/klauspost/compress/zstd/decodeheader.go +230 -0
  1282. data/ext/vendor/github.com/klauspost/compress/zstd/decoder.go +950 -0
  1283. data/ext/vendor/github.com/klauspost/compress/zstd/decoder_options.go +149 -0
  1284. data/ext/vendor/github.com/klauspost/compress/zstd/dict.go +122 -0
  1285. data/ext/vendor/github.com/klauspost/compress/zstd/enc_base.go +188 -0
  1286. data/ext/vendor/github.com/klauspost/compress/zstd/enc_best.go +559 -0
  1287. data/ext/vendor/github.com/klauspost/compress/zstd/enc_better.go +1246 -0
  1288. data/ext/vendor/github.com/klauspost/compress/zstd/enc_dfast.go +1127 -0
  1289. data/ext/vendor/github.com/klauspost/compress/zstd/enc_fast.go +900 -0
  1290. data/ext/vendor/github.com/klauspost/compress/zstd/encoder.go +641 -0
  1291. data/ext/vendor/github.com/klauspost/compress/zstd/encoder_options.go +317 -0
  1292. data/ext/vendor/github.com/klauspost/compress/zstd/framedec.go +436 -0
  1293. data/ext/vendor/github.com/klauspost/compress/zstd/frameenc.go +137 -0
  1294. data/ext/vendor/github.com/klauspost/compress/zstd/fse_decoder.go +307 -0
  1295. data/ext/vendor/github.com/klauspost/compress/zstd/fse_decoder_amd64.go +65 -0
  1296. data/ext/vendor/github.com/klauspost/compress/zstd/fse_decoder_amd64.s +126 -0
  1297. data/ext/vendor/github.com/klauspost/compress/zstd/fse_decoder_generic.go +72 -0
  1298. data/ext/vendor/github.com/klauspost/compress/zstd/fse_encoder.go +701 -0
  1299. data/ext/vendor/github.com/klauspost/compress/zstd/fse_predefined.go +158 -0
  1300. data/ext/vendor/github.com/klauspost/compress/zstd/hash.go +35 -0
  1301. data/ext/vendor/github.com/klauspost/compress/zstd/history.go +116 -0
  1302. data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/LICENSE.txt +22 -0
  1303. data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/README.md +58 -0
  1304. data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash.go +237 -0
  1305. data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_amd64.s +216 -0
  1306. data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_arm64.s +186 -0
  1307. data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_asm.go +16 -0
  1308. data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_other.go +77 -0
  1309. data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_safe.go +11 -0
  1310. data/ext/vendor/github.com/klauspost/compress/zstd/seqdec.go +509 -0
  1311. data/ext/vendor/github.com/klauspost/compress/zstd/seqdec_amd64.go +379 -0
  1312. data/ext/vendor/github.com/klauspost/compress/zstd/seqdec_amd64.s +4099 -0
  1313. data/ext/vendor/github.com/klauspost/compress/zstd/seqdec_generic.go +237 -0
  1314. data/ext/vendor/github.com/klauspost/compress/zstd/seqenc.go +114 -0
  1315. data/ext/vendor/github.com/klauspost/compress/zstd/snappy.go +435 -0
  1316. data/ext/vendor/github.com/klauspost/compress/zstd/zip.go +141 -0
  1317. data/ext/vendor/github.com/klauspost/compress/zstd/zstd.go +152 -0
  1318. data/ext/vendor/github.com/klauspost/cpuid/v2/.gitignore +24 -0
  1319. data/ext/vendor/github.com/klauspost/cpuid/v2/.goreleaser.yml +74 -0
  1320. data/ext/vendor/github.com/klauspost/cpuid/v2/CONTRIBUTING.txt +35 -0
  1321. data/ext/vendor/github.com/klauspost/cpuid/v2/LICENSE +22 -0
  1322. data/ext/vendor/github.com/klauspost/cpuid/v2/README.md +137 -0
  1323. data/ext/vendor/github.com/klauspost/cpuid/v2/cpuid.go +1070 -0
  1324. data/ext/vendor/github.com/klauspost/cpuid/v2/cpuid_386.s +47 -0
  1325. data/ext/vendor/github.com/klauspost/cpuid/v2/cpuid_amd64.s +72 -0
  1326. data/ext/vendor/github.com/klauspost/cpuid/v2/cpuid_arm64.s +26 -0
  1327. data/ext/vendor/github.com/klauspost/cpuid/v2/detect_arm64.go +246 -0
  1328. data/ext/vendor/github.com/klauspost/cpuid/v2/detect_ref.go +14 -0
  1329. data/ext/vendor/github.com/klauspost/cpuid/v2/detect_x86.go +35 -0
  1330. data/ext/vendor/github.com/klauspost/cpuid/v2/featureid_string.go +185 -0
  1331. data/ext/vendor/github.com/klauspost/cpuid/v2/os_darwin_arm64.go +19 -0
  1332. data/ext/vendor/github.com/klauspost/cpuid/v2/os_linux_arm64.go +130 -0
  1333. data/ext/vendor/github.com/klauspost/cpuid/v2/os_other_arm64.go +17 -0
  1334. data/ext/vendor/github.com/klauspost/cpuid/v2/os_safe_linux_arm64.go +7 -0
  1335. data/ext/vendor/github.com/klauspost/cpuid/v2/os_unsafe_linux_arm64.go +10 -0
  1336. data/ext/vendor/github.com/klauspost/cpuid/v2/test-architectures.sh +15 -0
  1337. data/ext/vendor/github.com/mattn/go-pointer/LICENSE +21 -0
  1338. data/ext/vendor/github.com/mattn/go-pointer/README.md +29 -0
  1339. data/ext/vendor/github.com/mattn/go-pointer/doc.go +1 -0
  1340. data/ext/vendor/github.com/mattn/go-pointer/pointer.go +57 -0
  1341. data/ext/vendor/github.com/minio/asm2plan9s/.gitignore +2 -0
  1342. data/ext/vendor/github.com/minio/asm2plan9s/LICENSE +202 -0
  1343. data/ext/vendor/github.com/minio/asm2plan9s/README.md +91 -0
  1344. data/ext/vendor/github.com/minio/asm2plan9s/asm2plan9s.go +252 -0
  1345. data/ext/vendor/github.com/minio/asm2plan9s/asm2plan9s_amd64.go +192 -0
  1346. data/ext/vendor/github.com/minio/asm2plan9s/asm2plan9s_arm64.go +122 -0
  1347. data/ext/vendor/github.com/minio/asm2plan9s/example.s +1 -0
  1348. data/ext/vendor/github.com/minio/asm2plan9s/neon.asm +1 -0
  1349. data/ext/vendor/github.com/minio/asm2plan9s/yasm.go +176 -0
  1350. data/ext/vendor/github.com/minio/c2goasm/LICENSE +202 -0
  1351. data/ext/vendor/github.com/minio/c2goasm/README.md +203 -0
  1352. data/ext/vendor/github.com/minio/c2goasm/arguments.go +122 -0
  1353. data/ext/vendor/github.com/minio/c2goasm/assembly.go +412 -0
  1354. data/ext/vendor/github.com/minio/c2goasm/c2goasm.go +300 -0
  1355. data/ext/vendor/github.com/minio/c2goasm/constants.go +255 -0
  1356. data/ext/vendor/github.com/minio/c2goasm/epilogue.go +219 -0
  1357. data/ext/vendor/github.com/minio/c2goasm/subroutine.go +294 -0
  1358. data/ext/vendor/github.com/mtibben/percent/LICENSE +21 -0
  1359. data/ext/vendor/github.com/mtibben/percent/README.md +5 -0
  1360. data/ext/vendor/github.com/mtibben/percent/percent.go +64 -0
  1361. data/ext/vendor/github.com/pierrec/lz4/v4/.gitignore +36 -0
  1362. data/ext/vendor/github.com/pierrec/lz4/v4/LICENSE +28 -0
  1363. data/ext/vendor/github.com/pierrec/lz4/v4/README.md +92 -0
  1364. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/block.go +482 -0
  1365. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/blocks.go +90 -0
  1366. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_amd64.s +448 -0
  1367. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_arm.s +231 -0
  1368. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_arm64.s +230 -0
  1369. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_asm.go +10 -0
  1370. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_other.go +139 -0
  1371. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4errors/errors.go +19 -0
  1372. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4stream/block.go +350 -0
  1373. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4stream/frame.go +204 -0
  1374. data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4stream/frame_gen.go +103 -0
  1375. data/ext/vendor/github.com/pierrec/lz4/v4/internal/xxh32/xxh32zero.go +212 -0
  1376. data/ext/vendor/github.com/pierrec/lz4/v4/internal/xxh32/xxh32zero_arm.go +11 -0
  1377. data/ext/vendor/github.com/pierrec/lz4/v4/internal/xxh32/xxh32zero_arm.s +251 -0
  1378. data/ext/vendor/github.com/pierrec/lz4/v4/internal/xxh32/xxh32zero_other.go +10 -0
  1379. data/ext/vendor/github.com/pierrec/lz4/v4/lz4.go +157 -0
  1380. data/ext/vendor/github.com/pierrec/lz4/v4/options.go +214 -0
  1381. data/ext/vendor/github.com/pierrec/lz4/v4/options_gen.go +92 -0
  1382. data/ext/vendor/github.com/pierrec/lz4/v4/reader.go +275 -0
  1383. data/ext/vendor/github.com/pierrec/lz4/v4/state.go +75 -0
  1384. data/ext/vendor/github.com/pierrec/lz4/v4/state_gen.go +28 -0
  1385. data/ext/vendor/github.com/pierrec/lz4/v4/writer.go +238 -0
  1386. data/ext/vendor/github.com/pkg/browser/LICENSE +23 -0
  1387. data/ext/vendor/github.com/pkg/browser/README.md +55 -0
  1388. data/ext/vendor/github.com/pkg/browser/browser.go +57 -0
  1389. data/ext/vendor/github.com/pkg/browser/browser_darwin.go +5 -0
  1390. data/ext/vendor/github.com/pkg/browser/browser_freebsd.go +14 -0
  1391. data/ext/vendor/github.com/pkg/browser/browser_linux.go +21 -0
  1392. data/ext/vendor/github.com/pkg/browser/browser_netbsd.go +14 -0
  1393. data/ext/vendor/github.com/pkg/browser/browser_openbsd.go +14 -0
  1394. data/ext/vendor/github.com/pkg/browser/browser_unsupported.go +12 -0
  1395. data/ext/vendor/github.com/pkg/browser/browser_windows.go +7 -0
  1396. data/ext/vendor/github.com/sirupsen/logrus/.gitignore +4 -0
  1397. data/ext/vendor/github.com/sirupsen/logrus/.golangci.yml +40 -0
  1398. data/ext/vendor/github.com/sirupsen/logrus/.travis.yml +15 -0
  1399. data/ext/vendor/github.com/sirupsen/logrus/CHANGELOG.md +259 -0
  1400. data/ext/vendor/github.com/sirupsen/logrus/LICENSE +21 -0
  1401. data/ext/vendor/github.com/sirupsen/logrus/README.md +513 -0
  1402. data/ext/vendor/github.com/sirupsen/logrus/alt_exit.go +76 -0
  1403. data/ext/vendor/github.com/sirupsen/logrus/appveyor.yml +14 -0
  1404. data/ext/vendor/github.com/sirupsen/logrus/buffer_pool.go +43 -0
  1405. data/ext/vendor/github.com/sirupsen/logrus/doc.go +26 -0
  1406. data/ext/vendor/github.com/sirupsen/logrus/entry.go +442 -0
  1407. data/ext/vendor/github.com/sirupsen/logrus/exported.go +270 -0
  1408. data/ext/vendor/github.com/sirupsen/logrus/formatter.go +78 -0
  1409. data/ext/vendor/github.com/sirupsen/logrus/hooks.go +34 -0
  1410. data/ext/vendor/github.com/sirupsen/logrus/json_formatter.go +128 -0
  1411. data/ext/vendor/github.com/sirupsen/logrus/logger.go +417 -0
  1412. data/ext/vendor/github.com/sirupsen/logrus/logrus.go +186 -0
  1413. data/ext/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go +11 -0
  1414. data/ext/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go +13 -0
  1415. data/ext/vendor/github.com/sirupsen/logrus/terminal_check_js.go +7 -0
  1416. data/ext/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go +11 -0
  1417. data/ext/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go +17 -0
  1418. data/ext/vendor/github.com/sirupsen/logrus/terminal_check_solaris.go +11 -0
  1419. data/ext/vendor/github.com/sirupsen/logrus/terminal_check_unix.go +13 -0
  1420. data/ext/vendor/github.com/sirupsen/logrus/terminal_check_windows.go +27 -0
  1421. data/ext/vendor/github.com/sirupsen/logrus/text_formatter.go +339 -0
  1422. data/ext/vendor/github.com/sirupsen/logrus/writer.go +70 -0
  1423. data/ext/vendor/github.com/snowflakedb/gosnowflake/.gitignore +13 -0
  1424. data/ext/vendor/github.com/snowflakedb/gosnowflake/.pre-commit-config.yaml +6 -0
  1425. data/ext/vendor/github.com/snowflakedb/gosnowflake/CONTRIBUTING.md +18 -0
  1426. data/ext/vendor/github.com/snowflakedb/gosnowflake/LICENSE +201 -0
  1427. data/ext/vendor/github.com/snowflakedb/gosnowflake/Makefile +52 -0
  1428. data/ext/vendor/github.com/snowflakedb/gosnowflake/README.md +109 -0
  1429. data/ext/vendor/github.com/snowflakedb/gosnowflake/arrow_chunk.go +91 -0
  1430. data/ext/vendor/github.com/snowflakedb/gosnowflake/async.go +142 -0
  1431. data/ext/vendor/github.com/snowflakedb/gosnowflake/auth.go +549 -0
  1432. data/ext/vendor/github.com/snowflakedb/gosnowflake/authexternalbrowser.go +251 -0
  1433. data/ext/vendor/github.com/snowflakedb/gosnowflake/authokta.go +341 -0
  1434. data/ext/vendor/github.com/snowflakedb/gosnowflake/azure_storage_client.go +294 -0
  1435. data/ext/vendor/github.com/snowflakedb/gosnowflake/bind_uploader.go +300 -0
  1436. data/ext/vendor/github.com/snowflakedb/gosnowflake/cacert.go +3454 -0
  1437. data/ext/vendor/github.com/snowflakedb/gosnowflake/chunk.go +312 -0
  1438. data/ext/vendor/github.com/snowflakedb/gosnowflake/chunk_downloader.go +742 -0
  1439. data/ext/vendor/github.com/snowflakedb/gosnowflake/client.go +38 -0
  1440. data/ext/vendor/github.com/snowflakedb/gosnowflake/connection.go +493 -0
  1441. data/ext/vendor/github.com/snowflakedb/gosnowflake/connection_util.go +287 -0
  1442. data/ext/vendor/github.com/snowflakedb/gosnowflake/connector.go +40 -0
  1443. data/ext/vendor/github.com/snowflakedb/gosnowflake/converter.go +1171 -0
  1444. data/ext/vendor/github.com/snowflakedb/gosnowflake/datatype.go +195 -0
  1445. data/ext/vendor/github.com/snowflakedb/gosnowflake/debug.go +12 -0
  1446. data/ext/vendor/github.com/snowflakedb/gosnowflake/doc.go +885 -0
  1447. data/ext/vendor/github.com/snowflakedb/gosnowflake/driver.go +66 -0
  1448. data/ext/vendor/github.com/snowflakedb/gosnowflake/dsn.go +667 -0
  1449. data/ext/vendor/github.com/snowflakedb/gosnowflake/encrypt_util.go +332 -0
  1450. data/ext/vendor/github.com/snowflakedb/gosnowflake/errors.go +321 -0
  1451. data/ext/vendor/github.com/snowflakedb/gosnowflake/file_compression_type.go +132 -0
  1452. data/ext/vendor/github.com/snowflakedb/gosnowflake/file_transfer_agent.go +1228 -0
  1453. data/ext/vendor/github.com/snowflakedb/gosnowflake/file_util.go +209 -0
  1454. data/ext/vendor/github.com/snowflakedb/gosnowflake/gcs_storage_client.go +355 -0
  1455. data/ext/vendor/github.com/snowflakedb/gosnowflake/gosnowflake.mak +42 -0
  1456. data/ext/vendor/github.com/snowflakedb/gosnowflake/heartbeat.go +98 -0
  1457. data/ext/vendor/github.com/snowflakedb/gosnowflake/local_storage_client.go +113 -0
  1458. data/ext/vendor/github.com/snowflakedb/gosnowflake/location.go +106 -0
  1459. data/ext/vendor/github.com/snowflakedb/gosnowflake/log.go +314 -0
  1460. data/ext/vendor/github.com/snowflakedb/gosnowflake/monitoring.go +271 -0
  1461. data/ext/vendor/github.com/snowflakedb/gosnowflake/multistatement.go +118 -0
  1462. data/ext/vendor/github.com/snowflakedb/gosnowflake/ocsp.go +966 -0
  1463. data/ext/vendor/github.com/snowflakedb/gosnowflake/parameters.json.tmpl +11 -0
  1464. data/ext/vendor/github.com/snowflakedb/gosnowflake/priv_key_test_coding_helper.go +30 -0
  1465. data/ext/vendor/github.com/snowflakedb/gosnowflake/query.go +128 -0
  1466. data/ext/vendor/github.com/snowflakedb/gosnowflake/release.go +8 -0
  1467. data/ext/vendor/github.com/snowflakedb/gosnowflake/restful.go +489 -0
  1468. data/ext/vendor/github.com/snowflakedb/gosnowflake/result.go +75 -0
  1469. data/ext/vendor/github.com/snowflakedb/gosnowflake/retry.go +322 -0
  1470. data/ext/vendor/github.com/snowflakedb/gosnowflake/rows.go +245 -0
  1471. data/ext/vendor/github.com/snowflakedb/gosnowflake/s3_storage_client.go +275 -0
  1472. data/ext/vendor/github.com/snowflakedb/gosnowflake/secret_detector.go +63 -0
  1473. data/ext/vendor/github.com/snowflakedb/gosnowflake/secure_storage_manager.go +282 -0
  1474. data/ext/vendor/github.com/snowflakedb/gosnowflake/sqlstate.go +18 -0
  1475. data/ext/vendor/github.com/snowflakedb/gosnowflake/statement.go +45 -0
  1476. data/ext/vendor/github.com/snowflakedb/gosnowflake/storage_client.go +253 -0
  1477. data/ext/vendor/github.com/snowflakedb/gosnowflake/telemetry.go +128 -0
  1478. data/ext/vendor/github.com/snowflakedb/gosnowflake/transaction.go +35 -0
  1479. data/ext/vendor/github.com/snowflakedb/gosnowflake/url_util.go +29 -0
  1480. data/ext/vendor/github.com/snowflakedb/gosnowflake/util.go +214 -0
  1481. data/ext/vendor/github.com/snowflakedb/gosnowflake/uuid.go +47 -0
  1482. data/ext/vendor/github.com/snowflakedb/gosnowflake/version.go +6 -0
  1483. data/ext/vendor/github.com/zeebo/xxh3/.gitignore +6 -0
  1484. data/ext/vendor/github.com/zeebo/xxh3/LICENSE +25 -0
  1485. data/ext/vendor/github.com/zeebo/xxh3/Makefile +27 -0
  1486. data/ext/vendor/github.com/zeebo/xxh3/README.md +38 -0
  1487. data/ext/vendor/github.com/zeebo/xxh3/_compat.c +39 -0
  1488. data/ext/vendor/github.com/zeebo/xxh3/accum_generic.go +542 -0
  1489. data/ext/vendor/github.com/zeebo/xxh3/accum_stubs_amd64.go +40 -0
  1490. data/ext/vendor/github.com/zeebo/xxh3/accum_stubs_other.go +25 -0
  1491. data/ext/vendor/github.com/zeebo/xxh3/accum_vector_avx512_amd64.s +379 -0
  1492. data/ext/vendor/github.com/zeebo/xxh3/accum_vector_avx_amd64.s +586 -0
  1493. data/ext/vendor/github.com/zeebo/xxh3/accum_vector_sse_amd64.s +1236 -0
  1494. data/ext/vendor/github.com/zeebo/xxh3/consts.go +97 -0
  1495. data/ext/vendor/github.com/zeebo/xxh3/hash128.go +253 -0
  1496. data/ext/vendor/github.com/zeebo/xxh3/hash128_seed.go +264 -0
  1497. data/ext/vendor/github.com/zeebo/xxh3/hash64.go +126 -0
  1498. data/ext/vendor/github.com/zeebo/xxh3/hash64_seed.go +134 -0
  1499. data/ext/vendor/github.com/zeebo/xxh3/hasher.go +239 -0
  1500. data/ext/vendor/github.com/zeebo/xxh3/utils.go +129 -0
  1501. data/ext/vendor/golang.org/x/crypto/LICENSE +27 -0
  1502. data/ext/vendor/golang.org/x/crypto/PATENTS +22 -0
  1503. data/ext/vendor/golang.org/x/crypto/ocsp/ocsp.go +792 -0
  1504. data/ext/vendor/golang.org/x/mod/LICENSE +27 -0
  1505. data/ext/vendor/golang.org/x/mod/PATENTS +22 -0
  1506. data/ext/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go +78 -0
  1507. data/ext/vendor/golang.org/x/mod/module/module.go +841 -0
  1508. data/ext/vendor/golang.org/x/mod/module/pseudo.go +250 -0
  1509. data/ext/vendor/golang.org/x/mod/semver/semver.go +401 -0
  1510. data/ext/vendor/golang.org/x/net/LICENSE +27 -0
  1511. data/ext/vendor/golang.org/x/net/PATENTS +22 -0
  1512. data/ext/vendor/golang.org/x/net/html/atom/atom.go +78 -0
  1513. data/ext/vendor/golang.org/x/net/html/atom/table.go +783 -0
  1514. data/ext/vendor/golang.org/x/net/html/const.go +111 -0
  1515. data/ext/vendor/golang.org/x/net/html/doc.go +121 -0
  1516. data/ext/vendor/golang.org/x/net/html/doctype.go +156 -0
  1517. data/ext/vendor/golang.org/x/net/html/entity.go +2253 -0
  1518. data/ext/vendor/golang.org/x/net/html/escape.go +339 -0
  1519. data/ext/vendor/golang.org/x/net/html/foreign.go +222 -0
  1520. data/ext/vendor/golang.org/x/net/html/node.go +225 -0
  1521. data/ext/vendor/golang.org/x/net/html/parse.go +2460 -0
  1522. data/ext/vendor/golang.org/x/net/html/render.go +273 -0
  1523. data/ext/vendor/golang.org/x/net/html/token.go +1261 -0
  1524. data/ext/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
  1525. data/ext/vendor/golang.org/x/net/http/httpguts/httplex.go +352 -0
  1526. data/ext/vendor/golang.org/x/net/idna/go118.go +14 -0
  1527. data/ext/vendor/golang.org/x/net/idna/idna10.0.0.go +770 -0
  1528. data/ext/vendor/golang.org/x/net/idna/idna9.0.0.go +718 -0
  1529. data/ext/vendor/golang.org/x/net/idna/pre_go118.go +12 -0
  1530. data/ext/vendor/golang.org/x/net/idna/punycode.go +217 -0
  1531. data/ext/vendor/golang.org/x/net/idna/tables10.0.0.go +4560 -0
  1532. data/ext/vendor/golang.org/x/net/idna/tables11.0.0.go +4654 -0
  1533. data/ext/vendor/golang.org/x/net/idna/tables12.0.0.go +4734 -0
  1534. data/ext/vendor/golang.org/x/net/idna/tables13.0.0.go +4840 -0
  1535. data/ext/vendor/golang.org/x/net/idna/tables9.0.0.go +4487 -0
  1536. data/ext/vendor/golang.org/x/net/idna/trie.go +72 -0
  1537. data/ext/vendor/golang.org/x/net/idna/trieval.go +119 -0
  1538. data/ext/vendor/golang.org/x/sys/LICENSE +27 -0
  1539. data/ext/vendor/golang.org/x/sys/PATENTS +22 -0
  1540. data/ext/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s +18 -0
  1541. data/ext/vendor/golang.org/x/sys/cpu/byteorder.go +66 -0
  1542. data/ext/vendor/golang.org/x/sys/cpu/cpu.go +287 -0
  1543. data/ext/vendor/golang.org/x/sys/cpu/cpu_aix.go +34 -0
  1544. data/ext/vendor/golang.org/x/sys/cpu/cpu_arm.go +73 -0
  1545. data/ext/vendor/golang.org/x/sys/cpu/cpu_arm64.go +172 -0
  1546. data/ext/vendor/golang.org/x/sys/cpu/cpu_arm64.s +32 -0
  1547. data/ext/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go +12 -0
  1548. data/ext/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go +22 -0
  1549. data/ext/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go +17 -0
  1550. data/ext/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go +12 -0
  1551. data/ext/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go +23 -0
  1552. data/ext/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c +39 -0
  1553. data/ext/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go +33 -0
  1554. data/ext/vendor/golang.org/x/sys/cpu/cpu_linux.go +16 -0
  1555. data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go +39 -0
  1556. data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go +111 -0
  1557. data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go +24 -0
  1558. data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go +10 -0
  1559. data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go +32 -0
  1560. data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go +40 -0
  1561. data/ext/vendor/golang.org/x/sys/cpu/cpu_loong64.go +13 -0
  1562. data/ext/vendor/golang.org/x/sys/cpu/cpu_mips64x.go +16 -0
  1563. data/ext/vendor/golang.org/x/sys/cpu/cpu_mipsx.go +12 -0
  1564. data/ext/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go +173 -0
  1565. data/ext/vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.go +65 -0
  1566. data/ext/vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.s +11 -0
  1567. data/ext/vendor/golang.org/x/sys/cpu/cpu_other_arm.go +10 -0
  1568. data/ext/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go +10 -0
  1569. data/ext/vendor/golang.org/x/sys/cpu/cpu_other_mips64x.go +13 -0
  1570. data/ext/vendor/golang.org/x/sys/cpu/cpu_other_ppc64x.go +15 -0
  1571. data/ext/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go +12 -0
  1572. data/ext/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go +17 -0
  1573. data/ext/vendor/golang.org/x/sys/cpu/cpu_riscv64.go +12 -0
  1574. data/ext/vendor/golang.org/x/sys/cpu/cpu_s390x.go +172 -0
  1575. data/ext/vendor/golang.org/x/sys/cpu/cpu_s390x.s +58 -0
  1576. data/ext/vendor/golang.org/x/sys/cpu/cpu_wasm.go +18 -0
  1577. data/ext/vendor/golang.org/x/sys/cpu/cpu_x86.go +145 -0
  1578. data/ext/vendor/golang.org/x/sys/cpu/cpu_x86.s +28 -0
  1579. data/ext/vendor/golang.org/x/sys/cpu/cpu_zos.go +10 -0
  1580. data/ext/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go +25 -0
  1581. data/ext/vendor/golang.org/x/sys/cpu/endian_big.go +11 -0
  1582. data/ext/vendor/golang.org/x/sys/cpu/endian_little.go +11 -0
  1583. data/ext/vendor/golang.org/x/sys/cpu/hwcap_linux.go +71 -0
  1584. data/ext/vendor/golang.org/x/sys/cpu/parse.go +43 -0
  1585. data/ext/vendor/golang.org/x/sys/cpu/proc_cpuinfo_linux.go +54 -0
  1586. data/ext/vendor/golang.org/x/sys/cpu/runtime_auxv.go +16 -0
  1587. data/ext/vendor/golang.org/x/sys/cpu/runtime_auxv_go121.go +19 -0
  1588. data/ext/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go +27 -0
  1589. data/ext/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go +36 -0
  1590. data/ext/vendor/golang.org/x/sys/execabs/execabs.go +102 -0
  1591. data/ext/vendor/golang.org/x/sys/execabs/execabs_go118.go +18 -0
  1592. data/ext/vendor/golang.org/x/sys/execabs/execabs_go119.go +21 -0
  1593. data/ext/vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go +30 -0
  1594. data/ext/vendor/golang.org/x/sys/plan9/asm.s +8 -0
  1595. data/ext/vendor/golang.org/x/sys/plan9/asm_plan9_386.s +30 -0
  1596. data/ext/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s +30 -0
  1597. data/ext/vendor/golang.org/x/sys/plan9/asm_plan9_arm.s +25 -0
  1598. data/ext/vendor/golang.org/x/sys/plan9/const_plan9.go +70 -0
  1599. data/ext/vendor/golang.org/x/sys/plan9/dir_plan9.go +212 -0
  1600. data/ext/vendor/golang.org/x/sys/plan9/env_plan9.go +31 -0
  1601. data/ext/vendor/golang.org/x/sys/plan9/errors_plan9.go +50 -0
  1602. data/ext/vendor/golang.org/x/sys/plan9/mkall.sh +150 -0
  1603. data/ext/vendor/golang.org/x/sys/plan9/mkerrors.sh +246 -0
  1604. data/ext/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh +23 -0
  1605. data/ext/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go +22 -0
  1606. data/ext/vendor/golang.org/x/sys/plan9/pwd_plan9.go +24 -0
  1607. data/ext/vendor/golang.org/x/sys/plan9/race.go +31 -0
  1608. data/ext/vendor/golang.org/x/sys/plan9/race0.go +26 -0
  1609. data/ext/vendor/golang.org/x/sys/plan9/str.go +23 -0
  1610. data/ext/vendor/golang.org/x/sys/plan9/syscall.go +110 -0
  1611. data/ext/vendor/golang.org/x/sys/plan9/syscall_plan9.go +361 -0
  1612. data/ext/vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go +285 -0
  1613. data/ext/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go +285 -0
  1614. data/ext/vendor/golang.org/x/sys/plan9/zsyscall_plan9_arm.go +285 -0
  1615. data/ext/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go +49 -0
  1616. data/ext/vendor/golang.org/x/sys/unix/.gitignore +2 -0
  1617. data/ext/vendor/golang.org/x/sys/unix/README.md +184 -0
  1618. data/ext/vendor/golang.org/x/sys/unix/affinity_linux.go +86 -0
  1619. data/ext/vendor/golang.org/x/sys/unix/aliases.go +15 -0
  1620. data/ext/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s +18 -0
  1621. data/ext/vendor/golang.org/x/sys/unix/asm_bsd_386.s +29 -0
  1622. data/ext/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s +29 -0
  1623. data/ext/vendor/golang.org/x/sys/unix/asm_bsd_arm.s +29 -0
  1624. data/ext/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s +29 -0
  1625. data/ext/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s +31 -0
  1626. data/ext/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s +29 -0
  1627. data/ext/vendor/golang.org/x/sys/unix/asm_linux_386.s +66 -0
  1628. data/ext/vendor/golang.org/x/sys/unix/asm_linux_amd64.s +58 -0
  1629. data/ext/vendor/golang.org/x/sys/unix/asm_linux_arm.s +57 -0
  1630. data/ext/vendor/golang.org/x/sys/unix/asm_linux_arm64.s +53 -0
  1631. data/ext/vendor/golang.org/x/sys/unix/asm_linux_loong64.s +54 -0
  1632. data/ext/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s +57 -0
  1633. data/ext/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s +55 -0
  1634. data/ext/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s +45 -0
  1635. data/ext/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s +49 -0
  1636. data/ext/vendor/golang.org/x/sys/unix/asm_linux_s390x.s +57 -0
  1637. data/ext/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s +30 -0
  1638. data/ext/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s +18 -0
  1639. data/ext/vendor/golang.org/x/sys/unix/asm_zos_s390x.s +426 -0
  1640. data/ext/vendor/golang.org/x/sys/unix/bluetooth_linux.go +36 -0
  1641. data/ext/vendor/golang.org/x/sys/unix/cap_freebsd.go +196 -0
  1642. data/ext/vendor/golang.org/x/sys/unix/constants.go +14 -0
  1643. data/ext/vendor/golang.org/x/sys/unix/dev_aix_ppc.go +27 -0
  1644. data/ext/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go +29 -0
  1645. data/ext/vendor/golang.org/x/sys/unix/dev_darwin.go +24 -0
  1646. data/ext/vendor/golang.org/x/sys/unix/dev_dragonfly.go +30 -0
  1647. data/ext/vendor/golang.org/x/sys/unix/dev_freebsd.go +30 -0
  1648. data/ext/vendor/golang.org/x/sys/unix/dev_linux.go +42 -0
  1649. data/ext/vendor/golang.org/x/sys/unix/dev_netbsd.go +29 -0
  1650. data/ext/vendor/golang.org/x/sys/unix/dev_openbsd.go +29 -0
  1651. data/ext/vendor/golang.org/x/sys/unix/dev_zos.go +29 -0
  1652. data/ext/vendor/golang.org/x/sys/unix/dirent.go +103 -0
  1653. data/ext/vendor/golang.org/x/sys/unix/endian_big.go +10 -0
  1654. data/ext/vendor/golang.org/x/sys/unix/endian_little.go +10 -0
  1655. data/ext/vendor/golang.org/x/sys/unix/env_unix.go +32 -0
  1656. data/ext/vendor/golang.org/x/sys/unix/epoll_zos.go +221 -0
  1657. data/ext/vendor/golang.org/x/sys/unix/fcntl.go +37 -0
  1658. data/ext/vendor/golang.org/x/sys/unix/fcntl_darwin.go +24 -0
  1659. data/ext/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go +14 -0
  1660. data/ext/vendor/golang.org/x/sys/unix/fdset.go +30 -0
  1661. data/ext/vendor/golang.org/x/sys/unix/fstatfs_zos.go +164 -0
  1662. data/ext/vendor/golang.org/x/sys/unix/gccgo.go +60 -0
  1663. data/ext/vendor/golang.org/x/sys/unix/gccgo_c.c +45 -0
  1664. data/ext/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go +21 -0
  1665. data/ext/vendor/golang.org/x/sys/unix/ifreq_linux.go +142 -0
  1666. data/ext/vendor/golang.org/x/sys/unix/ioctl.go +70 -0
  1667. data/ext/vendor/golang.org/x/sys/unix/ioctl_linux.go +233 -0
  1668. data/ext/vendor/golang.org/x/sys/unix/ioctl_zos.go +72 -0
  1669. data/ext/vendor/golang.org/x/sys/unix/mkall.sh +249 -0
  1670. data/ext/vendor/golang.org/x/sys/unix/mkerrors.sh +778 -0
  1671. data/ext/vendor/golang.org/x/sys/unix/pagesize_unix.go +16 -0
  1672. data/ext/vendor/golang.org/x/sys/unix/pledge_openbsd.go +163 -0
  1673. data/ext/vendor/golang.org/x/sys/unix/ptrace_darwin.go +18 -0
  1674. data/ext/vendor/golang.org/x/sys/unix/ptrace_ios.go +18 -0
  1675. data/ext/vendor/golang.org/x/sys/unix/race.go +31 -0
  1676. data/ext/vendor/golang.org/x/sys/unix/race0.go +26 -0
  1677. data/ext/vendor/golang.org/x/sys/unix/readdirent_getdents.go +13 -0
  1678. data/ext/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go +20 -0
  1679. data/ext/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go +16 -0
  1680. data/ext/vendor/golang.org/x/sys/unix/sockcmsg_linux.go +85 -0
  1681. data/ext/vendor/golang.org/x/sys/unix/sockcmsg_unix.go +107 -0
  1682. data/ext/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go +47 -0
  1683. data/ext/vendor/golang.org/x/sys/unix/syscall.go +87 -0
  1684. data/ext/vendor/golang.org/x/sys/unix/syscall_aix.go +599 -0
  1685. data/ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go +54 -0
  1686. data/ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go +85 -0
  1687. data/ext/vendor/golang.org/x/sys/unix/syscall_bsd.go +624 -0
  1688. data/ext/vendor/golang.org/x/sys/unix/syscall_darwin.go +827 -0
  1689. data/ext/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go +52 -0
  1690. data/ext/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go +52 -0
  1691. data/ext/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go +27 -0
  1692. data/ext/vendor/golang.org/x/sys/unix/syscall_dragonfly.go +546 -0
  1693. data/ext/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go +57 -0
  1694. data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd.go +646 -0
  1695. data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go +65 -0
  1696. data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go +65 -0
  1697. data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go +61 -0
  1698. data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go +61 -0
  1699. data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go +61 -0
  1700. data/ext/vendor/golang.org/x/sys/unix/syscall_hurd.go +30 -0
  1701. data/ext/vendor/golang.org/x/sys/unix/syscall_hurd_386.go +29 -0
  1702. data/ext/vendor/golang.org/x/sys/unix/syscall_illumos.go +79 -0
  1703. data/ext/vendor/golang.org/x/sys/unix/syscall_linux.go +2510 -0
  1704. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_386.go +342 -0
  1705. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go +14 -0
  1706. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go +147 -0
  1707. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go +13 -0
  1708. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_arm.go +244 -0
  1709. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go +195 -0
  1710. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gc.go +15 -0
  1711. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go +17 -0
  1712. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go +14 -0
  1713. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go +31 -0
  1714. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go +21 -0
  1715. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go +222 -0
  1716. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go +191 -0
  1717. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go +203 -0
  1718. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go +232 -0
  1719. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go +118 -0
  1720. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go +180 -0
  1721. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go +298 -0
  1722. data/ext/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go +114 -0
  1723. data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd.go +623 -0
  1724. data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go +38 -0
  1725. data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go +38 -0
  1726. data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go +38 -0
  1727. data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go +38 -0
  1728. data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd.go +391 -0
  1729. data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go +42 -0
  1730. data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go +42 -0
  1731. data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go +42 -0
  1732. data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go +42 -0
  1733. data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go +27 -0
  1734. data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go +39 -0
  1735. data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go +42 -0
  1736. data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go +42 -0
  1737. data/ext/vendor/golang.org/x/sys/unix/syscall_solaris.go +1136 -0
  1738. data/ext/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go +28 -0
  1739. data/ext/vendor/golang.org/x/sys/unix/syscall_unix.go +589 -0
  1740. data/ext/vendor/golang.org/x/sys/unix/syscall_unix_gc.go +16 -0
  1741. data/ext/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go +25 -0
  1742. data/ext/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go +1994 -0
  1743. data/ext/vendor/golang.org/x/sys/unix/sysvshm_linux.go +21 -0
  1744. data/ext/vendor/golang.org/x/sys/unix/sysvshm_unix.go +52 -0
  1745. data/ext/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go +14 -0
  1746. data/ext/vendor/golang.org/x/sys/unix/timestruct.go +77 -0
  1747. data/ext/vendor/golang.org/x/sys/unix/unveil_openbsd.go +42 -0
  1748. data/ext/vendor/golang.org/x/sys/unix/xattr_bsd.go +281 -0
  1749. data/ext/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go +1385 -0
  1750. data/ext/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go +1386 -0
  1751. data/ext/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go +1892 -0
  1752. data/ext/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go +1892 -0
  1753. data/ext/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go +1738 -0
  1754. data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go +2043 -0
  1755. data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go +2040 -0
  1756. data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go +2034 -0
  1757. data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go +2034 -0
  1758. data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go +2148 -0
  1759. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux.go +3479 -0
  1760. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +829 -0
  1761. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +829 -0
  1762. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +835 -0
  1763. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +827 -0
  1764. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +819 -0
  1765. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +836 -0
  1766. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +836 -0
  1767. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +836 -0
  1768. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +836 -0
  1769. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +888 -0
  1770. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +892 -0
  1771. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +892 -0
  1772. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +816 -0
  1773. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +891 -0
  1774. data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +886 -0
  1775. data/ext/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go +1780 -0
  1776. data/ext/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go +1770 -0
  1777. data/ext/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go +1759 -0
  1778. data/ext/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go +1770 -0
  1779. data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go +1906 -0
  1780. data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go +1906 -0
  1781. data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go +1906 -0
  1782. data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go +1906 -0
  1783. data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go +1906 -0
  1784. data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go +1905 -0
  1785. data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go +1904 -0
  1786. data/ext/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go +1557 -0
  1787. data/ext/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go +860 -0
  1788. data/ext/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go +42 -0
  1789. data/ext/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go +17 -0
  1790. data/ext/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go +51 -0
  1791. data/ext/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go +51 -0
  1792. data/ext/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go +81 -0
  1793. data/ext/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go +1495 -0
  1794. data/ext/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go +1453 -0
  1795. data/ext/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go +1199 -0
  1796. data/ext/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go +1078 -0
  1797. data/ext/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +2561 -0
  1798. data/ext/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +904 -0
  1799. data/ext/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +2561 -0
  1800. data/ext/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +904 -0
  1801. data/ext/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go +1699 -0
  1802. data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go +1919 -0
  1803. data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go +1919 -0
  1804. data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go +1919 -0
  1805. data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go +1919 -0
  1806. data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go +1919 -0
  1807. data/ext/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go +102 -0
  1808. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux.go +2184 -0
  1809. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go +497 -0
  1810. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go +664 -0
  1811. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go +612 -0
  1812. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go +563 -0
  1813. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go +487 -0
  1814. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go +664 -0
  1815. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go +658 -0
  1816. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go +647 -0
  1817. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go +664 -0
  1818. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go +669 -0
  1819. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go +715 -0
  1820. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go +715 -0
  1821. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go +543 -0
  1822. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go +506 -0
  1823. data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go +659 -0
  1824. data/ext/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go +1870 -0
  1825. data/ext/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go +1870 -0
  1826. data/ext/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go +1870 -0
  1827. data/ext/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go +1870 -0
  1828. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go +2243 -0
  1829. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s +669 -0
  1830. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go +2243 -0
  1831. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s +669 -0
  1832. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go +2243 -0
  1833. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s +669 -0
  1834. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go +2243 -0
  1835. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s +669 -0
  1836. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go +2243 -0
  1837. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s +669 -0
  1838. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go +2243 -0
  1839. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s +802 -0
  1840. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go +2243 -0
  1841. data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s +669 -0
  1842. data/ext/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +2117 -0
  1843. data/ext/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go +1265 -0
  1844. data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go +281 -0
  1845. data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go +281 -0
  1846. data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go +281 -0
  1847. data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go +281 -0
  1848. data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go +281 -0
  1849. data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go +281 -0
  1850. data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go +282 -0
  1851. data/ext/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go +440 -0
  1852. data/ext/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go +438 -0
  1853. data/ext/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go +317 -0
  1854. data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go +394 -0
  1855. data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go +394 -0
  1856. data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go +394 -0
  1857. data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go +394 -0
  1858. data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go +394 -0
  1859. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +450 -0
  1860. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +372 -0
  1861. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +414 -0
  1862. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +317 -0
  1863. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +311 -0
  1864. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +434 -0
  1865. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +364 -0
  1866. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +364 -0
  1867. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +434 -0
  1868. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +441 -0
  1869. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +413 -0
  1870. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +413 -0
  1871. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +316 -0
  1872. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +378 -0
  1873. data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +392 -0
  1874. data/ext/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go +275 -0
  1875. data/ext/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go +275 -0
  1876. data/ext/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go +275 -0
  1877. data/ext/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go +275 -0
  1878. data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go +220 -0
  1879. data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go +220 -0
  1880. data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go +220 -0
  1881. data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go +219 -0
  1882. data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go +222 -0
  1883. data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go +218 -0
  1884. data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go +219 -0
  1885. data/ext/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go +2670 -0
  1886. data/ext/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go +354 -0
  1887. data/ext/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go +358 -0
  1888. data/ext/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go +795 -0
  1889. data/ext/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go +795 -0
  1890. data/ext/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go +474 -0
  1891. data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go +651 -0
  1892. data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go +656 -0
  1893. data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go +642 -0
  1894. data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go +636 -0
  1895. data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go +638 -0
  1896. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux.go +5812 -0
  1897. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +696 -0
  1898. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +711 -0
  1899. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +691 -0
  1900. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +690 -0
  1901. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +691 -0
  1902. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +696 -0
  1903. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +693 -0
  1904. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +693 -0
  1905. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +696 -0
  1906. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +704 -0
  1907. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +699 -0
  1908. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +699 -0
  1909. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +718 -0
  1910. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +713 -0
  1911. data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +694 -0
  1912. data/ext/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go +586 -0
  1913. data/ext/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go +594 -0
  1914. data/ext/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go +591 -0
  1915. data/ext/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go +594 -0
  1916. data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go +569 -0
  1917. data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go +569 -0
  1918. data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go +576 -0
  1919. data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go +569 -0
  1920. data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go +569 -0
  1921. data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go +571 -0
  1922. data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go +571 -0
  1923. data/ext/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go +517 -0
  1924. data/ext/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go +415 -0
  1925. data/ext/vendor/golang.org/x/sys/windows/aliases.go +13 -0
  1926. data/ext/vendor/golang.org/x/sys/windows/dll_windows.go +416 -0
  1927. data/ext/vendor/golang.org/x/sys/windows/empty.s +9 -0
  1928. data/ext/vendor/golang.org/x/sys/windows/env_windows.go +54 -0
  1929. data/ext/vendor/golang.org/x/sys/windows/eventlog.go +21 -0
  1930. data/ext/vendor/golang.org/x/sys/windows/exec_windows.go +178 -0
  1931. data/ext/vendor/golang.org/x/sys/windows/memory_windows.go +48 -0
  1932. data/ext/vendor/golang.org/x/sys/windows/mkerrors.bash +70 -0
  1933. data/ext/vendor/golang.org/x/sys/windows/mkknownfolderids.bash +27 -0
  1934. data/ext/vendor/golang.org/x/sys/windows/mksyscall.go +10 -0
  1935. data/ext/vendor/golang.org/x/sys/windows/race.go +31 -0
  1936. data/ext/vendor/golang.org/x/sys/windows/race0.go +26 -0
  1937. data/ext/vendor/golang.org/x/sys/windows/security_windows.go +1444 -0
  1938. data/ext/vendor/golang.org/x/sys/windows/service.go +247 -0
  1939. data/ext/vendor/golang.org/x/sys/windows/setupapi_windows.go +1425 -0
  1940. data/ext/vendor/golang.org/x/sys/windows/str.go +23 -0
  1941. data/ext/vendor/golang.org/x/sys/windows/syscall.go +105 -0
  1942. data/ext/vendor/golang.org/x/sys/windows/syscall_windows.go +1808 -0
  1943. data/ext/vendor/golang.org/x/sys/windows/types_windows.go +3345 -0
  1944. data/ext/vendor/golang.org/x/sys/windows/types_windows_386.go +35 -0
  1945. data/ext/vendor/golang.org/x/sys/windows/types_windows_amd64.go +34 -0
  1946. data/ext/vendor/golang.org/x/sys/windows/types_windows_arm.go +35 -0
  1947. data/ext/vendor/golang.org/x/sys/windows/types_windows_arm64.go +34 -0
  1948. data/ext/vendor/golang.org/x/sys/windows/zerrors_windows.go +9468 -0
  1949. data/ext/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go +149 -0
  1950. data/ext/vendor/golang.org/x/sys/windows/zsyscall_windows.go +4336 -0
  1951. data/ext/vendor/golang.org/x/term/CONTRIBUTING.md +26 -0
  1952. data/ext/vendor/golang.org/x/term/LICENSE +27 -0
  1953. data/ext/vendor/golang.org/x/term/PATENTS +22 -0
  1954. data/ext/vendor/golang.org/x/term/README.md +19 -0
  1955. data/ext/vendor/golang.org/x/term/codereview.cfg +1 -0
  1956. data/ext/vendor/golang.org/x/term/term.go +60 -0
  1957. data/ext/vendor/golang.org/x/term/term_plan9.go +42 -0
  1958. data/ext/vendor/golang.org/x/term/term_unix.go +92 -0
  1959. data/ext/vendor/golang.org/x/term/term_unix_bsd.go +13 -0
  1960. data/ext/vendor/golang.org/x/term/term_unix_other.go +13 -0
  1961. data/ext/vendor/golang.org/x/term/term_unsupported.go +39 -0
  1962. data/ext/vendor/golang.org/x/term/term_windows.go +79 -0
  1963. data/ext/vendor/golang.org/x/term/terminal.go +986 -0
  1964. data/ext/vendor/golang.org/x/text/LICENSE +27 -0
  1965. data/ext/vendor/golang.org/x/text/PATENTS +22 -0
  1966. data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
  1967. data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +12 -0
  1968. data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +15 -0
  1969. data/ext/vendor/golang.org/x/text/transform/transform.go +709 -0
  1970. data/ext/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
  1971. data/ext/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
  1972. data/ext/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
  1973. data/ext/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
  1974. data/ext/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1816 -0
  1975. data/ext/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1888 -0
  1976. data/ext/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1924 -0
  1977. data/ext/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1956 -0
  1978. data/ext/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1782 -0
  1979. data/ext/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
  1980. data/ext/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
  1981. data/ext/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
  1982. data/ext/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
  1983. data/ext/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
  1984. data/ext/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
  1985. data/ext/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
  1986. data/ext/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7658 -0
  1987. data/ext/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7694 -0
  1988. data/ext/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7711 -0
  1989. data/ext/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7761 -0
  1990. data/ext/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7638 -0
  1991. data/ext/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
  1992. data/ext/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
  1993. data/ext/vendor/golang.org/x/tools/LICENSE +27 -0
  1994. data/ext/vendor/golang.org/x/tools/PATENTS +22 -0
  1995. data/ext/vendor/golang.org/x/tools/cmd/goimports/doc.go +50 -0
  1996. data/ext/vendor/golang.org/x/tools/cmd/goimports/goimports.go +380 -0
  1997. data/ext/vendor/golang.org/x/tools/cmd/goimports/goimports_gc.go +27 -0
  1998. data/ext/vendor/golang.org/x/tools/cmd/goimports/goimports_not_gc.go +12 -0
  1999. data/ext/vendor/golang.org/x/tools/cmd/stringer/stringer.go +657 -0
  2000. data/ext/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go +636 -0
  2001. data/ext/vendor/golang.org/x/tools/go/ast/astutil/imports.go +485 -0
  2002. data/ext/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go +488 -0
  2003. data/ext/vendor/golang.org/x/tools/go/ast/astutil/util.go +18 -0
  2004. data/ext/vendor/golang.org/x/tools/go/gcexportdata/gcexportdata.go +187 -0
  2005. data/ext/vendor/golang.org/x/tools/go/gcexportdata/importer.go +75 -0
  2006. data/ext/vendor/golang.org/x/tools/go/internal/packagesdriver/sizes.go +49 -0
  2007. data/ext/vendor/golang.org/x/tools/go/packages/doc.go +220 -0
  2008. data/ext/vendor/golang.org/x/tools/go/packages/external.go +101 -0
  2009. data/ext/vendor/golang.org/x/tools/go/packages/golist.go +1173 -0
  2010. data/ext/vendor/golang.org/x/tools/go/packages/golist_overlay.go +575 -0
  2011. data/ext/vendor/golang.org/x/tools/go/packages/loadmode_string.go +57 -0
  2012. data/ext/vendor/golang.org/x/tools/go/packages/packages.go +1326 -0
  2013. data/ext/vendor/golang.org/x/tools/go/packages/visit.go +59 -0
  2014. data/ext/vendor/golang.org/x/tools/internal/event/core/event.go +85 -0
  2015. data/ext/vendor/golang.org/x/tools/internal/event/core/export.go +70 -0
  2016. data/ext/vendor/golang.org/x/tools/internal/event/core/fast.go +77 -0
  2017. data/ext/vendor/golang.org/x/tools/internal/event/doc.go +7 -0
  2018. data/ext/vendor/golang.org/x/tools/internal/event/event.go +127 -0
  2019. data/ext/vendor/golang.org/x/tools/internal/event/keys/keys.go +564 -0
  2020. data/ext/vendor/golang.org/x/tools/internal/event/keys/standard.go +22 -0
  2021. data/ext/vendor/golang.org/x/tools/internal/event/label/label.go +215 -0
  2022. data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk.go +196 -0
  2023. data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_darwin.go +119 -0
  2024. data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_dirent_fileno.go +14 -0
  2025. data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_dirent_ino.go +15 -0
  2026. data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_dirent_namlen_bsd.go +14 -0
  2027. data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_dirent_namlen_linux.go +29 -0
  2028. data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_portable.go +38 -0
  2029. data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_unix.go +153 -0
  2030. data/ext/vendor/golang.org/x/tools/internal/gcimporter/bexport.go +852 -0
  2031. data/ext/vendor/golang.org/x/tools/internal/gcimporter/bimport.go +1053 -0
  2032. data/ext/vendor/golang.org/x/tools/internal/gcimporter/exportdata.go +99 -0
  2033. data/ext/vendor/golang.org/x/tools/internal/gcimporter/gcimporter.go +265 -0
  2034. data/ext/vendor/golang.org/x/tools/internal/gcimporter/iexport.go +1180 -0
  2035. data/ext/vendor/golang.org/x/tools/internal/gcimporter/iimport.go +976 -0
  2036. data/ext/vendor/golang.org/x/tools/internal/gcimporter/newInterface10.go +22 -0
  2037. data/ext/vendor/golang.org/x/tools/internal/gcimporter/newInterface11.go +14 -0
  2038. data/ext/vendor/golang.org/x/tools/internal/gcimporter/support_go117.go +16 -0
  2039. data/ext/vendor/golang.org/x/tools/internal/gcimporter/support_go118.go +37 -0
  2040. data/ext/vendor/golang.org/x/tools/internal/gcimporter/unified_no.go +10 -0
  2041. data/ext/vendor/golang.org/x/tools/internal/gcimporter/unified_yes.go +10 -0
  2042. data/ext/vendor/golang.org/x/tools/internal/gcimporter/ureader_no.go +19 -0
  2043. data/ext/vendor/golang.org/x/tools/internal/gcimporter/ureader_yes.go +738 -0
  2044. data/ext/vendor/golang.org/x/tools/internal/gocommand/invoke.go +356 -0
  2045. data/ext/vendor/golang.org/x/tools/internal/gocommand/vendor.go +109 -0
  2046. data/ext/vendor/golang.org/x/tools/internal/gocommand/version.go +81 -0
  2047. data/ext/vendor/golang.org/x/tools/internal/gopathwalk/walk.go +254 -0
  2048. data/ext/vendor/golang.org/x/tools/internal/imports/fix.go +1738 -0
  2049. data/ext/vendor/golang.org/x/tools/internal/imports/imports.go +351 -0
  2050. data/ext/vendor/golang.org/x/tools/internal/imports/mod.go +716 -0
  2051. data/ext/vendor/golang.org/x/tools/internal/imports/mod_cache.go +236 -0
  2052. data/ext/vendor/golang.org/x/tools/internal/imports/sortimports.go +297 -0
  2053. data/ext/vendor/golang.org/x/tools/internal/imports/zstdlib.go +11115 -0
  2054. data/ext/vendor/golang.org/x/tools/internal/packagesinternal/packages.go +30 -0
  2055. data/ext/vendor/golang.org/x/tools/internal/pkgbits/codes.go +77 -0
  2056. data/ext/vendor/golang.org/x/tools/internal/pkgbits/decoder.go +517 -0
  2057. data/ext/vendor/golang.org/x/tools/internal/pkgbits/doc.go +32 -0
  2058. data/ext/vendor/golang.org/x/tools/internal/pkgbits/encoder.go +383 -0
  2059. data/ext/vendor/golang.org/x/tools/internal/pkgbits/flags.go +9 -0
  2060. data/ext/vendor/golang.org/x/tools/internal/pkgbits/frames_go1.go +21 -0
  2061. data/ext/vendor/golang.org/x/tools/internal/pkgbits/frames_go17.go +28 -0
  2062. data/ext/vendor/golang.org/x/tools/internal/pkgbits/reloc.go +42 -0
  2063. data/ext/vendor/golang.org/x/tools/internal/pkgbits/support.go +17 -0
  2064. data/ext/vendor/golang.org/x/tools/internal/pkgbits/sync.go +113 -0
  2065. data/ext/vendor/golang.org/x/tools/internal/pkgbits/syncmarker_string.go +89 -0
  2066. data/ext/vendor/golang.org/x/tools/internal/tokeninternal/tokeninternal.go +59 -0
  2067. data/ext/vendor/golang.org/x/tools/internal/typeparams/common.go +179 -0
  2068. data/ext/vendor/golang.org/x/tools/internal/typeparams/coretype.go +122 -0
  2069. data/ext/vendor/golang.org/x/tools/internal/typeparams/enabled_go117.go +12 -0
  2070. data/ext/vendor/golang.org/x/tools/internal/typeparams/enabled_go118.go +15 -0
  2071. data/ext/vendor/golang.org/x/tools/internal/typeparams/normalize.go +218 -0
  2072. data/ext/vendor/golang.org/x/tools/internal/typeparams/termlist.go +163 -0
  2073. data/ext/vendor/golang.org/x/tools/internal/typeparams/typeparams_go117.go +197 -0
  2074. data/ext/vendor/golang.org/x/tools/internal/typeparams/typeparams_go118.go +151 -0
  2075. data/ext/vendor/golang.org/x/tools/internal/typeparams/typeterm.go +170 -0
  2076. data/ext/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go +1560 -0
  2077. data/ext/vendor/golang.org/x/tools/internal/typesinternal/errorcode_string.go +179 -0
  2078. data/ext/vendor/golang.org/x/tools/internal/typesinternal/types.go +52 -0
  2079. data/ext/vendor/golang.org/x/tools/internal/typesinternal/types_118.go +19 -0
  2080. data/ext/vendor/golang.org/x/xerrors/LICENSE +27 -0
  2081. data/ext/vendor/golang.org/x/xerrors/PATENTS +22 -0
  2082. data/ext/vendor/golang.org/x/xerrors/README +2 -0
  2083. data/ext/vendor/golang.org/x/xerrors/adaptor.go +193 -0
  2084. data/ext/vendor/golang.org/x/xerrors/codereview.cfg +1 -0
  2085. data/ext/vendor/golang.org/x/xerrors/doc.go +23 -0
  2086. data/ext/vendor/golang.org/x/xerrors/errors.go +33 -0
  2087. data/ext/vendor/golang.org/x/xerrors/fmt.go +190 -0
  2088. data/ext/vendor/golang.org/x/xerrors/format.go +34 -0
  2089. data/ext/vendor/golang.org/x/xerrors/frame.go +56 -0
  2090. data/ext/vendor/golang.org/x/xerrors/internal/internal.go +8 -0
  2091. data/ext/vendor/golang.org/x/xerrors/wrap.go +112 -0
  2092. data/ext/vendor/modules.txt +311 -0
  2093. data/ext/wrapper.go +158 -0
  2094. data/lib/ruby_snowflake_client/version.rb +3 -0
  2095. data/lib/ruby_snowflake_client.rb +46 -0
  2096. data/ruby_snowflake_client.gemspec +24 -0
  2097. metadata +2141 -0
@@ -0,0 +1,3892 @@
1
+ // Code generated by smithy-go-codegen DO NOT EDIT.
2
+
3
+ package types
4
+
5
+ import (
6
+ smithydocument "github.com/aws/smithy-go/document"
7
+ "time"
8
+ )
9
+
10
+ // Specifies the days since the initiation of an incomplete multipart upload that
11
+ // Amazon S3 will wait before permanently removing all parts of the upload. For
12
+ // more information, see Aborting Incomplete Multipart Uploads Using a Bucket
13
+ // Lifecycle Policy
14
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html#mpu-abort-incomplete-mpu-lifecycle-config)
15
+ // in the Amazon S3 User Guide.
16
+ type AbortIncompleteMultipartUpload struct {
17
+
18
+ // Specifies the number of days after which Amazon S3 aborts an incomplete
19
+ // multipart upload.
20
+ DaysAfterInitiation int32
21
+
22
+ noSmithyDocumentSerde
23
+ }
24
+
25
+ // Configures the transfer acceleration state for an Amazon S3 bucket. For more
26
+ // information, see Amazon S3 Transfer Acceleration
27
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in
28
+ // the Amazon S3 User Guide.
29
+ type AccelerateConfiguration struct {
30
+
31
+ // Specifies the transfer acceleration status of the bucket.
32
+ Status BucketAccelerateStatus
33
+
34
+ noSmithyDocumentSerde
35
+ }
36
+
37
+ // Contains the elements that set the ACL permissions for an object per grantee.
38
+ type AccessControlPolicy struct {
39
+
40
+ // A list of grants.
41
+ Grants []Grant
42
+
43
+ // Container for the bucket owner's display name and ID.
44
+ Owner *Owner
45
+
46
+ noSmithyDocumentSerde
47
+ }
48
+
49
+ // A container for information about access control for replicas.
50
+ type AccessControlTranslation struct {
51
+
52
+ // Specifies the replica ownership. For default and valid values, see PUT bucket
53
+ // replication
54
+ // (https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html)
55
+ // in the Amazon S3 API Reference.
56
+ //
57
+ // This member is required.
58
+ Owner OwnerOverride
59
+
60
+ noSmithyDocumentSerde
61
+ }
62
+
63
+ // A conjunction (logical AND) of predicates, which is used in evaluating a metrics
64
+ // filter. The operator must have at least two predicates in any combination, and
65
+ // an object must match all of the predicates for the filter to apply.
66
+ type AnalyticsAndOperator struct {
67
+
68
+ // The prefix to use when evaluating an AND predicate: The prefix that an object
69
+ // must have to be included in the metrics results.
70
+ Prefix *string
71
+
72
+ // The list of tags to use when evaluating an AND predicate.
73
+ Tags []Tag
74
+
75
+ noSmithyDocumentSerde
76
+ }
77
+
78
+ // Specifies the configuration and any analyses for the analytics filter of an
79
+ // Amazon S3 bucket.
80
+ type AnalyticsConfiguration struct {
81
+
82
+ // The ID that identifies the analytics configuration.
83
+ //
84
+ // This member is required.
85
+ Id *string
86
+
87
+ // Contains data related to access patterns to be collected and made available to
88
+ // analyze the tradeoffs between different storage classes.
89
+ //
90
+ // This member is required.
91
+ StorageClassAnalysis *StorageClassAnalysis
92
+
93
+ // The filter used to describe a set of objects for analyses. A filter must have
94
+ // exactly one prefix, one tag, or one conjunction (AnalyticsAndOperator). If no
95
+ // filter is provided, all objects will be considered in any analysis.
96
+ Filter AnalyticsFilter
97
+
98
+ noSmithyDocumentSerde
99
+ }
100
+
101
+ // Where to publish the analytics results.
102
+ type AnalyticsExportDestination struct {
103
+
104
+ // A destination signifying output to an S3 bucket.
105
+ //
106
+ // This member is required.
107
+ S3BucketDestination *AnalyticsS3BucketDestination
108
+
109
+ noSmithyDocumentSerde
110
+ }
111
+
112
+ // The filter used to describe a set of objects for analyses. A filter must have
113
+ // exactly one prefix, one tag, or one conjunction (AnalyticsAndOperator). If no
114
+ // filter is provided, all objects will be considered in any analysis.
115
+ //
116
+ // The following types satisfy this interface:
117
+ //
118
+ // AnalyticsFilterMemberAnd
119
+ // AnalyticsFilterMemberPrefix
120
+ // AnalyticsFilterMemberTag
121
+ type AnalyticsFilter interface {
122
+ isAnalyticsFilter()
123
+ }
124
+
125
+ // A conjunction (logical AND) of predicates, which is used in evaluating an
126
+ // analytics filter. The operator must have at least two predicates.
127
+ type AnalyticsFilterMemberAnd struct {
128
+ Value AnalyticsAndOperator
129
+
130
+ noSmithyDocumentSerde
131
+ }
132
+
133
+ func (*AnalyticsFilterMemberAnd) isAnalyticsFilter() {}
134
+
135
+ // The prefix to use when evaluating an analytics filter.
136
+ type AnalyticsFilterMemberPrefix struct {
137
+ Value string
138
+
139
+ noSmithyDocumentSerde
140
+ }
141
+
142
+ func (*AnalyticsFilterMemberPrefix) isAnalyticsFilter() {}
143
+
144
+ // The tag to use when evaluating an analytics filter.
145
+ type AnalyticsFilterMemberTag struct {
146
+ Value Tag
147
+
148
+ noSmithyDocumentSerde
149
+ }
150
+
151
+ func (*AnalyticsFilterMemberTag) isAnalyticsFilter() {}
152
+
153
+ // Contains information about where to publish the analytics results.
154
+ type AnalyticsS3BucketDestination struct {
155
+
156
+ // The Amazon Resource Name (ARN) of the bucket to which data is exported.
157
+ //
158
+ // This member is required.
159
+ Bucket *string
160
+
161
+ // Specifies the file format used when exporting data to Amazon S3.
162
+ //
163
+ // This member is required.
164
+ Format AnalyticsS3ExportFileFormat
165
+
166
+ // The account ID that owns the destination S3 bucket. If no account ID is
167
+ // provided, the owner is not validated before exporting data. Although this value
168
+ // is optional, we strongly recommend that you set it to help prevent problems if
169
+ // the destination bucket ownership changes.
170
+ BucketAccountId *string
171
+
172
+ // The prefix to use when exporting data. The prefix is prepended to all results.
173
+ Prefix *string
174
+
175
+ noSmithyDocumentSerde
176
+ }
177
+
178
+ // In terms of implementation, a Bucket is a resource. An Amazon S3 bucket name is
179
+ // globally unique, and the namespace is shared by all Amazon Web Services
180
+ // accounts.
181
+ type Bucket struct {
182
+
183
+ // Date the bucket was created. This date can change when making changes to your
184
+ // bucket, such as editing its bucket policy.
185
+ CreationDate *time.Time
186
+
187
+ // The name of the bucket.
188
+ Name *string
189
+
190
+ noSmithyDocumentSerde
191
+ }
192
+
193
+ // Specifies the lifecycle configuration for objects in an Amazon S3 bucket. For
194
+ // more information, see Object Lifecycle Management
195
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html) in
196
+ // the Amazon S3 User Guide.
197
+ type BucketLifecycleConfiguration struct {
198
+
199
+ // A lifecycle rule for individual objects in an Amazon S3 bucket.
200
+ //
201
+ // This member is required.
202
+ Rules []LifecycleRule
203
+
204
+ noSmithyDocumentSerde
205
+ }
206
+
207
+ // Container for logging status information.
208
+ type BucketLoggingStatus struct {
209
+
210
+ // Describes where logs are stored and the prefix that Amazon S3 assigns to all log
211
+ // object keys for a bucket. For more information, see PUT Bucket logging
212
+ // (https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTlogging.html) in
213
+ // the Amazon S3 API Reference.
214
+ LoggingEnabled *LoggingEnabled
215
+
216
+ noSmithyDocumentSerde
217
+ }
218
+
219
+ // Contains all the possible checksum or digest values for an object.
220
+ type Checksum struct {
221
+
222
+ // The base64-encoded, 32-bit CRC32 checksum of the object. This will only be
223
+ // present if it was uploaded with the object. With multipart uploads, this may not
224
+ // be a checksum value of the object. For more information about how checksums are
225
+ // calculated with multipart uploads, see Checking object integrity
226
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
227
+ // in the Amazon S3 User Guide.
228
+ ChecksumCRC32 *string
229
+
230
+ // The base64-encoded, 32-bit CRC32C checksum of the object. This will only be
231
+ // present if it was uploaded with the object. With multipart uploads, this may not
232
+ // be a checksum value of the object. For more information about how checksums are
233
+ // calculated with multipart uploads, see Checking object integrity
234
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
235
+ // in the Amazon S3 User Guide.
236
+ ChecksumCRC32C *string
237
+
238
+ // The base64-encoded, 160-bit SHA-1 digest of the object. This will only be
239
+ // present if it was uploaded with the object. With multipart uploads, this may not
240
+ // be a checksum value of the object. For more information about how checksums are
241
+ // calculated with multipart uploads, see Checking object integrity
242
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
243
+ // in the Amazon S3 User Guide.
244
+ ChecksumSHA1 *string
245
+
246
+ // The base64-encoded, 256-bit SHA-256 digest of the object. This will only be
247
+ // present if it was uploaded with the object. With multipart uploads, this may not
248
+ // be a checksum value of the object. For more information about how checksums are
249
+ // calculated with multipart uploads, see Checking object integrity
250
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
251
+ // in the Amazon S3 User Guide.
252
+ ChecksumSHA256 *string
253
+
254
+ noSmithyDocumentSerde
255
+ }
256
+
257
+ // Container for all (if there are any) keys between Prefix and the next occurrence
258
+ // of the string specified by a delimiter. CommonPrefixes lists keys that act like
259
+ // subdirectories in the directory specified by Prefix. For example, if the prefix
260
+ // is notes/ and the delimiter is a slash (/) as in notes/summer/july, the common
261
+ // prefix is notes/summer/.
262
+ type CommonPrefix struct {
263
+
264
+ // Container for the specified common prefix.
265
+ Prefix *string
266
+
267
+ noSmithyDocumentSerde
268
+ }
269
+
270
+ // The container for the completed multipart upload details.
271
+ type CompletedMultipartUpload struct {
272
+
273
+ // Array of CompletedPart data types. If you do not supply a valid Part with your
274
+ // request, the service sends back an HTTP 400 response.
275
+ Parts []CompletedPart
276
+
277
+ noSmithyDocumentSerde
278
+ }
279
+
280
+ // Details of the parts that were uploaded.
281
+ type CompletedPart struct {
282
+
283
+ // The base64-encoded, 32-bit CRC32 checksum of the object. This will only be
284
+ // present if it was uploaded with the object. With multipart uploads, this may not
285
+ // be a checksum value of the object. For more information about how checksums are
286
+ // calculated with multipart uploads, see Checking object integrity
287
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
288
+ // in the Amazon S3 User Guide.
289
+ ChecksumCRC32 *string
290
+
291
+ // The base64-encoded, 32-bit CRC32C checksum of the object. This will only be
292
+ // present if it was uploaded with the object. With multipart uploads, this may not
293
+ // be a checksum value of the object. For more information about how checksums are
294
+ // calculated with multipart uploads, see Checking object integrity
295
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
296
+ // in the Amazon S3 User Guide.
297
+ ChecksumCRC32C *string
298
+
299
+ // The base64-encoded, 160-bit SHA-1 digest of the object. This will only be
300
+ // present if it was uploaded with the object. With multipart uploads, this may not
301
+ // be a checksum value of the object. For more information about how checksums are
302
+ // calculated with multipart uploads, see Checking object integrity
303
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
304
+ // in the Amazon S3 User Guide.
305
+ ChecksumSHA1 *string
306
+
307
+ // The base64-encoded, 256-bit SHA-256 digest of the object. This will only be
308
+ // present if it was uploaded with the object. With multipart uploads, this may not
309
+ // be a checksum value of the object. For more information about how checksums are
310
+ // calculated with multipart uploads, see Checking object integrity
311
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
312
+ // in the Amazon S3 User Guide.
313
+ ChecksumSHA256 *string
314
+
315
+ // Entity tag returned when the part was uploaded.
316
+ ETag *string
317
+
318
+ // Part number that identifies the part. This is a positive integer between 1 and
319
+ // 10,000.
320
+ PartNumber int32
321
+
322
+ noSmithyDocumentSerde
323
+ }
324
+
325
+ // A container for describing a condition that must be met for the specified
326
+ // redirect to apply. For example, 1. If request is for pages in the /docs folder,
327
+ // redirect to the /documents folder. 2. If request results in HTTP error 4xx,
328
+ // redirect request to another host where you might process the error.
329
+ type Condition struct {
330
+
331
+ // The HTTP error code when the redirect is applied. In the event of an error, if
332
+ // the error code equals this value, then the specified redirect is applied.
333
+ // Required when parent element Condition is specified and sibling KeyPrefixEquals
334
+ // is not specified. If both are specified, then both must be true for the redirect
335
+ // to be applied.
336
+ HttpErrorCodeReturnedEquals *string
337
+
338
+ // The object key name prefix when the redirect is applied. For example, to
339
+ // redirect requests for ExamplePage.html, the key prefix will be ExamplePage.html.
340
+ // To redirect request for all pages with the prefix docs/, the key prefix will be
341
+ // /docs, which identifies all objects in the docs/ folder. Required when the
342
+ // parent element Condition is specified and sibling HttpErrorCodeReturnedEquals is
343
+ // not specified. If both conditions are specified, both must be true for the
344
+ // redirect to be applied. Replacement must be made for object keys containing
345
+ // special characters (such as carriage returns) when using XML requests. For more
346
+ // information, see XML related object key constraints
347
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
348
+ KeyPrefixEquals *string
349
+
350
+ noSmithyDocumentSerde
351
+ }
352
+
353
+ type ContinuationEvent struct {
354
+ noSmithyDocumentSerde
355
+ }
356
+
357
+ // Container for all response elements.
358
+ type CopyObjectResult struct {
359
+
360
+ // The base64-encoded, 32-bit CRC32 checksum of the object. This will only be
361
+ // present if it was uploaded with the object. With multipart uploads, this may not
362
+ // be a checksum value of the object. For more information about how checksums are
363
+ // calculated with multipart uploads, see Checking object integrity
364
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
365
+ // in the Amazon S3 User Guide.
366
+ ChecksumCRC32 *string
367
+
368
+ // The base64-encoded, 32-bit CRC32C checksum of the object. This will only be
369
+ // present if it was uploaded with the object. With multipart uploads, this may not
370
+ // be a checksum value of the object. For more information about how checksums are
371
+ // calculated with multipart uploads, see Checking object integrity
372
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
373
+ // in the Amazon S3 User Guide.
374
+ ChecksumCRC32C *string
375
+
376
+ // The base64-encoded, 160-bit SHA-1 digest of the object. This will only be
377
+ // present if it was uploaded with the object. With multipart uploads, this may not
378
+ // be a checksum value of the object. For more information about how checksums are
379
+ // calculated with multipart uploads, see Checking object integrity
380
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
381
+ // in the Amazon S3 User Guide.
382
+ ChecksumSHA1 *string
383
+
384
+ // The base64-encoded, 256-bit SHA-256 digest of the object. This will only be
385
+ // present if it was uploaded with the object. With multipart uploads, this may not
386
+ // be a checksum value of the object. For more information about how checksums are
387
+ // calculated with multipart uploads, see Checking object integrity
388
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
389
+ // in the Amazon S3 User Guide.
390
+ ChecksumSHA256 *string
391
+
392
+ // Returns the ETag of the new object. The ETag reflects only changes to the
393
+ // contents of an object, not its metadata.
394
+ ETag *string
395
+
396
+ // Creation date of the object.
397
+ LastModified *time.Time
398
+
399
+ noSmithyDocumentSerde
400
+ }
401
+
402
+ // Container for all response elements.
403
+ type CopyPartResult struct {
404
+
405
+ // The base64-encoded, 32-bit CRC32 checksum of the object. This will only be
406
+ // present if it was uploaded with the object. With multipart uploads, this may not
407
+ // be a checksum value of the object. For more information about how checksums are
408
+ // calculated with multipart uploads, see Checking object integrity
409
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
410
+ // in the Amazon S3 User Guide.
411
+ ChecksumCRC32 *string
412
+
413
+ // The base64-encoded, 32-bit CRC32C checksum of the object. This will only be
414
+ // present if it was uploaded with the object. With multipart uploads, this may not
415
+ // be a checksum value of the object. For more information about how checksums are
416
+ // calculated with multipart uploads, see Checking object integrity
417
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
418
+ // in the Amazon S3 User Guide.
419
+ ChecksumCRC32C *string
420
+
421
+ // The base64-encoded, 160-bit SHA-1 digest of the object. This will only be
422
+ // present if it was uploaded with the object. With multipart uploads, this may not
423
+ // be a checksum value of the object. For more information about how checksums are
424
+ // calculated with multipart uploads, see Checking object integrity
425
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
426
+ // in the Amazon S3 User Guide.
427
+ ChecksumSHA1 *string
428
+
429
+ // The base64-encoded, 256-bit SHA-256 digest of the object. This will only be
430
+ // present if it was uploaded with the object. With multipart uploads, this may not
431
+ // be a checksum value of the object. For more information about how checksums are
432
+ // calculated with multipart uploads, see Checking object integrity
433
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
434
+ // in the Amazon S3 User Guide.
435
+ ChecksumSHA256 *string
436
+
437
+ // Entity tag of the object.
438
+ ETag *string
439
+
440
+ // Date and time at which the object was uploaded.
441
+ LastModified *time.Time
442
+
443
+ noSmithyDocumentSerde
444
+ }
445
+
446
+ // Describes the cross-origin access configuration for objects in an Amazon S3
447
+ // bucket. For more information, see Enabling Cross-Origin Resource Sharing
448
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html) in the Amazon S3
449
+ // User Guide.
450
+ type CORSConfiguration struct {
451
+
452
+ // A set of origins and methods (cross-origin access that you want to allow). You
453
+ // can add up to 100 rules to the configuration.
454
+ //
455
+ // This member is required.
456
+ CORSRules []CORSRule
457
+
458
+ noSmithyDocumentSerde
459
+ }
460
+
461
+ // Specifies a cross-origin access rule for an Amazon S3 bucket.
462
+ type CORSRule struct {
463
+
464
+ // An HTTP method that you allow the origin to execute. Valid values are GET, PUT,
465
+ // HEAD, POST, and DELETE.
466
+ //
467
+ // This member is required.
468
+ AllowedMethods []string
469
+
470
+ // One or more origins you want customers to be able to access the bucket from.
471
+ //
472
+ // This member is required.
473
+ AllowedOrigins []string
474
+
475
+ // Headers that are specified in the Access-Control-Request-Headers header. These
476
+ // headers are allowed in a preflight OPTIONS request. In response to any preflight
477
+ // OPTIONS request, Amazon S3 returns any requested headers that are allowed.
478
+ AllowedHeaders []string
479
+
480
+ // One or more headers in the response that you want customers to be able to access
481
+ // from their applications (for example, from a JavaScript XMLHttpRequest object).
482
+ ExposeHeaders []string
483
+
484
+ // Unique identifier for the rule. The value cannot be longer than 255 characters.
485
+ ID *string
486
+
487
+ // The time in seconds that your browser is to cache the preflight response for the
488
+ // specified resource.
489
+ MaxAgeSeconds int32
490
+
491
+ noSmithyDocumentSerde
492
+ }
493
+
494
+ // The configuration information for the bucket.
495
+ type CreateBucketConfiguration struct {
496
+
497
+ // Specifies the Region where the bucket will be created. If you don't specify a
498
+ // Region, the bucket is created in the US East (N. Virginia) Region (us-east-1).
499
+ LocationConstraint BucketLocationConstraint
500
+
501
+ noSmithyDocumentSerde
502
+ }
503
+
504
+ // Describes how an uncompressed comma-separated values (CSV)-formatted input
505
+ // object is formatted.
506
+ type CSVInput struct {
507
+
508
+ // Specifies that CSV field values may contain quoted record delimiters and such
509
+ // records should be allowed. Default value is FALSE. Setting this value to TRUE
510
+ // may lower performance.
511
+ AllowQuotedRecordDelimiter bool
512
+
513
+ // A single character used to indicate that a row should be ignored when the
514
+ // character is present at the start of that row. You can specify any character to
515
+ // indicate a comment line.
516
+ Comments *string
517
+
518
+ // A single character used to separate individual fields in a record. You can
519
+ // specify an arbitrary delimiter.
520
+ FieldDelimiter *string
521
+
522
+ // Describes the first line of input. Valid values are:
523
+ //
524
+ // * NONE: First line is not
525
+ // a header.
526
+ //
527
+ // * IGNORE: First line is a header, but you can't use the header values
528
+ // to indicate the column in an expression. You can use column position (such as
529
+ // _1, _2, …) to indicate the column (SELECT s._1 FROM OBJECT s).
530
+ //
531
+ // * Use: First
532
+ // line is a header, and you can use the header value to identify a column in an
533
+ // expression (SELECT "name" FROM OBJECT).
534
+ FileHeaderInfo FileHeaderInfo
535
+
536
+ // A single character used for escaping when the field delimiter is part of the
537
+ // value. For example, if the value is a, b, Amazon S3 wraps this field value in
538
+ // quotation marks, as follows: " a , b ". Type: String Default: " Ancestors: CSV
539
+ QuoteCharacter *string
540
+
541
+ // A single character used for escaping the quotation mark character inside an
542
+ // already escaped value. For example, the value """ a , b """ is parsed as " a , b
543
+ // ".
544
+ QuoteEscapeCharacter *string
545
+
546
+ // A single character used to separate individual records in the input. Instead of
547
+ // the default value, you can specify an arbitrary delimiter.
548
+ RecordDelimiter *string
549
+
550
+ noSmithyDocumentSerde
551
+ }
552
+
553
+ // Describes how uncompressed comma-separated values (CSV)-formatted results are
554
+ // formatted.
555
+ type CSVOutput struct {
556
+
557
+ // The value used to separate individual fields in a record. You can specify an
558
+ // arbitrary delimiter.
559
+ FieldDelimiter *string
560
+
561
+ // A single character used for escaping when the field delimiter is part of the
562
+ // value. For example, if the value is a, b, Amazon S3 wraps this field value in
563
+ // quotation marks, as follows: " a , b ".
564
+ QuoteCharacter *string
565
+
566
+ // The single character used for escaping the quote character inside an already
567
+ // escaped value.
568
+ QuoteEscapeCharacter *string
569
+
570
+ // Indicates whether to use quotation marks around output fields.
571
+ //
572
+ // * ALWAYS: Always
573
+ // use quotation marks for output fields.
574
+ //
575
+ // * ASNEEDED: Use quotation marks for
576
+ // output fields when needed.
577
+ QuoteFields QuoteFields
578
+
579
+ // A single character used to separate individual records in the output. Instead of
580
+ // the default value, you can specify an arbitrary delimiter.
581
+ RecordDelimiter *string
582
+
583
+ noSmithyDocumentSerde
584
+ }
585
+
586
+ // The container element for specifying the default Object Lock retention settings
587
+ // for new objects placed in the specified bucket.
588
+ //
589
+ // * The DefaultRetention settings
590
+ // require both a mode and a period.
591
+ //
592
+ // * The DefaultRetention period can be either
593
+ // Days or Years but you must select one. You cannot specify Days and Years at the
594
+ // same time.
595
+ type DefaultRetention struct {
596
+
597
+ // The number of days that you want to specify for the default retention period.
598
+ // Must be used with Mode.
599
+ Days int32
600
+
601
+ // The default Object Lock retention mode you want to apply to new objects placed
602
+ // in the specified bucket. Must be used with either Days or Years.
603
+ Mode ObjectLockRetentionMode
604
+
605
+ // The number of years that you want to specify for the default retention period.
606
+ // Must be used with Mode.
607
+ Years int32
608
+
609
+ noSmithyDocumentSerde
610
+ }
611
+
612
+ // Container for the objects to delete.
613
+ type Delete struct {
614
+
615
+ // The objects to delete.
616
+ //
617
+ // This member is required.
618
+ Objects []ObjectIdentifier
619
+
620
+ // Element to enable quiet mode for the request. When you add this element, you
621
+ // must set its value to true.
622
+ Quiet bool
623
+
624
+ noSmithyDocumentSerde
625
+ }
626
+
627
+ // Information about the deleted object.
628
+ type DeletedObject struct {
629
+
630
+ // Specifies whether the versioned object that was permanently deleted was (true)
631
+ // or was not (false) a delete marker. In a simple DELETE, this header indicates
632
+ // whether (true) or not (false) a delete marker was created.
633
+ DeleteMarker bool
634
+
635
+ // The version ID of the delete marker created as a result of the DELETE operation.
636
+ // If you delete a specific object version, the value returned by this header is
637
+ // the version ID of the object version deleted.
638
+ DeleteMarkerVersionId *string
639
+
640
+ // The name of the deleted object.
641
+ Key *string
642
+
643
+ // The version ID of the deleted object.
644
+ VersionId *string
645
+
646
+ noSmithyDocumentSerde
647
+ }
648
+
649
+ // Information about the delete marker.
650
+ type DeleteMarkerEntry struct {
651
+
652
+ // Specifies whether the object is (true) or is not (false) the latest version of
653
+ // an object.
654
+ IsLatest bool
655
+
656
+ // The object key.
657
+ Key *string
658
+
659
+ // Date and time the object was last modified.
660
+ LastModified *time.Time
661
+
662
+ // The account that created the delete marker.>
663
+ Owner *Owner
664
+
665
+ // Version ID of an object.
666
+ VersionId *string
667
+
668
+ noSmithyDocumentSerde
669
+ }
670
+
671
+ // Specifies whether Amazon S3 replicates delete markers. If you specify a Filter
672
+ // in your replication configuration, you must also include a
673
+ // DeleteMarkerReplication element. If your Filter includes a Tag element, the
674
+ // DeleteMarkerReplicationStatus must be set to Disabled, because Amazon S3 does
675
+ // not support replicating delete markers for tag-based rules. For an example
676
+ // configuration, see Basic Rule Configuration
677
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-config-min-rule-config).
678
+ // For more information about delete marker replication, see Basic Rule
679
+ // Configuration
680
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/delete-marker-replication.html).
681
+ // If you are using an earlier version of the replication configuration, Amazon S3
682
+ // handles replication of delete markers differently. For more information, see
683
+ // Backward Compatibility
684
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-backward-compat-considerations).
685
+ type DeleteMarkerReplication struct {
686
+
687
+ // Indicates whether to replicate delete markers. Indicates whether to replicate
688
+ // delete markers.
689
+ Status DeleteMarkerReplicationStatus
690
+
691
+ noSmithyDocumentSerde
692
+ }
693
+
694
+ // Specifies information about where to publish analysis or configuration results
695
+ // for an Amazon S3 bucket and S3 Replication Time Control (S3 RTC).
696
+ type Destination struct {
697
+
698
+ // The Amazon Resource Name (ARN) of the bucket where you want Amazon S3 to store
699
+ // the results.
700
+ //
701
+ // This member is required.
702
+ Bucket *string
703
+
704
+ // Specify this only in a cross-account scenario (where source and destination
705
+ // bucket owners are not the same), and you want to change replica ownership to the
706
+ // Amazon Web Services account that owns the destination bucket. If this is not
707
+ // specified in the replication configuration, the replicas are owned by same
708
+ // Amazon Web Services account that owns the source object.
709
+ AccessControlTranslation *AccessControlTranslation
710
+
711
+ // Destination bucket owner account ID. In a cross-account scenario, if you direct
712
+ // Amazon S3 to change replica ownership to the Amazon Web Services account that
713
+ // owns the destination bucket by specifying the AccessControlTranslation property,
714
+ // this is the account ID of the destination bucket owner. For more information,
715
+ // see Replication Additional Configuration: Changing the Replica Owner
716
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-change-owner.html)
717
+ // in the Amazon S3 User Guide.
718
+ Account *string
719
+
720
+ // A container that provides information about encryption. If
721
+ // SourceSelectionCriteria is specified, you must specify this element.
722
+ EncryptionConfiguration *EncryptionConfiguration
723
+
724
+ // A container specifying replication metrics-related settings enabling replication
725
+ // metrics and events.
726
+ Metrics *Metrics
727
+
728
+ // A container specifying S3 Replication Time Control (S3 RTC), including whether
729
+ // S3 RTC is enabled and the time when all objects and operations on objects must
730
+ // be replicated. Must be specified together with a Metrics block.
731
+ ReplicationTime *ReplicationTime
732
+
733
+ // The storage class to use when replicating objects, such as S3 Standard or
734
+ // reduced redundancy. By default, Amazon S3 uses the storage class of the source
735
+ // object to create the object replica. For valid values, see the StorageClass
736
+ // element of the PUT Bucket replication
737
+ // (https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html)
738
+ // action in the Amazon S3 API Reference.
739
+ StorageClass StorageClass
740
+
741
+ noSmithyDocumentSerde
742
+ }
743
+
744
+ // Contains the type of server-side encryption used.
745
+ type Encryption struct {
746
+
747
+ // The server-side encryption algorithm used when storing job results in Amazon S3
748
+ // (for example, AES256, aws:kms).
749
+ //
750
+ // This member is required.
751
+ EncryptionType ServerSideEncryption
752
+
753
+ // If the encryption type is aws:kms, this optional value can be used to specify
754
+ // the encryption context for the restore results.
755
+ KMSContext *string
756
+
757
+ // If the encryption type is aws:kms, this optional value specifies the ID of the
758
+ // symmetric customer managed key to use for encryption of job results. Amazon S3
759
+ // only supports symmetric keys. For more information, see Using symmetric and
760
+ // asymmetric keys
761
+ // (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html)
762
+ // in the Amazon Web Services Key Management Service Developer Guide.
763
+ KMSKeyId *string
764
+
765
+ noSmithyDocumentSerde
766
+ }
767
+
768
+ // Specifies encryption-related information for an Amazon S3 bucket that is a
769
+ // destination for replicated objects.
770
+ type EncryptionConfiguration struct {
771
+
772
+ // Specifies the ID (Key ARN or Alias ARN) of the customer managed Amazon Web
773
+ // Services KMS key stored in Amazon Web Services Key Management Service (KMS) for
774
+ // the destination bucket. Amazon S3 uses this key to encrypt replica objects.
775
+ // Amazon S3 only supports symmetric, customer managed KMS keys. For more
776
+ // information, see Using symmetric and asymmetric keys
777
+ // (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html)
778
+ // in the Amazon Web Services Key Management Service Developer Guide.
779
+ ReplicaKmsKeyID *string
780
+
781
+ noSmithyDocumentSerde
782
+ }
783
+
784
+ // A message that indicates the request is complete and no more messages will be
785
+ // sent. You should not assume that the request is complete until the client
786
+ // receives an EndEvent.
787
+ type EndEvent struct {
788
+ noSmithyDocumentSerde
789
+ }
790
+
791
+ // Container for all error elements.
792
+ type Error struct {
793
+
794
+ // The error code is a string that uniquely identifies an error condition. It is
795
+ // meant to be read and understood by programs that detect and handle errors by
796
+ // type. Amazon S3 error codes
797
+ //
798
+ // * Code: AccessDenied
799
+ //
800
+ // * Description: Access
801
+ // Denied
802
+ //
803
+ // * HTTP Status Code: 403 Forbidden
804
+ //
805
+ // * SOAP Fault Code Prefix: Client
806
+ //
807
+ // *
808
+ // Code: AccountProblem
809
+ //
810
+ // * Description: There is a problem with your Amazon Web
811
+ // Services account that prevents the action from completing successfully. Contact
812
+ // Amazon Web Services Support for further assistance.
813
+ //
814
+ // * HTTP Status Code: 403
815
+ // Forbidden
816
+ //
817
+ // * SOAP Fault Code Prefix: Client
818
+ //
819
+ // * Code: AllAccessDisabled
820
+ //
821
+ // *
822
+ // Description: All access to this Amazon S3 resource has been disabled. Contact
823
+ // Amazon Web Services Support for further assistance.
824
+ //
825
+ // * HTTP Status Code: 403
826
+ // Forbidden
827
+ //
828
+ // * SOAP Fault Code Prefix: Client
829
+ //
830
+ // * Code:
831
+ // AmbiguousGrantByEmailAddress
832
+ //
833
+ // * Description: The email address you provided is
834
+ // associated with more than one account.
835
+ //
836
+ // * HTTP Status Code: 400 Bad Request
837
+ //
838
+ // *
839
+ // SOAP Fault Code Prefix: Client
840
+ //
841
+ // * Code: AuthorizationHeaderMalformed
842
+ //
843
+ // *
844
+ // Description: The authorization header you provided is invalid.
845
+ //
846
+ // * HTTP Status
847
+ // Code: 400 Bad Request
848
+ //
849
+ // * HTTP Status Code: N/A
850
+ //
851
+ // * Code: BadDigest
852
+ //
853
+ // *
854
+ // Description: The Content-MD5 you specified did not match what we received.
855
+ //
856
+ // *
857
+ // HTTP Status Code: 400 Bad Request
858
+ //
859
+ // * SOAP Fault Code Prefix: Client
860
+ //
861
+ // * Code:
862
+ // BucketAlreadyExists
863
+ //
864
+ // * Description: The requested bucket name is not available.
865
+ // The bucket namespace is shared by all users of the system. Please select a
866
+ // different name and try again.
867
+ //
868
+ // * HTTP Status Code: 409 Conflict
869
+ //
870
+ // * SOAP Fault
871
+ // Code Prefix: Client
872
+ //
873
+ // * Code: BucketAlreadyOwnedByYou
874
+ //
875
+ // * Description: The bucket
876
+ // you tried to create already exists, and you own it. Amazon S3 returns this error
877
+ // in all Amazon Web Services Regions except in the North Virginia Region. For
878
+ // legacy compatibility, if you re-create an existing bucket that you already own
879
+ // in the North Virginia Region, Amazon S3 returns 200 OK and resets the bucket
880
+ // access control lists (ACLs).
881
+ //
882
+ // * Code: 409 Conflict (in all Regions except the
883
+ // North Virginia Region)
884
+ //
885
+ // * SOAP Fault Code Prefix: Client
886
+ //
887
+ // * Code:
888
+ // BucketNotEmpty
889
+ //
890
+ // * Description: The bucket you tried to delete is not empty.
891
+ //
892
+ // *
893
+ // HTTP Status Code: 409 Conflict
894
+ //
895
+ // * SOAP Fault Code Prefix: Client
896
+ //
897
+ // * Code:
898
+ // CredentialsNotSupported
899
+ //
900
+ // * Description: This request does not support
901
+ // credentials.
902
+ //
903
+ // * HTTP Status Code: 400 Bad Request
904
+ //
905
+ // * SOAP Fault Code Prefix:
906
+ // Client
907
+ //
908
+ // * Code: CrossLocationLoggingProhibited
909
+ //
910
+ // * Description: Cross-location
911
+ // logging not allowed. Buckets in one geographic location cannot log information
912
+ // to a bucket in another location.
913
+ //
914
+ // * HTTP Status Code: 403 Forbidden
915
+ //
916
+ // * SOAP
917
+ // Fault Code Prefix: Client
918
+ //
919
+ // * Code: EntityTooSmall
920
+ //
921
+ // * Description: Your proposed
922
+ // upload is smaller than the minimum allowed object size.
923
+ //
924
+ // * HTTP Status Code: 400
925
+ // Bad Request
926
+ //
927
+ // * SOAP Fault Code Prefix: Client
928
+ //
929
+ // * Code: EntityTooLarge
930
+ //
931
+ // *
932
+ // Description: Your proposed upload exceeds the maximum allowed object size.
933
+ //
934
+ // *
935
+ // HTTP Status Code: 400 Bad Request
936
+ //
937
+ // * SOAP Fault Code Prefix: Client
938
+ //
939
+ // * Code:
940
+ // ExpiredToken
941
+ //
942
+ // * Description: The provided token has expired.
943
+ //
944
+ // * HTTP Status
945
+ // Code: 400 Bad Request
946
+ //
947
+ // * SOAP Fault Code Prefix: Client
948
+ //
949
+ // * Code:
950
+ // IllegalVersioningConfigurationException
951
+ //
952
+ // * Description: Indicates that the
953
+ // versioning configuration specified in the request is invalid.
954
+ //
955
+ // * HTTP Status
956
+ // Code: 400 Bad Request
957
+ //
958
+ // * SOAP Fault Code Prefix: Client
959
+ //
960
+ // * Code:
961
+ // IncompleteBody
962
+ //
963
+ // * Description: You did not provide the number of bytes specified
964
+ // by the Content-Length HTTP header
965
+ //
966
+ // * HTTP Status Code: 400 Bad Request
967
+ //
968
+ // * SOAP
969
+ // Fault Code Prefix: Client
970
+ //
971
+ // * Code: IncorrectNumberOfFilesInPostRequest
972
+ //
973
+ // *
974
+ // Description: POST requires exactly one file upload per request.
975
+ //
976
+ // * HTTP Status
977
+ // Code: 400 Bad Request
978
+ //
979
+ // * SOAP Fault Code Prefix: Client
980
+ //
981
+ // * Code:
982
+ // InlineDataTooLarge
983
+ //
984
+ // * Description: Inline data exceeds the maximum allowed
985
+ // size.
986
+ //
987
+ // * HTTP Status Code: 400 Bad Request
988
+ //
989
+ // * SOAP Fault Code Prefix: Client
990
+ //
991
+ // *
992
+ // Code: InternalError
993
+ //
994
+ // * Description: We encountered an internal error. Please try
995
+ // again.
996
+ //
997
+ // * HTTP Status Code: 500 Internal Server Error
998
+ //
999
+ // * SOAP Fault Code Prefix:
1000
+ // Server
1001
+ //
1002
+ // * Code: InvalidAccessKeyId
1003
+ //
1004
+ // * Description: The Amazon Web Services
1005
+ // access key ID you provided does not exist in our records.
1006
+ //
1007
+ // * HTTP Status Code:
1008
+ // 403 Forbidden
1009
+ //
1010
+ // * SOAP Fault Code Prefix: Client
1011
+ //
1012
+ // * Code:
1013
+ // InvalidAddressingHeader
1014
+ //
1015
+ // * Description: You must specify the Anonymous role.
1016
+ //
1017
+ // *
1018
+ // HTTP Status Code: N/A
1019
+ //
1020
+ // * SOAP Fault Code Prefix: Client
1021
+ //
1022
+ // * Code:
1023
+ // InvalidArgument
1024
+ //
1025
+ // * Description: Invalid Argument
1026
+ //
1027
+ // * HTTP Status Code: 400 Bad
1028
+ // Request
1029
+ //
1030
+ // * SOAP Fault Code Prefix: Client
1031
+ //
1032
+ // * Code: InvalidBucketName
1033
+ //
1034
+ // *
1035
+ // Description: The specified bucket is not valid.
1036
+ //
1037
+ // * HTTP Status Code: 400 Bad
1038
+ // Request
1039
+ //
1040
+ // * SOAP Fault Code Prefix: Client
1041
+ //
1042
+ // * Code: InvalidBucketState
1043
+ //
1044
+ // *
1045
+ // Description: The request is not valid with the current state of the bucket.
1046
+ //
1047
+ // *
1048
+ // HTTP Status Code: 409 Conflict
1049
+ //
1050
+ // * SOAP Fault Code Prefix: Client
1051
+ //
1052
+ // * Code:
1053
+ // InvalidDigest
1054
+ //
1055
+ // * Description: The Content-MD5 you specified is not valid.
1056
+ //
1057
+ // *
1058
+ // HTTP Status Code: 400 Bad Request
1059
+ //
1060
+ // * SOAP Fault Code Prefix: Client
1061
+ //
1062
+ // * Code:
1063
+ // InvalidEncryptionAlgorithmError
1064
+ //
1065
+ // * Description: The encryption request you
1066
+ // specified is not valid. The valid value is AES256.
1067
+ //
1068
+ // * HTTP Status Code: 400 Bad
1069
+ // Request
1070
+ //
1071
+ // * SOAP Fault Code Prefix: Client
1072
+ //
1073
+ // * Code: InvalidLocationConstraint
1074
+ //
1075
+ // *
1076
+ // Description: The specified location constraint is not valid. For more
1077
+ // information about Regions, see How to Select a Region for Your Buckets
1078
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html#access-bucket-intro).
1079
+ //
1080
+ // *
1081
+ // HTTP Status Code: 400 Bad Request
1082
+ //
1083
+ // * SOAP Fault Code Prefix: Client
1084
+ //
1085
+ // * Code:
1086
+ // InvalidObjectState
1087
+ //
1088
+ // * Description: The action is not valid for the current state
1089
+ // of the object.
1090
+ //
1091
+ // * HTTP Status Code: 403 Forbidden
1092
+ //
1093
+ // * SOAP Fault Code Prefix:
1094
+ // Client
1095
+ //
1096
+ // * Code: InvalidPart
1097
+ //
1098
+ // * Description: One or more of the specified parts
1099
+ // could not be found. The part might not have been uploaded, or the specified
1100
+ // entity tag might not have matched the part's entity tag.
1101
+ //
1102
+ // * HTTP Status Code:
1103
+ // 400 Bad Request
1104
+ //
1105
+ // * SOAP Fault Code Prefix: Client
1106
+ //
1107
+ // * Code: InvalidPartOrder
1108
+ //
1109
+ // *
1110
+ // Description: The list of parts was not in ascending order. Parts list must be
1111
+ // specified in order by part number.
1112
+ //
1113
+ // * HTTP Status Code: 400 Bad Request
1114
+ //
1115
+ // * SOAP
1116
+ // Fault Code Prefix: Client
1117
+ //
1118
+ // * Code: InvalidPayer
1119
+ //
1120
+ // * Description: All access to
1121
+ // this object has been disabled. Please contact Amazon Web Services Support for
1122
+ // further assistance.
1123
+ //
1124
+ // * HTTP Status Code: 403 Forbidden
1125
+ //
1126
+ // * SOAP Fault Code
1127
+ // Prefix: Client
1128
+ //
1129
+ // * Code: InvalidPolicyDocument
1130
+ //
1131
+ // * Description: The content of the
1132
+ // form does not meet the conditions specified in the policy document.
1133
+ //
1134
+ // * HTTP
1135
+ // Status Code: 400 Bad Request
1136
+ //
1137
+ // * SOAP Fault Code Prefix: Client
1138
+ //
1139
+ // * Code:
1140
+ // InvalidRange
1141
+ //
1142
+ // * Description: The requested range cannot be satisfied.
1143
+ //
1144
+ // * HTTP
1145
+ // Status Code: 416 Requested Range Not Satisfiable
1146
+ //
1147
+ // * SOAP Fault Code Prefix:
1148
+ // Client
1149
+ //
1150
+ // * Code: InvalidRequest
1151
+ //
1152
+ // * Description: Please use AWS4-HMAC-SHA256.
1153
+ //
1154
+ // *
1155
+ // HTTP Status Code: 400 Bad Request
1156
+ //
1157
+ // * Code: N/A
1158
+ //
1159
+ // * Code: InvalidRequest
1160
+ //
1161
+ // *
1162
+ // Description: SOAP requests must be made over an HTTPS connection.
1163
+ //
1164
+ // * HTTP Status
1165
+ // Code: 400 Bad Request
1166
+ //
1167
+ // * SOAP Fault Code Prefix: Client
1168
+ //
1169
+ // * Code:
1170
+ // InvalidRequest
1171
+ //
1172
+ // * Description: Amazon S3 Transfer Acceleration is not supported
1173
+ // for buckets with non-DNS compliant names.
1174
+ //
1175
+ // * HTTP Status Code: 400 Bad
1176
+ // Request
1177
+ //
1178
+ // * Code: N/A
1179
+ //
1180
+ // * Code: InvalidRequest
1181
+ //
1182
+ // * Description: Amazon S3 Transfer
1183
+ // Acceleration is not supported for buckets with periods (.) in their names.
1184
+ //
1185
+ // *
1186
+ // HTTP Status Code: 400 Bad Request
1187
+ //
1188
+ // * Code: N/A
1189
+ //
1190
+ // * Code: InvalidRequest
1191
+ //
1192
+ // *
1193
+ // Description: Amazon S3 Transfer Accelerate endpoint only supports virtual style
1194
+ // requests.
1195
+ //
1196
+ // * HTTP Status Code: 400 Bad Request
1197
+ //
1198
+ // * Code: N/A
1199
+ //
1200
+ // * Code:
1201
+ // InvalidRequest
1202
+ //
1203
+ // * Description: Amazon S3 Transfer Accelerate is not configured
1204
+ // on this bucket.
1205
+ //
1206
+ // * HTTP Status Code: 400 Bad Request
1207
+ //
1208
+ // * Code: N/A
1209
+ //
1210
+ // * Code:
1211
+ // InvalidRequest
1212
+ //
1213
+ // * Description: Amazon S3 Transfer Accelerate is disabled on this
1214
+ // bucket.
1215
+ //
1216
+ // * HTTP Status Code: 400 Bad Request
1217
+ //
1218
+ // * Code: N/A
1219
+ //
1220
+ // * Code:
1221
+ // InvalidRequest
1222
+ //
1223
+ // * Description: Amazon S3 Transfer Acceleration is not supported
1224
+ // on this bucket. Contact Amazon Web Services Support for more information.
1225
+ //
1226
+ // *
1227
+ // HTTP Status Code: 400 Bad Request
1228
+ //
1229
+ // * Code: N/A
1230
+ //
1231
+ // * Code: InvalidRequest
1232
+ //
1233
+ // *
1234
+ // Description: Amazon S3 Transfer Acceleration cannot be enabled on this bucket.
1235
+ // Contact Amazon Web Services Support for more information.
1236
+ //
1237
+ // * HTTP Status Code:
1238
+ // 400 Bad Request
1239
+ //
1240
+ // * Code: N/A
1241
+ //
1242
+ // * Code: InvalidSecurity
1243
+ //
1244
+ // * Description: The
1245
+ // provided security credentials are not valid.
1246
+ //
1247
+ // * HTTP Status Code: 403
1248
+ // Forbidden
1249
+ //
1250
+ // * SOAP Fault Code Prefix: Client
1251
+ //
1252
+ // * Code: InvalidSOAPRequest
1253
+ //
1254
+ // *
1255
+ // Description: The SOAP request body is invalid.
1256
+ //
1257
+ // * HTTP Status Code: 400 Bad
1258
+ // Request
1259
+ //
1260
+ // * SOAP Fault Code Prefix: Client
1261
+ //
1262
+ // * Code: InvalidStorageClass
1263
+ //
1264
+ // *
1265
+ // Description: The storage class you specified is not valid.
1266
+ //
1267
+ // * HTTP Status Code:
1268
+ // 400 Bad Request
1269
+ //
1270
+ // * SOAP Fault Code Prefix: Client
1271
+ //
1272
+ // * Code:
1273
+ // InvalidTargetBucketForLogging
1274
+ //
1275
+ // * Description: The target bucket for logging does
1276
+ // not exist, is not owned by you, or does not have the appropriate grants for the
1277
+ // log-delivery group.
1278
+ //
1279
+ // * HTTP Status Code: 400 Bad Request
1280
+ //
1281
+ // * SOAP Fault Code
1282
+ // Prefix: Client
1283
+ //
1284
+ // * Code: InvalidToken
1285
+ //
1286
+ // * Description: The provided token is
1287
+ // malformed or otherwise invalid.
1288
+ //
1289
+ // * HTTP Status Code: 400 Bad Request
1290
+ //
1291
+ // * SOAP
1292
+ // Fault Code Prefix: Client
1293
+ //
1294
+ // * Code: InvalidURI
1295
+ //
1296
+ // * Description: Couldn't parse the
1297
+ // specified URI.
1298
+ //
1299
+ // * HTTP Status Code: 400 Bad Request
1300
+ //
1301
+ // * SOAP Fault Code Prefix:
1302
+ // Client
1303
+ //
1304
+ // * Code: KeyTooLongError
1305
+ //
1306
+ // * Description: Your key is too long.
1307
+ //
1308
+ // * HTTP
1309
+ // Status Code: 400 Bad Request
1310
+ //
1311
+ // * SOAP Fault Code Prefix: Client
1312
+ //
1313
+ // * Code:
1314
+ // MalformedACLError
1315
+ //
1316
+ // * Description: The XML you provided was not well-formed or
1317
+ // did not validate against our published schema.
1318
+ //
1319
+ // * HTTP Status Code: 400 Bad
1320
+ // Request
1321
+ //
1322
+ // * SOAP Fault Code Prefix: Client
1323
+ //
1324
+ // * Code: MalformedPOSTRequest
1325
+ //
1326
+ // *
1327
+ // Description: The body of your POST request is not well-formed
1328
+ // multipart/form-data.
1329
+ //
1330
+ // * HTTP Status Code: 400 Bad Request
1331
+ //
1332
+ // * SOAP Fault Code
1333
+ // Prefix: Client
1334
+ //
1335
+ // * Code: MalformedXML
1336
+ //
1337
+ // * Description: This happens when the user
1338
+ // sends malformed XML (XML that doesn't conform to the published XSD) for the
1339
+ // configuration. The error message is, "The XML you provided was not well-formed
1340
+ // or did not validate against our published schema."
1341
+ //
1342
+ // * HTTP Status Code: 400 Bad
1343
+ // Request
1344
+ //
1345
+ // * SOAP Fault Code Prefix: Client
1346
+ //
1347
+ // * Code: MaxMessageLengthExceeded
1348
+ //
1349
+ // *
1350
+ // Description: Your request was too big.
1351
+ //
1352
+ // * HTTP Status Code: 400 Bad Request
1353
+ //
1354
+ // *
1355
+ // SOAP Fault Code Prefix: Client
1356
+ //
1357
+ // * Code: MaxPostPreDataLengthExceededError
1358
+ //
1359
+ // *
1360
+ // Description: Your POST request fields preceding the upload file were too
1361
+ // large.
1362
+ //
1363
+ // * HTTP Status Code: 400 Bad Request
1364
+ //
1365
+ // * SOAP Fault Code Prefix: Client
1366
+ //
1367
+ // *
1368
+ // Code: MetadataTooLarge
1369
+ //
1370
+ // * Description: Your metadata headers exceed the maximum
1371
+ // allowed metadata size.
1372
+ //
1373
+ // * HTTP Status Code: 400 Bad Request
1374
+ //
1375
+ // * SOAP Fault Code
1376
+ // Prefix: Client
1377
+ //
1378
+ // * Code: MethodNotAllowed
1379
+ //
1380
+ // * Description: The specified method is
1381
+ // not allowed against this resource.
1382
+ //
1383
+ // * HTTP Status Code: 405 Method Not
1384
+ // Allowed
1385
+ //
1386
+ // * SOAP Fault Code Prefix: Client
1387
+ //
1388
+ // * Code: MissingAttachment
1389
+ //
1390
+ // *
1391
+ // Description: A SOAP attachment was expected, but none were found.
1392
+ //
1393
+ // * HTTP Status
1394
+ // Code: N/A
1395
+ //
1396
+ // * SOAP Fault Code Prefix: Client
1397
+ //
1398
+ // * Code: MissingContentLength
1399
+ //
1400
+ // *
1401
+ // Description: You must provide the Content-Length HTTP header.
1402
+ //
1403
+ // * HTTP Status
1404
+ // Code: 411 Length Required
1405
+ //
1406
+ // * SOAP Fault Code Prefix: Client
1407
+ //
1408
+ // * Code:
1409
+ // MissingRequestBodyError
1410
+ //
1411
+ // * Description: This happens when the user sends an
1412
+ // empty XML document as a request. The error message is, "Request body is
1413
+ // empty."
1414
+ //
1415
+ // * HTTP Status Code: 400 Bad Request
1416
+ //
1417
+ // * SOAP Fault Code Prefix:
1418
+ // Client
1419
+ //
1420
+ // * Code: MissingSecurityElement
1421
+ //
1422
+ // * Description: The SOAP 1.1 request is
1423
+ // missing a security element.
1424
+ //
1425
+ // * HTTP Status Code: 400 Bad Request
1426
+ //
1427
+ // * SOAP Fault
1428
+ // Code Prefix: Client
1429
+ //
1430
+ // * Code: MissingSecurityHeader
1431
+ //
1432
+ // * Description: Your request
1433
+ // is missing a required header.
1434
+ //
1435
+ // * HTTP Status Code: 400 Bad Request
1436
+ //
1437
+ // * SOAP Fault
1438
+ // Code Prefix: Client
1439
+ //
1440
+ // * Code: NoLoggingStatusForKey
1441
+ //
1442
+ // * Description: There is no
1443
+ // such thing as a logging status subresource for a key.
1444
+ //
1445
+ // * HTTP Status Code: 400
1446
+ // Bad Request
1447
+ //
1448
+ // * SOAP Fault Code Prefix: Client
1449
+ //
1450
+ // * Code: NoSuchBucket
1451
+ //
1452
+ // *
1453
+ // Description: The specified bucket does not exist.
1454
+ //
1455
+ // * HTTP Status Code: 404 Not
1456
+ // Found
1457
+ //
1458
+ // * SOAP Fault Code Prefix: Client
1459
+ //
1460
+ // * Code: NoSuchBucketPolicy
1461
+ //
1462
+ // *
1463
+ // Description: The specified bucket does not have a bucket policy.
1464
+ //
1465
+ // * HTTP Status
1466
+ // Code: 404 Not Found
1467
+ //
1468
+ // * SOAP Fault Code Prefix: Client
1469
+ //
1470
+ // * Code: NoSuchKey
1471
+ //
1472
+ // *
1473
+ // Description: The specified key does not exist.
1474
+ //
1475
+ // * HTTP Status Code: 404 Not
1476
+ // Found
1477
+ //
1478
+ // * SOAP Fault Code Prefix: Client
1479
+ //
1480
+ // * Code: NoSuchLifecycleConfiguration
1481
+ //
1482
+ // *
1483
+ // Description: The lifecycle configuration does not exist.
1484
+ //
1485
+ // * HTTP Status Code:
1486
+ // 404 Not Found
1487
+ //
1488
+ // * SOAP Fault Code Prefix: Client
1489
+ //
1490
+ // * Code: NoSuchUpload
1491
+ //
1492
+ // *
1493
+ // Description: The specified multipart upload does not exist. The upload ID might
1494
+ // be invalid, or the multipart upload might have been aborted or completed.
1495
+ //
1496
+ // *
1497
+ // HTTP Status Code: 404 Not Found
1498
+ //
1499
+ // * SOAP Fault Code Prefix: Client
1500
+ //
1501
+ // * Code:
1502
+ // NoSuchVersion
1503
+ //
1504
+ // * Description: Indicates that the version ID specified in the
1505
+ // request does not match an existing version.
1506
+ //
1507
+ // * HTTP Status Code: 404 Not
1508
+ // Found
1509
+ //
1510
+ // * SOAP Fault Code Prefix: Client
1511
+ //
1512
+ // * Code: NotImplemented
1513
+ //
1514
+ // * Description:
1515
+ // A header you provided implies functionality that is not implemented.
1516
+ //
1517
+ // * HTTP
1518
+ // Status Code: 501 Not Implemented
1519
+ //
1520
+ // * SOAP Fault Code Prefix: Server
1521
+ //
1522
+ // * Code:
1523
+ // NotSignedUp
1524
+ //
1525
+ // * Description: Your account is not signed up for the Amazon S3
1526
+ // service. You must sign up before you can use Amazon S3. You can sign up at the
1527
+ // following URL: Amazon S3 (http://aws.amazon.com/s3)
1528
+ //
1529
+ // * HTTP Status Code: 403
1530
+ // Forbidden
1531
+ //
1532
+ // * SOAP Fault Code Prefix: Client
1533
+ //
1534
+ // * Code: OperationAborted
1535
+ //
1536
+ // *
1537
+ // Description: A conflicting conditional action is currently in progress against
1538
+ // this resource. Try again.
1539
+ //
1540
+ // * HTTP Status Code: 409 Conflict
1541
+ //
1542
+ // * SOAP Fault Code
1543
+ // Prefix: Client
1544
+ //
1545
+ // * Code: PermanentRedirect
1546
+ //
1547
+ // * Description: The bucket you are
1548
+ // attempting to access must be addressed using the specified endpoint. Send all
1549
+ // future requests to this endpoint.
1550
+ //
1551
+ // * HTTP Status Code: 301 Moved Permanently
1552
+ //
1553
+ // *
1554
+ // SOAP Fault Code Prefix: Client
1555
+ //
1556
+ // * Code: PreconditionFailed
1557
+ //
1558
+ // * Description: At
1559
+ // least one of the preconditions you specified did not hold.
1560
+ //
1561
+ // * HTTP Status Code:
1562
+ // 412 Precondition Failed
1563
+ //
1564
+ // * SOAP Fault Code Prefix: Client
1565
+ //
1566
+ // * Code: Redirect
1567
+ //
1568
+ // *
1569
+ // Description: Temporary redirect.
1570
+ //
1571
+ // * HTTP Status Code: 307 Moved Temporarily
1572
+ //
1573
+ // *
1574
+ // SOAP Fault Code Prefix: Client
1575
+ //
1576
+ // * Code: RestoreAlreadyInProgress
1577
+ //
1578
+ // * Description:
1579
+ // Object restore is already in progress.
1580
+ //
1581
+ // * HTTP Status Code: 409 Conflict
1582
+ //
1583
+ // * SOAP
1584
+ // Fault Code Prefix: Client
1585
+ //
1586
+ // * Code: RequestIsNotMultiPartContent
1587
+ //
1588
+ // * Description:
1589
+ // Bucket POST must be of the enclosure-type multipart/form-data.
1590
+ //
1591
+ // * HTTP Status
1592
+ // Code: 400 Bad Request
1593
+ //
1594
+ // * SOAP Fault Code Prefix: Client
1595
+ //
1596
+ // * Code:
1597
+ // RequestTimeout
1598
+ //
1599
+ // * Description: Your socket connection to the server was not read
1600
+ // from or written to within the timeout period.
1601
+ //
1602
+ // * HTTP Status Code: 400 Bad
1603
+ // Request
1604
+ //
1605
+ // * SOAP Fault Code Prefix: Client
1606
+ //
1607
+ // * Code: RequestTimeTooSkewed
1608
+ //
1609
+ // *
1610
+ // Description: The difference between the request time and the server's time is
1611
+ // too large.
1612
+ //
1613
+ // * HTTP Status Code: 403 Forbidden
1614
+ //
1615
+ // * SOAP Fault Code Prefix:
1616
+ // Client
1617
+ //
1618
+ // * Code: RequestTorrentOfBucketError
1619
+ //
1620
+ // * Description: Requesting the
1621
+ // torrent file of a bucket is not permitted.
1622
+ //
1623
+ // * HTTP Status Code: 400 Bad
1624
+ // Request
1625
+ //
1626
+ // * SOAP Fault Code Prefix: Client
1627
+ //
1628
+ // * Code: SignatureDoesNotMatch
1629
+ //
1630
+ // *
1631
+ // Description: The request signature we calculated does not match the signature
1632
+ // you provided. Check your Amazon Web Services secret access key and signing
1633
+ // method. For more information, see REST Authentication
1634
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html) and
1635
+ // SOAP Authentication
1636
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/SOAPAuthentication.html) for
1637
+ // details.
1638
+ //
1639
+ // * HTTP Status Code: 403 Forbidden
1640
+ //
1641
+ // * SOAP Fault Code Prefix: Client
1642
+ //
1643
+ // *
1644
+ // Code: ServiceUnavailable
1645
+ //
1646
+ // * Description: Reduce your request rate.
1647
+ //
1648
+ // * HTTP
1649
+ // Status Code: 503 Service Unavailable
1650
+ //
1651
+ // * SOAP Fault Code Prefix: Server
1652
+ //
1653
+ // * Code:
1654
+ // SlowDown
1655
+ //
1656
+ // * Description: Reduce your request rate.
1657
+ //
1658
+ // * HTTP Status Code: 503 Slow
1659
+ // Down
1660
+ //
1661
+ // * SOAP Fault Code Prefix: Server
1662
+ //
1663
+ // * Code: TemporaryRedirect
1664
+ //
1665
+ // *
1666
+ // Description: You are being redirected to the bucket while DNS updates.
1667
+ //
1668
+ // * HTTP
1669
+ // Status Code: 307 Moved Temporarily
1670
+ //
1671
+ // * SOAP Fault Code Prefix: Client
1672
+ //
1673
+ // * Code:
1674
+ // TokenRefreshRequired
1675
+ //
1676
+ // * Description: The provided token must be refreshed.
1677
+ //
1678
+ // *
1679
+ // HTTP Status Code: 400 Bad Request
1680
+ //
1681
+ // * SOAP Fault Code Prefix: Client
1682
+ //
1683
+ // * Code:
1684
+ // TooManyBuckets
1685
+ //
1686
+ // * Description: You have attempted to create more buckets than
1687
+ // allowed.
1688
+ //
1689
+ // * HTTP Status Code: 400 Bad Request
1690
+ //
1691
+ // * SOAP Fault Code Prefix:
1692
+ // Client
1693
+ //
1694
+ // * Code: UnexpectedContent
1695
+ //
1696
+ // * Description: This request does not support
1697
+ // content.
1698
+ //
1699
+ // * HTTP Status Code: 400 Bad Request
1700
+ //
1701
+ // * SOAP Fault Code Prefix:
1702
+ // Client
1703
+ //
1704
+ // * Code: UnresolvableGrantByEmailAddress
1705
+ //
1706
+ // * Description: The email
1707
+ // address you provided does not match any account on record.
1708
+ //
1709
+ // * HTTP Status Code:
1710
+ // 400 Bad Request
1711
+ //
1712
+ // * SOAP Fault Code Prefix: Client
1713
+ //
1714
+ // * Code:
1715
+ // UserKeyMustBeSpecified
1716
+ //
1717
+ // * Description: The bucket POST must contain the
1718
+ // specified field name. If it is specified, check the order of the fields.
1719
+ //
1720
+ // * HTTP
1721
+ // Status Code: 400 Bad Request
1722
+ //
1723
+ // * SOAP Fault Code Prefix: Client
1724
+ Code *string
1725
+
1726
+ // The error key.
1727
+ Key *string
1728
+
1729
+ // The error message contains a generic description of the error condition in
1730
+ // English. It is intended for a human audience. Simple programs display the
1731
+ // message directly to the end user if they encounter an error condition they don't
1732
+ // know how or don't care to handle. Sophisticated programs with more exhaustive
1733
+ // error handling and proper internationalization are more likely to ignore the
1734
+ // error message.
1735
+ Message *string
1736
+
1737
+ // The version ID of the error.
1738
+ VersionId *string
1739
+
1740
+ noSmithyDocumentSerde
1741
+ }
1742
+
1743
+ // The error information.
1744
+ type ErrorDocument struct {
1745
+
1746
+ // The object key name to use when a 4XX class error occurs. Replacement must be
1747
+ // made for object keys containing special characters (such as carriage returns)
1748
+ // when using XML requests. For more information, see XML related object key
1749
+ // constraints
1750
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
1751
+ //
1752
+ // This member is required.
1753
+ Key *string
1754
+
1755
+ noSmithyDocumentSerde
1756
+ }
1757
+
1758
+ // A container for specifying the configuration for Amazon EventBridge.
1759
+ type EventBridgeConfiguration struct {
1760
+ noSmithyDocumentSerde
1761
+ }
1762
+
1763
+ // Optional configuration to replicate existing source bucket objects. For more
1764
+ // information, see Replicating Existing Objects
1765
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-what-is-isnot-replicated.html#existing-object-replication)
1766
+ // in the Amazon S3 User Guide.
1767
+ type ExistingObjectReplication struct {
1768
+
1769
+ //
1770
+ //
1771
+ // This member is required.
1772
+ Status ExistingObjectReplicationStatus
1773
+
1774
+ noSmithyDocumentSerde
1775
+ }
1776
+
1777
+ // Specifies the Amazon S3 object key name to filter on and whether to filter on
1778
+ // the suffix or prefix of the key name.
1779
+ type FilterRule struct {
1780
+
1781
+ // The object key name prefix or suffix identifying one or more objects to which
1782
+ // the filtering rule applies. The maximum length is 1,024 characters. Overlapping
1783
+ // prefixes and suffixes are not supported. For more information, see Configuring
1784
+ // Event Notifications
1785
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) in the
1786
+ // Amazon S3 User Guide.
1787
+ Name FilterRuleName
1788
+
1789
+ // The value that the filter searches for in object key names.
1790
+ Value *string
1791
+
1792
+ noSmithyDocumentSerde
1793
+ }
1794
+
1795
+ // A collection of parts associated with a multipart upload.
1796
+ type GetObjectAttributesParts struct {
1797
+
1798
+ // Indicates whether the returned list of parts is truncated. A value of true
1799
+ // indicates that the list was truncated. A list can be truncated if the number of
1800
+ // parts exceeds the limit returned in the MaxParts element.
1801
+ IsTruncated bool
1802
+
1803
+ // The maximum number of parts allowed in the response.
1804
+ MaxParts int32
1805
+
1806
+ // When a list is truncated, this element specifies the last part in the list, as
1807
+ // well as the value to use for the PartNumberMarker request parameter in a
1808
+ // subsequent request.
1809
+ NextPartNumberMarker *string
1810
+
1811
+ // The marker for the current part.
1812
+ PartNumberMarker *string
1813
+
1814
+ // A container for elements related to a particular part. A response can contain
1815
+ // zero or more Parts elements.
1816
+ Parts []ObjectPart
1817
+
1818
+ // The total number of parts.
1819
+ TotalPartsCount int32
1820
+
1821
+ noSmithyDocumentSerde
1822
+ }
1823
+
1824
+ // Container for S3 Glacier job parameters.
1825
+ type GlacierJobParameters struct {
1826
+
1827
+ // Retrieval tier at which the restore will be processed.
1828
+ //
1829
+ // This member is required.
1830
+ Tier Tier
1831
+
1832
+ noSmithyDocumentSerde
1833
+ }
1834
+
1835
+ // Container for grant information.
1836
+ type Grant struct {
1837
+
1838
+ // The person being granted permissions.
1839
+ Grantee *Grantee
1840
+
1841
+ // Specifies the permission given to the grantee.
1842
+ Permission Permission
1843
+
1844
+ noSmithyDocumentSerde
1845
+ }
1846
+
1847
+ // Container for the person being granted permissions.
1848
+ type Grantee struct {
1849
+
1850
+ // Type of grantee
1851
+ //
1852
+ // This member is required.
1853
+ Type Type
1854
+
1855
+ // Screen name of the grantee.
1856
+ DisplayName *string
1857
+
1858
+ // Email address of the grantee. Using email addresses to specify a grantee is only
1859
+ // supported in the following Amazon Web Services Regions:
1860
+ //
1861
+ // * US East (N.
1862
+ // Virginia)
1863
+ //
1864
+ // * US West (N. California)
1865
+ //
1866
+ // * US West (Oregon)
1867
+ //
1868
+ // * Asia Pacific
1869
+ // (Singapore)
1870
+ //
1871
+ // * Asia Pacific (Sydney)
1872
+ //
1873
+ // * Asia Pacific (Tokyo)
1874
+ //
1875
+ // * Europe
1876
+ // (Ireland)
1877
+ //
1878
+ // * South America (São Paulo)
1879
+ //
1880
+ // For a list of all the Amazon S3
1881
+ // supported Regions and endpoints, see Regions and Endpoints
1882
+ // (https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region) in the
1883
+ // Amazon Web Services General Reference.
1884
+ EmailAddress *string
1885
+
1886
+ // The canonical user ID of the grantee.
1887
+ ID *string
1888
+
1889
+ // URI of the grantee group.
1890
+ URI *string
1891
+
1892
+ noSmithyDocumentSerde
1893
+ }
1894
+
1895
+ // Container for the Suffix element.
1896
+ type IndexDocument struct {
1897
+
1898
+ // A suffix that is appended to a request that is for a directory on the website
1899
+ // endpoint (for example,if the suffix is index.html and you make a request to
1900
+ // samplebucket/images/ the data that is returned will be for the object with the
1901
+ // key name images/index.html) The suffix must not be empty and must not include a
1902
+ // slash character. Replacement must be made for object keys containing special
1903
+ // characters (such as carriage returns) when using XML requests. For more
1904
+ // information, see XML related object key constraints
1905
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
1906
+ //
1907
+ // This member is required.
1908
+ Suffix *string
1909
+
1910
+ noSmithyDocumentSerde
1911
+ }
1912
+
1913
+ // Container element that identifies who initiated the multipart upload.
1914
+ type Initiator struct {
1915
+
1916
+ // Name of the Principal.
1917
+ DisplayName *string
1918
+
1919
+ // If the principal is an Amazon Web Services account, it provides the Canonical
1920
+ // User ID. If the principal is an IAM User, it provides a user ARN value.
1921
+ ID *string
1922
+
1923
+ noSmithyDocumentSerde
1924
+ }
1925
+
1926
+ // Describes the serialization format of the object.
1927
+ type InputSerialization struct {
1928
+
1929
+ // Describes the serialization of a CSV-encoded object.
1930
+ CSV *CSVInput
1931
+
1932
+ // Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default
1933
+ // Value: NONE.
1934
+ CompressionType CompressionType
1935
+
1936
+ // Specifies JSON as object's input serialization format.
1937
+ JSON *JSONInput
1938
+
1939
+ // Specifies Parquet as object's input serialization format.
1940
+ Parquet *ParquetInput
1941
+
1942
+ noSmithyDocumentSerde
1943
+ }
1944
+
1945
+ // A container for specifying S3 Intelligent-Tiering filters. The filters determine
1946
+ // the subset of objects to which the rule applies.
1947
+ type IntelligentTieringAndOperator struct {
1948
+
1949
+ // An object key name prefix that identifies the subset of objects to which the
1950
+ // configuration applies.
1951
+ Prefix *string
1952
+
1953
+ // All of these tags must exist in the object's tag set in order for the
1954
+ // configuration to apply.
1955
+ Tags []Tag
1956
+
1957
+ noSmithyDocumentSerde
1958
+ }
1959
+
1960
+ // Specifies the S3 Intelligent-Tiering configuration for an Amazon S3 bucket. For
1961
+ // information about the S3 Intelligent-Tiering storage class, see Storage class
1962
+ // for automatically optimizing frequently and infrequently accessed objects
1963
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access).
1964
+ type IntelligentTieringConfiguration struct {
1965
+
1966
+ // The ID used to identify the S3 Intelligent-Tiering configuration.
1967
+ //
1968
+ // This member is required.
1969
+ Id *string
1970
+
1971
+ // Specifies the status of the configuration.
1972
+ //
1973
+ // This member is required.
1974
+ Status IntelligentTieringStatus
1975
+
1976
+ // Specifies the S3 Intelligent-Tiering storage class tier of the configuration.
1977
+ //
1978
+ // This member is required.
1979
+ Tierings []Tiering
1980
+
1981
+ // Specifies a bucket filter. The configuration only includes objects that meet the
1982
+ // filter's criteria.
1983
+ Filter *IntelligentTieringFilter
1984
+
1985
+ noSmithyDocumentSerde
1986
+ }
1987
+
1988
+ // The Filter is used to identify objects that the S3 Intelligent-Tiering
1989
+ // configuration applies to.
1990
+ type IntelligentTieringFilter struct {
1991
+
1992
+ // A conjunction (logical AND) of predicates, which is used in evaluating a metrics
1993
+ // filter. The operator must have at least two predicates, and an object must match
1994
+ // all of the predicates in order for the filter to apply.
1995
+ And *IntelligentTieringAndOperator
1996
+
1997
+ // An object key name prefix that identifies the subset of objects to which the
1998
+ // rule applies. Replacement must be made for object keys containing special
1999
+ // characters (such as carriage returns) when using XML requests. For more
2000
+ // information, see XML related object key constraints
2001
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
2002
+ Prefix *string
2003
+
2004
+ // A container of a key value name pair.
2005
+ Tag *Tag
2006
+
2007
+ noSmithyDocumentSerde
2008
+ }
2009
+
2010
+ // Specifies the inventory configuration for an Amazon S3 bucket. For more
2011
+ // information, see GET Bucket inventory
2012
+ // (https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html)
2013
+ // in the Amazon S3 API Reference.
2014
+ type InventoryConfiguration struct {
2015
+
2016
+ // Contains information about where to publish the inventory results.
2017
+ //
2018
+ // This member is required.
2019
+ Destination *InventoryDestination
2020
+
2021
+ // The ID used to identify the inventory configuration.
2022
+ //
2023
+ // This member is required.
2024
+ Id *string
2025
+
2026
+ // Object versions to include in the inventory list. If set to All, the list
2027
+ // includes all the object versions, which adds the version-related fields
2028
+ // VersionId, IsLatest, and DeleteMarker to the list. If set to Current, the list
2029
+ // does not contain these version-related fields.
2030
+ //
2031
+ // This member is required.
2032
+ IncludedObjectVersions InventoryIncludedObjectVersions
2033
+
2034
+ // Specifies whether the inventory is enabled or disabled. If set to True, an
2035
+ // inventory list is generated. If set to False, no inventory list is generated.
2036
+ //
2037
+ // This member is required.
2038
+ IsEnabled bool
2039
+
2040
+ // Specifies the schedule for generating inventory results.
2041
+ //
2042
+ // This member is required.
2043
+ Schedule *InventorySchedule
2044
+
2045
+ // Specifies an inventory filter. The inventory only includes objects that meet the
2046
+ // filter's criteria.
2047
+ Filter *InventoryFilter
2048
+
2049
+ // Contains the optional fields that are included in the inventory results.
2050
+ OptionalFields []InventoryOptionalField
2051
+
2052
+ noSmithyDocumentSerde
2053
+ }
2054
+
2055
+ // Specifies the inventory configuration for an Amazon S3 bucket.
2056
+ type InventoryDestination struct {
2057
+
2058
+ // Contains the bucket name, file format, bucket owner (optional), and prefix
2059
+ // (optional) where inventory results are published.
2060
+ //
2061
+ // This member is required.
2062
+ S3BucketDestination *InventoryS3BucketDestination
2063
+
2064
+ noSmithyDocumentSerde
2065
+ }
2066
+
2067
+ // Contains the type of server-side encryption used to encrypt the inventory
2068
+ // results.
2069
+ type InventoryEncryption struct {
2070
+
2071
+ // Specifies the use of SSE-KMS to encrypt delivered inventory reports.
2072
+ SSEKMS *SSEKMS
2073
+
2074
+ // Specifies the use of SSE-S3 to encrypt delivered inventory reports.
2075
+ SSES3 *SSES3
2076
+
2077
+ noSmithyDocumentSerde
2078
+ }
2079
+
2080
+ // Specifies an inventory filter. The inventory only includes objects that meet the
2081
+ // filter's criteria.
2082
+ type InventoryFilter struct {
2083
+
2084
+ // The prefix that an object must have to be included in the inventory results.
2085
+ //
2086
+ // This member is required.
2087
+ Prefix *string
2088
+
2089
+ noSmithyDocumentSerde
2090
+ }
2091
+
2092
+ // Contains the bucket name, file format, bucket owner (optional), and prefix
2093
+ // (optional) where inventory results are published.
2094
+ type InventoryS3BucketDestination struct {
2095
+
2096
+ // The Amazon Resource Name (ARN) of the bucket where inventory results will be
2097
+ // published.
2098
+ //
2099
+ // This member is required.
2100
+ Bucket *string
2101
+
2102
+ // Specifies the output format of the inventory results.
2103
+ //
2104
+ // This member is required.
2105
+ Format InventoryFormat
2106
+
2107
+ // The account ID that owns the destination S3 bucket. If no account ID is
2108
+ // provided, the owner is not validated before exporting data. Although this value
2109
+ // is optional, we strongly recommend that you set it to help prevent problems if
2110
+ // the destination bucket ownership changes.
2111
+ AccountId *string
2112
+
2113
+ // Contains the type of server-side encryption used to encrypt the inventory
2114
+ // results.
2115
+ Encryption *InventoryEncryption
2116
+
2117
+ // The prefix that is prepended to all inventory results.
2118
+ Prefix *string
2119
+
2120
+ noSmithyDocumentSerde
2121
+ }
2122
+
2123
+ // Specifies the schedule for generating inventory results.
2124
+ type InventorySchedule struct {
2125
+
2126
+ // Specifies how frequently inventory results are produced.
2127
+ //
2128
+ // This member is required.
2129
+ Frequency InventoryFrequency
2130
+
2131
+ noSmithyDocumentSerde
2132
+ }
2133
+
2134
+ // Specifies JSON as object's input serialization format.
2135
+ type JSONInput struct {
2136
+
2137
+ // The type of JSON. Valid values: Document, Lines.
2138
+ Type JSONType
2139
+
2140
+ noSmithyDocumentSerde
2141
+ }
2142
+
2143
+ // Specifies JSON as request's output serialization format.
2144
+ type JSONOutput struct {
2145
+
2146
+ // The value used to separate individual records in the output. If no value is
2147
+ // specified, Amazon S3 uses a newline character ('\n').
2148
+ RecordDelimiter *string
2149
+
2150
+ noSmithyDocumentSerde
2151
+ }
2152
+
2153
+ // A container for specifying the configuration for Lambda notifications.
2154
+ type LambdaFunctionConfiguration struct {
2155
+
2156
+ // The Amazon S3 bucket event for which to invoke the Lambda function. For more
2157
+ // information, see Supported Event Types
2158
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) in the
2159
+ // Amazon S3 User Guide.
2160
+ //
2161
+ // This member is required.
2162
+ Events []Event
2163
+
2164
+ // The Amazon Resource Name (ARN) of the Lambda function that Amazon S3 invokes
2165
+ // when the specified event type occurs.
2166
+ //
2167
+ // This member is required.
2168
+ LambdaFunctionArn *string
2169
+
2170
+ // Specifies object key name filtering rules. For information about key name
2171
+ // filtering, see Configuring Event Notifications
2172
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) in the
2173
+ // Amazon S3 User Guide.
2174
+ Filter *NotificationConfigurationFilter
2175
+
2176
+ // An optional unique identifier for configurations in a notification
2177
+ // configuration. If you don't provide one, Amazon S3 will assign an ID.
2178
+ Id *string
2179
+
2180
+ noSmithyDocumentSerde
2181
+ }
2182
+
2183
+ // Container for the expiration for the lifecycle of the object.
2184
+ type LifecycleExpiration struct {
2185
+
2186
+ // Indicates at what date the object is to be moved or deleted. Should be in GMT
2187
+ // ISO 8601 Format.
2188
+ Date *time.Time
2189
+
2190
+ // Indicates the lifetime, in days, of the objects that are subject to the rule.
2191
+ // The value must be a non-zero positive integer.
2192
+ Days int32
2193
+
2194
+ // Indicates whether Amazon S3 will remove a delete marker with no noncurrent
2195
+ // versions. If set to true, the delete marker will be expired; if set to false the
2196
+ // policy takes no action. This cannot be specified with Days or Date in a
2197
+ // Lifecycle Expiration Policy.
2198
+ ExpiredObjectDeleteMarker bool
2199
+
2200
+ noSmithyDocumentSerde
2201
+ }
2202
+
2203
+ // A lifecycle rule for individual objects in an Amazon S3 bucket.
2204
+ type LifecycleRule struct {
2205
+
2206
+ // If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is
2207
+ // not currently being applied.
2208
+ //
2209
+ // This member is required.
2210
+ Status ExpirationStatus
2211
+
2212
+ // Specifies the days since the initiation of an incomplete multipart upload that
2213
+ // Amazon S3 will wait before permanently removing all parts of the upload. For
2214
+ // more information, see Aborting Incomplete Multipart Uploads Using a Bucket
2215
+ // Lifecycle Policy
2216
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html#mpu-abort-incomplete-mpu-lifecycle-config)
2217
+ // in the Amazon S3 User Guide.
2218
+ AbortIncompleteMultipartUpload *AbortIncompleteMultipartUpload
2219
+
2220
+ // Specifies the expiration for the lifecycle of the object in the form of date,
2221
+ // days and, whether the object has a delete marker.
2222
+ Expiration *LifecycleExpiration
2223
+
2224
+ // The Filter is used to identify objects that a Lifecycle Rule applies to. A
2225
+ // Filter must have exactly one of Prefix, Tag, or And specified. Filter is
2226
+ // required if the LifecycleRule does not contain a Prefix element.
2227
+ Filter LifecycleRuleFilter
2228
+
2229
+ // Unique identifier for the rule. The value cannot be longer than 255 characters.
2230
+ ID *string
2231
+
2232
+ // Specifies when noncurrent object versions expire. Upon expiration, Amazon S3
2233
+ // permanently deletes the noncurrent object versions. You set this lifecycle
2234
+ // configuration action on a bucket that has versioning enabled (or suspended) to
2235
+ // request that Amazon S3 delete noncurrent object versions at a specific period in
2236
+ // the object's lifetime.
2237
+ NoncurrentVersionExpiration *NoncurrentVersionExpiration
2238
+
2239
+ // Specifies the transition rule for the lifecycle rule that describes when
2240
+ // noncurrent objects transition to a specific storage class. If your bucket is
2241
+ // versioning-enabled (or versioning is suspended), you can set this action to
2242
+ // request that Amazon S3 transition noncurrent object versions to a specific
2243
+ // storage class at a set period in the object's lifetime.
2244
+ NoncurrentVersionTransitions []NoncurrentVersionTransition
2245
+
2246
+ // Prefix identifying one or more objects to which the rule applies. This is no
2247
+ // longer used; use Filter instead. Replacement must be made for object keys
2248
+ // containing special characters (such as carriage returns) when using XML
2249
+ // requests. For more information, see XML related object key constraints
2250
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
2251
+ //
2252
+ // Deprecated: This member has been deprecated.
2253
+ Prefix *string
2254
+
2255
+ // Specifies when an Amazon S3 object transitions to a specified storage class.
2256
+ Transitions []Transition
2257
+
2258
+ noSmithyDocumentSerde
2259
+ }
2260
+
2261
+ // This is used in a Lifecycle Rule Filter to apply a logical AND to two or more
2262
+ // predicates. The Lifecycle Rule will apply to any object matching all of the
2263
+ // predicates configured inside the And operator.
2264
+ type LifecycleRuleAndOperator struct {
2265
+
2266
+ // Minimum object size to which the rule applies.
2267
+ ObjectSizeGreaterThan int64
2268
+
2269
+ // Maximum object size to which the rule applies.
2270
+ ObjectSizeLessThan int64
2271
+
2272
+ // Prefix identifying one or more objects to which the rule applies.
2273
+ Prefix *string
2274
+
2275
+ // All of these tags must exist in the object's tag set in order for the rule to
2276
+ // apply.
2277
+ Tags []Tag
2278
+
2279
+ noSmithyDocumentSerde
2280
+ }
2281
+
2282
+ // The Filter is used to identify objects that a Lifecycle Rule applies to. A
2283
+ // Filter must have exactly one of Prefix, Tag, or And specified.
2284
+ //
2285
+ // The following types satisfy this interface:
2286
+ //
2287
+ // LifecycleRuleFilterMemberAnd
2288
+ // LifecycleRuleFilterMemberObjectSizeGreaterThan
2289
+ // LifecycleRuleFilterMemberObjectSizeLessThan
2290
+ // LifecycleRuleFilterMemberPrefix
2291
+ // LifecycleRuleFilterMemberTag
2292
+ type LifecycleRuleFilter interface {
2293
+ isLifecycleRuleFilter()
2294
+ }
2295
+
2296
+ // This is used in a Lifecycle Rule Filter to apply a logical AND to two or more
2297
+ // predicates. The Lifecycle Rule will apply to any object matching all of the
2298
+ // predicates configured inside the And operator.
2299
+ type LifecycleRuleFilterMemberAnd struct {
2300
+ Value LifecycleRuleAndOperator
2301
+
2302
+ noSmithyDocumentSerde
2303
+ }
2304
+
2305
+ func (*LifecycleRuleFilterMemberAnd) isLifecycleRuleFilter() {}
2306
+
2307
+ // Minimum object size to which the rule applies.
2308
+ type LifecycleRuleFilterMemberObjectSizeGreaterThan struct {
2309
+ Value int64
2310
+
2311
+ noSmithyDocumentSerde
2312
+ }
2313
+
2314
+ func (*LifecycleRuleFilterMemberObjectSizeGreaterThan) isLifecycleRuleFilter() {}
2315
+
2316
+ // Maximum object size to which the rule applies.
2317
+ type LifecycleRuleFilterMemberObjectSizeLessThan struct {
2318
+ Value int64
2319
+
2320
+ noSmithyDocumentSerde
2321
+ }
2322
+
2323
+ func (*LifecycleRuleFilterMemberObjectSizeLessThan) isLifecycleRuleFilter() {}
2324
+
2325
+ // Prefix identifying one or more objects to which the rule applies. Replacement
2326
+ // must be made for object keys containing special characters (such as carriage
2327
+ // returns) when using XML requests. For more information, see XML related object
2328
+ // key constraints
2329
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
2330
+ type LifecycleRuleFilterMemberPrefix struct {
2331
+ Value string
2332
+
2333
+ noSmithyDocumentSerde
2334
+ }
2335
+
2336
+ func (*LifecycleRuleFilterMemberPrefix) isLifecycleRuleFilter() {}
2337
+
2338
+ // This tag must exist in the object's tag set in order for the rule to apply.
2339
+ type LifecycleRuleFilterMemberTag struct {
2340
+ Value Tag
2341
+
2342
+ noSmithyDocumentSerde
2343
+ }
2344
+
2345
+ func (*LifecycleRuleFilterMemberTag) isLifecycleRuleFilter() {}
2346
+
2347
+ // Describes where logs are stored and the prefix that Amazon S3 assigns to all log
2348
+ // object keys for a bucket. For more information, see PUT Bucket logging
2349
+ // (https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTlogging.html) in
2350
+ // the Amazon S3 API Reference.
2351
+ type LoggingEnabled struct {
2352
+
2353
+ // Specifies the bucket where you want Amazon S3 to store server access logs. You
2354
+ // can have your logs delivered to any bucket that you own, including the same
2355
+ // bucket that is being logged. You can also configure multiple buckets to deliver
2356
+ // their logs to the same target bucket. In this case, you should choose a
2357
+ // different TargetPrefix for each source bucket so that the delivered log files
2358
+ // can be distinguished by key.
2359
+ //
2360
+ // This member is required.
2361
+ TargetBucket *string
2362
+
2363
+ // A prefix for all log object keys. If you store log files from multiple Amazon S3
2364
+ // buckets in a single bucket, you can use a prefix to distinguish which log files
2365
+ // came from which bucket.
2366
+ //
2367
+ // This member is required.
2368
+ TargetPrefix *string
2369
+
2370
+ // Container for granting information. Buckets that use the bucket owner enforced
2371
+ // setting for Object Ownership don't support target grants. For more information,
2372
+ // see Permissions for server access log delivery
2373
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html#grant-log-delivery-permissions-general)
2374
+ // in the Amazon S3 User Guide.
2375
+ TargetGrants []TargetGrant
2376
+
2377
+ noSmithyDocumentSerde
2378
+ }
2379
+
2380
+ // A metadata key-value pair to store with an object.
2381
+ type MetadataEntry struct {
2382
+
2383
+ // Name of the Object.
2384
+ Name *string
2385
+
2386
+ // Value of the Object.
2387
+ Value *string
2388
+
2389
+ noSmithyDocumentSerde
2390
+ }
2391
+
2392
+ // A container specifying replication metrics-related settings enabling replication
2393
+ // metrics and events.
2394
+ type Metrics struct {
2395
+
2396
+ // Specifies whether the replication metrics are enabled.
2397
+ //
2398
+ // This member is required.
2399
+ Status MetricsStatus
2400
+
2401
+ // A container specifying the time threshold for emitting the
2402
+ // s3:Replication:OperationMissedThreshold event.
2403
+ EventThreshold *ReplicationTimeValue
2404
+
2405
+ noSmithyDocumentSerde
2406
+ }
2407
+
2408
+ // A conjunction (logical AND) of predicates, which is used in evaluating a metrics
2409
+ // filter. The operator must have at least two predicates, and an object must match
2410
+ // all of the predicates in order for the filter to apply.
2411
+ type MetricsAndOperator struct {
2412
+
2413
+ // The access point ARN used when evaluating an AND predicate.
2414
+ AccessPointArn *string
2415
+
2416
+ // The prefix used when evaluating an AND predicate.
2417
+ Prefix *string
2418
+
2419
+ // The list of tags used when evaluating an AND predicate.
2420
+ Tags []Tag
2421
+
2422
+ noSmithyDocumentSerde
2423
+ }
2424
+
2425
+ // Specifies a metrics configuration for the CloudWatch request metrics (specified
2426
+ // by the metrics configuration ID) from an Amazon S3 bucket. If you're updating an
2427
+ // existing metrics configuration, note that this is a full replacement of the
2428
+ // existing metrics configuration. If you don't include the elements you want to
2429
+ // keep, they are erased. For more information, see PutBucketMetricsConfiguration
2430
+ // (https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTMetricConfiguration.html).
2431
+ type MetricsConfiguration struct {
2432
+
2433
+ // The ID used to identify the metrics configuration.
2434
+ //
2435
+ // This member is required.
2436
+ Id *string
2437
+
2438
+ // Specifies a metrics configuration filter. The metrics configuration will only
2439
+ // include objects that meet the filter's criteria. A filter must be a prefix, an
2440
+ // object tag, an access point ARN, or a conjunction (MetricsAndOperator).
2441
+ Filter MetricsFilter
2442
+
2443
+ noSmithyDocumentSerde
2444
+ }
2445
+
2446
+ // Specifies a metrics configuration filter. The metrics configuration only
2447
+ // includes objects that meet the filter's criteria. A filter must be a prefix, an
2448
+ // object tag, an access point ARN, or a conjunction (MetricsAndOperator). For more
2449
+ // information, see PutBucketMetricsConfiguration
2450
+ // (https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketMetricsConfiguration.html).
2451
+ //
2452
+ // The following types satisfy this interface:
2453
+ //
2454
+ // MetricsFilterMemberAccessPointArn
2455
+ // MetricsFilterMemberAnd
2456
+ // MetricsFilterMemberPrefix
2457
+ // MetricsFilterMemberTag
2458
+ type MetricsFilter interface {
2459
+ isMetricsFilter()
2460
+ }
2461
+
2462
+ // The access point ARN used when evaluating a metrics filter.
2463
+ type MetricsFilterMemberAccessPointArn struct {
2464
+ Value string
2465
+
2466
+ noSmithyDocumentSerde
2467
+ }
2468
+
2469
+ func (*MetricsFilterMemberAccessPointArn) isMetricsFilter() {}
2470
+
2471
+ // A conjunction (logical AND) of predicates, which is used in evaluating a metrics
2472
+ // filter. The operator must have at least two predicates, and an object must match
2473
+ // all of the predicates in order for the filter to apply.
2474
+ type MetricsFilterMemberAnd struct {
2475
+ Value MetricsAndOperator
2476
+
2477
+ noSmithyDocumentSerde
2478
+ }
2479
+
2480
+ func (*MetricsFilterMemberAnd) isMetricsFilter() {}
2481
+
2482
+ // The prefix used when evaluating a metrics filter.
2483
+ type MetricsFilterMemberPrefix struct {
2484
+ Value string
2485
+
2486
+ noSmithyDocumentSerde
2487
+ }
2488
+
2489
+ func (*MetricsFilterMemberPrefix) isMetricsFilter() {}
2490
+
2491
+ // The tag used when evaluating a metrics filter.
2492
+ type MetricsFilterMemberTag struct {
2493
+ Value Tag
2494
+
2495
+ noSmithyDocumentSerde
2496
+ }
2497
+
2498
+ func (*MetricsFilterMemberTag) isMetricsFilter() {}
2499
+
2500
+ // Container for the MultipartUpload for the Amazon S3 object.
2501
+ type MultipartUpload struct {
2502
+
2503
+ // The algorithm that was used to create a checksum of the object.
2504
+ ChecksumAlgorithm ChecksumAlgorithm
2505
+
2506
+ // Date and time at which the multipart upload was initiated.
2507
+ Initiated *time.Time
2508
+
2509
+ // Identifies who initiated the multipart upload.
2510
+ Initiator *Initiator
2511
+
2512
+ // Key of the object for which the multipart upload was initiated.
2513
+ Key *string
2514
+
2515
+ // Specifies the owner of the object that is part of the multipart upload.
2516
+ Owner *Owner
2517
+
2518
+ // The class of storage used to store the object.
2519
+ StorageClass StorageClass
2520
+
2521
+ // Upload ID that identifies the multipart upload.
2522
+ UploadId *string
2523
+
2524
+ noSmithyDocumentSerde
2525
+ }
2526
+
2527
+ // Specifies when noncurrent object versions expire. Upon expiration, Amazon S3
2528
+ // permanently deletes the noncurrent object versions. You set this lifecycle
2529
+ // configuration action on a bucket that has versioning enabled (or suspended) to
2530
+ // request that Amazon S3 delete noncurrent object versions at a specific period in
2531
+ // the object's lifetime.
2532
+ type NoncurrentVersionExpiration struct {
2533
+
2534
+ // Specifies how many noncurrent versions Amazon S3 will retain. If there are this
2535
+ // many more recent noncurrent versions, Amazon S3 will take the associated action.
2536
+ // For more information about noncurrent versions, see Lifecycle configuration
2537
+ // elements
2538
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/intro-lifecycle-rules.html)
2539
+ // in the Amazon S3 User Guide.
2540
+ NewerNoncurrentVersions int32
2541
+
2542
+ // Specifies the number of days an object is noncurrent before Amazon S3 can
2543
+ // perform the associated action. The value must be a non-zero positive integer.
2544
+ // For information about the noncurrent days calculations, see How Amazon S3
2545
+ // Calculates When an Object Became Noncurrent
2546
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html#non-current-days-calculations)
2547
+ // in the Amazon S3 User Guide.
2548
+ NoncurrentDays int32
2549
+
2550
+ noSmithyDocumentSerde
2551
+ }
2552
+
2553
+ // Container for the transition rule that describes when noncurrent objects
2554
+ // transition to the STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER_IR,
2555
+ // GLACIER, or DEEP_ARCHIVE storage class. If your bucket is versioning-enabled (or
2556
+ // versioning is suspended), you can set this action to request that Amazon S3
2557
+ // transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA,
2558
+ // INTELLIGENT_TIERING, GLACIER_IR, GLACIER, or DEEP_ARCHIVE storage class at a
2559
+ // specific period in the object's lifetime.
2560
+ type NoncurrentVersionTransition struct {
2561
+
2562
+ // Specifies how many noncurrent versions Amazon S3 will retain. If there are this
2563
+ // many more recent noncurrent versions, Amazon S3 will take the associated action.
2564
+ // For more information about noncurrent versions, see Lifecycle configuration
2565
+ // elements
2566
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/intro-lifecycle-rules.html)
2567
+ // in the Amazon S3 User Guide.
2568
+ NewerNoncurrentVersions int32
2569
+
2570
+ // Specifies the number of days an object is noncurrent before Amazon S3 can
2571
+ // perform the associated action. For information about the noncurrent days
2572
+ // calculations, see How Amazon S3 Calculates How Long an Object Has Been
2573
+ // Noncurrent
2574
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html#non-current-days-calculations)
2575
+ // in the Amazon S3 User Guide.
2576
+ NoncurrentDays int32
2577
+
2578
+ // The class of storage used to store the object.
2579
+ StorageClass TransitionStorageClass
2580
+
2581
+ noSmithyDocumentSerde
2582
+ }
2583
+
2584
+ // A container for specifying the notification configuration of the bucket. If this
2585
+ // element is empty, notifications are turned off for the bucket.
2586
+ type NotificationConfiguration struct {
2587
+
2588
+ // Enables delivery of events to Amazon EventBridge.
2589
+ EventBridgeConfiguration *EventBridgeConfiguration
2590
+
2591
+ // Describes the Lambda functions to invoke and the events for which to invoke
2592
+ // them.
2593
+ LambdaFunctionConfigurations []LambdaFunctionConfiguration
2594
+
2595
+ // The Amazon Simple Queue Service queues to publish messages to and the events for
2596
+ // which to publish messages.
2597
+ QueueConfigurations []QueueConfiguration
2598
+
2599
+ // The topic to which notifications are sent and the events for which notifications
2600
+ // are generated.
2601
+ TopicConfigurations []TopicConfiguration
2602
+
2603
+ noSmithyDocumentSerde
2604
+ }
2605
+
2606
+ // Specifies object key name filtering rules. For information about key name
2607
+ // filtering, see Configuring Event Notifications
2608
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) in the
2609
+ // Amazon S3 User Guide.
2610
+ type NotificationConfigurationFilter struct {
2611
+
2612
+ // A container for object key name prefix and suffix filtering rules.
2613
+ Key *S3KeyFilter
2614
+
2615
+ noSmithyDocumentSerde
2616
+ }
2617
+
2618
+ // An object consists of data and its descriptive metadata.
2619
+ type Object struct {
2620
+
2621
+ // The algorithm that was used to create a checksum of the object.
2622
+ ChecksumAlgorithm []ChecksumAlgorithm
2623
+
2624
+ // The entity tag is a hash of the object. The ETag reflects changes only to the
2625
+ // contents of an object, not its metadata. The ETag may or may not be an MD5
2626
+ // digest of the object data. Whether or not it is depends on how the object was
2627
+ // created and how it is encrypted as described below:
2628
+ //
2629
+ // * Objects created by the
2630
+ // PUT Object, POST Object, or Copy operation, or through the Amazon Web Services
2631
+ // Management Console, and are encrypted by SSE-S3 or plaintext, have ETags that
2632
+ // are an MD5 digest of their object data.
2633
+ //
2634
+ // * Objects created by the PUT Object,
2635
+ // POST Object, or Copy operation, or through the Amazon Web Services Management
2636
+ // Console, and are encrypted by SSE-C or SSE-KMS, have ETags that are not an MD5
2637
+ // digest of their object data.
2638
+ //
2639
+ // * If an object is created by either the Multipart
2640
+ // Upload or Part Copy operation, the ETag is not an MD5 digest, regardless of the
2641
+ // method of encryption. If an object is larger than 16 MB, the Amazon Web Services
2642
+ // Management Console will upload or copy that object as a Multipart Upload, and
2643
+ // therefore the ETag will not be an MD5 digest.
2644
+ ETag *string
2645
+
2646
+ // The name that you assign to an object. You use the object key to retrieve the
2647
+ // object.
2648
+ Key *string
2649
+
2650
+ // Creation date of the object.
2651
+ LastModified *time.Time
2652
+
2653
+ // The owner of the object
2654
+ Owner *Owner
2655
+
2656
+ // Size in bytes of the object
2657
+ Size int64
2658
+
2659
+ // The class of storage used to store the object.
2660
+ StorageClass ObjectStorageClass
2661
+
2662
+ noSmithyDocumentSerde
2663
+ }
2664
+
2665
+ // Object Identifier is unique value to identify objects.
2666
+ type ObjectIdentifier struct {
2667
+
2668
+ // Key name of the object. Replacement must be made for object keys containing
2669
+ // special characters (such as carriage returns) when using XML requests. For more
2670
+ // information, see XML related object key constraints
2671
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
2672
+ //
2673
+ // This member is required.
2674
+ Key *string
2675
+
2676
+ // VersionId for the specific version of the object to delete.
2677
+ VersionId *string
2678
+
2679
+ noSmithyDocumentSerde
2680
+ }
2681
+
2682
+ // The container element for Object Lock configuration parameters.
2683
+ type ObjectLockConfiguration struct {
2684
+
2685
+ // Indicates whether this bucket has an Object Lock configuration enabled. Enable
2686
+ // ObjectLockEnabled when you apply ObjectLockConfiguration to a bucket.
2687
+ ObjectLockEnabled ObjectLockEnabled
2688
+
2689
+ // Specifies the Object Lock rule for the specified object. Enable the this rule
2690
+ // when you apply ObjectLockConfiguration to a bucket. Bucket settings require both
2691
+ // a mode and a period. The period can be either Days or Years but you must select
2692
+ // one. You cannot specify Days and Years at the same time.
2693
+ Rule *ObjectLockRule
2694
+
2695
+ noSmithyDocumentSerde
2696
+ }
2697
+
2698
+ // A legal hold configuration for an object.
2699
+ type ObjectLockLegalHold struct {
2700
+
2701
+ // Indicates whether the specified object has a legal hold in place.
2702
+ Status ObjectLockLegalHoldStatus
2703
+
2704
+ noSmithyDocumentSerde
2705
+ }
2706
+
2707
+ // A Retention configuration for an object.
2708
+ type ObjectLockRetention struct {
2709
+
2710
+ // Indicates the Retention mode for the specified object.
2711
+ Mode ObjectLockRetentionMode
2712
+
2713
+ // The date on which this Object Lock Retention will expire.
2714
+ RetainUntilDate *time.Time
2715
+
2716
+ noSmithyDocumentSerde
2717
+ }
2718
+
2719
+ // The container element for an Object Lock rule.
2720
+ type ObjectLockRule struct {
2721
+
2722
+ // The default Object Lock retention mode and period that you want to apply to new
2723
+ // objects placed in the specified bucket. Bucket settings require both a mode and
2724
+ // a period. The period can be either Days or Years but you must select one. You
2725
+ // cannot specify Days and Years at the same time.
2726
+ DefaultRetention *DefaultRetention
2727
+
2728
+ noSmithyDocumentSerde
2729
+ }
2730
+
2731
+ // A container for elements related to an individual part.
2732
+ type ObjectPart struct {
2733
+
2734
+ // This header can be used as a data integrity check to verify that the data
2735
+ // received is the same data that was originally sent. This header specifies the
2736
+ // base64-encoded, 32-bit CRC32 checksum of the object. For more information, see
2737
+ // Checking object integrity
2738
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html)
2739
+ // in the Amazon S3 User Guide.
2740
+ ChecksumCRC32 *string
2741
+
2742
+ // The base64-encoded, 32-bit CRC32C checksum of the object. This will only be
2743
+ // present if it was uploaded with the object. With multipart uploads, this may not
2744
+ // be a checksum value of the object. For more information about how checksums are
2745
+ // calculated with multipart uploads, see Checking object integrity
2746
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
2747
+ // in the Amazon S3 User Guide.
2748
+ ChecksumCRC32C *string
2749
+
2750
+ // The base64-encoded, 160-bit SHA-1 digest of the object. This will only be
2751
+ // present if it was uploaded with the object. With multipart uploads, this may not
2752
+ // be a checksum value of the object. For more information about how checksums are
2753
+ // calculated with multipart uploads, see Checking object integrity
2754
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
2755
+ // in the Amazon S3 User Guide.
2756
+ ChecksumSHA1 *string
2757
+
2758
+ // The base64-encoded, 256-bit SHA-256 digest of the object. This will only be
2759
+ // present if it was uploaded with the object. With multipart uploads, this may not
2760
+ // be a checksum value of the object. For more information about how checksums are
2761
+ // calculated with multipart uploads, see Checking object integrity
2762
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
2763
+ // in the Amazon S3 User Guide.
2764
+ ChecksumSHA256 *string
2765
+
2766
+ // The part number identifying the part. This value is a positive integer between 1
2767
+ // and 10,000.
2768
+ PartNumber int32
2769
+
2770
+ // The size of the uploaded part in bytes.
2771
+ Size int64
2772
+
2773
+ noSmithyDocumentSerde
2774
+ }
2775
+
2776
+ // The version of an object.
2777
+ type ObjectVersion struct {
2778
+
2779
+ // The algorithm that was used to create a checksum of the object.
2780
+ ChecksumAlgorithm []ChecksumAlgorithm
2781
+
2782
+ // The entity tag is an MD5 hash of that version of the object.
2783
+ ETag *string
2784
+
2785
+ // Specifies whether the object is (true) or is not (false) the latest version of
2786
+ // an object.
2787
+ IsLatest bool
2788
+
2789
+ // The object key.
2790
+ Key *string
2791
+
2792
+ // Date and time the object was last modified.
2793
+ LastModified *time.Time
2794
+
2795
+ // Specifies the owner of the object.
2796
+ Owner *Owner
2797
+
2798
+ // Size in bytes of the object.
2799
+ Size int64
2800
+
2801
+ // The class of storage used to store the object.
2802
+ StorageClass ObjectVersionStorageClass
2803
+
2804
+ // Version ID of an object.
2805
+ VersionId *string
2806
+
2807
+ noSmithyDocumentSerde
2808
+ }
2809
+
2810
+ // Describes the location where the restore job's output is stored.
2811
+ type OutputLocation struct {
2812
+
2813
+ // Describes an S3 location that will receive the results of the restore request.
2814
+ S3 *S3Location
2815
+
2816
+ noSmithyDocumentSerde
2817
+ }
2818
+
2819
+ // Describes how results of the Select job are serialized.
2820
+ type OutputSerialization struct {
2821
+
2822
+ // Describes the serialization of CSV-encoded Select results.
2823
+ CSV *CSVOutput
2824
+
2825
+ // Specifies JSON as request's output serialization format.
2826
+ JSON *JSONOutput
2827
+
2828
+ noSmithyDocumentSerde
2829
+ }
2830
+
2831
+ // Container for the owner's display name and ID.
2832
+ type Owner struct {
2833
+
2834
+ // Container for the display name of the owner.
2835
+ DisplayName *string
2836
+
2837
+ // Container for the ID of the owner.
2838
+ ID *string
2839
+
2840
+ noSmithyDocumentSerde
2841
+ }
2842
+
2843
+ // The container element for a bucket's ownership controls.
2844
+ type OwnershipControls struct {
2845
+
2846
+ // The container element for an ownership control rule.
2847
+ //
2848
+ // This member is required.
2849
+ Rules []OwnershipControlsRule
2850
+
2851
+ noSmithyDocumentSerde
2852
+ }
2853
+
2854
+ // The container element for an ownership control rule.
2855
+ type OwnershipControlsRule struct {
2856
+
2857
+ // The container element for object ownership for a bucket's ownership controls.
2858
+ // BucketOwnerPreferred - Objects uploaded to the bucket change ownership to the
2859
+ // bucket owner if the objects are uploaded with the bucket-owner-full-control
2860
+ // canned ACL. ObjectWriter - The uploading account will own the object if the
2861
+ // object is uploaded with the bucket-owner-full-control canned ACL.
2862
+ // BucketOwnerEnforced - Access control lists (ACLs) are disabled and no longer
2863
+ // affect permissions. The bucket owner automatically owns and has full control
2864
+ // over every object in the bucket. The bucket only accepts PUT requests that don't
2865
+ // specify an ACL or bucket owner full control ACLs, such as the
2866
+ // bucket-owner-full-control canned ACL or an equivalent form of this ACL expressed
2867
+ // in the XML format.
2868
+ //
2869
+ // This member is required.
2870
+ ObjectOwnership ObjectOwnership
2871
+
2872
+ noSmithyDocumentSerde
2873
+ }
2874
+
2875
+ // Container for Parquet.
2876
+ type ParquetInput struct {
2877
+ noSmithyDocumentSerde
2878
+ }
2879
+
2880
+ // Container for elements related to a part.
2881
+ type Part struct {
2882
+
2883
+ // This header can be used as a data integrity check to verify that the data
2884
+ // received is the same data that was originally sent. This header specifies the
2885
+ // base64-encoded, 32-bit CRC32 checksum of the object. For more information, see
2886
+ // Checking object integrity
2887
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html)
2888
+ // in the Amazon S3 User Guide.
2889
+ ChecksumCRC32 *string
2890
+
2891
+ // The base64-encoded, 32-bit CRC32C checksum of the object. This will only be
2892
+ // present if it was uploaded with the object. With multipart uploads, this may not
2893
+ // be a checksum value of the object. For more information about how checksums are
2894
+ // calculated with multipart uploads, see Checking object integrity
2895
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
2896
+ // in the Amazon S3 User Guide.
2897
+ ChecksumCRC32C *string
2898
+
2899
+ // The base64-encoded, 160-bit SHA-1 digest of the object. This will only be
2900
+ // present if it was uploaded with the object. With multipart uploads, this may not
2901
+ // be a checksum value of the object. For more information about how checksums are
2902
+ // calculated with multipart uploads, see Checking object integrity
2903
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums)
2904
+ // in the Amazon S3 User Guide.
2905
+ ChecksumSHA1 *string
2906
+
2907
+ // This header can be used as a data integrity check to verify that the data
2908
+ // received is the same data that was originally sent. This header specifies the
2909
+ // base64-encoded, 256-bit SHA-256 digest of the object. For more information, see
2910
+ // Checking object integrity
2911
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html)
2912
+ // in the Amazon S3 User Guide.
2913
+ ChecksumSHA256 *string
2914
+
2915
+ // Entity tag returned when the part was uploaded.
2916
+ ETag *string
2917
+
2918
+ // Date and time at which the part was uploaded.
2919
+ LastModified *time.Time
2920
+
2921
+ // Part number identifying the part. This is a positive integer between 1 and
2922
+ // 10,000.
2923
+ PartNumber int32
2924
+
2925
+ // Size in bytes of the uploaded part data.
2926
+ Size int64
2927
+
2928
+ noSmithyDocumentSerde
2929
+ }
2930
+
2931
+ // The container element for a bucket's policy status.
2932
+ type PolicyStatus struct {
2933
+
2934
+ // The policy status for this bucket. TRUE indicates that this bucket is public.
2935
+ // FALSE indicates that the bucket is not public.
2936
+ IsPublic bool
2937
+
2938
+ noSmithyDocumentSerde
2939
+ }
2940
+
2941
+ // This data type contains information about progress of an operation.
2942
+ type Progress struct {
2943
+
2944
+ // The current number of uncompressed object bytes processed.
2945
+ BytesProcessed int64
2946
+
2947
+ // The current number of bytes of records payload data returned.
2948
+ BytesReturned int64
2949
+
2950
+ // The current number of object bytes scanned.
2951
+ BytesScanned int64
2952
+
2953
+ noSmithyDocumentSerde
2954
+ }
2955
+
2956
+ // This data type contains information about the progress event of an operation.
2957
+ type ProgressEvent struct {
2958
+
2959
+ // The Progress event details.
2960
+ Details *Progress
2961
+
2962
+ noSmithyDocumentSerde
2963
+ }
2964
+
2965
+ // The PublicAccessBlock configuration that you want to apply to this Amazon S3
2966
+ // bucket. You can enable the configuration options in any combination. For more
2967
+ // information about when Amazon S3 considers a bucket or object public, see The
2968
+ // Meaning of "Public"
2969
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status)
2970
+ // in the Amazon S3 User Guide.
2971
+ type PublicAccessBlockConfiguration struct {
2972
+
2973
+ // Specifies whether Amazon S3 should block public access control lists (ACLs) for
2974
+ // this bucket and objects in this bucket. Setting this element to TRUE causes the
2975
+ // following behavior:
2976
+ //
2977
+ // * PUT Bucket ACL and PUT Object ACL calls fail if the
2978
+ // specified ACL is public.
2979
+ //
2980
+ // * PUT Object calls fail if the request includes a
2981
+ // public ACL.
2982
+ //
2983
+ // * PUT Bucket calls fail if the request includes a public
2984
+ // ACL.
2985
+ //
2986
+ // Enabling this setting doesn't affect existing policies or ACLs.
2987
+ BlockPublicAcls bool
2988
+
2989
+ // Specifies whether Amazon S3 should block public bucket policies for this bucket.
2990
+ // Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket
2991
+ // policy if the specified bucket policy allows public access. Enabling this
2992
+ // setting doesn't affect existing bucket policies.
2993
+ BlockPublicPolicy bool
2994
+
2995
+ // Specifies whether Amazon S3 should ignore public ACLs for this bucket and
2996
+ // objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore
2997
+ // all public ACLs on this bucket and objects in this bucket. Enabling this setting
2998
+ // doesn't affect the persistence of any existing ACLs and doesn't prevent new
2999
+ // public ACLs from being set.
3000
+ IgnorePublicAcls bool
3001
+
3002
+ // Specifies whether Amazon S3 should restrict public bucket policies for this
3003
+ // bucket. Setting this element to TRUE restricts access to this bucket to only
3004
+ // Amazon Web Service principals and authorized users within this account if the
3005
+ // bucket has a public policy. Enabling this setting doesn't affect previously
3006
+ // stored bucket policies, except that public and cross-account access within any
3007
+ // public bucket policy, including non-public delegation to specific accounts, is
3008
+ // blocked.
3009
+ RestrictPublicBuckets bool
3010
+
3011
+ noSmithyDocumentSerde
3012
+ }
3013
+
3014
+ // Specifies the configuration for publishing messages to an Amazon Simple Queue
3015
+ // Service (Amazon SQS) queue when Amazon S3 detects specified events.
3016
+ type QueueConfiguration struct {
3017
+
3018
+ // A collection of bucket events for which to send notifications
3019
+ //
3020
+ // This member is required.
3021
+ Events []Event
3022
+
3023
+ // The Amazon Resource Name (ARN) of the Amazon SQS queue to which Amazon S3
3024
+ // publishes a message when it detects events of the specified type.
3025
+ //
3026
+ // This member is required.
3027
+ QueueArn *string
3028
+
3029
+ // Specifies object key name filtering rules. For information about key name
3030
+ // filtering, see Configuring Event Notifications
3031
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) in the
3032
+ // Amazon S3 User Guide.
3033
+ Filter *NotificationConfigurationFilter
3034
+
3035
+ // An optional unique identifier for configurations in a notification
3036
+ // configuration. If you don't provide one, Amazon S3 will assign an ID.
3037
+ Id *string
3038
+
3039
+ noSmithyDocumentSerde
3040
+ }
3041
+
3042
+ // The container for the records event.
3043
+ type RecordsEvent struct {
3044
+
3045
+ // The byte array of partial, one or more result records.
3046
+ Payload []byte
3047
+
3048
+ noSmithyDocumentSerde
3049
+ }
3050
+
3051
+ // Specifies how requests are redirected. In the event of an error, you can specify
3052
+ // a different error code to return.
3053
+ type Redirect struct {
3054
+
3055
+ // The host name to use in the redirect request.
3056
+ HostName *string
3057
+
3058
+ // The HTTP redirect code to use on the response. Not required if one of the
3059
+ // siblings is present.
3060
+ HttpRedirectCode *string
3061
+
3062
+ // Protocol to use when redirecting requests. The default is the protocol that is
3063
+ // used in the original request.
3064
+ Protocol Protocol
3065
+
3066
+ // The object key prefix to use in the redirect request. For example, to redirect
3067
+ // requests for all pages with prefix docs/ (objects in the docs/ folder) to
3068
+ // documents/, you can set a condition block with KeyPrefixEquals set to docs/ and
3069
+ // in the Redirect set ReplaceKeyPrefixWith to /documents. Not required if one of
3070
+ // the siblings is present. Can be present only if ReplaceKeyWith is not provided.
3071
+ // Replacement must be made for object keys containing special characters (such as
3072
+ // carriage returns) when using XML requests. For more information, see XML
3073
+ // related object key constraints
3074
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
3075
+ ReplaceKeyPrefixWith *string
3076
+
3077
+ // The specific object key to use in the redirect request. For example, redirect
3078
+ // request to error.html. Not required if one of the siblings is present. Can be
3079
+ // present only if ReplaceKeyPrefixWith is not provided. Replacement must be made
3080
+ // for object keys containing special characters (such as carriage returns) when
3081
+ // using XML requests. For more information, see XML related object key
3082
+ // constraints
3083
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
3084
+ ReplaceKeyWith *string
3085
+
3086
+ noSmithyDocumentSerde
3087
+ }
3088
+
3089
+ // Specifies the redirect behavior of all requests to a website endpoint of an
3090
+ // Amazon S3 bucket.
3091
+ type RedirectAllRequestsTo struct {
3092
+
3093
+ // Name of the host where requests are redirected.
3094
+ //
3095
+ // This member is required.
3096
+ HostName *string
3097
+
3098
+ // Protocol to use when redirecting requests. The default is the protocol that is
3099
+ // used in the original request.
3100
+ Protocol Protocol
3101
+
3102
+ noSmithyDocumentSerde
3103
+ }
3104
+
3105
+ // A filter that you can specify for selection for modifications on replicas.
3106
+ // Amazon S3 doesn't replicate replica modifications by default. In the latest
3107
+ // version of replication configuration (when Filter is specified), you can specify
3108
+ // this element and set the status to Enabled to replicate modifications on
3109
+ // replicas. If you don't specify the Filter element, Amazon S3 assumes that the
3110
+ // replication configuration is the earlier version, V1. In the earlier version,
3111
+ // this element is not allowed.
3112
+ type ReplicaModifications struct {
3113
+
3114
+ // Specifies whether Amazon S3 replicates modifications on replicas.
3115
+ //
3116
+ // This member is required.
3117
+ Status ReplicaModificationsStatus
3118
+
3119
+ noSmithyDocumentSerde
3120
+ }
3121
+
3122
+ // A container for replication rules. You can add up to 1,000 rules. The maximum
3123
+ // size of a replication configuration is 2 MB.
3124
+ type ReplicationConfiguration struct {
3125
+
3126
+ // The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role
3127
+ // that Amazon S3 assumes when replicating objects. For more information, see How
3128
+ // to Set Up Replication
3129
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-how-setup.html) in
3130
+ // the Amazon S3 User Guide.
3131
+ //
3132
+ // This member is required.
3133
+ Role *string
3134
+
3135
+ // A container for one or more replication rules. A replication configuration must
3136
+ // have at least one rule and can contain a maximum of 1,000 rules.
3137
+ //
3138
+ // This member is required.
3139
+ Rules []ReplicationRule
3140
+
3141
+ noSmithyDocumentSerde
3142
+ }
3143
+
3144
+ // Specifies which Amazon S3 objects to replicate and where to store the replicas.
3145
+ type ReplicationRule struct {
3146
+
3147
+ // A container for information about the replication destination and its
3148
+ // configurations including enabling the S3 Replication Time Control (S3 RTC).
3149
+ //
3150
+ // This member is required.
3151
+ Destination *Destination
3152
+
3153
+ // Specifies whether the rule is enabled.
3154
+ //
3155
+ // This member is required.
3156
+ Status ReplicationRuleStatus
3157
+
3158
+ // Specifies whether Amazon S3 replicates delete markers. If you specify a Filter
3159
+ // in your replication configuration, you must also include a
3160
+ // DeleteMarkerReplication element. If your Filter includes a Tag element, the
3161
+ // DeleteMarkerReplicationStatus must be set to Disabled, because Amazon S3 does
3162
+ // not support replicating delete markers for tag-based rules. For an example
3163
+ // configuration, see Basic Rule Configuration
3164
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-config-min-rule-config).
3165
+ // For more information about delete marker replication, see Basic Rule
3166
+ // Configuration
3167
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/delete-marker-replication.html).
3168
+ // If you are using an earlier version of the replication configuration, Amazon S3
3169
+ // handles replication of delete markers differently. For more information, see
3170
+ // Backward Compatibility
3171
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-backward-compat-considerations).
3172
+ DeleteMarkerReplication *DeleteMarkerReplication
3173
+
3174
+ //
3175
+ ExistingObjectReplication *ExistingObjectReplication
3176
+
3177
+ // A filter that identifies the subset of objects to which the replication rule
3178
+ // applies. A Filter must specify exactly one Prefix, Tag, or an And child element.
3179
+ Filter ReplicationRuleFilter
3180
+
3181
+ // A unique identifier for the rule. The maximum value is 255 characters.
3182
+ ID *string
3183
+
3184
+ // An object key name prefix that identifies the object or objects to which the
3185
+ // rule applies. The maximum prefix length is 1,024 characters. To include all
3186
+ // objects in a bucket, specify an empty string. Replacement must be made for
3187
+ // object keys containing special characters (such as carriage returns) when using
3188
+ // XML requests. For more information, see XML related object key constraints
3189
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
3190
+ //
3191
+ // Deprecated: This member has been deprecated.
3192
+ Prefix *string
3193
+
3194
+ // The priority indicates which rule has precedence whenever two or more
3195
+ // replication rules conflict. Amazon S3 will attempt to replicate objects
3196
+ // according to all replication rules. However, if there are two or more rules with
3197
+ // the same destination bucket, then objects will be replicated according to the
3198
+ // rule with the highest priority. The higher the number, the higher the priority.
3199
+ // For more information, see Replication
3200
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/replication.html) in the Amazon
3201
+ // S3 User Guide.
3202
+ Priority int32
3203
+
3204
+ // A container that describes additional filters for identifying the source objects
3205
+ // that you want to replicate. You can choose to enable or disable the replication
3206
+ // of these objects. Currently, Amazon S3 supports only the filter that you can
3207
+ // specify for objects created with server-side encryption using a customer managed
3208
+ // key stored in Amazon Web Services Key Management Service (SSE-KMS).
3209
+ SourceSelectionCriteria *SourceSelectionCriteria
3210
+
3211
+ noSmithyDocumentSerde
3212
+ }
3213
+
3214
+ // A container for specifying rule filters. The filters determine the subset of
3215
+ // objects to which the rule applies. This element is required only if you specify
3216
+ // more than one filter. For example:
3217
+ //
3218
+ // * If you specify both a Prefix and a Tag
3219
+ // filter, wrap these filters in an And tag.
3220
+ //
3221
+ // * If you specify a filter based on
3222
+ // multiple tags, wrap the Tag elements in an And tag.
3223
+ type ReplicationRuleAndOperator struct {
3224
+
3225
+ // An object key name prefix that identifies the subset of objects to which the
3226
+ // rule applies.
3227
+ Prefix *string
3228
+
3229
+ // An array of tags containing key and value pairs.
3230
+ Tags []Tag
3231
+
3232
+ noSmithyDocumentSerde
3233
+ }
3234
+
3235
+ // A filter that identifies the subset of objects to which the replication rule
3236
+ // applies. A Filter must specify exactly one Prefix, Tag, or an And child element.
3237
+ //
3238
+ // The following types satisfy this interface:
3239
+ //
3240
+ // ReplicationRuleFilterMemberAnd
3241
+ // ReplicationRuleFilterMemberPrefix
3242
+ // ReplicationRuleFilterMemberTag
3243
+ type ReplicationRuleFilter interface {
3244
+ isReplicationRuleFilter()
3245
+ }
3246
+
3247
+ // A container for specifying rule filters. The filters determine the subset of
3248
+ // objects to which the rule applies. This element is required only if you specify
3249
+ // more than one filter. For example:
3250
+ //
3251
+ // * If you specify both a Prefix and a Tag
3252
+ // filter, wrap these filters in an And tag.
3253
+ //
3254
+ // * If you specify a filter based on
3255
+ // multiple tags, wrap the Tag elements in an And tag.
3256
+ type ReplicationRuleFilterMemberAnd struct {
3257
+ Value ReplicationRuleAndOperator
3258
+
3259
+ noSmithyDocumentSerde
3260
+ }
3261
+
3262
+ func (*ReplicationRuleFilterMemberAnd) isReplicationRuleFilter() {}
3263
+
3264
+ // An object key name prefix that identifies the subset of objects to which the
3265
+ // rule applies. Replacement must be made for object keys containing special
3266
+ // characters (such as carriage returns) when using XML requests. For more
3267
+ // information, see XML related object key constraints
3268
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints).
3269
+ type ReplicationRuleFilterMemberPrefix struct {
3270
+ Value string
3271
+
3272
+ noSmithyDocumentSerde
3273
+ }
3274
+
3275
+ func (*ReplicationRuleFilterMemberPrefix) isReplicationRuleFilter() {}
3276
+
3277
+ // A container for specifying a tag key and value. The rule applies only to objects
3278
+ // that have the tag in their tag set.
3279
+ type ReplicationRuleFilterMemberTag struct {
3280
+ Value Tag
3281
+
3282
+ noSmithyDocumentSerde
3283
+ }
3284
+
3285
+ func (*ReplicationRuleFilterMemberTag) isReplicationRuleFilter() {}
3286
+
3287
+ // A container specifying S3 Replication Time Control (S3 RTC) related information,
3288
+ // including whether S3 RTC is enabled and the time when all objects and operations
3289
+ // on objects must be replicated. Must be specified together with a Metrics block.
3290
+ type ReplicationTime struct {
3291
+
3292
+ // Specifies whether the replication time is enabled.
3293
+ //
3294
+ // This member is required.
3295
+ Status ReplicationTimeStatus
3296
+
3297
+ // A container specifying the time by which replication should be complete for all
3298
+ // objects and operations on objects.
3299
+ //
3300
+ // This member is required.
3301
+ Time *ReplicationTimeValue
3302
+
3303
+ noSmithyDocumentSerde
3304
+ }
3305
+
3306
+ // A container specifying the time value for S3 Replication Time Control (S3 RTC)
3307
+ // and replication metrics EventThreshold.
3308
+ type ReplicationTimeValue struct {
3309
+
3310
+ // Contains an integer specifying time in minutes. Valid value: 15
3311
+ Minutes int32
3312
+
3313
+ noSmithyDocumentSerde
3314
+ }
3315
+
3316
+ // Container for Payer.
3317
+ type RequestPaymentConfiguration struct {
3318
+
3319
+ // Specifies who pays for the download and request fees.
3320
+ //
3321
+ // This member is required.
3322
+ Payer Payer
3323
+
3324
+ noSmithyDocumentSerde
3325
+ }
3326
+
3327
+ // Container for specifying if periodic QueryProgress messages should be sent.
3328
+ type RequestProgress struct {
3329
+
3330
+ // Specifies whether periodic QueryProgress frames should be sent. Valid values:
3331
+ // TRUE, FALSE. Default value: FALSE.
3332
+ Enabled bool
3333
+
3334
+ noSmithyDocumentSerde
3335
+ }
3336
+
3337
+ // Container for restore job parameters.
3338
+ type RestoreRequest struct {
3339
+
3340
+ // Lifetime of the active copy in days. Do not use with restores that specify
3341
+ // OutputLocation. The Days element is required for regular restores, and must not
3342
+ // be provided for select requests.
3343
+ Days int32
3344
+
3345
+ // The optional description for the job.
3346
+ Description *string
3347
+
3348
+ // S3 Glacier related parameters pertaining to this job. Do not use with restores
3349
+ // that specify OutputLocation.
3350
+ GlacierJobParameters *GlacierJobParameters
3351
+
3352
+ // Describes the location where the restore job's output is stored.
3353
+ OutputLocation *OutputLocation
3354
+
3355
+ // Describes the parameters for Select job types.
3356
+ SelectParameters *SelectParameters
3357
+
3358
+ // Retrieval tier at which the restore will be processed.
3359
+ Tier Tier
3360
+
3361
+ // Type of restore request.
3362
+ Type RestoreRequestType
3363
+
3364
+ noSmithyDocumentSerde
3365
+ }
3366
+
3367
+ // Specifies the redirect behavior and when a redirect is applied. For more
3368
+ // information about routing rules, see Configuring advanced conditional redirects
3369
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/how-to-page-redirect.html#advanced-conditional-redirects)
3370
+ // in the Amazon S3 User Guide.
3371
+ type RoutingRule struct {
3372
+
3373
+ // Container for redirect information. You can redirect requests to another host,
3374
+ // to another page, or with another protocol. In the event of an error, you can
3375
+ // specify a different error code to return.
3376
+ //
3377
+ // This member is required.
3378
+ Redirect *Redirect
3379
+
3380
+ // A container for describing a condition that must be met for the specified
3381
+ // redirect to apply. For example, 1. If request is for pages in the /docs folder,
3382
+ // redirect to the /documents folder. 2. If request results in HTTP error 4xx,
3383
+ // redirect request to another host where you might process the error.
3384
+ Condition *Condition
3385
+
3386
+ noSmithyDocumentSerde
3387
+ }
3388
+
3389
+ // A container for object key name prefix and suffix filtering rules.
3390
+ type S3KeyFilter struct {
3391
+
3392
+ // A list of containers for the key-value pair that defines the criteria for the
3393
+ // filter rule.
3394
+ FilterRules []FilterRule
3395
+
3396
+ noSmithyDocumentSerde
3397
+ }
3398
+
3399
+ // Describes an Amazon S3 location that will receive the results of the restore
3400
+ // request.
3401
+ type S3Location struct {
3402
+
3403
+ // The name of the bucket where the restore results will be placed.
3404
+ //
3405
+ // This member is required.
3406
+ BucketName *string
3407
+
3408
+ // The prefix that is prepended to the restore results for this request.
3409
+ //
3410
+ // This member is required.
3411
+ Prefix *string
3412
+
3413
+ // A list of grants that control access to the staged results.
3414
+ AccessControlList []Grant
3415
+
3416
+ // The canned ACL to apply to the restore results.
3417
+ CannedACL ObjectCannedACL
3418
+
3419
+ // Contains the type of server-side encryption used.
3420
+ Encryption *Encryption
3421
+
3422
+ // The class of storage used to store the restore results.
3423
+ StorageClass StorageClass
3424
+
3425
+ // The tag-set that is applied to the restore results.
3426
+ Tagging *Tagging
3427
+
3428
+ // A list of metadata to store with the restore results in S3.
3429
+ UserMetadata []MetadataEntry
3430
+
3431
+ noSmithyDocumentSerde
3432
+ }
3433
+
3434
+ // Specifies the byte range of the object to get the records from. A record is
3435
+ // processed when its first byte is contained by the range. This parameter is
3436
+ // optional, but when specified, it must not be empty. See RFC 2616, Section
3437
+ // 14.35.1 about how to specify the start and end of the range.
3438
+ type ScanRange struct {
3439
+
3440
+ // Specifies the end of the byte range. This parameter is optional. Valid values:
3441
+ // non-negative integers. The default value is one less than the size of the object
3442
+ // being queried. If only the End parameter is supplied, it is interpreted to mean
3443
+ // scan the last N bytes of the file. For example, 50 means scan the last 50 bytes.
3444
+ End int64
3445
+
3446
+ // Specifies the start of the byte range. This parameter is optional. Valid values:
3447
+ // non-negative integers. The default value is 0. If only start is supplied, it
3448
+ // means scan from that point to the end of the file. For example, 50 means scan
3449
+ // from byte 50 until the end of the file.
3450
+ Start int64
3451
+
3452
+ noSmithyDocumentSerde
3453
+ }
3454
+
3455
+ // The container for selecting objects from a content event stream.
3456
+ //
3457
+ // The following types satisfy this interface:
3458
+ //
3459
+ // SelectObjectContentEventStreamMemberCont
3460
+ // SelectObjectContentEventStreamMemberEnd
3461
+ // SelectObjectContentEventStreamMemberProgress
3462
+ // SelectObjectContentEventStreamMemberRecords
3463
+ // SelectObjectContentEventStreamMemberStats
3464
+ type SelectObjectContentEventStream interface {
3465
+ isSelectObjectContentEventStream()
3466
+ }
3467
+
3468
+ // The Continuation Event.
3469
+ type SelectObjectContentEventStreamMemberCont struct {
3470
+ Value ContinuationEvent
3471
+
3472
+ noSmithyDocumentSerde
3473
+ }
3474
+
3475
+ func (*SelectObjectContentEventStreamMemberCont) isSelectObjectContentEventStream() {}
3476
+
3477
+ // The End Event.
3478
+ type SelectObjectContentEventStreamMemberEnd struct {
3479
+ Value EndEvent
3480
+
3481
+ noSmithyDocumentSerde
3482
+ }
3483
+
3484
+ func (*SelectObjectContentEventStreamMemberEnd) isSelectObjectContentEventStream() {}
3485
+
3486
+ // The Progress Event.
3487
+ type SelectObjectContentEventStreamMemberProgress struct {
3488
+ Value ProgressEvent
3489
+
3490
+ noSmithyDocumentSerde
3491
+ }
3492
+
3493
+ func (*SelectObjectContentEventStreamMemberProgress) isSelectObjectContentEventStream() {}
3494
+
3495
+ // The Records Event.
3496
+ type SelectObjectContentEventStreamMemberRecords struct {
3497
+ Value RecordsEvent
3498
+
3499
+ noSmithyDocumentSerde
3500
+ }
3501
+
3502
+ func (*SelectObjectContentEventStreamMemberRecords) isSelectObjectContentEventStream() {}
3503
+
3504
+ // The Stats Event.
3505
+ type SelectObjectContentEventStreamMemberStats struct {
3506
+ Value StatsEvent
3507
+
3508
+ noSmithyDocumentSerde
3509
+ }
3510
+
3511
+ func (*SelectObjectContentEventStreamMemberStats) isSelectObjectContentEventStream() {}
3512
+
3513
+ // Describes the parameters for Select job types.
3514
+ type SelectParameters struct {
3515
+
3516
+ // The expression that is used to query the object.
3517
+ //
3518
+ // This member is required.
3519
+ Expression *string
3520
+
3521
+ // The type of the provided expression (for example, SQL).
3522
+ //
3523
+ // This member is required.
3524
+ ExpressionType ExpressionType
3525
+
3526
+ // Describes the serialization format of the object.
3527
+ //
3528
+ // This member is required.
3529
+ InputSerialization *InputSerialization
3530
+
3531
+ // Describes how the results of the Select job are serialized.
3532
+ //
3533
+ // This member is required.
3534
+ OutputSerialization *OutputSerialization
3535
+
3536
+ noSmithyDocumentSerde
3537
+ }
3538
+
3539
+ // Describes the default server-side encryption to apply to new objects in the
3540
+ // bucket. If a PUT Object request doesn't specify any server-side encryption, this
3541
+ // default encryption will be applied. If you don't specify a customer managed key
3542
+ // at configuration, Amazon S3 automatically creates an Amazon Web Services KMS key
3543
+ // in your Amazon Web Services account the first time that you add an object
3544
+ // encrypted with SSE-KMS to a bucket. By default, Amazon S3 uses this KMS key for
3545
+ // SSE-KMS. For more information, see PUT Bucket encryption
3546
+ // (https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTencryption.html)
3547
+ // in the Amazon S3 API Reference.
3548
+ type ServerSideEncryptionByDefault struct {
3549
+
3550
+ // Server-side encryption algorithm to use for the default encryption.
3551
+ //
3552
+ // This member is required.
3553
+ SSEAlgorithm ServerSideEncryption
3554
+
3555
+ // Amazon Web Services Key Management Service (KMS) customer Amazon Web Services
3556
+ // KMS key ID to use for the default encryption. This parameter is allowed if and
3557
+ // only if SSEAlgorithm is set to aws:kms. You can specify the key ID or the Amazon
3558
+ // Resource Name (ARN) of the KMS key. However, if you are using encryption with
3559
+ // cross-account or Amazon Web Services service operations you must use a fully
3560
+ // qualified KMS key ARN. For more information, see Using encryption for
3561
+ // cross-account operations
3562
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html#bucket-encryption-update-bucket-policy).
3563
+ // For example:
3564
+ //
3565
+ // * Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
3566
+ //
3567
+ // * Key ARN:
3568
+ // arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
3569
+ //
3570
+ // Amazon
3571
+ // S3 only supports symmetric KMS keys and not asymmetric KMS keys. For more
3572
+ // information, see Using symmetric and asymmetric keys
3573
+ // (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html)
3574
+ // in the Amazon Web Services Key Management Service Developer Guide.
3575
+ KMSMasterKeyID *string
3576
+
3577
+ noSmithyDocumentSerde
3578
+ }
3579
+
3580
+ // Specifies the default server-side-encryption configuration.
3581
+ type ServerSideEncryptionConfiguration struct {
3582
+
3583
+ // Container for information about a particular server-side encryption
3584
+ // configuration rule.
3585
+ //
3586
+ // This member is required.
3587
+ Rules []ServerSideEncryptionRule
3588
+
3589
+ noSmithyDocumentSerde
3590
+ }
3591
+
3592
+ // Specifies the default server-side encryption configuration.
3593
+ type ServerSideEncryptionRule struct {
3594
+
3595
+ // Specifies the default server-side encryption to apply to new objects in the
3596
+ // bucket. If a PUT Object request doesn't specify any server-side encryption, this
3597
+ // default encryption will be applied.
3598
+ ApplyServerSideEncryptionByDefault *ServerSideEncryptionByDefault
3599
+
3600
+ // Specifies whether Amazon S3 should use an S3 Bucket Key with server-side
3601
+ // encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects
3602
+ // are not affected. Setting the BucketKeyEnabled element to true causes Amazon S3
3603
+ // to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled. For more
3604
+ // information, see Amazon S3 Bucket Keys
3605
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-key.html) in the Amazon
3606
+ // S3 User Guide.
3607
+ BucketKeyEnabled bool
3608
+
3609
+ noSmithyDocumentSerde
3610
+ }
3611
+
3612
+ // A container that describes additional filters for identifying the source objects
3613
+ // that you want to replicate. You can choose to enable or disable the replication
3614
+ // of these objects. Currently, Amazon S3 supports only the filter that you can
3615
+ // specify for objects created with server-side encryption using a customer managed
3616
+ // key stored in Amazon Web Services Key Management Service (SSE-KMS).
3617
+ type SourceSelectionCriteria struct {
3618
+
3619
+ // A filter that you can specify for selections for modifications on replicas.
3620
+ // Amazon S3 doesn't replicate replica modifications by default. In the latest
3621
+ // version of replication configuration (when Filter is specified), you can specify
3622
+ // this element and set the status to Enabled to replicate modifications on
3623
+ // replicas. If you don't specify the Filter element, Amazon S3 assumes that the
3624
+ // replication configuration is the earlier version, V1. In the earlier version,
3625
+ // this element is not allowed
3626
+ ReplicaModifications *ReplicaModifications
3627
+
3628
+ // A container for filter information for the selection of Amazon S3 objects
3629
+ // encrypted with Amazon Web Services KMS. If you include SourceSelectionCriteria
3630
+ // in the replication configuration, this element is required.
3631
+ SseKmsEncryptedObjects *SseKmsEncryptedObjects
3632
+
3633
+ noSmithyDocumentSerde
3634
+ }
3635
+
3636
+ // Specifies the use of SSE-KMS to encrypt delivered inventory reports.
3637
+ type SSEKMS struct {
3638
+
3639
+ // Specifies the ID of the Amazon Web Services Key Management Service (Amazon Web
3640
+ // Services KMS) symmetric customer managed key to use for encrypting inventory
3641
+ // reports.
3642
+ //
3643
+ // This member is required.
3644
+ KeyId *string
3645
+
3646
+ noSmithyDocumentSerde
3647
+ }
3648
+
3649
+ // A container for filter information for the selection of S3 objects encrypted
3650
+ // with Amazon Web Services KMS.
3651
+ type SseKmsEncryptedObjects struct {
3652
+
3653
+ // Specifies whether Amazon S3 replicates objects created with server-side
3654
+ // encryption using an Amazon Web Services KMS key stored in Amazon Web Services
3655
+ // Key Management Service.
3656
+ //
3657
+ // This member is required.
3658
+ Status SseKmsEncryptedObjectsStatus
3659
+
3660
+ noSmithyDocumentSerde
3661
+ }
3662
+
3663
+ // Specifies the use of SSE-S3 to encrypt delivered inventory reports.
3664
+ type SSES3 struct {
3665
+ noSmithyDocumentSerde
3666
+ }
3667
+
3668
+ // Container for the stats details.
3669
+ type Stats struct {
3670
+
3671
+ // The total number of uncompressed object bytes processed.
3672
+ BytesProcessed int64
3673
+
3674
+ // The total number of bytes of records payload data returned.
3675
+ BytesReturned int64
3676
+
3677
+ // The total number of object bytes scanned.
3678
+ BytesScanned int64
3679
+
3680
+ noSmithyDocumentSerde
3681
+ }
3682
+
3683
+ // Container for the Stats Event.
3684
+ type StatsEvent struct {
3685
+
3686
+ // The Stats event details.
3687
+ Details *Stats
3688
+
3689
+ noSmithyDocumentSerde
3690
+ }
3691
+
3692
+ // Specifies data related to access patterns to be collected and made available to
3693
+ // analyze the tradeoffs between different storage classes for an Amazon S3 bucket.
3694
+ type StorageClassAnalysis struct {
3695
+
3696
+ // Specifies how data related to the storage class analysis for an Amazon S3 bucket
3697
+ // should be exported.
3698
+ DataExport *StorageClassAnalysisDataExport
3699
+
3700
+ noSmithyDocumentSerde
3701
+ }
3702
+
3703
+ // Container for data related to the storage class analysis for an Amazon S3 bucket
3704
+ // for export.
3705
+ type StorageClassAnalysisDataExport struct {
3706
+
3707
+ // The place to store the data for an analysis.
3708
+ //
3709
+ // This member is required.
3710
+ Destination *AnalyticsExportDestination
3711
+
3712
+ // The version of the output schema to use when exporting data. Must be V_1.
3713
+ //
3714
+ // This member is required.
3715
+ OutputSchemaVersion StorageClassAnalysisSchemaVersion
3716
+
3717
+ noSmithyDocumentSerde
3718
+ }
3719
+
3720
+ // A container of a key value name pair.
3721
+ type Tag struct {
3722
+
3723
+ // Name of the object key.
3724
+ //
3725
+ // This member is required.
3726
+ Key *string
3727
+
3728
+ // Value of the tag.
3729
+ //
3730
+ // This member is required.
3731
+ Value *string
3732
+
3733
+ noSmithyDocumentSerde
3734
+ }
3735
+
3736
+ // Container for TagSet elements.
3737
+ type Tagging struct {
3738
+
3739
+ // A collection for a set of tags
3740
+ //
3741
+ // This member is required.
3742
+ TagSet []Tag
3743
+
3744
+ noSmithyDocumentSerde
3745
+ }
3746
+
3747
+ // Container for granting information. Buckets that use the bucket owner enforced
3748
+ // setting for Object Ownership don't support target grants. For more information,
3749
+ // see Permissions server access log delivery
3750
+ // (https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-server-access-logging.html#grant-log-delivery-permissions-general)
3751
+ // in the Amazon S3 User Guide.
3752
+ type TargetGrant struct {
3753
+
3754
+ // Container for the person being granted permissions.
3755
+ Grantee *Grantee
3756
+
3757
+ // Logging permissions assigned to the grantee for the bucket.
3758
+ Permission BucketLogsPermission
3759
+
3760
+ noSmithyDocumentSerde
3761
+ }
3762
+
3763
+ // The S3 Intelligent-Tiering storage class is designed to optimize storage costs
3764
+ // by automatically moving data to the most cost-effective storage access tier,
3765
+ // without additional operational overhead.
3766
+ type Tiering struct {
3767
+
3768
+ // S3 Intelligent-Tiering access tier. See Storage class for automatically
3769
+ // optimizing frequently and infrequently accessed objects
3770
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access)
3771
+ // for a list of access tiers in the S3 Intelligent-Tiering storage class.
3772
+ //
3773
+ // This member is required.
3774
+ AccessTier IntelligentTieringAccessTier
3775
+
3776
+ // The number of consecutive days of no access after which an object will be
3777
+ // eligible to be transitioned to the corresponding tier. The minimum number of
3778
+ // days specified for Archive Access tier must be at least 90 days and Deep Archive
3779
+ // Access tier must be at least 180 days. The maximum can be up to 2 years (730
3780
+ // days).
3781
+ //
3782
+ // This member is required.
3783
+ Days int32
3784
+
3785
+ noSmithyDocumentSerde
3786
+ }
3787
+
3788
+ // A container for specifying the configuration for publication of messages to an
3789
+ // Amazon Simple Notification Service (Amazon SNS) topic when Amazon S3 detects
3790
+ // specified events.
3791
+ type TopicConfiguration struct {
3792
+
3793
+ // The Amazon S3 bucket event about which to send notifications. For more
3794
+ // information, see Supported Event Types
3795
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) in the
3796
+ // Amazon S3 User Guide.
3797
+ //
3798
+ // This member is required.
3799
+ Events []Event
3800
+
3801
+ // The Amazon Resource Name (ARN) of the Amazon SNS topic to which Amazon S3
3802
+ // publishes a message when it detects events of the specified type.
3803
+ //
3804
+ // This member is required.
3805
+ TopicArn *string
3806
+
3807
+ // Specifies object key name filtering rules. For information about key name
3808
+ // filtering, see Configuring Event Notifications
3809
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) in the
3810
+ // Amazon S3 User Guide.
3811
+ Filter *NotificationConfigurationFilter
3812
+
3813
+ // An optional unique identifier for configurations in a notification
3814
+ // configuration. If you don't provide one, Amazon S3 will assign an ID.
3815
+ Id *string
3816
+
3817
+ noSmithyDocumentSerde
3818
+ }
3819
+
3820
+ // Specifies when an object transitions to a specified storage class. For more
3821
+ // information about Amazon S3 lifecycle configuration rules, see Transitioning
3822
+ // Objects Using Amazon S3 Lifecycle
3823
+ // (https://docs.aws.amazon.com/AmazonS3/latest/dev/lifecycle-transition-general-considerations.html)
3824
+ // in the Amazon S3 User Guide.
3825
+ type Transition struct {
3826
+
3827
+ // Indicates when objects are transitioned to the specified storage class. The date
3828
+ // value must be in ISO 8601 format. The time is always midnight UTC.
3829
+ Date *time.Time
3830
+
3831
+ // Indicates the number of days after creation when objects are transitioned to the
3832
+ // specified storage class. The value must be a positive integer.
3833
+ Days int32
3834
+
3835
+ // The storage class to which you want the object to transition.
3836
+ StorageClass TransitionStorageClass
3837
+
3838
+ noSmithyDocumentSerde
3839
+ }
3840
+
3841
+ // Describes the versioning state of an Amazon S3 bucket. For more information, see
3842
+ // PUT Bucket versioning
3843
+ // (https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html)
3844
+ // in the Amazon S3 API Reference.
3845
+ type VersioningConfiguration struct {
3846
+
3847
+ // Specifies whether MFA delete is enabled in the bucket versioning configuration.
3848
+ // This element is only returned if the bucket has been configured with MFA delete.
3849
+ // If the bucket has never been so configured, this element is not returned.
3850
+ MFADelete MFADelete
3851
+
3852
+ // The versioning state of the bucket.
3853
+ Status BucketVersioningStatus
3854
+
3855
+ noSmithyDocumentSerde
3856
+ }
3857
+
3858
+ // Specifies website configuration parameters for an Amazon S3 bucket.
3859
+ type WebsiteConfiguration struct {
3860
+
3861
+ // The name of the error document for the website.
3862
+ ErrorDocument *ErrorDocument
3863
+
3864
+ // The name of the index document for the website.
3865
+ IndexDocument *IndexDocument
3866
+
3867
+ // The redirect behavior for every request to this bucket's website endpoint. If
3868
+ // you specify this property, you can't specify any other property.
3869
+ RedirectAllRequestsTo *RedirectAllRequestsTo
3870
+
3871
+ // Rules that define when a redirect is applied and the redirect behavior.
3872
+ RoutingRules []RoutingRule
3873
+
3874
+ noSmithyDocumentSerde
3875
+ }
3876
+
3877
+ type noSmithyDocumentSerde = smithydocument.NoSerde
3878
+
3879
+ // UnknownUnionMember is returned when a union member is returned over the wire,
3880
+ // but has an unknown tag.
3881
+ type UnknownUnionMember struct {
3882
+ Tag string
3883
+ Value []byte
3884
+
3885
+ noSmithyDocumentSerde
3886
+ }
3887
+
3888
+ func (*UnknownUnionMember) isAnalyticsFilter() {}
3889
+ func (*UnknownUnionMember) isLifecycleRuleFilter() {}
3890
+ func (*UnknownUnionMember) isMetricsFilter() {}
3891
+ func (*UnknownUnionMember) isReplicationRuleFilter() {}
3892
+ func (*UnknownUnionMember) isSelectObjectContentEventStream() {}