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.
- checksums.yaml +7 -0
- data/.github/dependabot.yml +11 -0
- data/.github/workflows/ci.yml +42 -0
- data/.github/workflows/release.yml +30 -0
- data/.gitignore +10 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +43 -0
- data/LICENSE.txt +21 -0
- data/README.md +130 -0
- data/Rakefile +3 -0
- data/ext/c-decl.go +54 -0
- data/ext/extconf.rb +21 -0
- data/ext/go.mod +60 -0
- data/ext/go.sum +173 -0
- data/ext/result.go +181 -0
- data/ext/ruby_snowflake.go +179 -0
- data/ext/vendor/github.com/99designs/go-keychain/.gitignore +24 -0
- data/ext/vendor/github.com/99designs/go-keychain/.golangci.yml +11 -0
- data/ext/vendor/github.com/99designs/go-keychain/.travis.yml +20 -0
- data/ext/vendor/github.com/99designs/go-keychain/LICENSE +22 -0
- data/ext/vendor/github.com/99designs/go-keychain/README.md +159 -0
- data/ext/vendor/github.com/99designs/go-keychain/corefoundation.go +359 -0
- data/ext/vendor/github.com/99designs/go-keychain/datetime.go +68 -0
- data/ext/vendor/github.com/99designs/go-keychain/ios.go +22 -0
- data/ext/vendor/github.com/99designs/go-keychain/keychain.go +531 -0
- data/ext/vendor/github.com/99designs/go-keychain/macos.go +272 -0
- data/ext/vendor/github.com/99designs/go-keychain/util.go +31 -0
- data/ext/vendor/github.com/99designs/keyring/.gitattributes +1 -0
- data/ext/vendor/github.com/99designs/keyring/.gitignore +1 -0
- data/ext/vendor/github.com/99designs/keyring/.golangci.yml +39 -0
- data/ext/vendor/github.com/99designs/keyring/LICENSE +22 -0
- data/ext/vendor/github.com/99designs/keyring/README.md +67 -0
- data/ext/vendor/github.com/99designs/keyring/Vagrantfile +85 -0
- data/ext/vendor/github.com/99designs/keyring/array.go +54 -0
- data/ext/vendor/github.com/99designs/keyring/config.go +58 -0
- data/ext/vendor/github.com/99designs/keyring/docker-compose.yml +7 -0
- data/ext/vendor/github.com/99designs/keyring/file.go +181 -0
- data/ext/vendor/github.com/99designs/keyring/keychain.go +296 -0
- data/ext/vendor/github.com/99designs/keyring/keyctl.go +327 -0
- data/ext/vendor/github.com/99designs/keyring/keyring.go +134 -0
- data/ext/vendor/github.com/99designs/keyring/kwallet.go +237 -0
- data/ext/vendor/github.com/99designs/keyring/pass.go +166 -0
- data/ext/vendor/github.com/99designs/keyring/prompt.go +27 -0
- data/ext/vendor/github.com/99designs/keyring/secretservice.go +293 -0
- data/ext/vendor/github.com/99designs/keyring/tilde.go +22 -0
- data/ext/vendor/github.com/99designs/keyring/wincred.go +98 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/CHANGELOG.md +537 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/LICENSE.txt +21 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/README.md +39 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/ci.yml +29 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/cloud/cloud.go +44 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/cloud/doc.go +53 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/core.go +113 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/doc.go +257 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/errors.go +14 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/etag.go +48 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/exported.go +83 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/pipeline.go +97 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/request.go +182 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/response_error.go +142 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/log/log.go +38 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/async/async.go +158 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/body/body.go +134 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/loc/loc.go +118 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/op/op.go +144 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/poller.go +24 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/pollers/util.go +317 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/shared/constants.go +35 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/shared/shared.go +159 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/log/doc.go +10 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/log/log.go +50 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/policy/doc.go +10 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/policy/policy.go +155 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/doc.go +10 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/errors.go +19 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/pager.go +77 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/pipeline.go +66 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_api_version.go +75 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_bearer_token.go +116 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_body_download.go +73 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_http_header.go +39 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_include_response.go +34 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_logging.go +263 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_request_id.go +34 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_retry.go +251 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/policy_telemetry.go +79 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/poller.go +326 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/request.go +248 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/response.go +136 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime/transport_default_http_client.go +37 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/streaming/doc.go +9 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/streaming/progress.go +75 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/to/doc.go +9 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/to/to.go +21 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/tracing/constants.go +41 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/tracing/tracing.go +168 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/LICENSE.txt +21 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/diag/diag.go +51 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/diag/doc.go +7 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/errorinfo/doc.go +7 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/errorinfo/errorinfo.go +16 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/log/doc.go +7 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/log/log.go +104 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/temporal/resource.go +123 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/uuid/doc.go +7 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/internal/uuid/uuid.go +76 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/CHANGELOG.md +167 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/LICENSE.txt +21 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/README.md +274 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/appendblob/client.go +352 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/appendblob/models.go +176 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/appendblob/responses.go +26 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/assets.json +6 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/client.go +446 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/constants.go +229 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/models.go +567 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/responses.go +116 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/retry_reader.go +192 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob/utils.go +79 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/bloberror/error_codes.go +156 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/chunkwriting.go +313 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/client.go +532 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/constants.go +39 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/mmf_unix.go +38 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/mmf_windows.go +54 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/models.go +348 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blockblob/responses.go +114 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/ci.yml +28 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/client.go +176 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/common.go +36 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/constants.go +37 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container/client.go +331 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container/constants.go +150 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container/models.go +331 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container/responses.go +44 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/doc.go +213 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/base/clients.go +89 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/access_conditions.go +43 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/access_policy.go +67 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/exported.go +33 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/log_events.go +14 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/set_expiry.go +71 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/shared_key_credential.go +218 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/transfer_validation_option.go +67 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/user_delegation_credential.go +64 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/exported/version.go +12 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/appendblob_client.go +19 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/autorest.md +387 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/blob_client.go +17 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/block_blob_client.go +19 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/build.go +10 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/container_client.go +17 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/models.go +65 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/pageblob_client.go +17 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/service_client.go +17 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_appendblob_client.go +659 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_blob_client.go +2879 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_blockblob_client.go +972 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_constants.go +714 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_container_client.go +1478 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_models.go +1733 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_models_serde.go +481 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_pageblob_client.go +1297 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_response_types.go +1972 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_service_client.go +558 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_time_rfc1123.go +43 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_time_rfc3339.go +59 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/generated/zz_xml_helper.go +41 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/shared/batch_transfer.go +77 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/shared/bytes_writer.go +30 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/shared/section_writer.go +53 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/internal/shared/shared.go +243 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/log.go +11 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/migrationguide.md +76 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/models.go +69 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/pageblob/client.go +433 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/pageblob/constants.go +65 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/pageblob/models.go +330 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/pageblob/responses.go +38 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/responses.go +51 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/sas/account.go +202 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/sas/query_params.go +440 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/sas/service.go +448 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/sas/url_parts.go +166 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/service/client.go +282 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/service/constants.go +92 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/service/models.go +301 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/service/responses.go +44 -0
- data/ext/vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/test-resources.json +579 -0
- data/ext/vendor/github.com/andybalholm/brotli/LICENSE +19 -0
- data/ext/vendor/github.com/andybalholm/brotli/README.md +7 -0
- data/ext/vendor/github.com/andybalholm/brotli/backward_references.go +185 -0
- data/ext/vendor/github.com/andybalholm/brotli/backward_references_hq.go +796 -0
- data/ext/vendor/github.com/andybalholm/brotli/bit_cost.go +436 -0
- data/ext/vendor/github.com/andybalholm/brotli/bit_reader.go +266 -0
- data/ext/vendor/github.com/andybalholm/brotli/block_splitter.go +144 -0
- data/ext/vendor/github.com/andybalholm/brotli/block_splitter_command.go +434 -0
- data/ext/vendor/github.com/andybalholm/brotli/block_splitter_distance.go +433 -0
- data/ext/vendor/github.com/andybalholm/brotli/block_splitter_literal.go +433 -0
- data/ext/vendor/github.com/andybalholm/brotli/brotli_bit_stream.go +1300 -0
- data/ext/vendor/github.com/andybalholm/brotli/cluster.go +30 -0
- data/ext/vendor/github.com/andybalholm/brotli/cluster_command.go +164 -0
- data/ext/vendor/github.com/andybalholm/brotli/cluster_distance.go +326 -0
- data/ext/vendor/github.com/andybalholm/brotli/cluster_literal.go +326 -0
- data/ext/vendor/github.com/andybalholm/brotli/command.go +254 -0
- data/ext/vendor/github.com/andybalholm/brotli/compress_fragment.go +834 -0
- data/ext/vendor/github.com/andybalholm/brotli/compress_fragment_two_pass.go +748 -0
- data/ext/vendor/github.com/andybalholm/brotli/constants.go +77 -0
- data/ext/vendor/github.com/andybalholm/brotli/context.go +2176 -0
- data/ext/vendor/github.com/andybalholm/brotli/decode.go +2586 -0
- data/ext/vendor/github.com/andybalholm/brotli/dictionary.go +122890 -0
- data/ext/vendor/github.com/andybalholm/brotli/dictionary_hash.go +32779 -0
- data/ext/vendor/github.com/andybalholm/brotli/encode.go +1220 -0
- data/ext/vendor/github.com/andybalholm/brotli/encoder_dict.go +22 -0
- data/ext/vendor/github.com/andybalholm/brotli/entropy_encode.go +592 -0
- data/ext/vendor/github.com/andybalholm/brotli/entropy_encode_static.go +4394 -0
- data/ext/vendor/github.com/andybalholm/brotli/fast_log.go +290 -0
- data/ext/vendor/github.com/andybalholm/brotli/find_match_length.go +45 -0
- data/ext/vendor/github.com/andybalholm/brotli/h10.go +287 -0
- data/ext/vendor/github.com/andybalholm/brotli/h5.go +214 -0
- data/ext/vendor/github.com/andybalholm/brotli/h6.go +216 -0
- data/ext/vendor/github.com/andybalholm/brotli/hash.go +342 -0
- data/ext/vendor/github.com/andybalholm/brotli/hash_composite.go +93 -0
- data/ext/vendor/github.com/andybalholm/brotli/hash_forgetful_chain.go +252 -0
- data/ext/vendor/github.com/andybalholm/brotli/hash_longest_match_quickly.go +214 -0
- data/ext/vendor/github.com/andybalholm/brotli/hash_rolling.go +168 -0
- data/ext/vendor/github.com/andybalholm/brotli/histogram.go +226 -0
- data/ext/vendor/github.com/andybalholm/brotli/http.go +192 -0
- data/ext/vendor/github.com/andybalholm/brotli/huffman.go +653 -0
- data/ext/vendor/github.com/andybalholm/brotli/literal_cost.go +182 -0
- data/ext/vendor/github.com/andybalholm/brotli/memory.go +66 -0
- data/ext/vendor/github.com/andybalholm/brotli/metablock.go +574 -0
- data/ext/vendor/github.com/andybalholm/brotli/metablock_command.go +165 -0
- data/ext/vendor/github.com/andybalholm/brotli/metablock_distance.go +165 -0
- data/ext/vendor/github.com/andybalholm/brotli/metablock_literal.go +165 -0
- data/ext/vendor/github.com/andybalholm/brotli/params.go +37 -0
- data/ext/vendor/github.com/andybalholm/brotli/platform.go +103 -0
- data/ext/vendor/github.com/andybalholm/brotli/prefix.go +30 -0
- data/ext/vendor/github.com/andybalholm/brotli/prefix_dec.go +723 -0
- data/ext/vendor/github.com/andybalholm/brotli/quality.go +196 -0
- data/ext/vendor/github.com/andybalholm/brotli/reader.go +102 -0
- data/ext/vendor/github.com/andybalholm/brotli/ringbuffer.go +134 -0
- data/ext/vendor/github.com/andybalholm/brotli/state.go +295 -0
- data/ext/vendor/github.com/andybalholm/brotli/static_dict.go +662 -0
- data/ext/vendor/github.com/andybalholm/brotli/static_dict_lut.go +75094 -0
- data/ext/vendor/github.com/andybalholm/brotli/symbol_list.go +22 -0
- data/ext/vendor/github.com/andybalholm/brotli/transform.go +641 -0
- data/ext/vendor/github.com/andybalholm/brotli/utf8_util.go +70 -0
- data/ext/vendor/github.com/andybalholm/brotli/util.go +7 -0
- data/ext/vendor/github.com/andybalholm/brotli/write_bits.go +52 -0
- data/ext/vendor/github.com/andybalholm/brotli/writer.go +119 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/LICENSE.txt +1873 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/.editorconfig +21 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/.gitignore +35 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/Gopkg.lock +44 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/Gopkg.toml +23 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/Makefile +54 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/array.go +184 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/binary.go +308 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/binarybuilder.go +335 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/boolean.go +117 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/booleanbuilder.go +234 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/bufferbuilder.go +143 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/bufferbuilder_byte.go +30 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/bufferbuilder_numeric.gen.go +124 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/bufferbuilder_numeric.gen.go.tmpl +61 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/builder.go +337 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/compare.go +728 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/concat.go +567 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/data.go +250 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/decimal128.go +334 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/decimal256.go +333 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/dictionary.go +1666 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/doc.go +20 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/extension.go +256 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/fixed_size_list.go +337 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/fixedsize_binary.go +116 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/fixedsize_binarybuilder.go +229 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/float16.go +107 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/float16_builder.go +237 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/interval.go +847 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/json_reader.go +205 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/list.go +589 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/map.go +304 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/null.go +198 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numeric.gen.go +1406 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numeric.gen.go.tmpl +136 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numericbuilder.gen.go +3429 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numericbuilder.gen.go.tmpl +371 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/numericbuilder.gen_test.go.tmpl +216 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/record.go +383 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/string.go +498 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/struct.go +442 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/table.go +337 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/union.go +1308 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array/util.go +492 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/array.go +122 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/arrio/arrio.go +92 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/Makefile +62 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops.go +63 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_amd64.go +35 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_arm64.go +25 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_avx2_amd64.go +38 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_avx2_amd64.s +192 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_noasm.go +25 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_ppc64le.go +25 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_s390x.go +25 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_sse4_amd64.go +38 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmap_ops_sse4_amd64.s +256 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitmaps.go +586 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/bitutil.go +220 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/endian_default.go +33 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/bitutil/endian_s390x.go +32 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/compare.go +127 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype.go +376 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_binary.go +98 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_extension.go +173 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_fixedwidth.go +786 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_nested.go +732 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_null.go +33 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_numeric.gen.go +206 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_numeric.gen.go.tmpl +45 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/datatype_numeric.gen.go.tmpldata +66 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/decimal128/decimal128.go +445 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/decimal256/decimal256.go +545 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/doc.go +43 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/endian/big.go +30 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/endian/endian.go +41 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/endian/little.go +30 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/errors.go +27 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/float16/float16.go +70 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/assert_off.go +24 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/assert_on.go +28 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/doc.go +32 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/log_off.go +21 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/log_on.go +32 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/debug/util.go +37 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/dictutils/dict.go +406 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Binary.go +51 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Block.go +74 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/BodyCompression.go +89 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/BodyCompressionMethod.go +52 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Bool.go +50 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Buffer.go +73 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/CompressionType.go +45 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Date.go +71 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/DateUnit.go +45 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Decimal.go +107 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/DictionaryBatch.go +108 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/DictionaryEncoding.go +135 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/DictionaryKind.go +47 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Duration.go +65 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Endianness.go +47 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Feature.go +71 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Field.go +188 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/FieldNode.go +76 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/FixedSizeBinary.go +67 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/FixedSizeList.go +67 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/FloatingPoint.go +65 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Footer.go +162 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Int.go +80 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Interval.go +65 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/IntervalUnit.go +48 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/KeyValue.go +75 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/LargeBinary.go +52 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/LargeList.go +52 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/LargeUtf8.go +52 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/List.go +50 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Map.go +92 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Message.go +133 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/MessageHeader.go +65 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/MetadataVersion.go +65 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Null.go +51 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Precision.go +48 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/RecordBatch.go +154 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Schema.go +159 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseMatrixCompressedAxis.go +45 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseMatrixIndexCSR.go +181 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseMatrixIndexCSX.go +200 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseTensor.go +175 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseTensorIndex.go +51 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseTensorIndexCOO.go +179 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/SparseTensorIndexCSF.go +291 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Struct_.go +53 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Tensor.go +163 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/TensorDim.go +83 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Time.go +94 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/TimeUnit.go +51 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Timestamp.go +201 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Type.go +108 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Union.go +101 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/UnionMode.go +45 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/flatbuf/Utf8.go +51 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/internal/utils.go +47 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/compression.go +120 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/endian_swap.go +162 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/file_reader.go +728 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/file_writer.go +392 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/ipc.go +178 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/message.go +242 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/metadata.go +1237 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/reader.go +284 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/ipc/writer.go +892 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/Makefile +66 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/allocator.go +33 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/buffer.go +145 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/cgo_allocator.go +108 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/cgo_allocator_defaults.go +23 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/cgo_allocator_logging.go +23 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/checked_allocator.go +157 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/doc.go +20 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/go_allocator.go +48 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/internal/cgoalloc/allocator.cc +71 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/internal/cgoalloc/allocator.go +107 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/internal/cgoalloc/allocator.h +39 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/internal/cgoalloc/helpers.h +52 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory.go +33 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_amd64.go +33 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_arm64.go +31 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_avx2_amd64.go +41 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_avx2_amd64.s +85 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_js_wasm.go +23 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_neon_arm64.go +31 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_neon_arm64.s +43 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_noasm.go +23 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_sse4_amd64.go +31 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/memory_sse4_amd64.s +84 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/memory/util.go +37 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/numeric.schema.json +15 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/numeric.tmpldata +147 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/record.go +48 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/schema.go +266 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/table.go +189 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/tools.go +25 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_string.go +61 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_boolean.go +28 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_decimal128.go +75 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_decimal256.go +70 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_float16.go +74 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_interval.go +184 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_numeric.gen.go +814 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_numeric.gen.go.tmpl +95 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/type_traits_numeric.gen_test.go.tmpl +61 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/arrow/unionmode_string.go +25 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/bitutils/bit_block_counter.go +417 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/bitutils/bit_run_reader.go +151 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/bitutils/bit_set_run_reader.go +346 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/bitutils/bitmap_generate.go +107 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/hashing/types.tmpldata +42 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/hashing/xxh3_memo_table.gen.go +2783 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/hashing/xxh3_memo_table.gen.go.tmpl +343 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/hashing/xxh3_memo_table.go +465 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/Makefile +80 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/buf_reader.go +212 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/endians_default.go +31 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/endians_s390x.go +33 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/math.go +49 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max.go +212 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_amd64.go +56 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_arm64.go +66 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_avx2_amd64.go +91 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_avx2_amd64.s +927 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_neon_arm64.go +56 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_neon_arm64.s +324 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_noasm.go +32 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_ppc64le.go +31 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_s390x.go +31 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_sse4_amd64.go +89 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/min_max_sse4_amd64.s +1044 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints.go +407 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints.go.tmpl +34 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints.tmpldata +34 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_amd64.go +326 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_amd64.go.tmpl +75 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_arm64.go +97 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_avx2_amd64.go +474 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_avx2_amd64.s +3074 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_def.go +227 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_noasm.go +97 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_noasm.go.tmpl +34 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_ppc64le.go +97 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_s390x.go +97 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_s390x.go.tmpl +34 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_simd.go.tmpl +42 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_sse4_amd64.go +474 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/internal/utils/transpose_ints_sse4_amd64.s +3074 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/.gitignore +31 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/brotli.go +115 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/compress.go +156 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/gzip.go +98 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/snappy.go +62 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/compress/zstd.go +112 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/doc.go +67 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/encryption_properties.go +711 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/assert_off.go +24 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/assert_on.go +28 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/doc.go +23 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/log_off.go +24 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/debug/log_on.go +32 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/gen-go/parquet/GoUnusedProtection__.go +6 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/gen-go/parquet/parquet-consts.go +23 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/gen-go/parquet/parquet.go +10967 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/internal/gen-go/parquet/staticcheck.conf +17 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/reader_properties.go +88 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/tools.go +26 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/types.go +391 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/version_string.go +25 -0
- data/ext/vendor/github.com/apache/arrow/go/v10/parquet/writer_properties.go +533 -0
- data/ext/vendor/github.com/apache/thrift/LICENSE +306 -0
- data/ext/vendor/github.com/apache/thrift/NOTICE +5 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/application_exception.go +183 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/binary_protocol.go +548 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/buf_pool.go +52 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/buffered_transport.go +99 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/client.go +109 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/compact_protocol.go +846 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/configuration.go +378 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/context.go +24 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/debug_protocol.go +447 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/deserializer.go +121 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/exception.go +116 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/framed_transport.go +250 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/header_context.go +110 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/header_protocol.go +351 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/header_transport.go +816 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/http_client.go +256 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/http_transport.go +74 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/iostream_transport.go +222 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/json_protocol.go +564 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/logger.go +69 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/memory_buffer.go +80 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/messagetype.go +31 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/middleware.go +109 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/multiplexed_protocol.go +237 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/numeric.go +164 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/pointerize.go +52 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/processor_factory.go +80 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/protocol.go +184 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/protocol_exception.go +104 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/protocol_factory.go +25 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/response_helper.go +94 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/rich_transport.go +71 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/serializer.go +136 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/server.go +35 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/server_socket.go +137 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/server_transport.go +34 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go +1334 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/simple_server.go +336 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/socket.go +241 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/socket_conn.go +124 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/socket_non_unix_conn.go +35 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/socket_unix_conn.go +84 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/ssl_server_socket.go +112 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/ssl_socket.go +262 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/staticcheck.conf +4 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/transport.go +70 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/transport_exception.go +131 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/transport_factory.go +39 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/type.go +69 -0
- data/ext/vendor/github.com/apache/thrift/lib/go/thrift/zlib_transport.go +137 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/NOTICE.txt +3 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/arn/arn.go +92 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/config.go +179 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/context.go +22 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/credential_cache.go +218 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/credentials.go +131 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaults/auto.go +38 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaults/configuration.go +43 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaults/defaults.go +50 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaults/doc.go +2 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/defaultsmode.go +95 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/doc.go +62 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/endpoints.go +229 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/errors.go +9 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/from_ptr.go +365 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/logging.go +119 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/logging_generate.go +95 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/metadata.go +180 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/middleware.go +168 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/osname.go +24 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/osname_go115.go +24 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/request_id.go +27 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/request_id_retriever.go +49 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/middleware/user_agent.go +243 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/CHANGELOG.md +54 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/debug.go +144 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/decode.go +218 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/encode.go +167 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/error.go +23 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi/headers.go +24 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi/middleware.go +71 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi/transport.go +13 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/eventstreamapi/transport_go117.go +12 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/header.go +175 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/header_value.go +521 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/message.go +117 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/xml/error_utils.go +56 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/ratelimit/token_bucket.go +96 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/ratelimit/token_rate_limit.go +87 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/request.go +25 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/adaptive.go +156 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/adaptive_ratelimit.go +158 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/adaptive_token_bucket.go +83 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/doc.go +80 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/errors.go +20 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/jitter_backoff.go +49 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/metadata.go +52 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/middleware.go +331 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/retry.go +90 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/retryable_error.go +186 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/standard.go +258 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/throttle_error.go +60 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retry/timeout_error.go +52 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/retryer.go +127 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/runtime.go +14 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/cache.go +115 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/const.go +40 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/header_rules.go +82 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/headers.go +68 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/hmac.go +13 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/host.go +75 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/scope.go +13 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/time.go +36 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/internal/v4/util.go +80 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/v4/middleware.go +400 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/v4/presign_middleware.go +127 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/v4/stream.go +86 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/signer/v4/v4.go +548 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/to_ptr.go +297 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/client.go +310 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/content_type.go +42 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/response_error.go +33 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/response_error_middleware.go +54 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/transport/http/timeout_read_closer.go +104 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/types.go +42 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/aws/version.go +8 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/CHANGELOG.md +197 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/doc.go +4 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/credentials/static_provider.go +53 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/CHANGELOG.md +249 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/api.go +37 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/arn.go +23 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/bucket_region.go +139 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/buffered_read_seeker.go +79 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/default_read_seeker_write_to.go +8 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/default_read_seeker_write_to_windows.go +5 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/default_writer_read_from.go +8 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/default_writer_read_from_windows.go +5 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/doc.go +3 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/download.go +525 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/pool.go +251 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/read_seeker_write_to.go +65 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/types.go +187 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/upload.go +808 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/writer_read_from.go +83 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/copy.go +112 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/equal.go +33 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/path_value.go +225 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/prettify.go +131 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/awsutil/string_value.go +88 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/CHANGELOG.md +130 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/config.go +65 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/configsources/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/CHANGELOG.md +103 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/endpoints.go +302 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/rand/rand.go +33 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sdk/interfaces.go +9 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sdk/time.go +74 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sdkio/byte.go +12 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/strings/strings.go +11 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sync/singleflight/LICENSE +28 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sync/singleflight/docs.go +7 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/sync/singleflight/singleflight.go +210 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/timeconv/duration.go +13 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/CHANGELOG.md +61 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/credentials.go +141 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/error.go +17 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/crypto/compare.go +30 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/crypto/ecc.go +113 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/const.go +36 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/header_rules.go +82 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/headers.go +67 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/hmac.go +13 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/host.go +75 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/time.go +36 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/internal/v4/util.go +64 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/middleware.go +105 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/presign_middleware.go +117 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/internal/v4a/v4a.go +520 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/CHANGELOG.md +80 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/accept_encoding_gzip.go +176 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/doc.go +22 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/CHANGELOG.md +84 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/algorithms.go +323 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/aws_chunked_encoding.go +389 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/middleware_add.go +185 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/middleware_compute_input_checksum.go +479 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/middleware_setup_context.go +117 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum/middleware_validate_output.go +131 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/CHANGELOG.md +147 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/context.go +48 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/doc.go +3 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/middleware.go +110 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/CHANGELOG.md +156 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn/accesspoint_arn.go +53 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn/arn.go +85 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn/outpost_arn.go +128 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn/s3_object_lambda_arn.go +15 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/arn_lookup.go +73 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/config/config.go +22 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/endpoint_error.go +183 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/host_id.go +29 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/metadata.go +28 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/metadata_retriever.go +52 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/resource_request.go +77 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/response_error.go +33 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/response_error_middleware.go +60 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/update_endpoint.go +78 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/xml_utils.go +89 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/CHANGELOG.md +228 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/LICENSE.txt +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_client.go +772 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_AbortMultipartUpload.go +232 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_CompleteMultipartUpload.go +436 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_CopyObject.go +574 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_CreateBucket.go +318 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_CreateMultipartUpload.go +604 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucket.go +200 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketAnalyticsConfiguration.go +189 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketCors.go +172 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketEncryption.go +180 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketIntelligentTieringConfiguration.go +188 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketInventoryConfiguration.go +188 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketLifecycle.go +178 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketMetricsConfiguration.go +194 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketOwnershipControls.go +171 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketPolicy.go +181 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketReplication.go +179 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketTagging.go +170 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteBucketWebsite.go +179 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteObject.go +270 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteObjectTagging.go +202 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeleteObjects.go +294 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_DeletePublicAccessBlock.go +183 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketAccelerateConfiguration.go +188 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketAcl.go +181 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketAnalyticsConfiguration.go +194 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketCors.go +179 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketEncryption.go +188 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketIntelligentTieringConfiguration.go +193 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketInventoryConfiguration.go +192 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketLifecycleConfiguration.go +209 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketLocation.go +248 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketLogging.go +177 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketMetricsConfiguration.go +199 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketNotificationConfiguration.go +193 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketOwnershipControls.go +177 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketPolicy.go +180 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketPolicyStatus.go +189 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketReplication.go +188 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketRequestPayment.go +172 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketTagging.go +185 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketVersioning.go +186 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetBucketWebsite.go +190 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObject.go +593 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectAcl.go +224 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectAttributes.go +363 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectLegalHold.go +195 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectLockConfiguration.go +181 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectRetention.go +195 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectTagging.go +223 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetObjectTorrent.go +191 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_GetPublicAccessBlock.go +196 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_HeadBucket.go +541 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_HeadObject.go +884 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBucketAnalyticsConfigurations.go +214 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBucketIntelligentTieringConfigurations.go +206 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBucketInventoryConfigurations.go +215 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBucketMetricsConfigurations.go +218 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListBuckets.go +145 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListMultipartUploads.go +310 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListObjectVersions.go +276 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListObjects.go +284 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListObjectsV2.go +408 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_ListParts.go +424 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketAccelerateConfiguration.go +237 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketAcl.go +368 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketAnalyticsConfiguration.go +234 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketCors.go +253 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketEncryption.go +243 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketIntelligentTieringConfiguration.go +225 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketInventoryConfiguration.go +235 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketLifecycleConfiguration.go +269 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketLogging.go +258 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketMetricsConfiguration.go +209 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketNotificationConfiguration.go +209 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketOwnershipControls.go +197 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketPolicy.go +229 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketReplication.go +264 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketRequestPayment.go +221 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketTagging.go +266 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketVersioning.go +243 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutBucketWebsite.go +279 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObject.go +613 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectAcl.go +410 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectLegalHold.go +237 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectLockConfiguration.go +234 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectRetention.go +244 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutObjectTagging.go +291 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_PutPublicAccessBlock.go +240 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_RestoreObject.go +457 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_SelectObjectContent.go +426 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_UploadPart.go +496 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_UploadPartCopy.go +437 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/api_op_WriteGetObjectResponse.go +457 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/deserializers.go +21940 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/doc.go +5 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/endpoints.go +208 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/eventstream.go +285 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/generated.json +128 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/arn/arn_parser.go +106 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/doc.go +80 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/handle_200_error.go +74 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/host.go +22 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/presigned_expires.go +49 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/process_arn_resource.go +564 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/remove_bucket_middleware.go +58 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/s3_object_lambda.go +84 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/signer_wrapper.go +213 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations/update_endpoint.go +306 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/internal/endpoints/endpoints.go +836 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/serializers.go +12713 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/types/enums.go +1200 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/types/errors.go +188 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/types/types.go +3892 -0
- data/ext/vendor/github.com/aws/aws-sdk-go-v2/service/s3/validators.go +5494 -0
- data/ext/vendor/github.com/aws/smithy-go/.gitignore +22 -0
- data/ext/vendor/github.com/aws/smithy-go/.travis.yml +28 -0
- data/ext/vendor/github.com/aws/smithy-go/CHANGELOG.md +157 -0
- data/ext/vendor/github.com/aws/smithy-go/CODE_OF_CONDUCT.md +4 -0
- data/ext/vendor/github.com/aws/smithy-go/CONTRIBUTING.md +59 -0
- data/ext/vendor/github.com/aws/smithy-go/LICENSE +175 -0
- data/ext/vendor/github.com/aws/smithy-go/Makefile +63 -0
- data/ext/vendor/github.com/aws/smithy-go/NOTICE +1 -0
- data/ext/vendor/github.com/aws/smithy-go/README.md +12 -0
- data/ext/vendor/github.com/aws/smithy-go/auth/bearer/docs.go +3 -0
- data/ext/vendor/github.com/aws/smithy-go/auth/bearer/middleware.go +104 -0
- data/ext/vendor/github.com/aws/smithy-go/auth/bearer/token.go +50 -0
- data/ext/vendor/github.com/aws/smithy-go/auth/bearer/token_cache.go +208 -0
- data/ext/vendor/github.com/aws/smithy-go/context/suppress_expired.go +81 -0
- data/ext/vendor/github.com/aws/smithy-go/doc.go +2 -0
- data/ext/vendor/github.com/aws/smithy-go/document/doc.go +12 -0
- data/ext/vendor/github.com/aws/smithy-go/document/document.go +153 -0
- data/ext/vendor/github.com/aws/smithy-go/document/errors.go +75 -0
- data/ext/vendor/github.com/aws/smithy-go/document.go +10 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/doc.go +4 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/encoding.go +40 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/encode.go +116 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/header.go +122 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/path_replace.go +108 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/query.go +107 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/httpbinding/uri.go +111 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/array.go +49 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/constants.go +10 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/doc.go +49 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/element.go +91 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/encoder.go +51 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/error_utils.go +51 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/escape.go +137 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/map.go +53 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/value.go +302 -0
- data/ext/vendor/github.com/aws/smithy-go/encoding/xml/xml_decoder.go +154 -0
- data/ext/vendor/github.com/aws/smithy-go/errors.go +137 -0
- data/ext/vendor/github.com/aws/smithy-go/go_module_metadata.go +6 -0
- data/ext/vendor/github.com/aws/smithy-go/internal/sync/singleflight/LICENSE +28 -0
- data/ext/vendor/github.com/aws/smithy-go/internal/sync/singleflight/docs.go +8 -0
- data/ext/vendor/github.com/aws/smithy-go/internal/sync/singleflight/singleflight.go +210 -0
- data/ext/vendor/github.com/aws/smithy-go/io/byte.go +12 -0
- data/ext/vendor/github.com/aws/smithy-go/io/doc.go +2 -0
- data/ext/vendor/github.com/aws/smithy-go/io/reader.go +16 -0
- data/ext/vendor/github.com/aws/smithy-go/io/ringbuffer.go +94 -0
- data/ext/vendor/github.com/aws/smithy-go/local-mod-replace.sh +39 -0
- data/ext/vendor/github.com/aws/smithy-go/logging/logger.go +82 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/doc.go +67 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/logging.go +46 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/metadata.go +65 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/middleware.go +71 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/ordered_group.go +268 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/stack.go +209 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/stack_values.go +100 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/step_build.go +211 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/step_deserialize.go +217 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/step_finalize.go +211 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/step_initialize.go +211 -0
- data/ext/vendor/github.com/aws/smithy-go/middleware/step_serialize.go +219 -0
- data/ext/vendor/github.com/aws/smithy-go/modman.toml +11 -0
- data/ext/vendor/github.com/aws/smithy-go/ptr/doc.go +5 -0
- data/ext/vendor/github.com/aws/smithy-go/ptr/from_ptr.go +601 -0
- data/ext/vendor/github.com/aws/smithy-go/ptr/gen_scalars.go +83 -0
- data/ext/vendor/github.com/aws/smithy-go/ptr/to_ptr.go +499 -0
- data/ext/vendor/github.com/aws/smithy-go/rand/doc.go +3 -0
- data/ext/vendor/github.com/aws/smithy-go/rand/rand.go +31 -0
- data/ext/vendor/github.com/aws/smithy-go/rand/uuid.go +87 -0
- data/ext/vendor/github.com/aws/smithy-go/sync/error.go +53 -0
- data/ext/vendor/github.com/aws/smithy-go/time/time.go +134 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/checksum_middleware.go +70 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/client.go +120 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/doc.go +5 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/headerlist.go +163 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/host.go +89 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/internal/io/safe.go +75 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/md5_checksum.go +25 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_close_response_body.go +79 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_content_length.go +84 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_headers.go +167 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_http_logging.go +75 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_metadata.go +51 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/middleware_min_proto.go +79 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/request.go +189 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/response.go +34 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/time.go +13 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/url.go +44 -0
- data/ext/vendor/github.com/aws/smithy-go/transport/http/user_agent.go +37 -0
- data/ext/vendor/github.com/aws/smithy-go/validation.go +140 -0
- data/ext/vendor/github.com/aws/smithy-go/waiter/logger.go +36 -0
- data/ext/vendor/github.com/aws/smithy-go/waiter/waiter.go +66 -0
- data/ext/vendor/github.com/danieljoos/wincred/.gitattributes +1 -0
- data/ext/vendor/github.com/danieljoos/wincred/.gitignore +25 -0
- data/ext/vendor/github.com/danieljoos/wincred/LICENSE +21 -0
- data/ext/vendor/github.com/danieljoos/wincred/README.md +145 -0
- data/ext/vendor/github.com/danieljoos/wincred/conversion.go +116 -0
- data/ext/vendor/github.com/danieljoos/wincred/conversion_unsupported.go +11 -0
- data/ext/vendor/github.com/danieljoos/wincred/sys.go +143 -0
- data/ext/vendor/github.com/danieljoos/wincred/sys_unsupported.go +36 -0
- data/ext/vendor/github.com/danieljoos/wincred/types.go +69 -0
- data/ext/vendor/github.com/danieljoos/wincred/wincred.go +111 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/.gitignore +23 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/LICENSE +21 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/README.md +938 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes/ecb.go +68 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes/key_wrap.go +113 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes_cbc_hmac.go +112 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes_gcm.go +98 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/aes_gcm_kw.go +128 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/aeskw.go +64 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/arrays/arrays.go +116 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/base64url/base64url.go +31 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/compact/compact.go +33 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/deflate.go +39 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/direct.go +39 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/ecdh.go +157 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/ecdh_aeskw.go +42 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/ecdsa_using_sha.go +76 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/hmac.go +13 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/hmac_using_sha.go +46 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/jose.go +424 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/kdf/nist_sp800_56a.go +43 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/kdf/pbkdf2.go +63 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_cert.pem +14 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.key +5 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_private.pem +5 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ec_public.key +4 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/keys/ecc/ecc.go +88 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/padding/align.go +23 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/padding/pkcs7.go +38 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/pbse2_hmac_aeskw.go +103 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/plaintext.go +38 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/rsa_oaep.go +57 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/rsa_pkcs1v15.go +41 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/rsa_using_sha.go +50 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/rsapss_using_sha.go +43 -0
- data/ext/vendor/github.com/dvsekhvalnov/jose2go/sha.go +24 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/.gitignore +5 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/.travis.yml +12 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/LICENSE +8 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/MIGRATION_GUIDE.md +97 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/README.md +104 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/VERSION_HISTORY.md +118 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/claims.go +136 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/doc.go +4 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/ecdsa.go +148 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/ecdsa_utils.go +69 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/errors.go +59 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/hmac.go +95 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/map_claims.go +122 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/none.go +52 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/parser.go +148 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/rsa.go +101 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/rsa_pss.go +142 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/rsa_utils.go +101 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/signing_method.go +35 -0
- data/ext/vendor/github.com/form3tech-oss/jwt-go/token.go +108 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/.gitattributes +1 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/CODE_OF_CONDUCT.md +76 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/CONTRIBUTING.md +12 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/LICENSE +21 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/README.md +108 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/charset/charset.go +309 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/json/json.go +544 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/archive.go +116 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/audio.go +76 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/binary.go +196 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/database.go +13 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/document.go +62 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/font.go +39 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/ftyp.go +57 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/geo.go +55 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/image.go +106 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/magic.go +239 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/ms_office.go +225 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/ogg.go +42 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/text.go +375 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/text_csv.go +51 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/video.go +85 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/internal/magic/zip.go +92 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/mime.go +186 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/mimetype.gif +0 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/mimetype.go +123 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/supported_mimes.md +176 -0
- data/ext/vendor/github.com/gabriel-vasile/mimetype/tree.go +258 -0
- data/ext/vendor/github.com/goccy/go-json/.codecov.yml +32 -0
- data/ext/vendor/github.com/goccy/go-json/.gitignore +2 -0
- data/ext/vendor/github.com/goccy/go-json/.golangci.yml +83 -0
- data/ext/vendor/github.com/goccy/go-json/CHANGELOG.md +393 -0
- data/ext/vendor/github.com/goccy/go-json/LICENSE +21 -0
- data/ext/vendor/github.com/goccy/go-json/Makefile +39 -0
- data/ext/vendor/github.com/goccy/go-json/README.md +529 -0
- data/ext/vendor/github.com/goccy/go-json/color.go +68 -0
- data/ext/vendor/github.com/goccy/go-json/decode.go +232 -0
- data/ext/vendor/github.com/goccy/go-json/docker-compose.yml +13 -0
- data/ext/vendor/github.com/goccy/go-json/encode.go +326 -0
- data/ext/vendor/github.com/goccy/go-json/error.go +39 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go +37 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/array.go +169 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/bool.go +78 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/bytes.go +113 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/compile.go +487 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/compile_norace.go +29 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/compile_race.go +37 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/context.go +254 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/float.go +158 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/func.go +141 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/int.go +242 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/interface.go +458 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/invalid.go +45 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/map.go +187 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/number.go +112 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/option.go +15 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/ptr.go +87 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/slice.go +301 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/stream.go +556 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/string.go +441 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/struct.go +819 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/type.go +29 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/uint.go +190 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/unmarshal_json.go +99 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/unmarshal_text.go +280 -0
- data/ext/vendor/github.com/goccy/go-json/internal/decoder/wrapped_string.go +68 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/code.go +1017 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/compact.go +286 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/compiler.go +930 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/compiler_norace.go +32 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/compiler_race.go +45 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/context.go +105 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/decode_rune.go +126 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/encoder.go +596 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/indent.go +211 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/int.go +152 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/map112.go +9 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/map113.go +9 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/opcode.go +669 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/option.go +47 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/optype.go +932 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/query.go +135 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/string.go +459 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/string_table.go +415 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm/debug_vm.go +35 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm/hack.go +9 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm/util.go +207 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm/vm.go +4859 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color/debug_vm.go +35 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color/hack.go +9 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color/util.go +274 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color/vm.go +4859 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color_indent/debug_vm.go +35 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color_indent/util.go +296 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_color_indent/vm.go +4859 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_indent/debug_vm.go +35 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_indent/hack.go +9 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_indent/util.go +229 -0
- data/ext/vendor/github.com/goccy/go-json/internal/encoder/vm_indent/vm.go +4859 -0
- data/ext/vendor/github.com/goccy/go-json/internal/errors/error.go +164 -0
- data/ext/vendor/github.com/goccy/go-json/internal/runtime/rtype.go +263 -0
- data/ext/vendor/github.com/goccy/go-json/internal/runtime/struct_field.go +91 -0
- data/ext/vendor/github.com/goccy/go-json/internal/runtime/type.go +100 -0
- data/ext/vendor/github.com/goccy/go-json/json.go +371 -0
- data/ext/vendor/github.com/goccy/go-json/option.go +72 -0
- data/ext/vendor/github.com/goccy/go-json/query.go +47 -0
- data/ext/vendor/github.com/godbus/dbus/.travis.yml +46 -0
- data/ext/vendor/github.com/godbus/dbus/CONTRIBUTING.md +50 -0
- data/ext/vendor/github.com/godbus/dbus/LICENSE +25 -0
- data/ext/vendor/github.com/godbus/dbus/MAINTAINERS +3 -0
- data/ext/vendor/github.com/godbus/dbus/README.markdown +44 -0
- data/ext/vendor/github.com/godbus/dbus/auth.go +252 -0
- data/ext/vendor/github.com/godbus/dbus/auth_anonymous.go +16 -0
- data/ext/vendor/github.com/godbus/dbus/auth_external.go +26 -0
- data/ext/vendor/github.com/godbus/dbus/auth_sha1.go +102 -0
- data/ext/vendor/github.com/godbus/dbus/call.go +60 -0
- data/ext/vendor/github.com/godbus/dbus/conn.go +865 -0
- data/ext/vendor/github.com/godbus/dbus/conn_darwin.go +37 -0
- data/ext/vendor/github.com/godbus/dbus/conn_other.go +93 -0
- data/ext/vendor/github.com/godbus/dbus/conn_unix.go +17 -0
- data/ext/vendor/github.com/godbus/dbus/conn_windows.go +15 -0
- data/ext/vendor/github.com/godbus/dbus/dbus.go +427 -0
- data/ext/vendor/github.com/godbus/dbus/decoder.go +286 -0
- data/ext/vendor/github.com/godbus/dbus/default_handler.go +328 -0
- data/ext/vendor/github.com/godbus/dbus/doc.go +69 -0
- data/ext/vendor/github.com/godbus/dbus/encoder.go +210 -0
- data/ext/vendor/github.com/godbus/dbus/export.go +412 -0
- data/ext/vendor/github.com/godbus/dbus/homedir.go +28 -0
- data/ext/vendor/github.com/godbus/dbus/homedir_dynamic.go +15 -0
- data/ext/vendor/github.com/godbus/dbus/homedir_static.go +45 -0
- data/ext/vendor/github.com/godbus/dbus/match.go +62 -0
- data/ext/vendor/github.com/godbus/dbus/message.go +353 -0
- data/ext/vendor/github.com/godbus/dbus/object.go +211 -0
- data/ext/vendor/github.com/godbus/dbus/server_interfaces.go +107 -0
- data/ext/vendor/github.com/godbus/dbus/sig.go +259 -0
- data/ext/vendor/github.com/godbus/dbus/transport_darwin.go +6 -0
- data/ext/vendor/github.com/godbus/dbus/transport_generic.go +50 -0
- data/ext/vendor/github.com/godbus/dbus/transport_nonce_tcp.go +39 -0
- data/ext/vendor/github.com/godbus/dbus/transport_tcp.go +41 -0
- data/ext/vendor/github.com/godbus/dbus/transport_unix.go +214 -0
- data/ext/vendor/github.com/godbus/dbus/transport_unixcred_dragonfly.go +95 -0
- data/ext/vendor/github.com/godbus/dbus/transport_unixcred_freebsd.go +91 -0
- data/ext/vendor/github.com/godbus/dbus/transport_unixcred_linux.go +25 -0
- data/ext/vendor/github.com/godbus/dbus/transport_unixcred_openbsd.go +14 -0
- data/ext/vendor/github.com/godbus/dbus/variant.go +144 -0
- data/ext/vendor/github.com/godbus/dbus/variant_lexer.go +284 -0
- data/ext/vendor/github.com/godbus/dbus/variant_parser.go +817 -0
- data/ext/vendor/github.com/golang/snappy/.gitignore +16 -0
- data/ext/vendor/github.com/golang/snappy/AUTHORS +18 -0
- data/ext/vendor/github.com/golang/snappy/CONTRIBUTORS +41 -0
- data/ext/vendor/github.com/golang/snappy/LICENSE +27 -0
- data/ext/vendor/github.com/golang/snappy/README +107 -0
- data/ext/vendor/github.com/golang/snappy/decode.go +264 -0
- data/ext/vendor/github.com/golang/snappy/decode_amd64.s +490 -0
- data/ext/vendor/github.com/golang/snappy/decode_arm64.s +494 -0
- data/ext/vendor/github.com/golang/snappy/decode_asm.go +15 -0
- data/ext/vendor/github.com/golang/snappy/decode_other.go +115 -0
- data/ext/vendor/github.com/golang/snappy/encode.go +289 -0
- data/ext/vendor/github.com/golang/snappy/encode_amd64.s +730 -0
- data/ext/vendor/github.com/golang/snappy/encode_arm64.s +722 -0
- data/ext/vendor/github.com/golang/snappy/encode_asm.go +30 -0
- data/ext/vendor/github.com/golang/snappy/encode_other.go +238 -0
- data/ext/vendor/github.com/golang/snappy/snappy.go +98 -0
- data/ext/vendor/github.com/google/flatbuffers/LICENSE.txt +202 -0
- data/ext/vendor/github.com/google/flatbuffers/go/BUILD.bazel +23 -0
- data/ext/vendor/github.com/google/flatbuffers/go/builder.go +835 -0
- data/ext/vendor/github.com/google/flatbuffers/go/doc.go +3 -0
- data/ext/vendor/github.com/google/flatbuffers/go/encode.go +238 -0
- data/ext/vendor/github.com/google/flatbuffers/go/grpc.go +38 -0
- data/ext/vendor/github.com/google/flatbuffers/go/lib.go +25 -0
- data/ext/vendor/github.com/google/flatbuffers/go/sizes.go +55 -0
- data/ext/vendor/github.com/google/flatbuffers/go/struct.go +8 -0
- data/ext/vendor/github.com/google/flatbuffers/go/table.go +505 -0
- data/ext/vendor/github.com/gsterjov/go-libsecret/LICENSE +22 -0
- data/ext/vendor/github.com/gsterjov/go-libsecret/collection.go +124 -0
- data/ext/vendor/github.com/gsterjov/go-libsecret/item.go +77 -0
- data/ext/vendor/github.com/gsterjov/go-libsecret/prompt.go +55 -0
- data/ext/vendor/github.com/gsterjov/go-libsecret/secret.go +21 -0
- data/ext/vendor/github.com/gsterjov/go-libsecret/service.go +141 -0
- data/ext/vendor/github.com/gsterjov/go-libsecret/session.go +22 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/.gitignore +4 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/.travis.yml +28 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/LICENSE +13 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/Makefile +51 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/README.md +87 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/api.go +49 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/astnodetype_string.go +16 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/functions.go +842 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/interpreter.go +418 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/lexer.go +420 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/parser.go +603 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/toktype_string.go +16 -0
- data/ext/vendor/github.com/jmespath/go-jmespath/util.go +185 -0
- data/ext/vendor/github.com/klauspost/asmfmt/.gitignore +24 -0
- data/ext/vendor/github.com/klauspost/asmfmt/.goreleaser.yml +77 -0
- data/ext/vendor/github.com/klauspost/asmfmt/LICENSE +22 -0
- data/ext/vendor/github.com/klauspost/asmfmt/README.md +113 -0
- data/ext/vendor/github.com/klauspost/asmfmt/asmfmt.go +652 -0
- data/ext/vendor/github.com/klauspost/asmfmt/cmd/asmfmt/LICENSE +27 -0
- data/ext/vendor/github.com/klauspost/asmfmt/cmd/asmfmt/doc.go +43 -0
- data/ext/vendor/github.com/klauspost/asmfmt/cmd/asmfmt/main.go +203 -0
- data/ext/vendor/github.com/klauspost/compress/.gitattributes +2 -0
- data/ext/vendor/github.com/klauspost/compress/.gitignore +32 -0
- data/ext/vendor/github.com/klauspost/compress/.goreleaser.yml +141 -0
- data/ext/vendor/github.com/klauspost/compress/LICENSE +304 -0
- data/ext/vendor/github.com/klauspost/compress/README.md +578 -0
- data/ext/vendor/github.com/klauspost/compress/compressible.go +85 -0
- data/ext/vendor/github.com/klauspost/compress/flate/deflate.go +910 -0
- data/ext/vendor/github.com/klauspost/compress/flate/dict_decoder.go +184 -0
- data/ext/vendor/github.com/klauspost/compress/flate/fast_encoder.go +216 -0
- data/ext/vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go +1187 -0
- data/ext/vendor/github.com/klauspost/compress/flate/huffman_code.go +417 -0
- data/ext/vendor/github.com/klauspost/compress/flate/huffman_sortByFreq.go +178 -0
- data/ext/vendor/github.com/klauspost/compress/flate/huffman_sortByLiteral.go +201 -0
- data/ext/vendor/github.com/klauspost/compress/flate/inflate.go +793 -0
- data/ext/vendor/github.com/klauspost/compress/flate/inflate_gen.go +1283 -0
- data/ext/vendor/github.com/klauspost/compress/flate/level1.go +241 -0
- data/ext/vendor/github.com/klauspost/compress/flate/level2.go +214 -0
- data/ext/vendor/github.com/klauspost/compress/flate/level3.go +241 -0
- data/ext/vendor/github.com/klauspost/compress/flate/level4.go +221 -0
- data/ext/vendor/github.com/klauspost/compress/flate/level5.go +310 -0
- data/ext/vendor/github.com/klauspost/compress/flate/level6.go +325 -0
- data/ext/vendor/github.com/klauspost/compress/flate/regmask_amd64.go +37 -0
- data/ext/vendor/github.com/klauspost/compress/flate/regmask_other.go +40 -0
- data/ext/vendor/github.com/klauspost/compress/flate/stateless.go +305 -0
- data/ext/vendor/github.com/klauspost/compress/flate/token.go +379 -0
- data/ext/vendor/github.com/klauspost/compress/fse/README.md +79 -0
- data/ext/vendor/github.com/klauspost/compress/fse/bitreader.go +122 -0
- data/ext/vendor/github.com/klauspost/compress/fse/bitwriter.go +168 -0
- data/ext/vendor/github.com/klauspost/compress/fse/bytereader.go +47 -0
- data/ext/vendor/github.com/klauspost/compress/fse/compress.go +683 -0
- data/ext/vendor/github.com/klauspost/compress/fse/decompress.go +374 -0
- data/ext/vendor/github.com/klauspost/compress/fse/fse.go +144 -0
- data/ext/vendor/github.com/klauspost/compress/gen.sh +4 -0
- data/ext/vendor/github.com/klauspost/compress/gzip/gunzip.go +349 -0
- data/ext/vendor/github.com/klauspost/compress/gzip/gzip.go +269 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/.gitignore +1 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/README.md +89 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/bitreader.go +233 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/bitwriter.go +95 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/bytereader.go +44 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/compress.go +730 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/decompress.go +1167 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/decompress_amd64.go +226 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/decompress_amd64.s +846 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/decompress_generic.go +299 -0
- data/ext/vendor/github.com/klauspost/compress/huff0/huff0.go +337 -0
- data/ext/vendor/github.com/klauspost/compress/internal/cpuinfo/cpuinfo.go +34 -0
- data/ext/vendor/github.com/klauspost/compress/internal/cpuinfo/cpuinfo_amd64.go +11 -0
- data/ext/vendor/github.com/klauspost/compress/internal/cpuinfo/cpuinfo_amd64.s +36 -0
- data/ext/vendor/github.com/klauspost/compress/internal/snapref/LICENSE +27 -0
- data/ext/vendor/github.com/klauspost/compress/internal/snapref/decode.go +264 -0
- data/ext/vendor/github.com/klauspost/compress/internal/snapref/decode_other.go +113 -0
- data/ext/vendor/github.com/klauspost/compress/internal/snapref/encode.go +289 -0
- data/ext/vendor/github.com/klauspost/compress/internal/snapref/encode_other.go +240 -0
- data/ext/vendor/github.com/klauspost/compress/internal/snapref/snappy.go +98 -0
- data/ext/vendor/github.com/klauspost/compress/s2sx.mod +4 -0
- data/ext/vendor/github.com/klauspost/compress/s2sx.sum +0 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/README.md +441 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/bitreader.go +140 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/bitwriter.go +113 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/blockdec.go +720 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/blockenc.go +871 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/blocktype_string.go +85 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/bytebuf.go +131 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/bytereader.go +82 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/decodeheader.go +230 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/decoder.go +950 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/decoder_options.go +149 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/dict.go +122 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/enc_base.go +188 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/enc_best.go +559 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/enc_better.go +1246 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/enc_dfast.go +1127 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/enc_fast.go +900 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/encoder.go +641 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/encoder_options.go +317 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/framedec.go +436 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/frameenc.go +137 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/fse_decoder.go +307 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/fse_decoder_amd64.go +65 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/fse_decoder_amd64.s +126 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/fse_decoder_generic.go +72 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/fse_encoder.go +701 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/fse_predefined.go +158 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/hash.go +35 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/history.go +116 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/LICENSE.txt +22 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/README.md +58 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash.go +237 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_amd64.s +216 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_arm64.s +186 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_asm.go +16 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_other.go +77 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/internal/xxhash/xxhash_safe.go +11 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/seqdec.go +509 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/seqdec_amd64.go +379 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/seqdec_amd64.s +4099 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/seqdec_generic.go +237 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/seqenc.go +114 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/snappy.go +435 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/zip.go +141 -0
- data/ext/vendor/github.com/klauspost/compress/zstd/zstd.go +152 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/.gitignore +24 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/.goreleaser.yml +74 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/CONTRIBUTING.txt +35 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/LICENSE +22 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/README.md +137 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/cpuid.go +1070 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/cpuid_386.s +47 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/cpuid_amd64.s +72 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/cpuid_arm64.s +26 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/detect_arm64.go +246 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/detect_ref.go +14 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/detect_x86.go +35 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/featureid_string.go +185 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/os_darwin_arm64.go +19 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/os_linux_arm64.go +130 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/os_other_arm64.go +17 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/os_safe_linux_arm64.go +7 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/os_unsafe_linux_arm64.go +10 -0
- data/ext/vendor/github.com/klauspost/cpuid/v2/test-architectures.sh +15 -0
- data/ext/vendor/github.com/mattn/go-pointer/LICENSE +21 -0
- data/ext/vendor/github.com/mattn/go-pointer/README.md +29 -0
- data/ext/vendor/github.com/mattn/go-pointer/doc.go +1 -0
- data/ext/vendor/github.com/mattn/go-pointer/pointer.go +57 -0
- data/ext/vendor/github.com/minio/asm2plan9s/.gitignore +2 -0
- data/ext/vendor/github.com/minio/asm2plan9s/LICENSE +202 -0
- data/ext/vendor/github.com/minio/asm2plan9s/README.md +91 -0
- data/ext/vendor/github.com/minio/asm2plan9s/asm2plan9s.go +252 -0
- data/ext/vendor/github.com/minio/asm2plan9s/asm2plan9s_amd64.go +192 -0
- data/ext/vendor/github.com/minio/asm2plan9s/asm2plan9s_arm64.go +122 -0
- data/ext/vendor/github.com/minio/asm2plan9s/example.s +1 -0
- data/ext/vendor/github.com/minio/asm2plan9s/neon.asm +1 -0
- data/ext/vendor/github.com/minio/asm2plan9s/yasm.go +176 -0
- data/ext/vendor/github.com/minio/c2goasm/LICENSE +202 -0
- data/ext/vendor/github.com/minio/c2goasm/README.md +203 -0
- data/ext/vendor/github.com/minio/c2goasm/arguments.go +122 -0
- data/ext/vendor/github.com/minio/c2goasm/assembly.go +412 -0
- data/ext/vendor/github.com/minio/c2goasm/c2goasm.go +300 -0
- data/ext/vendor/github.com/minio/c2goasm/constants.go +255 -0
- data/ext/vendor/github.com/minio/c2goasm/epilogue.go +219 -0
- data/ext/vendor/github.com/minio/c2goasm/subroutine.go +294 -0
- data/ext/vendor/github.com/mtibben/percent/LICENSE +21 -0
- data/ext/vendor/github.com/mtibben/percent/README.md +5 -0
- data/ext/vendor/github.com/mtibben/percent/percent.go +64 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/.gitignore +36 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/LICENSE +28 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/README.md +92 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/block.go +482 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/blocks.go +90 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_amd64.s +448 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_arm.s +231 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_arm64.s +230 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_asm.go +10 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4block/decode_other.go +139 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4errors/errors.go +19 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4stream/block.go +350 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4stream/frame.go +204 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/lz4stream/frame_gen.go +103 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/xxh32/xxh32zero.go +212 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/xxh32/xxh32zero_arm.go +11 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/xxh32/xxh32zero_arm.s +251 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/internal/xxh32/xxh32zero_other.go +10 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/lz4.go +157 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/options.go +214 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/options_gen.go +92 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/reader.go +275 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/state.go +75 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/state_gen.go +28 -0
- data/ext/vendor/github.com/pierrec/lz4/v4/writer.go +238 -0
- data/ext/vendor/github.com/pkg/browser/LICENSE +23 -0
- data/ext/vendor/github.com/pkg/browser/README.md +55 -0
- data/ext/vendor/github.com/pkg/browser/browser.go +57 -0
- data/ext/vendor/github.com/pkg/browser/browser_darwin.go +5 -0
- data/ext/vendor/github.com/pkg/browser/browser_freebsd.go +14 -0
- data/ext/vendor/github.com/pkg/browser/browser_linux.go +21 -0
- data/ext/vendor/github.com/pkg/browser/browser_netbsd.go +14 -0
- data/ext/vendor/github.com/pkg/browser/browser_openbsd.go +14 -0
- data/ext/vendor/github.com/pkg/browser/browser_unsupported.go +12 -0
- data/ext/vendor/github.com/pkg/browser/browser_windows.go +7 -0
- data/ext/vendor/github.com/sirupsen/logrus/.gitignore +4 -0
- data/ext/vendor/github.com/sirupsen/logrus/.golangci.yml +40 -0
- data/ext/vendor/github.com/sirupsen/logrus/.travis.yml +15 -0
- data/ext/vendor/github.com/sirupsen/logrus/CHANGELOG.md +259 -0
- data/ext/vendor/github.com/sirupsen/logrus/LICENSE +21 -0
- data/ext/vendor/github.com/sirupsen/logrus/README.md +513 -0
- data/ext/vendor/github.com/sirupsen/logrus/alt_exit.go +76 -0
- data/ext/vendor/github.com/sirupsen/logrus/appveyor.yml +14 -0
- data/ext/vendor/github.com/sirupsen/logrus/buffer_pool.go +43 -0
- data/ext/vendor/github.com/sirupsen/logrus/doc.go +26 -0
- data/ext/vendor/github.com/sirupsen/logrus/entry.go +442 -0
- data/ext/vendor/github.com/sirupsen/logrus/exported.go +270 -0
- data/ext/vendor/github.com/sirupsen/logrus/formatter.go +78 -0
- data/ext/vendor/github.com/sirupsen/logrus/hooks.go +34 -0
- data/ext/vendor/github.com/sirupsen/logrus/json_formatter.go +128 -0
- data/ext/vendor/github.com/sirupsen/logrus/logger.go +417 -0
- data/ext/vendor/github.com/sirupsen/logrus/logrus.go +186 -0
- data/ext/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go +11 -0
- data/ext/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go +13 -0
- data/ext/vendor/github.com/sirupsen/logrus/terminal_check_js.go +7 -0
- data/ext/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go +11 -0
- data/ext/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go +17 -0
- data/ext/vendor/github.com/sirupsen/logrus/terminal_check_solaris.go +11 -0
- data/ext/vendor/github.com/sirupsen/logrus/terminal_check_unix.go +13 -0
- data/ext/vendor/github.com/sirupsen/logrus/terminal_check_windows.go +27 -0
- data/ext/vendor/github.com/sirupsen/logrus/text_formatter.go +339 -0
- data/ext/vendor/github.com/sirupsen/logrus/writer.go +70 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/.gitignore +13 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/.pre-commit-config.yaml +6 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/CONTRIBUTING.md +18 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/LICENSE +201 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/Makefile +52 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/README.md +109 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/arrow_chunk.go +91 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/async.go +142 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/auth.go +549 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/authexternalbrowser.go +251 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/authokta.go +341 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/azure_storage_client.go +294 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/bind_uploader.go +300 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/cacert.go +3454 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/chunk.go +312 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/chunk_downloader.go +742 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/client.go +38 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/connection.go +493 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/connection_util.go +287 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/connector.go +40 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/converter.go +1171 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/datatype.go +195 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/debug.go +12 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/doc.go +885 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/driver.go +66 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/dsn.go +667 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/encrypt_util.go +332 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/errors.go +321 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/file_compression_type.go +132 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/file_transfer_agent.go +1228 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/file_util.go +209 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/gcs_storage_client.go +355 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/gosnowflake.mak +42 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/heartbeat.go +98 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/local_storage_client.go +113 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/location.go +106 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/log.go +314 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/monitoring.go +271 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/multistatement.go +118 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/ocsp.go +966 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/parameters.json.tmpl +11 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/priv_key_test_coding_helper.go +30 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/query.go +128 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/release.go +8 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/restful.go +489 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/result.go +75 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/retry.go +322 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/rows.go +245 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/s3_storage_client.go +275 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/secret_detector.go +63 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/secure_storage_manager.go +282 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/sqlstate.go +18 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/statement.go +45 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/storage_client.go +253 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/telemetry.go +128 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/transaction.go +35 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/url_util.go +29 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/util.go +214 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/uuid.go +47 -0
- data/ext/vendor/github.com/snowflakedb/gosnowflake/version.go +6 -0
- data/ext/vendor/github.com/zeebo/xxh3/.gitignore +6 -0
- data/ext/vendor/github.com/zeebo/xxh3/LICENSE +25 -0
- data/ext/vendor/github.com/zeebo/xxh3/Makefile +27 -0
- data/ext/vendor/github.com/zeebo/xxh3/README.md +38 -0
- data/ext/vendor/github.com/zeebo/xxh3/_compat.c +39 -0
- data/ext/vendor/github.com/zeebo/xxh3/accum_generic.go +542 -0
- data/ext/vendor/github.com/zeebo/xxh3/accum_stubs_amd64.go +40 -0
- data/ext/vendor/github.com/zeebo/xxh3/accum_stubs_other.go +25 -0
- data/ext/vendor/github.com/zeebo/xxh3/accum_vector_avx512_amd64.s +379 -0
- data/ext/vendor/github.com/zeebo/xxh3/accum_vector_avx_amd64.s +586 -0
- data/ext/vendor/github.com/zeebo/xxh3/accum_vector_sse_amd64.s +1236 -0
- data/ext/vendor/github.com/zeebo/xxh3/consts.go +97 -0
- data/ext/vendor/github.com/zeebo/xxh3/hash128.go +253 -0
- data/ext/vendor/github.com/zeebo/xxh3/hash128_seed.go +264 -0
- data/ext/vendor/github.com/zeebo/xxh3/hash64.go +126 -0
- data/ext/vendor/github.com/zeebo/xxh3/hash64_seed.go +134 -0
- data/ext/vendor/github.com/zeebo/xxh3/hasher.go +239 -0
- data/ext/vendor/github.com/zeebo/xxh3/utils.go +129 -0
- data/ext/vendor/golang.org/x/crypto/LICENSE +27 -0
- data/ext/vendor/golang.org/x/crypto/PATENTS +22 -0
- data/ext/vendor/golang.org/x/crypto/ocsp/ocsp.go +792 -0
- data/ext/vendor/golang.org/x/mod/LICENSE +27 -0
- data/ext/vendor/golang.org/x/mod/PATENTS +22 -0
- data/ext/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go +78 -0
- data/ext/vendor/golang.org/x/mod/module/module.go +841 -0
- data/ext/vendor/golang.org/x/mod/module/pseudo.go +250 -0
- data/ext/vendor/golang.org/x/mod/semver/semver.go +401 -0
- data/ext/vendor/golang.org/x/net/LICENSE +27 -0
- data/ext/vendor/golang.org/x/net/PATENTS +22 -0
- data/ext/vendor/golang.org/x/net/html/atom/atom.go +78 -0
- data/ext/vendor/golang.org/x/net/html/atom/table.go +783 -0
- data/ext/vendor/golang.org/x/net/html/const.go +111 -0
- data/ext/vendor/golang.org/x/net/html/doc.go +121 -0
- data/ext/vendor/golang.org/x/net/html/doctype.go +156 -0
- data/ext/vendor/golang.org/x/net/html/entity.go +2253 -0
- data/ext/vendor/golang.org/x/net/html/escape.go +339 -0
- data/ext/vendor/golang.org/x/net/html/foreign.go +222 -0
- data/ext/vendor/golang.org/x/net/html/node.go +225 -0
- data/ext/vendor/golang.org/x/net/html/parse.go +2460 -0
- data/ext/vendor/golang.org/x/net/html/render.go +273 -0
- data/ext/vendor/golang.org/x/net/html/token.go +1261 -0
- data/ext/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
- data/ext/vendor/golang.org/x/net/http/httpguts/httplex.go +352 -0
- data/ext/vendor/golang.org/x/net/idna/go118.go +14 -0
- data/ext/vendor/golang.org/x/net/idna/idna10.0.0.go +770 -0
- data/ext/vendor/golang.org/x/net/idna/idna9.0.0.go +718 -0
- data/ext/vendor/golang.org/x/net/idna/pre_go118.go +12 -0
- data/ext/vendor/golang.org/x/net/idna/punycode.go +217 -0
- data/ext/vendor/golang.org/x/net/idna/tables10.0.0.go +4560 -0
- data/ext/vendor/golang.org/x/net/idna/tables11.0.0.go +4654 -0
- data/ext/vendor/golang.org/x/net/idna/tables12.0.0.go +4734 -0
- data/ext/vendor/golang.org/x/net/idna/tables13.0.0.go +4840 -0
- data/ext/vendor/golang.org/x/net/idna/tables9.0.0.go +4487 -0
- data/ext/vendor/golang.org/x/net/idna/trie.go +72 -0
- data/ext/vendor/golang.org/x/net/idna/trieval.go +119 -0
- data/ext/vendor/golang.org/x/sys/LICENSE +27 -0
- data/ext/vendor/golang.org/x/sys/PATENTS +22 -0
- data/ext/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s +18 -0
- data/ext/vendor/golang.org/x/sys/cpu/byteorder.go +66 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu.go +287 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_aix.go +34 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_arm.go +73 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_arm64.go +172 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_arm64.s +32 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go +12 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go +22 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go +17 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go +12 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go +23 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c +39 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go +33 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_linux.go +16 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go +39 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go +111 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go +24 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go +10 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go +32 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go +40 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_loong64.go +13 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_mips64x.go +16 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_mipsx.go +12 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go +173 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.go +65 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.s +11 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_other_arm.go +10 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go +10 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_other_mips64x.go +13 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_other_ppc64x.go +15 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go +12 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go +17 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_riscv64.go +12 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_s390x.go +172 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_s390x.s +58 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_wasm.go +18 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_x86.go +145 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_x86.s +28 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_zos.go +10 -0
- data/ext/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go +25 -0
- data/ext/vendor/golang.org/x/sys/cpu/endian_big.go +11 -0
- data/ext/vendor/golang.org/x/sys/cpu/endian_little.go +11 -0
- data/ext/vendor/golang.org/x/sys/cpu/hwcap_linux.go +71 -0
- data/ext/vendor/golang.org/x/sys/cpu/parse.go +43 -0
- data/ext/vendor/golang.org/x/sys/cpu/proc_cpuinfo_linux.go +54 -0
- data/ext/vendor/golang.org/x/sys/cpu/runtime_auxv.go +16 -0
- data/ext/vendor/golang.org/x/sys/cpu/runtime_auxv_go121.go +19 -0
- data/ext/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go +27 -0
- data/ext/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go +36 -0
- data/ext/vendor/golang.org/x/sys/execabs/execabs.go +102 -0
- data/ext/vendor/golang.org/x/sys/execabs/execabs_go118.go +18 -0
- data/ext/vendor/golang.org/x/sys/execabs/execabs_go119.go +21 -0
- data/ext/vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go +30 -0
- data/ext/vendor/golang.org/x/sys/plan9/asm.s +8 -0
- data/ext/vendor/golang.org/x/sys/plan9/asm_plan9_386.s +30 -0
- data/ext/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s +30 -0
- data/ext/vendor/golang.org/x/sys/plan9/asm_plan9_arm.s +25 -0
- data/ext/vendor/golang.org/x/sys/plan9/const_plan9.go +70 -0
- data/ext/vendor/golang.org/x/sys/plan9/dir_plan9.go +212 -0
- data/ext/vendor/golang.org/x/sys/plan9/env_plan9.go +31 -0
- data/ext/vendor/golang.org/x/sys/plan9/errors_plan9.go +50 -0
- data/ext/vendor/golang.org/x/sys/plan9/mkall.sh +150 -0
- data/ext/vendor/golang.org/x/sys/plan9/mkerrors.sh +246 -0
- data/ext/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh +23 -0
- data/ext/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go +22 -0
- data/ext/vendor/golang.org/x/sys/plan9/pwd_plan9.go +24 -0
- data/ext/vendor/golang.org/x/sys/plan9/race.go +31 -0
- data/ext/vendor/golang.org/x/sys/plan9/race0.go +26 -0
- data/ext/vendor/golang.org/x/sys/plan9/str.go +23 -0
- data/ext/vendor/golang.org/x/sys/plan9/syscall.go +110 -0
- data/ext/vendor/golang.org/x/sys/plan9/syscall_plan9.go +361 -0
- data/ext/vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go +285 -0
- data/ext/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go +285 -0
- data/ext/vendor/golang.org/x/sys/plan9/zsyscall_plan9_arm.go +285 -0
- data/ext/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go +49 -0
- data/ext/vendor/golang.org/x/sys/unix/.gitignore +2 -0
- data/ext/vendor/golang.org/x/sys/unix/README.md +184 -0
- data/ext/vendor/golang.org/x/sys/unix/affinity_linux.go +86 -0
- data/ext/vendor/golang.org/x/sys/unix/aliases.go +15 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s +18 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_bsd_386.s +29 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s +29 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_bsd_arm.s +29 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s +29 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s +31 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s +29 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_386.s +66 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_amd64.s +58 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_arm.s +57 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_arm64.s +53 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_loong64.s +54 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s +57 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s +55 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s +45 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s +49 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_linux_s390x.s +57 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s +30 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s +18 -0
- data/ext/vendor/golang.org/x/sys/unix/asm_zos_s390x.s +426 -0
- data/ext/vendor/golang.org/x/sys/unix/bluetooth_linux.go +36 -0
- data/ext/vendor/golang.org/x/sys/unix/cap_freebsd.go +196 -0
- data/ext/vendor/golang.org/x/sys/unix/constants.go +14 -0
- data/ext/vendor/golang.org/x/sys/unix/dev_aix_ppc.go +27 -0
- data/ext/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go +29 -0
- data/ext/vendor/golang.org/x/sys/unix/dev_darwin.go +24 -0
- data/ext/vendor/golang.org/x/sys/unix/dev_dragonfly.go +30 -0
- data/ext/vendor/golang.org/x/sys/unix/dev_freebsd.go +30 -0
- data/ext/vendor/golang.org/x/sys/unix/dev_linux.go +42 -0
- data/ext/vendor/golang.org/x/sys/unix/dev_netbsd.go +29 -0
- data/ext/vendor/golang.org/x/sys/unix/dev_openbsd.go +29 -0
- data/ext/vendor/golang.org/x/sys/unix/dev_zos.go +29 -0
- data/ext/vendor/golang.org/x/sys/unix/dirent.go +103 -0
- data/ext/vendor/golang.org/x/sys/unix/endian_big.go +10 -0
- data/ext/vendor/golang.org/x/sys/unix/endian_little.go +10 -0
- data/ext/vendor/golang.org/x/sys/unix/env_unix.go +32 -0
- data/ext/vendor/golang.org/x/sys/unix/epoll_zos.go +221 -0
- data/ext/vendor/golang.org/x/sys/unix/fcntl.go +37 -0
- data/ext/vendor/golang.org/x/sys/unix/fcntl_darwin.go +24 -0
- data/ext/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go +14 -0
- data/ext/vendor/golang.org/x/sys/unix/fdset.go +30 -0
- data/ext/vendor/golang.org/x/sys/unix/fstatfs_zos.go +164 -0
- data/ext/vendor/golang.org/x/sys/unix/gccgo.go +60 -0
- data/ext/vendor/golang.org/x/sys/unix/gccgo_c.c +45 -0
- data/ext/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go +21 -0
- data/ext/vendor/golang.org/x/sys/unix/ifreq_linux.go +142 -0
- data/ext/vendor/golang.org/x/sys/unix/ioctl.go +70 -0
- data/ext/vendor/golang.org/x/sys/unix/ioctl_linux.go +233 -0
- data/ext/vendor/golang.org/x/sys/unix/ioctl_zos.go +72 -0
- data/ext/vendor/golang.org/x/sys/unix/mkall.sh +249 -0
- data/ext/vendor/golang.org/x/sys/unix/mkerrors.sh +778 -0
- data/ext/vendor/golang.org/x/sys/unix/pagesize_unix.go +16 -0
- data/ext/vendor/golang.org/x/sys/unix/pledge_openbsd.go +163 -0
- data/ext/vendor/golang.org/x/sys/unix/ptrace_darwin.go +18 -0
- data/ext/vendor/golang.org/x/sys/unix/ptrace_ios.go +18 -0
- data/ext/vendor/golang.org/x/sys/unix/race.go +31 -0
- data/ext/vendor/golang.org/x/sys/unix/race0.go +26 -0
- data/ext/vendor/golang.org/x/sys/unix/readdirent_getdents.go +13 -0
- data/ext/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go +20 -0
- data/ext/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go +16 -0
- data/ext/vendor/golang.org/x/sys/unix/sockcmsg_linux.go +85 -0
- data/ext/vendor/golang.org/x/sys/unix/sockcmsg_unix.go +107 -0
- data/ext/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go +47 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall.go +87 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_aix.go +599 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go +54 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go +85 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_bsd.go +624 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_darwin.go +827 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go +52 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go +52 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go +27 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_dragonfly.go +546 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go +57 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd.go +646 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go +65 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go +65 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go +61 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go +61 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go +61 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_hurd.go +30 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_hurd_386.go +29 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_illumos.go +79 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux.go +2510 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_386.go +342 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go +14 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go +147 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go +13 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_arm.go +244 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go +195 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gc.go +15 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go +17 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go +14 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go +31 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go +21 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go +222 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go +191 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go +203 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go +232 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go +118 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go +180 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go +298 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go +114 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd.go +623 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go +38 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go +38 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go +38 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go +38 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd.go +391 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go +42 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go +42 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go +42 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go +42 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go +27 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go +39 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go +42 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go +42 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_solaris.go +1136 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go +28 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_unix.go +589 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_unix_gc.go +16 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go +25 -0
- data/ext/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go +1994 -0
- data/ext/vendor/golang.org/x/sys/unix/sysvshm_linux.go +21 -0
- data/ext/vendor/golang.org/x/sys/unix/sysvshm_unix.go +52 -0
- data/ext/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go +14 -0
- data/ext/vendor/golang.org/x/sys/unix/timestruct.go +77 -0
- data/ext/vendor/golang.org/x/sys/unix/unveil_openbsd.go +42 -0
- data/ext/vendor/golang.org/x/sys/unix/xattr_bsd.go +281 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go +1385 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go +1386 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go +1892 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go +1892 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go +1738 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go +2043 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go +2040 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go +2034 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go +2034 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go +2148 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux.go +3479 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +829 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +829 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +835 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +827 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +819 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +836 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +836 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +836 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +836 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +888 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +892 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +892 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +816 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +891 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +886 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go +1780 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go +1770 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go +1759 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go +1770 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go +1906 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go +1906 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go +1906 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go +1906 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go +1906 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go +1905 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go +1904 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go +1557 -0
- data/ext/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go +860 -0
- data/ext/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go +42 -0
- data/ext/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go +17 -0
- data/ext/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go +51 -0
- data/ext/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go +51 -0
- data/ext/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go +81 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go +1495 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go +1453 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go +1199 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go +1078 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +2561 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +904 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +2561 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +904 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go +1699 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go +1919 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go +1919 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go +1919 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go +1919 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go +1919 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go +102 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux.go +2184 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go +497 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go +664 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go +612 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go +563 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go +487 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go +664 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go +658 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go +647 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go +664 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go +669 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go +715 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go +715 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go +543 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go +506 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go +659 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go +1870 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go +1870 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go +1870 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go +1870 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go +2243 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s +669 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go +2243 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s +669 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go +2243 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s +669 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go +2243 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s +669 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go +2243 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s +669 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go +2243 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s +802 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go +2243 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s +669 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +2117 -0
- data/ext/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go +1265 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go +281 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go +281 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go +281 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go +281 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go +281 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go +281 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go +282 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go +440 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go +438 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go +317 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go +394 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go +394 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go +394 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go +394 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go +394 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +450 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +372 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +414 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +317 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +311 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +434 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +364 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +364 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +434 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +441 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +413 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +413 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +316 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +378 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +392 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go +275 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go +275 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go +275 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go +275 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go +220 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go +220 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go +220 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go +219 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go +222 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go +218 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go +219 -0
- data/ext/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go +2670 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go +354 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go +358 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go +795 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go +795 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go +474 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go +651 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go +656 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go +642 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go +636 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go +638 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux.go +5812 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +696 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +711 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +691 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +690 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +691 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +696 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +693 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +693 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +696 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +704 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +699 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +699 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +718 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +713 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +694 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go +586 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go +594 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go +591 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go +594 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go +569 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go +569 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go +576 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go +569 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go +569 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go +571 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go +571 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go +517 -0
- data/ext/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go +415 -0
- data/ext/vendor/golang.org/x/sys/windows/aliases.go +13 -0
- data/ext/vendor/golang.org/x/sys/windows/dll_windows.go +416 -0
- data/ext/vendor/golang.org/x/sys/windows/empty.s +9 -0
- data/ext/vendor/golang.org/x/sys/windows/env_windows.go +54 -0
- data/ext/vendor/golang.org/x/sys/windows/eventlog.go +21 -0
- data/ext/vendor/golang.org/x/sys/windows/exec_windows.go +178 -0
- data/ext/vendor/golang.org/x/sys/windows/memory_windows.go +48 -0
- data/ext/vendor/golang.org/x/sys/windows/mkerrors.bash +70 -0
- data/ext/vendor/golang.org/x/sys/windows/mkknownfolderids.bash +27 -0
- data/ext/vendor/golang.org/x/sys/windows/mksyscall.go +10 -0
- data/ext/vendor/golang.org/x/sys/windows/race.go +31 -0
- data/ext/vendor/golang.org/x/sys/windows/race0.go +26 -0
- data/ext/vendor/golang.org/x/sys/windows/security_windows.go +1444 -0
- data/ext/vendor/golang.org/x/sys/windows/service.go +247 -0
- data/ext/vendor/golang.org/x/sys/windows/setupapi_windows.go +1425 -0
- data/ext/vendor/golang.org/x/sys/windows/str.go +23 -0
- data/ext/vendor/golang.org/x/sys/windows/syscall.go +105 -0
- data/ext/vendor/golang.org/x/sys/windows/syscall_windows.go +1808 -0
- data/ext/vendor/golang.org/x/sys/windows/types_windows.go +3345 -0
- data/ext/vendor/golang.org/x/sys/windows/types_windows_386.go +35 -0
- data/ext/vendor/golang.org/x/sys/windows/types_windows_amd64.go +34 -0
- data/ext/vendor/golang.org/x/sys/windows/types_windows_arm.go +35 -0
- data/ext/vendor/golang.org/x/sys/windows/types_windows_arm64.go +34 -0
- data/ext/vendor/golang.org/x/sys/windows/zerrors_windows.go +9468 -0
- data/ext/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go +149 -0
- data/ext/vendor/golang.org/x/sys/windows/zsyscall_windows.go +4336 -0
- data/ext/vendor/golang.org/x/term/CONTRIBUTING.md +26 -0
- data/ext/vendor/golang.org/x/term/LICENSE +27 -0
- data/ext/vendor/golang.org/x/term/PATENTS +22 -0
- data/ext/vendor/golang.org/x/term/README.md +19 -0
- data/ext/vendor/golang.org/x/term/codereview.cfg +1 -0
- data/ext/vendor/golang.org/x/term/term.go +60 -0
- data/ext/vendor/golang.org/x/term/term_plan9.go +42 -0
- data/ext/vendor/golang.org/x/term/term_unix.go +92 -0
- data/ext/vendor/golang.org/x/term/term_unix_bsd.go +13 -0
- data/ext/vendor/golang.org/x/term/term_unix_other.go +13 -0
- data/ext/vendor/golang.org/x/term/term_unsupported.go +39 -0
- data/ext/vendor/golang.org/x/term/term_windows.go +79 -0
- data/ext/vendor/golang.org/x/term/terminal.go +986 -0
- data/ext/vendor/golang.org/x/text/LICENSE +27 -0
- data/ext/vendor/golang.org/x/text/PATENTS +22 -0
- data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
- data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +12 -0
- data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +15 -0
- data/ext/vendor/golang.org/x/text/transform/transform.go +709 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1816 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1888 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1924 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1956 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1782 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7658 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7694 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7711 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7761 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7638 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
- data/ext/vendor/golang.org/x/tools/LICENSE +27 -0
- data/ext/vendor/golang.org/x/tools/PATENTS +22 -0
- data/ext/vendor/golang.org/x/tools/cmd/goimports/doc.go +50 -0
- data/ext/vendor/golang.org/x/tools/cmd/goimports/goimports.go +380 -0
- data/ext/vendor/golang.org/x/tools/cmd/goimports/goimports_gc.go +27 -0
- data/ext/vendor/golang.org/x/tools/cmd/goimports/goimports_not_gc.go +12 -0
- data/ext/vendor/golang.org/x/tools/cmd/stringer/stringer.go +657 -0
- data/ext/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go +636 -0
- data/ext/vendor/golang.org/x/tools/go/ast/astutil/imports.go +485 -0
- data/ext/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go +488 -0
- data/ext/vendor/golang.org/x/tools/go/ast/astutil/util.go +18 -0
- data/ext/vendor/golang.org/x/tools/go/gcexportdata/gcexportdata.go +187 -0
- data/ext/vendor/golang.org/x/tools/go/gcexportdata/importer.go +75 -0
- data/ext/vendor/golang.org/x/tools/go/internal/packagesdriver/sizes.go +49 -0
- data/ext/vendor/golang.org/x/tools/go/packages/doc.go +220 -0
- data/ext/vendor/golang.org/x/tools/go/packages/external.go +101 -0
- data/ext/vendor/golang.org/x/tools/go/packages/golist.go +1173 -0
- data/ext/vendor/golang.org/x/tools/go/packages/golist_overlay.go +575 -0
- data/ext/vendor/golang.org/x/tools/go/packages/loadmode_string.go +57 -0
- data/ext/vendor/golang.org/x/tools/go/packages/packages.go +1326 -0
- data/ext/vendor/golang.org/x/tools/go/packages/visit.go +59 -0
- data/ext/vendor/golang.org/x/tools/internal/event/core/event.go +85 -0
- data/ext/vendor/golang.org/x/tools/internal/event/core/export.go +70 -0
- data/ext/vendor/golang.org/x/tools/internal/event/core/fast.go +77 -0
- data/ext/vendor/golang.org/x/tools/internal/event/doc.go +7 -0
- data/ext/vendor/golang.org/x/tools/internal/event/event.go +127 -0
- data/ext/vendor/golang.org/x/tools/internal/event/keys/keys.go +564 -0
- data/ext/vendor/golang.org/x/tools/internal/event/keys/standard.go +22 -0
- data/ext/vendor/golang.org/x/tools/internal/event/label/label.go +215 -0
- data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk.go +196 -0
- data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_darwin.go +119 -0
- data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_dirent_fileno.go +14 -0
- data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_dirent_ino.go +15 -0
- data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_dirent_namlen_bsd.go +14 -0
- data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_dirent_namlen_linux.go +29 -0
- data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_portable.go +38 -0
- data/ext/vendor/golang.org/x/tools/internal/fastwalk/fastwalk_unix.go +153 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/bexport.go +852 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/bimport.go +1053 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/exportdata.go +99 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/gcimporter.go +265 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/iexport.go +1180 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/iimport.go +976 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/newInterface10.go +22 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/newInterface11.go +14 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/support_go117.go +16 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/support_go118.go +37 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/unified_no.go +10 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/unified_yes.go +10 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/ureader_no.go +19 -0
- data/ext/vendor/golang.org/x/tools/internal/gcimporter/ureader_yes.go +738 -0
- data/ext/vendor/golang.org/x/tools/internal/gocommand/invoke.go +356 -0
- data/ext/vendor/golang.org/x/tools/internal/gocommand/vendor.go +109 -0
- data/ext/vendor/golang.org/x/tools/internal/gocommand/version.go +81 -0
- data/ext/vendor/golang.org/x/tools/internal/gopathwalk/walk.go +254 -0
- data/ext/vendor/golang.org/x/tools/internal/imports/fix.go +1738 -0
- data/ext/vendor/golang.org/x/tools/internal/imports/imports.go +351 -0
- data/ext/vendor/golang.org/x/tools/internal/imports/mod.go +716 -0
- data/ext/vendor/golang.org/x/tools/internal/imports/mod_cache.go +236 -0
- data/ext/vendor/golang.org/x/tools/internal/imports/sortimports.go +297 -0
- data/ext/vendor/golang.org/x/tools/internal/imports/zstdlib.go +11115 -0
- data/ext/vendor/golang.org/x/tools/internal/packagesinternal/packages.go +30 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/codes.go +77 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/decoder.go +517 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/doc.go +32 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/encoder.go +383 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/flags.go +9 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/frames_go1.go +21 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/frames_go17.go +28 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/reloc.go +42 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/support.go +17 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/sync.go +113 -0
- data/ext/vendor/golang.org/x/tools/internal/pkgbits/syncmarker_string.go +89 -0
- data/ext/vendor/golang.org/x/tools/internal/tokeninternal/tokeninternal.go +59 -0
- data/ext/vendor/golang.org/x/tools/internal/typeparams/common.go +179 -0
- data/ext/vendor/golang.org/x/tools/internal/typeparams/coretype.go +122 -0
- data/ext/vendor/golang.org/x/tools/internal/typeparams/enabled_go117.go +12 -0
- data/ext/vendor/golang.org/x/tools/internal/typeparams/enabled_go118.go +15 -0
- data/ext/vendor/golang.org/x/tools/internal/typeparams/normalize.go +218 -0
- data/ext/vendor/golang.org/x/tools/internal/typeparams/termlist.go +163 -0
- data/ext/vendor/golang.org/x/tools/internal/typeparams/typeparams_go117.go +197 -0
- data/ext/vendor/golang.org/x/tools/internal/typeparams/typeparams_go118.go +151 -0
- data/ext/vendor/golang.org/x/tools/internal/typeparams/typeterm.go +170 -0
- data/ext/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go +1560 -0
- data/ext/vendor/golang.org/x/tools/internal/typesinternal/errorcode_string.go +179 -0
- data/ext/vendor/golang.org/x/tools/internal/typesinternal/types.go +52 -0
- data/ext/vendor/golang.org/x/tools/internal/typesinternal/types_118.go +19 -0
- data/ext/vendor/golang.org/x/xerrors/LICENSE +27 -0
- data/ext/vendor/golang.org/x/xerrors/PATENTS +22 -0
- data/ext/vendor/golang.org/x/xerrors/README +2 -0
- data/ext/vendor/golang.org/x/xerrors/adaptor.go +193 -0
- data/ext/vendor/golang.org/x/xerrors/codereview.cfg +1 -0
- data/ext/vendor/golang.org/x/xerrors/doc.go +23 -0
- data/ext/vendor/golang.org/x/xerrors/errors.go +33 -0
- data/ext/vendor/golang.org/x/xerrors/fmt.go +190 -0
- data/ext/vendor/golang.org/x/xerrors/format.go +34 -0
- data/ext/vendor/golang.org/x/xerrors/frame.go +56 -0
- data/ext/vendor/golang.org/x/xerrors/internal/internal.go +8 -0
- data/ext/vendor/golang.org/x/xerrors/wrap.go +112 -0
- data/ext/vendor/modules.txt +311 -0
- data/ext/wrapper.go +158 -0
- data/lib/ruby_snowflake_client/version.rb +3 -0
- data/lib/ruby_snowflake_client.rb +46 -0
- data/ruby_snowflake_client.gemspec +24 -0
- 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
|
+
}
|