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,1972 @@
1
+ //go:build go1.18
2
+ // +build go1.18
3
+
4
+ // Copyright (c) Microsoft Corporation. All rights reserved.
5
+ // Licensed under the MIT License. See License.txt in the project root for license information.
6
+ // Code generated by Microsoft (R) AutoRest Code Generator.
7
+ // Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
+ // DO NOT EDIT.
9
+
10
+ package generated
11
+
12
+ import (
13
+ "github.com/Azure/azure-sdk-for-go/sdk/azcore"
14
+ "io"
15
+ "time"
16
+ )
17
+
18
+ // AppendBlobClientAppendBlockFromURLResponse contains the response from method AppendBlobClient.AppendBlockFromURL.
19
+ type AppendBlobClientAppendBlockFromURLResponse struct {
20
+ // BlobAppendOffset contains the information returned from the x-ms-blob-append-offset header response.
21
+ BlobAppendOffset *string
22
+
23
+ // BlobCommittedBlockCount contains the information returned from the x-ms-blob-committed-block-count header response.
24
+ BlobCommittedBlockCount *int32
25
+
26
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
27
+ ContentCRC64 []byte
28
+
29
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
30
+ ContentMD5 []byte
31
+
32
+ // Date contains the information returned from the Date header response.
33
+ Date *time.Time
34
+
35
+ // ETag contains the information returned from the ETag header response.
36
+ ETag *azcore.ETag
37
+
38
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
39
+ EncryptionKeySHA256 *string
40
+
41
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
42
+ EncryptionScope *string
43
+
44
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
45
+ IsServerEncrypted *bool
46
+
47
+ // LastModified contains the information returned from the Last-Modified header response.
48
+ LastModified *time.Time
49
+
50
+ // RequestID contains the information returned from the x-ms-request-id header response.
51
+ RequestID *string
52
+
53
+ // Version contains the information returned from the x-ms-version header response.
54
+ Version *string
55
+ }
56
+
57
+ // AppendBlobClientAppendBlockResponse contains the response from method AppendBlobClient.AppendBlock.
58
+ type AppendBlobClientAppendBlockResponse struct {
59
+ // BlobAppendOffset contains the information returned from the x-ms-blob-append-offset header response.
60
+ BlobAppendOffset *string
61
+
62
+ // BlobCommittedBlockCount contains the information returned from the x-ms-blob-committed-block-count header response.
63
+ BlobCommittedBlockCount *int32
64
+
65
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
66
+ ClientRequestID *string
67
+
68
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
69
+ ContentCRC64 []byte
70
+
71
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
72
+ ContentMD5 []byte
73
+
74
+ // Date contains the information returned from the Date header response.
75
+ Date *time.Time
76
+
77
+ // ETag contains the information returned from the ETag header response.
78
+ ETag *azcore.ETag
79
+
80
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
81
+ EncryptionKeySHA256 *string
82
+
83
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
84
+ EncryptionScope *string
85
+
86
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
87
+ IsServerEncrypted *bool
88
+
89
+ // LastModified contains the information returned from the Last-Modified header response.
90
+ LastModified *time.Time
91
+
92
+ // RequestID contains the information returned from the x-ms-request-id header response.
93
+ RequestID *string
94
+
95
+ // Version contains the information returned from the x-ms-version header response.
96
+ Version *string
97
+ }
98
+
99
+ // AppendBlobClientCreateResponse contains the response from method AppendBlobClient.Create.
100
+ type AppendBlobClientCreateResponse struct {
101
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
102
+ ClientRequestID *string
103
+
104
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
105
+ ContentMD5 []byte
106
+
107
+ // Date contains the information returned from the Date header response.
108
+ Date *time.Time
109
+
110
+ // ETag contains the information returned from the ETag header response.
111
+ ETag *azcore.ETag
112
+
113
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
114
+ EncryptionKeySHA256 *string
115
+
116
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
117
+ EncryptionScope *string
118
+
119
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
120
+ IsServerEncrypted *bool
121
+
122
+ // LastModified contains the information returned from the Last-Modified header response.
123
+ LastModified *time.Time
124
+
125
+ // RequestID contains the information returned from the x-ms-request-id header response.
126
+ RequestID *string
127
+
128
+ // Version contains the information returned from the x-ms-version header response.
129
+ Version *string
130
+
131
+ // VersionID contains the information returned from the x-ms-version-id header response.
132
+ VersionID *string
133
+ }
134
+
135
+ // AppendBlobClientSealResponse contains the response from method AppendBlobClient.Seal.
136
+ type AppendBlobClientSealResponse struct {
137
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
138
+ ClientRequestID *string
139
+
140
+ // Date contains the information returned from the Date header response.
141
+ Date *time.Time
142
+
143
+ // ETag contains the information returned from the ETag header response.
144
+ ETag *azcore.ETag
145
+
146
+ // IsSealed contains the information returned from the x-ms-blob-sealed header response.
147
+ IsSealed *bool
148
+
149
+ // LastModified contains the information returned from the Last-Modified header response.
150
+ LastModified *time.Time
151
+
152
+ // RequestID contains the information returned from the x-ms-request-id header response.
153
+ RequestID *string
154
+
155
+ // Version contains the information returned from the x-ms-version header response.
156
+ Version *string
157
+ }
158
+
159
+ // BlobClientAbortCopyFromURLResponse contains the response from method BlobClient.AbortCopyFromURL.
160
+ type BlobClientAbortCopyFromURLResponse struct {
161
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
162
+ ClientRequestID *string
163
+
164
+ // Date contains the information returned from the Date header response.
165
+ Date *time.Time
166
+
167
+ // RequestID contains the information returned from the x-ms-request-id header response.
168
+ RequestID *string
169
+
170
+ // Version contains the information returned from the x-ms-version header response.
171
+ Version *string
172
+ }
173
+
174
+ // BlobClientAcquireLeaseResponse contains the response from method BlobClient.AcquireLease.
175
+ type BlobClientAcquireLeaseResponse struct {
176
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
177
+ ClientRequestID *string
178
+
179
+ // Date contains the information returned from the Date header response.
180
+ Date *time.Time
181
+
182
+ // ETag contains the information returned from the ETag header response.
183
+ ETag *azcore.ETag
184
+
185
+ // LastModified contains the information returned from the Last-Modified header response.
186
+ LastModified *time.Time
187
+
188
+ // LeaseID contains the information returned from the x-ms-lease-id header response.
189
+ LeaseID *string
190
+
191
+ // RequestID contains the information returned from the x-ms-request-id header response.
192
+ RequestID *string
193
+
194
+ // Version contains the information returned from the x-ms-version header response.
195
+ Version *string
196
+ }
197
+
198
+ // BlobClientBreakLeaseResponse contains the response from method BlobClient.BreakLease.
199
+ type BlobClientBreakLeaseResponse struct {
200
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
201
+ ClientRequestID *string
202
+
203
+ // Date contains the information returned from the Date header response.
204
+ Date *time.Time
205
+
206
+ // ETag contains the information returned from the ETag header response.
207
+ ETag *azcore.ETag
208
+
209
+ // LastModified contains the information returned from the Last-Modified header response.
210
+ LastModified *time.Time
211
+
212
+ // LeaseTime contains the information returned from the x-ms-lease-time header response.
213
+ LeaseTime *int32
214
+
215
+ // RequestID contains the information returned from the x-ms-request-id header response.
216
+ RequestID *string
217
+
218
+ // Version contains the information returned from the x-ms-version header response.
219
+ Version *string
220
+ }
221
+
222
+ // BlobClientChangeLeaseResponse contains the response from method BlobClient.ChangeLease.
223
+ type BlobClientChangeLeaseResponse struct {
224
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
225
+ ClientRequestID *string
226
+
227
+ // Date contains the information returned from the Date header response.
228
+ Date *time.Time
229
+
230
+ // ETag contains the information returned from the ETag header response.
231
+ ETag *azcore.ETag
232
+
233
+ // LastModified contains the information returned from the Last-Modified header response.
234
+ LastModified *time.Time
235
+
236
+ // LeaseID contains the information returned from the x-ms-lease-id header response.
237
+ LeaseID *string
238
+
239
+ // RequestID contains the information returned from the x-ms-request-id header response.
240
+ RequestID *string
241
+
242
+ // Version contains the information returned from the x-ms-version header response.
243
+ Version *string
244
+ }
245
+
246
+ // BlobClientCopyFromURLResponse contains the response from method BlobClient.CopyFromURL.
247
+ type BlobClientCopyFromURLResponse struct {
248
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
249
+ ClientRequestID *string
250
+
251
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
252
+ ContentCRC64 []byte
253
+
254
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
255
+ ContentMD5 []byte
256
+
257
+ // CopyID contains the information returned from the x-ms-copy-id header response.
258
+ CopyID *string
259
+
260
+ // CopyStatus contains the information returned from the x-ms-copy-status header response.
261
+ CopyStatus *string
262
+
263
+ // Date contains the information returned from the Date header response.
264
+ Date *time.Time
265
+
266
+ // ETag contains the information returned from the ETag header response.
267
+ ETag *azcore.ETag
268
+
269
+ // LastModified contains the information returned from the Last-Modified header response.
270
+ LastModified *time.Time
271
+
272
+ // RequestID contains the information returned from the x-ms-request-id header response.
273
+ RequestID *string
274
+
275
+ // Version contains the information returned from the x-ms-version header response.
276
+ Version *string
277
+
278
+ // VersionID contains the information returned from the x-ms-version-id header response.
279
+ VersionID *string
280
+ }
281
+
282
+ // BlobClientCreateSnapshotResponse contains the response from method BlobClient.CreateSnapshot.
283
+ type BlobClientCreateSnapshotResponse struct {
284
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
285
+ ClientRequestID *string
286
+
287
+ // Date contains the information returned from the Date header response.
288
+ Date *time.Time
289
+
290
+ // ETag contains the information returned from the ETag header response.
291
+ ETag *azcore.ETag
292
+
293
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
294
+ IsServerEncrypted *bool
295
+
296
+ // LastModified contains the information returned from the Last-Modified header response.
297
+ LastModified *time.Time
298
+
299
+ // RequestID contains the information returned from the x-ms-request-id header response.
300
+ RequestID *string
301
+
302
+ // Snapshot contains the information returned from the x-ms-snapshot header response.
303
+ Snapshot *string
304
+
305
+ // Version contains the information returned from the x-ms-version header response.
306
+ Version *string
307
+
308
+ // VersionID contains the information returned from the x-ms-version-id header response.
309
+ VersionID *string
310
+ }
311
+
312
+ // BlobClientDeleteImmutabilityPolicyResponse contains the response from method BlobClient.DeleteImmutabilityPolicy.
313
+ type BlobClientDeleteImmutabilityPolicyResponse struct {
314
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
315
+ ClientRequestID *string
316
+
317
+ // Date contains the information returned from the Date header response.
318
+ Date *time.Time
319
+
320
+ // RequestID contains the information returned from the x-ms-request-id header response.
321
+ RequestID *string
322
+
323
+ // Version contains the information returned from the x-ms-version header response.
324
+ Version *string
325
+ }
326
+
327
+ // BlobClientDeleteResponse contains the response from method BlobClient.Delete.
328
+ type BlobClientDeleteResponse struct {
329
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
330
+ ClientRequestID *string
331
+
332
+ // Date contains the information returned from the Date header response.
333
+ Date *time.Time
334
+
335
+ // RequestID contains the information returned from the x-ms-request-id header response.
336
+ RequestID *string
337
+
338
+ // Version contains the information returned from the x-ms-version header response.
339
+ Version *string
340
+ }
341
+
342
+ // BlobClientDownloadResponse contains the response from method BlobClient.Download.
343
+ type BlobClientDownloadResponse struct {
344
+ // AcceptRanges contains the information returned from the Accept-Ranges header response.
345
+ AcceptRanges *string
346
+
347
+ // BlobCommittedBlockCount contains the information returned from the x-ms-blob-committed-block-count header response.
348
+ BlobCommittedBlockCount *int32
349
+
350
+ // BlobContentMD5 contains the information returned from the x-ms-blob-content-md5 header response.
351
+ BlobContentMD5 []byte
352
+
353
+ // BlobSequenceNumber contains the information returned from the x-ms-blob-sequence-number header response.
354
+ BlobSequenceNumber *int64
355
+
356
+ // BlobType contains the information returned from the x-ms-blob-type header response.
357
+ BlobType *BlobType
358
+
359
+ // Body contains the streaming response.
360
+ Body io.ReadCloser
361
+
362
+ // CacheControl contains the information returned from the Cache-Control header response.
363
+ CacheControl *string
364
+
365
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
366
+ ClientRequestID *string
367
+
368
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
369
+ ContentCRC64 []byte
370
+
371
+ // ContentDisposition contains the information returned from the Content-Disposition header response.
372
+ ContentDisposition *string
373
+
374
+ // ContentEncoding contains the information returned from the Content-Encoding header response.
375
+ ContentEncoding *string
376
+
377
+ // ContentLanguage contains the information returned from the Content-Language header response.
378
+ ContentLanguage *string
379
+
380
+ // ContentLength contains the information returned from the Content-Length header response.
381
+ ContentLength *int64
382
+
383
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
384
+ ContentMD5 []byte
385
+
386
+ // ContentRange contains the information returned from the Content-Range header response.
387
+ ContentRange *string
388
+
389
+ // ContentType contains the information returned from the Content-Type header response.
390
+ ContentType *string
391
+
392
+ // CopyCompletionTime contains the information returned from the x-ms-copy-completion-time header response.
393
+ CopyCompletionTime *time.Time
394
+
395
+ // CopyID contains the information returned from the x-ms-copy-id header response.
396
+ CopyID *string
397
+
398
+ // CopyProgress contains the information returned from the x-ms-copy-progress header response.
399
+ CopyProgress *string
400
+
401
+ // CopySource contains the information returned from the x-ms-copy-source header response.
402
+ CopySource *string
403
+
404
+ // CopyStatus contains the information returned from the x-ms-copy-status header response.
405
+ CopyStatus *CopyStatusType
406
+
407
+ // CopyStatusDescription contains the information returned from the x-ms-copy-status-description header response.
408
+ CopyStatusDescription *string
409
+
410
+ // Date contains the information returned from the Date header response.
411
+ Date *time.Time
412
+
413
+ // ETag contains the information returned from the ETag header response.
414
+ ETag *azcore.ETag
415
+
416
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
417
+ EncryptionKeySHA256 *string
418
+
419
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
420
+ EncryptionScope *string
421
+
422
+ // ErrorCode contains the information returned from the x-ms-error-code header response.
423
+ ErrorCode *string
424
+
425
+ // ImmutabilityPolicyExpiresOn contains the information returned from the x-ms-immutability-policy-until-date header response.
426
+ ImmutabilityPolicyExpiresOn *time.Time
427
+
428
+ // ImmutabilityPolicyMode contains the information returned from the x-ms-immutability-policy-mode header response.
429
+ ImmutabilityPolicyMode *ImmutabilityPolicyMode
430
+
431
+ // IsCurrentVersion contains the information returned from the x-ms-is-current-version header response.
432
+ IsCurrentVersion *bool
433
+
434
+ // IsSealed contains the information returned from the x-ms-blob-sealed header response.
435
+ IsSealed *bool
436
+
437
+ // IsServerEncrypted contains the information returned from the x-ms-server-encrypted header response.
438
+ IsServerEncrypted *bool
439
+
440
+ // LastAccessed contains the information returned from the x-ms-last-access-time header response.
441
+ LastAccessed *time.Time
442
+
443
+ // LastModified contains the information returned from the Last-Modified header response.
444
+ LastModified *time.Time
445
+
446
+ // LeaseDuration contains the information returned from the x-ms-lease-duration header response.
447
+ LeaseDuration *LeaseDurationType
448
+
449
+ // LeaseState contains the information returned from the x-ms-lease-state header response.
450
+ LeaseState *LeaseStateType
451
+
452
+ // LeaseStatus contains the information returned from the x-ms-lease-status header response.
453
+ LeaseStatus *LeaseStatusType
454
+
455
+ // LegalHold contains the information returned from the x-ms-legal-hold header response.
456
+ LegalHold *bool
457
+
458
+ // Metadata contains the information returned from the x-ms-meta header response.
459
+ Metadata map[string]*string
460
+
461
+ // ObjectReplicationPolicyID contains the information returned from the x-ms-or-policy-id header response.
462
+ ObjectReplicationPolicyID *string
463
+
464
+ // ObjectReplicationRules contains the information returned from the x-ms-or header response.
465
+ ObjectReplicationRules map[string]*string
466
+
467
+ // RequestID contains the information returned from the x-ms-request-id header response.
468
+ RequestID *string
469
+
470
+ // TagCount contains the information returned from the x-ms-tag-count header response.
471
+ TagCount *int64
472
+
473
+ // Version contains the information returned from the x-ms-version header response.
474
+ Version *string
475
+
476
+ // VersionID contains the information returned from the x-ms-version-id header response.
477
+ VersionID *string
478
+ }
479
+
480
+ // BlobClientGetAccountInfoResponse contains the response from method BlobClient.GetAccountInfo.
481
+ type BlobClientGetAccountInfoResponse struct {
482
+ // AccountKind contains the information returned from the x-ms-account-kind header response.
483
+ AccountKind *AccountKind
484
+
485
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
486
+ ClientRequestID *string
487
+
488
+ // Date contains the information returned from the Date header response.
489
+ Date *time.Time
490
+
491
+ // RequestID contains the information returned from the x-ms-request-id header response.
492
+ RequestID *string
493
+
494
+ // SKUName contains the information returned from the x-ms-sku-name header response.
495
+ SKUName *SKUName
496
+
497
+ // Version contains the information returned from the x-ms-version header response.
498
+ Version *string
499
+ }
500
+
501
+ // BlobClientGetPropertiesResponse contains the response from method BlobClient.GetProperties.
502
+ type BlobClientGetPropertiesResponse struct {
503
+ // AcceptRanges contains the information returned from the Accept-Ranges header response.
504
+ AcceptRanges *string
505
+
506
+ // AccessTier contains the information returned from the x-ms-access-tier header response.
507
+ AccessTier *string
508
+
509
+ // AccessTierChangeTime contains the information returned from the x-ms-access-tier-change-time header response.
510
+ AccessTierChangeTime *time.Time
511
+
512
+ // AccessTierInferred contains the information returned from the x-ms-access-tier-inferred header response.
513
+ AccessTierInferred *bool
514
+
515
+ // ArchiveStatus contains the information returned from the x-ms-archive-status header response.
516
+ ArchiveStatus *string
517
+
518
+ // BlobCommittedBlockCount contains the information returned from the x-ms-blob-committed-block-count header response.
519
+ BlobCommittedBlockCount *int32
520
+
521
+ // BlobSequenceNumber contains the information returned from the x-ms-blob-sequence-number header response.
522
+ BlobSequenceNumber *int64
523
+
524
+ // BlobType contains the information returned from the x-ms-blob-type header response.
525
+ BlobType *BlobType
526
+
527
+ // CacheControl contains the information returned from the Cache-Control header response.
528
+ CacheControl *string
529
+
530
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
531
+ ClientRequestID *string
532
+
533
+ // ContentDisposition contains the information returned from the Content-Disposition header response.
534
+ ContentDisposition *string
535
+
536
+ // ContentEncoding contains the information returned from the Content-Encoding header response.
537
+ ContentEncoding *string
538
+
539
+ // ContentLanguage contains the information returned from the Content-Language header response.
540
+ ContentLanguage *string
541
+
542
+ // ContentLength contains the information returned from the Content-Length header response.
543
+ ContentLength *int64
544
+
545
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
546
+ ContentMD5 []byte
547
+
548
+ // ContentType contains the information returned from the Content-Type header response.
549
+ ContentType *string
550
+
551
+ // CopyCompletionTime contains the information returned from the x-ms-copy-completion-time header response.
552
+ CopyCompletionTime *time.Time
553
+
554
+ // CopyID contains the information returned from the x-ms-copy-id header response.
555
+ CopyID *string
556
+
557
+ // CopyProgress contains the information returned from the x-ms-copy-progress header response.
558
+ CopyProgress *string
559
+
560
+ // CopySource contains the information returned from the x-ms-copy-source header response.
561
+ CopySource *string
562
+
563
+ // CopyStatus contains the information returned from the x-ms-copy-status header response.
564
+ CopyStatus *CopyStatusType
565
+
566
+ // CopyStatusDescription contains the information returned from the x-ms-copy-status-description header response.
567
+ CopyStatusDescription *string
568
+
569
+ // CreationTime contains the information returned from the x-ms-creation-time header response.
570
+ CreationTime *time.Time
571
+
572
+ // Date contains the information returned from the Date header response.
573
+ Date *time.Time
574
+
575
+ // DestinationSnapshot contains the information returned from the x-ms-copy-destination-snapshot header response.
576
+ DestinationSnapshot *string
577
+
578
+ // ETag contains the information returned from the ETag header response.
579
+ ETag *azcore.ETag
580
+
581
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
582
+ EncryptionKeySHA256 *string
583
+
584
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
585
+ EncryptionScope *string
586
+
587
+ // ExpiresOn contains the information returned from the x-ms-expiry-time header response.
588
+ ExpiresOn *time.Time
589
+
590
+ // ImmutabilityPolicyExpiresOn contains the information returned from the x-ms-immutability-policy-until-date header response.
591
+ ImmutabilityPolicyExpiresOn *time.Time
592
+
593
+ // ImmutabilityPolicyMode contains the information returned from the x-ms-immutability-policy-mode header response.
594
+ ImmutabilityPolicyMode *ImmutabilityPolicyMode
595
+
596
+ // IsCurrentVersion contains the information returned from the x-ms-is-current-version header response.
597
+ IsCurrentVersion *bool
598
+
599
+ // IsIncrementalCopy contains the information returned from the x-ms-incremental-copy header response.
600
+ IsIncrementalCopy *bool
601
+
602
+ // IsSealed contains the information returned from the x-ms-blob-sealed header response.
603
+ IsSealed *bool
604
+
605
+ // IsServerEncrypted contains the information returned from the x-ms-server-encrypted header response.
606
+ IsServerEncrypted *bool
607
+
608
+ // LastAccessed contains the information returned from the x-ms-last-access-time header response.
609
+ LastAccessed *time.Time
610
+
611
+ // LastModified contains the information returned from the Last-Modified header response.
612
+ LastModified *time.Time
613
+
614
+ // LeaseDuration contains the information returned from the x-ms-lease-duration header response.
615
+ LeaseDuration *LeaseDurationType
616
+
617
+ // LeaseState contains the information returned from the x-ms-lease-state header response.
618
+ LeaseState *LeaseStateType
619
+
620
+ // LeaseStatus contains the information returned from the x-ms-lease-status header response.
621
+ LeaseStatus *LeaseStatusType
622
+
623
+ // LegalHold contains the information returned from the x-ms-legal-hold header response.
624
+ LegalHold *bool
625
+
626
+ // Metadata contains the information returned from the x-ms-meta header response.
627
+ Metadata map[string]*string
628
+
629
+ // ObjectReplicationPolicyID contains the information returned from the x-ms-or-policy-id header response.
630
+ ObjectReplicationPolicyID *string
631
+
632
+ // ObjectReplicationRules contains the information returned from the x-ms-or header response.
633
+ ObjectReplicationRules map[string]*string
634
+
635
+ // RehydratePriority contains the information returned from the x-ms-rehydrate-priority header response.
636
+ RehydratePriority *string
637
+
638
+ // RequestID contains the information returned from the x-ms-request-id header response.
639
+ RequestID *string
640
+
641
+ // TagCount contains the information returned from the x-ms-tag-count header response.
642
+ TagCount *int64
643
+
644
+ // Version contains the information returned from the x-ms-version header response.
645
+ Version *string
646
+
647
+ // VersionID contains the information returned from the x-ms-version-id header response.
648
+ VersionID *string
649
+ }
650
+
651
+ // BlobClientGetTagsResponse contains the response from method BlobClient.GetTags.
652
+ type BlobClientGetTagsResponse struct {
653
+ BlobTags
654
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
655
+ ClientRequestID *string `xml:"ClientRequestID"`
656
+
657
+ // Date contains the information returned from the Date header response.
658
+ Date *time.Time `xml:"Date"`
659
+
660
+ // RequestID contains the information returned from the x-ms-request-id header response.
661
+ RequestID *string `xml:"RequestID"`
662
+
663
+ // Version contains the information returned from the x-ms-version header response.
664
+ Version *string `xml:"Version"`
665
+ }
666
+
667
+ // BlobClientQueryResponse contains the response from method BlobClient.Query.
668
+ type BlobClientQueryResponse struct {
669
+ // AcceptRanges contains the information returned from the Accept-Ranges header response.
670
+ AcceptRanges *string
671
+
672
+ // BlobCommittedBlockCount contains the information returned from the x-ms-blob-committed-block-count header response.
673
+ BlobCommittedBlockCount *int32
674
+
675
+ // BlobContentMD5 contains the information returned from the x-ms-blob-content-md5 header response.
676
+ BlobContentMD5 []byte
677
+
678
+ // BlobSequenceNumber contains the information returned from the x-ms-blob-sequence-number header response.
679
+ BlobSequenceNumber *int64
680
+
681
+ // BlobType contains the information returned from the x-ms-blob-type header response.
682
+ BlobType *BlobType
683
+
684
+ // Body contains the streaming response.
685
+ Body io.ReadCloser
686
+
687
+ // CacheControl contains the information returned from the Cache-Control header response.
688
+ CacheControl *string
689
+
690
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
691
+ ClientRequestID *string
692
+
693
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
694
+ ContentCRC64 []byte
695
+
696
+ // ContentDisposition contains the information returned from the Content-Disposition header response.
697
+ ContentDisposition *string
698
+
699
+ // ContentEncoding contains the information returned from the Content-Encoding header response.
700
+ ContentEncoding *string
701
+
702
+ // ContentLanguage contains the information returned from the Content-Language header response.
703
+ ContentLanguage *string
704
+
705
+ // ContentLength contains the information returned from the Content-Length header response.
706
+ ContentLength *int64
707
+
708
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
709
+ ContentMD5 []byte
710
+
711
+ // ContentRange contains the information returned from the Content-Range header response.
712
+ ContentRange *string
713
+
714
+ // ContentType contains the information returned from the Content-Type header response.
715
+ ContentType *string
716
+
717
+ // CopyCompletionTime contains the information returned from the x-ms-copy-completion-time header response.
718
+ CopyCompletionTime *time.Time
719
+
720
+ // CopyID contains the information returned from the x-ms-copy-id header response.
721
+ CopyID *string
722
+
723
+ // CopyProgress contains the information returned from the x-ms-copy-progress header response.
724
+ CopyProgress *string
725
+
726
+ // CopySource contains the information returned from the x-ms-copy-source header response.
727
+ CopySource *string
728
+
729
+ // CopyStatus contains the information returned from the x-ms-copy-status header response.
730
+ CopyStatus *CopyStatusType
731
+
732
+ // CopyStatusDescription contains the information returned from the x-ms-copy-status-description header response.
733
+ CopyStatusDescription *string
734
+
735
+ // Date contains the information returned from the Date header response.
736
+ Date *time.Time
737
+
738
+ // ETag contains the information returned from the ETag header response.
739
+ ETag *azcore.ETag
740
+
741
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
742
+ EncryptionKeySHA256 *string
743
+
744
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
745
+ EncryptionScope *string
746
+
747
+ // IsServerEncrypted contains the information returned from the x-ms-server-encrypted header response.
748
+ IsServerEncrypted *bool
749
+
750
+ // LastModified contains the information returned from the Last-Modified header response.
751
+ LastModified *time.Time
752
+
753
+ // LeaseDuration contains the information returned from the x-ms-lease-duration header response.
754
+ LeaseDuration *LeaseDurationType
755
+
756
+ // LeaseState contains the information returned from the x-ms-lease-state header response.
757
+ LeaseState *LeaseStateType
758
+
759
+ // LeaseStatus contains the information returned from the x-ms-lease-status header response.
760
+ LeaseStatus *LeaseStatusType
761
+
762
+ // Metadata contains the information returned from the x-ms-meta header response.
763
+ Metadata map[string]*string
764
+
765
+ // RequestID contains the information returned from the x-ms-request-id header response.
766
+ RequestID *string
767
+
768
+ // Version contains the information returned from the x-ms-version header response.
769
+ Version *string
770
+ }
771
+
772
+ // BlobClientReleaseLeaseResponse contains the response from method BlobClient.ReleaseLease.
773
+ type BlobClientReleaseLeaseResponse struct {
774
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
775
+ ClientRequestID *string
776
+
777
+ // Date contains the information returned from the Date header response.
778
+ Date *time.Time
779
+
780
+ // ETag contains the information returned from the ETag header response.
781
+ ETag *azcore.ETag
782
+
783
+ // LastModified contains the information returned from the Last-Modified header response.
784
+ LastModified *time.Time
785
+
786
+ // RequestID contains the information returned from the x-ms-request-id header response.
787
+ RequestID *string
788
+
789
+ // Version contains the information returned from the x-ms-version header response.
790
+ Version *string
791
+ }
792
+
793
+ // BlobClientRenewLeaseResponse contains the response from method BlobClient.RenewLease.
794
+ type BlobClientRenewLeaseResponse struct {
795
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
796
+ ClientRequestID *string
797
+
798
+ // Date contains the information returned from the Date header response.
799
+ Date *time.Time
800
+
801
+ // ETag contains the information returned from the ETag header response.
802
+ ETag *azcore.ETag
803
+
804
+ // LastModified contains the information returned from the Last-Modified header response.
805
+ LastModified *time.Time
806
+
807
+ // LeaseID contains the information returned from the x-ms-lease-id header response.
808
+ LeaseID *string
809
+
810
+ // RequestID contains the information returned from the x-ms-request-id header response.
811
+ RequestID *string
812
+
813
+ // Version contains the information returned from the x-ms-version header response.
814
+ Version *string
815
+ }
816
+
817
+ // BlobClientSetExpiryResponse contains the response from method BlobClient.SetExpiry.
818
+ type BlobClientSetExpiryResponse struct {
819
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
820
+ ClientRequestID *string
821
+
822
+ // Date contains the information returned from the Date header response.
823
+ Date *time.Time
824
+
825
+ // ETag contains the information returned from the ETag header response.
826
+ ETag *azcore.ETag
827
+
828
+ // LastModified contains the information returned from the Last-Modified header response.
829
+ LastModified *time.Time
830
+
831
+ // RequestID contains the information returned from the x-ms-request-id header response.
832
+ RequestID *string
833
+
834
+ // Version contains the information returned from the x-ms-version header response.
835
+ Version *string
836
+ }
837
+
838
+ // BlobClientSetHTTPHeadersResponse contains the response from method BlobClient.SetHTTPHeaders.
839
+ type BlobClientSetHTTPHeadersResponse struct {
840
+ // BlobSequenceNumber contains the information returned from the x-ms-blob-sequence-number header response.
841
+ BlobSequenceNumber *int64
842
+
843
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
844
+ ClientRequestID *string
845
+
846
+ // Date contains the information returned from the Date header response.
847
+ Date *time.Time
848
+
849
+ // ETag contains the information returned from the ETag header response.
850
+ ETag *azcore.ETag
851
+
852
+ // LastModified contains the information returned from the Last-Modified header response.
853
+ LastModified *time.Time
854
+
855
+ // RequestID contains the information returned from the x-ms-request-id header response.
856
+ RequestID *string
857
+
858
+ // Version contains the information returned from the x-ms-version header response.
859
+ Version *string
860
+ }
861
+
862
+ // BlobClientSetImmutabilityPolicyResponse contains the response from method BlobClient.SetImmutabilityPolicy.
863
+ type BlobClientSetImmutabilityPolicyResponse struct {
864
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
865
+ ClientRequestID *string
866
+
867
+ // Date contains the information returned from the Date header response.
868
+ Date *time.Time
869
+
870
+ // ImmutabilityPolicyExpiry contains the information returned from the x-ms-immutability-policy-until-date header response.
871
+ ImmutabilityPolicyExpiry *time.Time
872
+
873
+ // ImmutabilityPolicyMode contains the information returned from the x-ms-immutability-policy-mode header response.
874
+ ImmutabilityPolicyMode *ImmutabilityPolicyMode
875
+
876
+ // RequestID contains the information returned from the x-ms-request-id header response.
877
+ RequestID *string
878
+
879
+ // Version contains the information returned from the x-ms-version header response.
880
+ Version *string
881
+ }
882
+
883
+ // BlobClientSetLegalHoldResponse contains the response from method BlobClient.SetLegalHold.
884
+ type BlobClientSetLegalHoldResponse struct {
885
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
886
+ ClientRequestID *string
887
+
888
+ // Date contains the information returned from the Date header response.
889
+ Date *time.Time
890
+
891
+ // LegalHold contains the information returned from the x-ms-legal-hold header response.
892
+ LegalHold *bool
893
+
894
+ // RequestID contains the information returned from the x-ms-request-id header response.
895
+ RequestID *string
896
+
897
+ // Version contains the information returned from the x-ms-version header response.
898
+ Version *string
899
+ }
900
+
901
+ // BlobClientSetMetadataResponse contains the response from method BlobClient.SetMetadata.
902
+ type BlobClientSetMetadataResponse struct {
903
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
904
+ ClientRequestID *string
905
+
906
+ // Date contains the information returned from the Date header response.
907
+ Date *time.Time
908
+
909
+ // ETag contains the information returned from the ETag header response.
910
+ ETag *azcore.ETag
911
+
912
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
913
+ EncryptionKeySHA256 *string
914
+
915
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
916
+ EncryptionScope *string
917
+
918
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
919
+ IsServerEncrypted *bool
920
+
921
+ // LastModified contains the information returned from the Last-Modified header response.
922
+ LastModified *time.Time
923
+
924
+ // RequestID contains the information returned from the x-ms-request-id header response.
925
+ RequestID *string
926
+
927
+ // Version contains the information returned from the x-ms-version header response.
928
+ Version *string
929
+
930
+ // VersionID contains the information returned from the x-ms-version-id header response.
931
+ VersionID *string
932
+ }
933
+
934
+ // BlobClientSetTagsResponse contains the response from method BlobClient.SetTags.
935
+ type BlobClientSetTagsResponse struct {
936
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
937
+ ClientRequestID *string
938
+
939
+ // Date contains the information returned from the Date header response.
940
+ Date *time.Time
941
+
942
+ // RequestID contains the information returned from the x-ms-request-id header response.
943
+ RequestID *string
944
+
945
+ // Version contains the information returned from the x-ms-version header response.
946
+ Version *string
947
+ }
948
+
949
+ // BlobClientSetTierResponse contains the response from method BlobClient.SetTier.
950
+ type BlobClientSetTierResponse struct {
951
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
952
+ ClientRequestID *string
953
+
954
+ // RequestID contains the information returned from the x-ms-request-id header response.
955
+ RequestID *string
956
+
957
+ // Version contains the information returned from the x-ms-version header response.
958
+ Version *string
959
+ }
960
+
961
+ // BlobClientStartCopyFromURLResponse contains the response from method BlobClient.StartCopyFromURL.
962
+ type BlobClientStartCopyFromURLResponse struct {
963
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
964
+ ClientRequestID *string
965
+
966
+ // CopyID contains the information returned from the x-ms-copy-id header response.
967
+ CopyID *string
968
+
969
+ // CopyStatus contains the information returned from the x-ms-copy-status header response.
970
+ CopyStatus *CopyStatusType
971
+
972
+ // Date contains the information returned from the Date header response.
973
+ Date *time.Time
974
+
975
+ // ETag contains the information returned from the ETag header response.
976
+ ETag *azcore.ETag
977
+
978
+ // LastModified contains the information returned from the Last-Modified header response.
979
+ LastModified *time.Time
980
+
981
+ // RequestID contains the information returned from the x-ms-request-id header response.
982
+ RequestID *string
983
+
984
+ // Version contains the information returned from the x-ms-version header response.
985
+ Version *string
986
+
987
+ // VersionID contains the information returned from the x-ms-version-id header response.
988
+ VersionID *string
989
+ }
990
+
991
+ // BlobClientUndeleteResponse contains the response from method BlobClient.Undelete.
992
+ type BlobClientUndeleteResponse struct {
993
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
994
+ ClientRequestID *string
995
+
996
+ // Date contains the information returned from the Date header response.
997
+ Date *time.Time
998
+
999
+ // RequestID contains the information returned from the x-ms-request-id header response.
1000
+ RequestID *string
1001
+
1002
+ // Version contains the information returned from the x-ms-version header response.
1003
+ Version *string
1004
+ }
1005
+
1006
+ // BlockBlobClientCommitBlockListResponse contains the response from method BlockBlobClient.CommitBlockList.
1007
+ type BlockBlobClientCommitBlockListResponse struct {
1008
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1009
+ ClientRequestID *string
1010
+
1011
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
1012
+ ContentCRC64 []byte
1013
+
1014
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
1015
+ ContentMD5 []byte
1016
+
1017
+ // Date contains the information returned from the Date header response.
1018
+ Date *time.Time
1019
+
1020
+ // ETag contains the information returned from the ETag header response.
1021
+ ETag *azcore.ETag
1022
+
1023
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
1024
+ EncryptionKeySHA256 *string
1025
+
1026
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
1027
+ EncryptionScope *string
1028
+
1029
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
1030
+ IsServerEncrypted *bool
1031
+
1032
+ // LastModified contains the information returned from the Last-Modified header response.
1033
+ LastModified *time.Time
1034
+
1035
+ // RequestID contains the information returned from the x-ms-request-id header response.
1036
+ RequestID *string
1037
+
1038
+ // Version contains the information returned from the x-ms-version header response.
1039
+ Version *string
1040
+
1041
+ // VersionID contains the information returned from the x-ms-version-id header response.
1042
+ VersionID *string
1043
+ }
1044
+
1045
+ // BlockBlobClientGetBlockListResponse contains the response from method BlockBlobClient.GetBlockList.
1046
+ type BlockBlobClientGetBlockListResponse struct {
1047
+ BlockList
1048
+ // BlobContentLength contains the information returned from the x-ms-blob-content-length header response.
1049
+ BlobContentLength *int64 `xml:"BlobContentLength"`
1050
+
1051
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1052
+ ClientRequestID *string `xml:"ClientRequestID"`
1053
+
1054
+ // ContentType contains the information returned from the Content-Type header response.
1055
+ ContentType *string `xml:"ContentType"`
1056
+
1057
+ // Date contains the information returned from the Date header response.
1058
+ Date *time.Time `xml:"Date"`
1059
+
1060
+ // ETag contains the information returned from the ETag header response.
1061
+ ETag *azcore.ETag `xml:"ETag"`
1062
+
1063
+ // LastModified contains the information returned from the Last-Modified header response.
1064
+ LastModified *time.Time `xml:"LastModified"`
1065
+
1066
+ // RequestID contains the information returned from the x-ms-request-id header response.
1067
+ RequestID *string `xml:"RequestID"`
1068
+
1069
+ // Version contains the information returned from the x-ms-version header response.
1070
+ Version *string `xml:"Version"`
1071
+ }
1072
+
1073
+ // BlockBlobClientPutBlobFromURLResponse contains the response from method BlockBlobClient.PutBlobFromURL.
1074
+ type BlockBlobClientPutBlobFromURLResponse struct {
1075
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1076
+ ClientRequestID *string
1077
+
1078
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
1079
+ ContentMD5 []byte
1080
+
1081
+ // Date contains the information returned from the Date header response.
1082
+ Date *time.Time
1083
+
1084
+ // ETag contains the information returned from the ETag header response.
1085
+ ETag *azcore.ETag
1086
+
1087
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
1088
+ EncryptionKeySHA256 *string
1089
+
1090
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
1091
+ EncryptionScope *string
1092
+
1093
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
1094
+ IsServerEncrypted *bool
1095
+
1096
+ // LastModified contains the information returned from the Last-Modified header response.
1097
+ LastModified *time.Time
1098
+
1099
+ // RequestID contains the information returned from the x-ms-request-id header response.
1100
+ RequestID *string
1101
+
1102
+ // Version contains the information returned from the x-ms-version header response.
1103
+ Version *string
1104
+
1105
+ // VersionID contains the information returned from the x-ms-version-id header response.
1106
+ VersionID *string
1107
+ }
1108
+
1109
+ // BlockBlobClientStageBlockFromURLResponse contains the response from method BlockBlobClient.StageBlockFromURL.
1110
+ type BlockBlobClientStageBlockFromURLResponse struct {
1111
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1112
+ ClientRequestID *string
1113
+
1114
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
1115
+ ContentCRC64 []byte
1116
+
1117
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
1118
+ ContentMD5 []byte
1119
+
1120
+ // Date contains the information returned from the Date header response.
1121
+ Date *time.Time
1122
+
1123
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
1124
+ EncryptionKeySHA256 *string
1125
+
1126
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
1127
+ EncryptionScope *string
1128
+
1129
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
1130
+ IsServerEncrypted *bool
1131
+
1132
+ // RequestID contains the information returned from the x-ms-request-id header response.
1133
+ RequestID *string
1134
+
1135
+ // Version contains the information returned from the x-ms-version header response.
1136
+ Version *string
1137
+ }
1138
+
1139
+ // BlockBlobClientStageBlockResponse contains the response from method BlockBlobClient.StageBlock.
1140
+ type BlockBlobClientStageBlockResponse struct {
1141
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1142
+ ClientRequestID *string
1143
+
1144
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
1145
+ ContentCRC64 []byte
1146
+
1147
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
1148
+ ContentMD5 []byte
1149
+
1150
+ // Date contains the information returned from the Date header response.
1151
+ Date *time.Time
1152
+
1153
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
1154
+ EncryptionKeySHA256 *string
1155
+
1156
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
1157
+ EncryptionScope *string
1158
+
1159
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
1160
+ IsServerEncrypted *bool
1161
+
1162
+ // RequestID contains the information returned from the x-ms-request-id header response.
1163
+ RequestID *string
1164
+
1165
+ // Version contains the information returned from the x-ms-version header response.
1166
+ Version *string
1167
+ }
1168
+
1169
+ // BlockBlobClientUploadResponse contains the response from method BlockBlobClient.Upload.
1170
+ type BlockBlobClientUploadResponse struct {
1171
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1172
+ ClientRequestID *string
1173
+
1174
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
1175
+ ContentMD5 []byte
1176
+
1177
+ // Date contains the information returned from the Date header response.
1178
+ Date *time.Time
1179
+
1180
+ // ETag contains the information returned from the ETag header response.
1181
+ ETag *azcore.ETag
1182
+
1183
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
1184
+ EncryptionKeySHA256 *string
1185
+
1186
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
1187
+ EncryptionScope *string
1188
+
1189
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
1190
+ IsServerEncrypted *bool
1191
+
1192
+ // LastModified contains the information returned from the Last-Modified header response.
1193
+ LastModified *time.Time
1194
+
1195
+ // RequestID contains the information returned from the x-ms-request-id header response.
1196
+ RequestID *string
1197
+
1198
+ // Version contains the information returned from the x-ms-version header response.
1199
+ Version *string
1200
+
1201
+ // VersionID contains the information returned from the x-ms-version-id header response.
1202
+ VersionID *string
1203
+ }
1204
+
1205
+ // ContainerClientAcquireLeaseResponse contains the response from method ContainerClient.AcquireLease.
1206
+ type ContainerClientAcquireLeaseResponse struct {
1207
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1208
+ ClientRequestID *string
1209
+
1210
+ // Date contains the information returned from the Date header response.
1211
+ Date *time.Time
1212
+
1213
+ // ETag contains the information returned from the ETag header response.
1214
+ ETag *azcore.ETag
1215
+
1216
+ // LastModified contains the information returned from the Last-Modified header response.
1217
+ LastModified *time.Time
1218
+
1219
+ // LeaseID contains the information returned from the x-ms-lease-id header response.
1220
+ LeaseID *string
1221
+
1222
+ // RequestID contains the information returned from the x-ms-request-id header response.
1223
+ RequestID *string
1224
+
1225
+ // Version contains the information returned from the x-ms-version header response.
1226
+ Version *string
1227
+ }
1228
+
1229
+ // ContainerClientBreakLeaseResponse contains the response from method ContainerClient.BreakLease.
1230
+ type ContainerClientBreakLeaseResponse struct {
1231
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1232
+ ClientRequestID *string
1233
+
1234
+ // Date contains the information returned from the Date header response.
1235
+ Date *time.Time
1236
+
1237
+ // ETag contains the information returned from the ETag header response.
1238
+ ETag *azcore.ETag
1239
+
1240
+ // LastModified contains the information returned from the Last-Modified header response.
1241
+ LastModified *time.Time
1242
+
1243
+ // LeaseTime contains the information returned from the x-ms-lease-time header response.
1244
+ LeaseTime *int32
1245
+
1246
+ // RequestID contains the information returned from the x-ms-request-id header response.
1247
+ RequestID *string
1248
+
1249
+ // Version contains the information returned from the x-ms-version header response.
1250
+ Version *string
1251
+ }
1252
+
1253
+ // ContainerClientChangeLeaseResponse contains the response from method ContainerClient.ChangeLease.
1254
+ type ContainerClientChangeLeaseResponse struct {
1255
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1256
+ ClientRequestID *string
1257
+
1258
+ // Date contains the information returned from the Date header response.
1259
+ Date *time.Time
1260
+
1261
+ // ETag contains the information returned from the ETag header response.
1262
+ ETag *azcore.ETag
1263
+
1264
+ // LastModified contains the information returned from the Last-Modified header response.
1265
+ LastModified *time.Time
1266
+
1267
+ // LeaseID contains the information returned from the x-ms-lease-id header response.
1268
+ LeaseID *string
1269
+
1270
+ // RequestID contains the information returned from the x-ms-request-id header response.
1271
+ RequestID *string
1272
+
1273
+ // Version contains the information returned from the x-ms-version header response.
1274
+ Version *string
1275
+ }
1276
+
1277
+ // ContainerClientCreateResponse contains the response from method ContainerClient.Create.
1278
+ type ContainerClientCreateResponse struct {
1279
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1280
+ ClientRequestID *string
1281
+
1282
+ // Date contains the information returned from the Date header response.
1283
+ Date *time.Time
1284
+
1285
+ // ETag contains the information returned from the ETag header response.
1286
+ ETag *azcore.ETag
1287
+
1288
+ // LastModified contains the information returned from the Last-Modified header response.
1289
+ LastModified *time.Time
1290
+
1291
+ // RequestID contains the information returned from the x-ms-request-id header response.
1292
+ RequestID *string
1293
+
1294
+ // Version contains the information returned from the x-ms-version header response.
1295
+ Version *string
1296
+ }
1297
+
1298
+ // ContainerClientDeleteResponse contains the response from method ContainerClient.Delete.
1299
+ type ContainerClientDeleteResponse struct {
1300
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1301
+ ClientRequestID *string
1302
+
1303
+ // Date contains the information returned from the Date header response.
1304
+ Date *time.Time
1305
+
1306
+ // RequestID contains the information returned from the x-ms-request-id header response.
1307
+ RequestID *string
1308
+
1309
+ // Version contains the information returned from the x-ms-version header response.
1310
+ Version *string
1311
+ }
1312
+
1313
+ // ContainerClientGetAccessPolicyResponse contains the response from method ContainerClient.GetAccessPolicy.
1314
+ type ContainerClientGetAccessPolicyResponse struct {
1315
+ // BlobPublicAccess contains the information returned from the x-ms-blob-public-access header response.
1316
+ BlobPublicAccess *PublicAccessType `xml:"BlobPublicAccess"`
1317
+
1318
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1319
+ ClientRequestID *string `xml:"ClientRequestID"`
1320
+
1321
+ // Date contains the information returned from the Date header response.
1322
+ Date *time.Time `xml:"Date"`
1323
+
1324
+ // ETag contains the information returned from the ETag header response.
1325
+ ETag *azcore.ETag `xml:"ETag"`
1326
+
1327
+ // LastModified contains the information returned from the Last-Modified header response.
1328
+ LastModified *time.Time `xml:"LastModified"`
1329
+
1330
+ // RequestID contains the information returned from the x-ms-request-id header response.
1331
+ RequestID *string `xml:"RequestID"`
1332
+
1333
+ // a collection of signed identifiers
1334
+ SignedIdentifiers []*SignedIdentifier `xml:"SignedIdentifier"`
1335
+
1336
+ // Version contains the information returned from the x-ms-version header response.
1337
+ Version *string `xml:"Version"`
1338
+ }
1339
+
1340
+ // ContainerClientGetAccountInfoResponse contains the response from method ContainerClient.GetAccountInfo.
1341
+ type ContainerClientGetAccountInfoResponse struct {
1342
+ // AccountKind contains the information returned from the x-ms-account-kind header response.
1343
+ AccountKind *AccountKind
1344
+
1345
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1346
+ ClientRequestID *string
1347
+
1348
+ // Date contains the information returned from the Date header response.
1349
+ Date *time.Time
1350
+
1351
+ // RequestID contains the information returned from the x-ms-request-id header response.
1352
+ RequestID *string
1353
+
1354
+ // SKUName contains the information returned from the x-ms-sku-name header response.
1355
+ SKUName *SKUName
1356
+
1357
+ // Version contains the information returned from the x-ms-version header response.
1358
+ Version *string
1359
+ }
1360
+
1361
+ // ContainerClientGetPropertiesResponse contains the response from method ContainerClient.GetProperties.
1362
+ type ContainerClientGetPropertiesResponse struct {
1363
+ // BlobPublicAccess contains the information returned from the x-ms-blob-public-access header response.
1364
+ BlobPublicAccess *PublicAccessType
1365
+
1366
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1367
+ ClientRequestID *string
1368
+
1369
+ // Date contains the information returned from the Date header response.
1370
+ Date *time.Time
1371
+
1372
+ // DefaultEncryptionScope contains the information returned from the x-ms-default-encryption-scope header response.
1373
+ DefaultEncryptionScope *string
1374
+
1375
+ // DenyEncryptionScopeOverride contains the information returned from the x-ms-deny-encryption-scope-override header response.
1376
+ DenyEncryptionScopeOverride *bool
1377
+
1378
+ // ETag contains the information returned from the ETag header response.
1379
+ ETag *azcore.ETag
1380
+
1381
+ // HasImmutabilityPolicy contains the information returned from the x-ms-has-immutability-policy header response.
1382
+ HasImmutabilityPolicy *bool
1383
+
1384
+ // HasLegalHold contains the information returned from the x-ms-has-legal-hold header response.
1385
+ HasLegalHold *bool
1386
+
1387
+ // IsImmutableStorageWithVersioningEnabled contains the information returned from the x-ms-immutable-storage-with-versioning-enabled
1388
+ // header response.
1389
+ IsImmutableStorageWithVersioningEnabled *bool
1390
+
1391
+ // LastModified contains the information returned from the Last-Modified header response.
1392
+ LastModified *time.Time
1393
+
1394
+ // LeaseDuration contains the information returned from the x-ms-lease-duration header response.
1395
+ LeaseDuration *LeaseDurationType
1396
+
1397
+ // LeaseState contains the information returned from the x-ms-lease-state header response.
1398
+ LeaseState *LeaseStateType
1399
+
1400
+ // LeaseStatus contains the information returned from the x-ms-lease-status header response.
1401
+ LeaseStatus *LeaseStatusType
1402
+
1403
+ // Metadata contains the information returned from the x-ms-meta header response.
1404
+ Metadata map[string]*string
1405
+
1406
+ // RequestID contains the information returned from the x-ms-request-id header response.
1407
+ RequestID *string
1408
+
1409
+ // Version contains the information returned from the x-ms-version header response.
1410
+ Version *string
1411
+ }
1412
+
1413
+ // ContainerClientListBlobFlatSegmentResponse contains the response from method ContainerClient.NewListBlobFlatSegmentPager.
1414
+ type ContainerClientListBlobFlatSegmentResponse struct {
1415
+ ListBlobsFlatSegmentResponse
1416
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1417
+ ClientRequestID *string `xml:"ClientRequestID"`
1418
+
1419
+ // ContentType contains the information returned from the Content-Type header response.
1420
+ ContentType *string `xml:"ContentType"`
1421
+
1422
+ // Date contains the information returned from the Date header response.
1423
+ Date *time.Time `xml:"Date"`
1424
+
1425
+ // RequestID contains the information returned from the x-ms-request-id header response.
1426
+ RequestID *string `xml:"RequestID"`
1427
+
1428
+ // Version contains the information returned from the x-ms-version header response.
1429
+ Version *string `xml:"Version"`
1430
+ }
1431
+
1432
+ // ContainerClientListBlobHierarchySegmentResponse contains the response from method ContainerClient.NewListBlobHierarchySegmentPager.
1433
+ type ContainerClientListBlobHierarchySegmentResponse struct {
1434
+ ListBlobsHierarchySegmentResponse
1435
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1436
+ ClientRequestID *string `xml:"ClientRequestID"`
1437
+
1438
+ // ContentType contains the information returned from the Content-Type header response.
1439
+ ContentType *string `xml:"ContentType"`
1440
+
1441
+ // Date contains the information returned from the Date header response.
1442
+ Date *time.Time `xml:"Date"`
1443
+
1444
+ // RequestID contains the information returned from the x-ms-request-id header response.
1445
+ RequestID *string `xml:"RequestID"`
1446
+
1447
+ // Version contains the information returned from the x-ms-version header response.
1448
+ Version *string `xml:"Version"`
1449
+ }
1450
+
1451
+ // ContainerClientReleaseLeaseResponse contains the response from method ContainerClient.ReleaseLease.
1452
+ type ContainerClientReleaseLeaseResponse struct {
1453
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1454
+ ClientRequestID *string
1455
+
1456
+ // Date contains the information returned from the Date header response.
1457
+ Date *time.Time
1458
+
1459
+ // ETag contains the information returned from the ETag header response.
1460
+ ETag *azcore.ETag
1461
+
1462
+ // LastModified contains the information returned from the Last-Modified header response.
1463
+ LastModified *time.Time
1464
+
1465
+ // RequestID contains the information returned from the x-ms-request-id header response.
1466
+ RequestID *string
1467
+
1468
+ // Version contains the information returned from the x-ms-version header response.
1469
+ Version *string
1470
+ }
1471
+
1472
+ // ContainerClientRenameResponse contains the response from method ContainerClient.Rename.
1473
+ type ContainerClientRenameResponse struct {
1474
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1475
+ ClientRequestID *string
1476
+
1477
+ // Date contains the information returned from the Date header response.
1478
+ Date *time.Time
1479
+
1480
+ // RequestID contains the information returned from the x-ms-request-id header response.
1481
+ RequestID *string
1482
+
1483
+ // Version contains the information returned from the x-ms-version header response.
1484
+ Version *string
1485
+ }
1486
+
1487
+ // ContainerClientRenewLeaseResponse contains the response from method ContainerClient.RenewLease.
1488
+ type ContainerClientRenewLeaseResponse struct {
1489
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1490
+ ClientRequestID *string
1491
+
1492
+ // Date contains the information returned from the Date header response.
1493
+ Date *time.Time
1494
+
1495
+ // ETag contains the information returned from the ETag header response.
1496
+ ETag *azcore.ETag
1497
+
1498
+ // LastModified contains the information returned from the Last-Modified header response.
1499
+ LastModified *time.Time
1500
+
1501
+ // LeaseID contains the information returned from the x-ms-lease-id header response.
1502
+ LeaseID *string
1503
+
1504
+ // RequestID contains the information returned from the x-ms-request-id header response.
1505
+ RequestID *string
1506
+
1507
+ // Version contains the information returned from the x-ms-version header response.
1508
+ Version *string
1509
+ }
1510
+
1511
+ // ContainerClientRestoreResponse contains the response from method ContainerClient.Restore.
1512
+ type ContainerClientRestoreResponse struct {
1513
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1514
+ ClientRequestID *string
1515
+
1516
+ // Date contains the information returned from the Date header response.
1517
+ Date *time.Time
1518
+
1519
+ // RequestID contains the information returned from the x-ms-request-id header response.
1520
+ RequestID *string
1521
+
1522
+ // Version contains the information returned from the x-ms-version header response.
1523
+ Version *string
1524
+ }
1525
+
1526
+ // ContainerClientSetAccessPolicyResponse contains the response from method ContainerClient.SetAccessPolicy.
1527
+ type ContainerClientSetAccessPolicyResponse struct {
1528
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1529
+ ClientRequestID *string
1530
+
1531
+ // Date contains the information returned from the Date header response.
1532
+ Date *time.Time
1533
+
1534
+ // ETag contains the information returned from the ETag header response.
1535
+ ETag *azcore.ETag
1536
+
1537
+ // LastModified contains the information returned from the Last-Modified header response.
1538
+ LastModified *time.Time
1539
+
1540
+ // RequestID contains the information returned from the x-ms-request-id header response.
1541
+ RequestID *string
1542
+
1543
+ // Version contains the information returned from the x-ms-version header response.
1544
+ Version *string
1545
+ }
1546
+
1547
+ // ContainerClientSetMetadataResponse contains the response from method ContainerClient.SetMetadata.
1548
+ type ContainerClientSetMetadataResponse struct {
1549
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1550
+ ClientRequestID *string
1551
+
1552
+ // Date contains the information returned from the Date header response.
1553
+ Date *time.Time
1554
+
1555
+ // ETag contains the information returned from the ETag header response.
1556
+ ETag *azcore.ETag
1557
+
1558
+ // LastModified contains the information returned from the Last-Modified header response.
1559
+ LastModified *time.Time
1560
+
1561
+ // RequestID contains the information returned from the x-ms-request-id header response.
1562
+ RequestID *string
1563
+
1564
+ // Version contains the information returned from the x-ms-version header response.
1565
+ Version *string
1566
+ }
1567
+
1568
+ // ContainerClientSubmitBatchResponse contains the response from method ContainerClient.SubmitBatch.
1569
+ type ContainerClientSubmitBatchResponse struct {
1570
+ // Body contains the streaming response.
1571
+ Body io.ReadCloser
1572
+
1573
+ // ContentType contains the information returned from the Content-Type header response.
1574
+ ContentType *string
1575
+
1576
+ // RequestID contains the information returned from the x-ms-request-id header response.
1577
+ RequestID *string
1578
+
1579
+ // Version contains the information returned from the x-ms-version header response.
1580
+ Version *string
1581
+ }
1582
+
1583
+ // PageBlobClientClearPagesResponse contains the response from method PageBlobClient.ClearPages.
1584
+ type PageBlobClientClearPagesResponse struct {
1585
+ // BlobSequenceNumber contains the information returned from the x-ms-blob-sequence-number header response.
1586
+ BlobSequenceNumber *int64
1587
+
1588
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1589
+ ClientRequestID *string
1590
+
1591
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
1592
+ ContentCRC64 []byte
1593
+
1594
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
1595
+ ContentMD5 []byte
1596
+
1597
+ // Date contains the information returned from the Date header response.
1598
+ Date *time.Time
1599
+
1600
+ // ETag contains the information returned from the ETag header response.
1601
+ ETag *azcore.ETag
1602
+
1603
+ // LastModified contains the information returned from the Last-Modified header response.
1604
+ LastModified *time.Time
1605
+
1606
+ // RequestID contains the information returned from the x-ms-request-id header response.
1607
+ RequestID *string
1608
+
1609
+ // Version contains the information returned from the x-ms-version header response.
1610
+ Version *string
1611
+ }
1612
+
1613
+ // PageBlobClientCopyIncrementalResponse contains the response from method PageBlobClient.CopyIncremental.
1614
+ type PageBlobClientCopyIncrementalResponse struct {
1615
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1616
+ ClientRequestID *string
1617
+
1618
+ // CopyID contains the information returned from the x-ms-copy-id header response.
1619
+ CopyID *string
1620
+
1621
+ // CopyStatus contains the information returned from the x-ms-copy-status header response.
1622
+ CopyStatus *CopyStatusType
1623
+
1624
+ // Date contains the information returned from the Date header response.
1625
+ Date *time.Time
1626
+
1627
+ // ETag contains the information returned from the ETag header response.
1628
+ ETag *azcore.ETag
1629
+
1630
+ // LastModified contains the information returned from the Last-Modified header response.
1631
+ LastModified *time.Time
1632
+
1633
+ // RequestID contains the information returned from the x-ms-request-id header response.
1634
+ RequestID *string
1635
+
1636
+ // Version contains the information returned from the x-ms-version header response.
1637
+ Version *string
1638
+ }
1639
+
1640
+ // PageBlobClientCreateResponse contains the response from method PageBlobClient.Create.
1641
+ type PageBlobClientCreateResponse struct {
1642
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1643
+ ClientRequestID *string
1644
+
1645
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
1646
+ ContentMD5 []byte
1647
+
1648
+ // Date contains the information returned from the Date header response.
1649
+ Date *time.Time
1650
+
1651
+ // ETag contains the information returned from the ETag header response.
1652
+ ETag *azcore.ETag
1653
+
1654
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
1655
+ EncryptionKeySHA256 *string
1656
+
1657
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
1658
+ EncryptionScope *string
1659
+
1660
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
1661
+ IsServerEncrypted *bool
1662
+
1663
+ // LastModified contains the information returned from the Last-Modified header response.
1664
+ LastModified *time.Time
1665
+
1666
+ // RequestID contains the information returned from the x-ms-request-id header response.
1667
+ RequestID *string
1668
+
1669
+ // Version contains the information returned from the x-ms-version header response.
1670
+ Version *string
1671
+
1672
+ // VersionID contains the information returned from the x-ms-version-id header response.
1673
+ VersionID *string
1674
+ }
1675
+
1676
+ // PageBlobClientGetPageRangesDiffResponse contains the response from method PageBlobClient.NewGetPageRangesDiffPager.
1677
+ type PageBlobClientGetPageRangesDiffResponse struct {
1678
+ PageList
1679
+ // BlobContentLength contains the information returned from the x-ms-blob-content-length header response.
1680
+ BlobContentLength *int64 `xml:"BlobContentLength"`
1681
+
1682
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1683
+ ClientRequestID *string `xml:"ClientRequestID"`
1684
+
1685
+ // Date contains the information returned from the Date header response.
1686
+ Date *time.Time `xml:"Date"`
1687
+
1688
+ // ETag contains the information returned from the ETag header response.
1689
+ ETag *azcore.ETag `xml:"ETag"`
1690
+
1691
+ // LastModified contains the information returned from the Last-Modified header response.
1692
+ LastModified *time.Time `xml:"LastModified"`
1693
+
1694
+ // RequestID contains the information returned from the x-ms-request-id header response.
1695
+ RequestID *string `xml:"RequestID"`
1696
+
1697
+ // Version contains the information returned from the x-ms-version header response.
1698
+ Version *string `xml:"Version"`
1699
+ }
1700
+
1701
+ // PageBlobClientGetPageRangesResponse contains the response from method PageBlobClient.NewGetPageRangesPager.
1702
+ type PageBlobClientGetPageRangesResponse struct {
1703
+ PageList
1704
+ // BlobContentLength contains the information returned from the x-ms-blob-content-length header response.
1705
+ BlobContentLength *int64 `xml:"BlobContentLength"`
1706
+
1707
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1708
+ ClientRequestID *string `xml:"ClientRequestID"`
1709
+
1710
+ // Date contains the information returned from the Date header response.
1711
+ Date *time.Time `xml:"Date"`
1712
+
1713
+ // ETag contains the information returned from the ETag header response.
1714
+ ETag *azcore.ETag `xml:"ETag"`
1715
+
1716
+ // LastModified contains the information returned from the Last-Modified header response.
1717
+ LastModified *time.Time `xml:"LastModified"`
1718
+
1719
+ // RequestID contains the information returned from the x-ms-request-id header response.
1720
+ RequestID *string `xml:"RequestID"`
1721
+
1722
+ // Version contains the information returned from the x-ms-version header response.
1723
+ Version *string `xml:"Version"`
1724
+ }
1725
+
1726
+ // PageBlobClientResizeResponse contains the response from method PageBlobClient.Resize.
1727
+ type PageBlobClientResizeResponse struct {
1728
+ // BlobSequenceNumber contains the information returned from the x-ms-blob-sequence-number header response.
1729
+ BlobSequenceNumber *int64
1730
+
1731
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1732
+ ClientRequestID *string
1733
+
1734
+ // Date contains the information returned from the Date header response.
1735
+ Date *time.Time
1736
+
1737
+ // ETag contains the information returned from the ETag header response.
1738
+ ETag *azcore.ETag
1739
+
1740
+ // LastModified contains the information returned from the Last-Modified header response.
1741
+ LastModified *time.Time
1742
+
1743
+ // RequestID contains the information returned from the x-ms-request-id header response.
1744
+ RequestID *string
1745
+
1746
+ // Version contains the information returned from the x-ms-version header response.
1747
+ Version *string
1748
+ }
1749
+
1750
+ // PageBlobClientUpdateSequenceNumberResponse contains the response from method PageBlobClient.UpdateSequenceNumber.
1751
+ type PageBlobClientUpdateSequenceNumberResponse struct {
1752
+ // BlobSequenceNumber contains the information returned from the x-ms-blob-sequence-number header response.
1753
+ BlobSequenceNumber *int64
1754
+
1755
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1756
+ ClientRequestID *string
1757
+
1758
+ // Date contains the information returned from the Date header response.
1759
+ Date *time.Time
1760
+
1761
+ // ETag contains the information returned from the ETag header response.
1762
+ ETag *azcore.ETag
1763
+
1764
+ // LastModified contains the information returned from the Last-Modified header response.
1765
+ LastModified *time.Time
1766
+
1767
+ // RequestID contains the information returned from the x-ms-request-id header response.
1768
+ RequestID *string
1769
+
1770
+ // Version contains the information returned from the x-ms-version header response.
1771
+ Version *string
1772
+ }
1773
+
1774
+ // PageBlobClientUploadPagesFromURLResponse contains the response from method PageBlobClient.UploadPagesFromURL.
1775
+ type PageBlobClientUploadPagesFromURLResponse struct {
1776
+ // BlobSequenceNumber contains the information returned from the x-ms-blob-sequence-number header response.
1777
+ BlobSequenceNumber *int64
1778
+
1779
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
1780
+ ContentCRC64 []byte
1781
+
1782
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
1783
+ ContentMD5 []byte
1784
+
1785
+ // Date contains the information returned from the Date header response.
1786
+ Date *time.Time
1787
+
1788
+ // ETag contains the information returned from the ETag header response.
1789
+ ETag *azcore.ETag
1790
+
1791
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
1792
+ EncryptionKeySHA256 *string
1793
+
1794
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
1795
+ EncryptionScope *string
1796
+
1797
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
1798
+ IsServerEncrypted *bool
1799
+
1800
+ // LastModified contains the information returned from the Last-Modified header response.
1801
+ LastModified *time.Time
1802
+
1803
+ // RequestID contains the information returned from the x-ms-request-id header response.
1804
+ RequestID *string
1805
+
1806
+ // Version contains the information returned from the x-ms-version header response.
1807
+ Version *string
1808
+ }
1809
+
1810
+ // PageBlobClientUploadPagesResponse contains the response from method PageBlobClient.UploadPages.
1811
+ type PageBlobClientUploadPagesResponse struct {
1812
+ // BlobSequenceNumber contains the information returned from the x-ms-blob-sequence-number header response.
1813
+ BlobSequenceNumber *int64
1814
+
1815
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1816
+ ClientRequestID *string
1817
+
1818
+ // ContentCRC64 contains the information returned from the x-ms-content-crc64 header response.
1819
+ ContentCRC64 []byte
1820
+
1821
+ // ContentMD5 contains the information returned from the Content-MD5 header response.
1822
+ ContentMD5 []byte
1823
+
1824
+ // Date contains the information returned from the Date header response.
1825
+ Date *time.Time
1826
+
1827
+ // ETag contains the information returned from the ETag header response.
1828
+ ETag *azcore.ETag
1829
+
1830
+ // EncryptionKeySHA256 contains the information returned from the x-ms-encryption-key-sha256 header response.
1831
+ EncryptionKeySHA256 *string
1832
+
1833
+ // EncryptionScope contains the information returned from the x-ms-encryption-scope header response.
1834
+ EncryptionScope *string
1835
+
1836
+ // IsServerEncrypted contains the information returned from the x-ms-request-server-encrypted header response.
1837
+ IsServerEncrypted *bool
1838
+
1839
+ // LastModified contains the information returned from the Last-Modified header response.
1840
+ LastModified *time.Time
1841
+
1842
+ // RequestID contains the information returned from the x-ms-request-id header response.
1843
+ RequestID *string
1844
+
1845
+ // Version contains the information returned from the x-ms-version header response.
1846
+ Version *string
1847
+ }
1848
+
1849
+ // ServiceClientFilterBlobsResponse contains the response from method ServiceClient.FilterBlobs.
1850
+ type ServiceClientFilterBlobsResponse struct {
1851
+ FilterBlobSegment
1852
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1853
+ ClientRequestID *string `xml:"ClientRequestID"`
1854
+
1855
+ // Date contains the information returned from the Date header response.
1856
+ Date *time.Time `xml:"Date"`
1857
+
1858
+ // RequestID contains the information returned from the x-ms-request-id header response.
1859
+ RequestID *string `xml:"RequestID"`
1860
+
1861
+ // Version contains the information returned from the x-ms-version header response.
1862
+ Version *string `xml:"Version"`
1863
+ }
1864
+
1865
+ // ServiceClientGetAccountInfoResponse contains the response from method ServiceClient.GetAccountInfo.
1866
+ type ServiceClientGetAccountInfoResponse struct {
1867
+ // AccountKind contains the information returned from the x-ms-account-kind header response.
1868
+ AccountKind *AccountKind
1869
+
1870
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1871
+ ClientRequestID *string
1872
+
1873
+ // Date contains the information returned from the Date header response.
1874
+ Date *time.Time
1875
+
1876
+ // IsHierarchicalNamespaceEnabled contains the information returned from the x-ms-is-hns-enabled header response.
1877
+ IsHierarchicalNamespaceEnabled *bool
1878
+
1879
+ // RequestID contains the information returned from the x-ms-request-id header response.
1880
+ RequestID *string
1881
+
1882
+ // SKUName contains the information returned from the x-ms-sku-name header response.
1883
+ SKUName *SKUName
1884
+
1885
+ // Version contains the information returned from the x-ms-version header response.
1886
+ Version *string
1887
+ }
1888
+
1889
+ // ServiceClientGetPropertiesResponse contains the response from method ServiceClient.GetProperties.
1890
+ type ServiceClientGetPropertiesResponse struct {
1891
+ StorageServiceProperties
1892
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1893
+ ClientRequestID *string `xml:"ClientRequestID"`
1894
+
1895
+ // RequestID contains the information returned from the x-ms-request-id header response.
1896
+ RequestID *string `xml:"RequestID"`
1897
+
1898
+ // Version contains the information returned from the x-ms-version header response.
1899
+ Version *string `xml:"Version"`
1900
+ }
1901
+
1902
+ // ServiceClientGetStatisticsResponse contains the response from method ServiceClient.GetStatistics.
1903
+ type ServiceClientGetStatisticsResponse struct {
1904
+ StorageServiceStats
1905
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1906
+ ClientRequestID *string `xml:"ClientRequestID"`
1907
+
1908
+ // Date contains the information returned from the Date header response.
1909
+ Date *time.Time `xml:"Date"`
1910
+
1911
+ // RequestID contains the information returned from the x-ms-request-id header response.
1912
+ RequestID *string `xml:"RequestID"`
1913
+
1914
+ // Version contains the information returned from the x-ms-version header response.
1915
+ Version *string `xml:"Version"`
1916
+ }
1917
+
1918
+ // ServiceClientGetUserDelegationKeyResponse contains the response from method ServiceClient.GetUserDelegationKey.
1919
+ type ServiceClientGetUserDelegationKeyResponse struct {
1920
+ UserDelegationKey
1921
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1922
+ ClientRequestID *string `xml:"ClientRequestID"`
1923
+
1924
+ // Date contains the information returned from the Date header response.
1925
+ Date *time.Time `xml:"Date"`
1926
+
1927
+ // RequestID contains the information returned from the x-ms-request-id header response.
1928
+ RequestID *string `xml:"RequestID"`
1929
+
1930
+ // Version contains the information returned from the x-ms-version header response.
1931
+ Version *string `xml:"Version"`
1932
+ }
1933
+
1934
+ // ServiceClientListContainersSegmentResponse contains the response from method ServiceClient.NewListContainersSegmentPager.
1935
+ type ServiceClientListContainersSegmentResponse struct {
1936
+ ListContainersSegmentResponse
1937
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1938
+ ClientRequestID *string `xml:"ClientRequestID"`
1939
+
1940
+ // RequestID contains the information returned from the x-ms-request-id header response.
1941
+ RequestID *string `xml:"RequestID"`
1942
+
1943
+ // Version contains the information returned from the x-ms-version header response.
1944
+ Version *string `xml:"Version"`
1945
+ }
1946
+
1947
+ // ServiceClientSetPropertiesResponse contains the response from method ServiceClient.SetProperties.
1948
+ type ServiceClientSetPropertiesResponse struct {
1949
+ // ClientRequestID contains the information returned from the x-ms-client-request-id header response.
1950
+ ClientRequestID *string
1951
+
1952
+ // RequestID contains the information returned from the x-ms-request-id header response.
1953
+ RequestID *string
1954
+
1955
+ // Version contains the information returned from the x-ms-version header response.
1956
+ Version *string
1957
+ }
1958
+
1959
+ // ServiceClientSubmitBatchResponse contains the response from method ServiceClient.SubmitBatch.
1960
+ type ServiceClientSubmitBatchResponse struct {
1961
+ // Body contains the streaming response.
1962
+ Body io.ReadCloser
1963
+
1964
+ // ContentType contains the information returned from the Content-Type header response.
1965
+ ContentType *string
1966
+
1967
+ // RequestID contains the information returned from the x-ms-request-id header response.
1968
+ RequestID *string
1969
+
1970
+ // Version contains the information returned from the x-ms-version header response.
1971
+ Version *string
1972
+ }