├── .coderabbit.yaml ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .golangci.yml ├── AGENTS.md ├── BREAKING.md ├── CODEOWNERS ├── LICENSE ├── README.md ├── Taskfile.yml ├── _config.yml ├── cache ├── cache.go ├── lru │ ├── lru.go │ └── lru_test.go ├── metric.go ├── metric_test.go └── redis │ ├── integration_test.go │ └── redis.go ├── client ├── amqp │ ├── amqp.go │ ├── amqp_test.go │ ├── integration_test.go │ ├── option.go │ └── option_test.go ├── es │ ├── benchmark_test.go │ ├── elasticsearch.go │ ├── elasticsearch_test.go │ ├── instrumentation.go │ └── instrumentation_test.go ├── grpc │ ├── grpc.go │ ├── grpc_test.go │ └── integration_test.go ├── http │ ├── encoding │ │ └── json │ │ │ ├── json.go │ │ │ └── json_test.go │ ├── http.go │ ├── http_test.go │ ├── option.go │ └── option_test.go ├── kafka │ ├── async_producer.go │ ├── async_producer_test.go │ ├── integration_test.go │ ├── kafka.go │ ├── kafka_test.go │ ├── sync_producer.go │ └── sync_producer_test.go ├── mongo │ ├── integration_test.go │ ├── metric.go │ ├── metric_test.go │ ├── mongo.go │ └── mongo_test.go ├── mqtt │ ├── integration_test.go │ ├── metric.go │ ├── metric_test.go │ ├── publisher.go │ └── publisher_test.go ├── redis │ ├── integration_test.go │ ├── redis.go │ └── redis_test.go ├── sns │ ├── integration_test.go │ ├── sns.go │ └── sns_test.go ├── sql │ ├── integration_test.go │ ├── sql.go │ └── sql_test.go └── sqs │ ├── integration_test.go │ ├── sqs.go │ └── sqs_test.go ├── codecov.yml ├── component ├── amqp │ ├── component.go │ ├── component_test.go │ ├── integration_test.go │ ├── message.go │ ├── message_test.go │ ├── metric.go │ ├── option.go │ └── option_test.go ├── grpc │ ├── component.go │ ├── component_test.go │ ├── options.go │ └── options_test.go ├── http │ ├── auth │ │ ├── apikey │ │ │ ├── apikey.go │ │ │ └── apikey_test.go │ │ └── auth.go │ ├── cache │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── metric.go │ │ ├── model.go │ │ ├── model_test.go │ │ ├── route.go │ │ └── route_test.go │ ├── check.go │ ├── check_test.go │ ├── component.go │ ├── component_option.go │ ├── component_option_test.go │ ├── component_test.go │ ├── middleware │ │ ├── logging.go │ │ ├── logging_test.go │ │ ├── middleware.go │ │ └── middleware_test.go │ ├── observability.go │ ├── observability_test.go │ ├── route.go │ ├── route_option.go │ ├── route_option_test.go │ ├── route_test.go │ ├── router │ │ ├── route.go │ │ ├── route_test.go │ │ ├── router.go │ │ ├── router_option.go │ │ ├── router_option_test.go │ │ ├── router_test.go │ │ └── testdata │ │ │ └── index.html │ └── testdata │ │ ├── existing.html │ │ ├── index.html │ │ ├── server.key │ │ └── server.pem ├── kafka │ ├── component.go │ ├── component_test.go │ ├── integration_test.go │ ├── kafka.go │ ├── kafka_test.go │ ├── metric.go │ ├── option.go │ └── option_test.go └── sqs │ ├── component.go │ ├── component_test.go │ ├── integration_test.go │ ├── message.go │ ├── message_test.go │ ├── metric.go │ ├── option.go │ └── option_test.go ├── correlation ├── correlation.go └── correlation_test.go ├── doc.go ├── docker-compose.yml ├── docker-compose └── otelcol-config.yaml ├── docs ├── ACKNOWLEDGMENTS.md ├── CodeOfConduct.md ├── ContributionGuidelines.md ├── SIGNYOURWORK.md └── api │ ├── clients │ ├── amqp.md │ ├── es.md │ ├── grpc.md │ ├── http.md │ ├── kafka.md │ ├── mongo.md │ ├── mqtt.md │ ├── redis.md │ ├── sns.md │ ├── sql.md │ └── sqs.md │ └── components │ ├── amqp.md │ ├── grpc.md │ ├── http.md │ ├── kafka.md │ └── sqs.md ├── encoding ├── encoding.go ├── json │ ├── json.go │ └── json_test.go └── protobuf │ ├── protobuf.go │ ├── protobuf_test.go │ └── test │ ├── user.pb.go │ └── user.proto ├── examples ├── README.md ├── client │ └── main.go ├── examples.go ├── greeter.pb.go ├── greeter.proto ├── greeter_grpc.pb.go └── service │ ├── amqp.go │ ├── grpc.go │ ├── http.go │ ├── kafka.go │ ├── main.go │ └── sqs.go ├── go.mod ├── go.sum ├── integration_test.go ├── internal ├── test │ ├── assert.go │ ├── assert_test.go │ ├── observability.go │ └── observability_test.go └── validation │ ├── validation.go │ └── validation_test.go ├── observability ├── integration_test.go ├── log │ ├── log.go │ └── log_test.go ├── metric │ ├── integration_test.go │ ├── meter.go │ └── meter_test.go ├── observability.go ├── observability_test.go └── trace │ ├── tracing.go │ └── tracing_test.go ├── options.go ├── options_test.go ├── reliability ├── circuitbreaker │ ├── breaker.go │ └── breaker_test.go └── retry │ ├── retry.go │ └── retry_test.go ├── script └── gofmtcheck.sh ├── service.go ├── service_test.go └── vendor ├── filippo.io └── edwards25519 │ ├── LICENSE │ ├── README.md │ ├── doc.go │ ├── edwards25519.go │ ├── extra.go │ ├── field │ ├── fe.go │ ├── fe_amd64.go │ ├── fe_amd64.s │ ├── fe_amd64_noasm.go │ ├── fe_arm64.go │ ├── fe_arm64.s │ ├── fe_arm64_noasm.go │ ├── fe_extra.go │ └── fe_generic.go │ ├── scalar.go │ ├── scalar_fiat.go │ ├── scalarmult.go │ └── tables.go ├── github.com ├── IBM │ └── sarama │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .pre-commit-config.yaml │ │ ├── .whitesource │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile.kafka │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── Vagrantfile │ │ ├── acl_bindings.go │ │ ├── acl_create_request.go │ │ ├── acl_create_response.go │ │ ├── acl_delete_request.go │ │ ├── acl_delete_response.go │ │ ├── acl_describe_request.go │ │ ├── acl_describe_response.go │ │ ├── acl_filter.go │ │ ├── acl_types.go │ │ ├── add_offsets_to_txn_request.go │ │ ├── add_offsets_to_txn_response.go │ │ ├── add_partitions_to_txn_request.go │ │ ├── add_partitions_to_txn_response.go │ │ ├── admin.go │ │ ├── alter_client_quotas_request.go │ │ ├── alter_client_quotas_response.go │ │ ├── alter_configs_request.go │ │ ├── alter_configs_response.go │ │ ├── alter_partition_reassignments_request.go │ │ ├── alter_partition_reassignments_response.go │ │ ├── alter_user_scram_credentials_request.go │ │ ├── alter_user_scram_credentials_response.go │ │ ├── api_versions.go │ │ ├── api_versions_request.go │ │ ├── api_versions_response.go │ │ ├── async_producer.go │ │ ├── balance_strategy.go │ │ ├── broker.go │ │ ├── client.go │ │ ├── compress.go │ │ ├── config.go │ │ ├── config_resource_type.go │ │ ├── consumer.go │ │ ├── consumer_group.go │ │ ├── consumer_group_members.go │ │ ├── consumer_metadata_request.go │ │ ├── consumer_metadata_response.go │ │ ├── control_record.go │ │ ├── crc32_field.go │ │ ├── create_partitions_request.go │ │ ├── create_partitions_response.go │ │ ├── create_topics_request.go │ │ ├── create_topics_response.go │ │ ├── decompress.go │ │ ├── delete_groups_request.go │ │ ├── delete_groups_response.go │ │ ├── delete_offsets_request.go │ │ ├── delete_offsets_response.go │ │ ├── delete_records_request.go │ │ ├── delete_records_response.go │ │ ├── delete_topics_request.go │ │ ├── delete_topics_response.go │ │ ├── describe_client_quotas_request.go │ │ ├── describe_client_quotas_response.go │ │ ├── describe_configs_request.go │ │ ├── describe_configs_response.go │ │ ├── describe_groups_request.go │ │ ├── describe_groups_response.go │ │ ├── describe_log_dirs_request.go │ │ ├── describe_log_dirs_response.go │ │ ├── describe_user_scram_credentials_request.go │ │ ├── describe_user_scram_credentials_response.go │ │ ├── dev.yml │ │ ├── docker-compose.yml │ │ ├── elect_leaders_request.go │ │ ├── elect_leaders_response.go │ │ ├── election_type.go │ │ ├── encoder_decoder.go │ │ ├── end_txn_request.go │ │ ├── end_txn_response.go │ │ ├── entrypoint.sh │ │ ├── errors.go │ │ ├── fetch_request.go │ │ ├── fetch_response.go │ │ ├── find_coordinator_request.go │ │ ├── find_coordinator_response.go │ │ ├── gssapi_kerberos.go │ │ ├── heartbeat_request.go │ │ ├── heartbeat_response.go │ │ ├── incremental_alter_configs_request.go │ │ ├── incremental_alter_configs_response.go │ │ ├── init_producer_id_request.go │ │ ├── init_producer_id_response.go │ │ ├── interceptors.go │ │ ├── join_group_request.go │ │ ├── join_group_response.go │ │ ├── kerberos_client.go │ │ ├── leave_group_request.go │ │ ├── leave_group_response.go │ │ ├── length_field.go │ │ ├── list_groups_request.go │ │ ├── list_groups_response.go │ │ ├── list_partition_reassignments_request.go │ │ ├── list_partition_reassignments_response.go │ │ ├── message.go │ │ ├── message_set.go │ │ ├── metadata.go │ │ ├── metadata_request.go │ │ ├── metadata_response.go │ │ ├── metrics.go │ │ ├── mockbroker.go │ │ ├── mockkerberos.go │ │ ├── mockresponses.go │ │ ├── offset_commit_request.go │ │ ├── offset_commit_response.go │ │ ├── offset_fetch_request.go │ │ ├── offset_fetch_response.go │ │ ├── offset_manager.go │ │ ├── offset_request.go │ │ ├── offset_response.go │ │ ├── packet_decoder.go │ │ ├── packet_encoder.go │ │ ├── partitioner.go │ │ ├── prep_encoder.go │ │ ├── produce_request.go │ │ ├── produce_response.go │ │ ├── produce_set.go │ │ ├── quota_types.go │ │ ├── real_decoder.go │ │ ├── real_encoder.go │ │ ├── record.go │ │ ├── record_batch.go │ │ ├── records.go │ │ ├── request.go │ │ ├── response_header.go │ │ ├── sarama.go │ │ ├── sasl_authenticate_request.go │ │ ├── sasl_authenticate_response.go │ │ ├── sasl_handshake_request.go │ │ ├── sasl_handshake_response.go │ │ ├── scram_formatter.go │ │ ├── server.properties │ │ ├── sticky_assignor_user_data.go │ │ ├── sync_group_request.go │ │ ├── sync_group_response.go │ │ ├── sync_producer.go │ │ ├── timestamp.go │ │ ├── transaction_manager.go │ │ ├── txn_offset_commit_request.go │ │ ├── txn_offset_commit_response.go │ │ ├── utils.go │ │ ├── version.go │ │ └── zstd.go ├── aws │ ├── aws-sdk-go-v2 │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ │ ├── accountid_endpoint_mode.go │ │ │ ├── checksum.go │ │ │ ├── config.go │ │ │ ├── context.go │ │ │ ├── credential_cache.go │ │ │ ├── credentials.go │ │ │ ├── defaults │ │ │ │ ├── auto.go │ │ │ │ ├── configuration.go │ │ │ │ ├── defaults.go │ │ │ │ └── doc.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── errors.go │ │ │ ├── from_ptr.go │ │ │ ├── go_module_metadata.go │ │ │ ├── logging.go │ │ │ ├── logging_generate.go │ │ │ ├── middleware │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── osname.go │ │ │ │ ├── osname_go115.go │ │ │ │ ├── recursion_detection.go │ │ │ │ ├── request_id.go │ │ │ │ ├── request_id_retriever.go │ │ │ │ └── user_agent.go │ │ │ ├── protocol │ │ │ │ ├── query │ │ │ │ │ ├── array.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── object.go │ │ │ │ │ └── value.go │ │ │ │ ├── restjson │ │ │ │ │ └── decoder_util.go │ │ │ │ └── xml │ │ │ │ │ └── error_utils.go │ │ │ ├── ratelimit │ │ │ │ ├── none.go │ │ │ │ ├── token_bucket.go │ │ │ │ └── token_rate_limit.go │ │ │ ├── request.go │ │ │ ├── retry │ │ │ │ ├── adaptive.go │ │ │ │ ├── adaptive_ratelimit.go │ │ │ │ ├── adaptive_token_bucket.go │ │ │ │ ├── attempt_metrics.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── jitter_backoff.go │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── retry.go │ │ │ │ ├── retryable_error.go │ │ │ │ ├── standard.go │ │ │ │ ├── throttle_error.go │ │ │ │ └── timeout_error.go │ │ │ ├── retryer.go │ │ │ ├── runtime.go │ │ │ ├── signer │ │ │ │ ├── internal │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ └── v4 │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── v4.go │ │ │ ├── to_ptr.go │ │ │ ├── transport │ │ │ │ └── http │ │ │ │ │ ├── client.go │ │ │ │ │ ├── content_type.go │ │ │ │ │ ├── response_error.go │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ └── timeout_read_closer.go │ │ │ ├── types.go │ │ │ └── version.go │ │ ├── config │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── auth_scheme_preference.go │ │ │ ├── config.go │ │ │ ├── defaultsmode.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── generate.go │ │ │ ├── go_module_metadata.go │ │ │ ├── load_options.go │ │ │ ├── local.go │ │ │ ├── provider.go │ │ │ ├── resolve.go │ │ │ ├── resolve_bearer_token.go │ │ │ ├── resolve_credentials.go │ │ │ └── shared_config.go │ │ ├── credentials │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── doc.go │ │ │ ├── ec2rolecreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── endpointcreds │ │ │ │ ├── internal │ │ │ │ │ └── client │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ └── middleware.go │ │ │ │ └── provider.go │ │ │ ├── go_module_metadata.go │ │ │ ├── logincreds │ │ │ │ ├── dpop.go │ │ │ │ ├── file.go │ │ │ │ ├── provider.go │ │ │ │ └── token.go │ │ │ ├── processcreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── ssocreds │ │ │ │ ├── doc.go │ │ │ │ ├── sso_cached_token.go │ │ │ │ ├── sso_credentials_provider.go │ │ │ │ └── sso_token_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── feature │ │ │ └── ec2 │ │ │ │ └── imds │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_GetDynamicData.go │ │ │ │ ├── api_op_GetIAMInfo.go │ │ │ │ ├── api_op_GetInstanceIdentityDocument.go │ │ │ │ ├── api_op_GetMetadata.go │ │ │ │ ├── api_op_GetRegion.go │ │ │ │ ├── api_op_GetToken.go │ │ │ │ ├── api_op_GetUserData.go │ │ │ │ ├── auth.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ └── config │ │ │ │ │ └── resolvers.go │ │ │ │ ├── request_middleware.go │ │ │ │ └── token_provider.go │ │ ├── internal │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── scheme.go │ │ │ │ └── smithy │ │ │ │ │ ├── bearer_token_adapter.go │ │ │ │ │ ├── bearer_token_signer_adapter.go │ │ │ │ │ ├── credentials_adapter.go │ │ │ │ │ ├── smithy.go │ │ │ │ │ └── v4signer_adapter.go │ │ │ ├── awsutil │ │ │ │ ├── copy.go │ │ │ │ ├── equal.go │ │ │ │ ├── prettify.go │ │ │ │ └── string_value.go │ │ │ ├── configsources │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.go │ │ │ │ ├── endpoints.go │ │ │ │ └── go_module_metadata.go │ │ │ ├── context │ │ │ │ └── context.go │ │ │ ├── endpoints │ │ │ │ ├── awsrulesfn │ │ │ │ │ ├── arn.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generate.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── partitions.go │ │ │ │ │ └── partitions.json │ │ │ │ ├── endpoints.go │ │ │ │ └── v2 │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ ├── ini │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── errors.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── ini.go │ │ │ │ ├── parse.go │ │ │ │ ├── sections.go │ │ │ │ ├── strings.go │ │ │ │ ├── token.go │ │ │ │ ├── tokenize.go │ │ │ │ └── value.go │ │ │ ├── middleware │ │ │ │ └── middleware.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── sdk │ │ │ │ ├── interfaces.go │ │ │ │ └── time.go │ │ │ ├── sdkio │ │ │ │ └── byte.go │ │ │ ├── shareddefaults │ │ │ │ └── shared_config.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ ├── sync │ │ │ │ └── singleflight │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── docs.go │ │ │ │ │ └── singleflight.go │ │ │ └── timeconv │ │ │ │ └── duration.go │ │ └── service │ │ │ ├── dynamodb │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_BatchExecuteStatement.go │ │ │ ├── api_op_BatchGetItem.go │ │ │ ├── api_op_BatchWriteItem.go │ │ │ ├── api_op_CreateBackup.go │ │ │ ├── api_op_CreateGlobalTable.go │ │ │ ├── api_op_CreateTable.go │ │ │ ├── api_op_DeleteBackup.go │ │ │ ├── api_op_DeleteItem.go │ │ │ ├── api_op_DeleteResourcePolicy.go │ │ │ ├── api_op_DeleteTable.go │ │ │ ├── api_op_DescribeBackup.go │ │ │ ├── api_op_DescribeContinuousBackups.go │ │ │ ├── api_op_DescribeContributorInsights.go │ │ │ ├── api_op_DescribeEndpoints.go │ │ │ ├── api_op_DescribeExport.go │ │ │ ├── api_op_DescribeGlobalTable.go │ │ │ ├── api_op_DescribeGlobalTableSettings.go │ │ │ ├── api_op_DescribeImport.go │ │ │ ├── api_op_DescribeKinesisStreamingDestination.go │ │ │ ├── api_op_DescribeLimits.go │ │ │ ├── api_op_DescribeTable.go │ │ │ ├── api_op_DescribeTableReplicaAutoScaling.go │ │ │ ├── api_op_DescribeTimeToLive.go │ │ │ ├── api_op_DisableKinesisStreamingDestination.go │ │ │ ├── api_op_EnableKinesisStreamingDestination.go │ │ │ ├── api_op_ExecuteStatement.go │ │ │ ├── api_op_ExecuteTransaction.go │ │ │ ├── api_op_ExportTableToPointInTime.go │ │ │ ├── api_op_GetItem.go │ │ │ ├── api_op_GetResourcePolicy.go │ │ │ ├── api_op_ImportTable.go │ │ │ ├── api_op_ListBackups.go │ │ │ ├── api_op_ListContributorInsights.go │ │ │ ├── api_op_ListExports.go │ │ │ ├── api_op_ListGlobalTables.go │ │ │ ├── api_op_ListImports.go │ │ │ ├── api_op_ListTables.go │ │ │ ├── api_op_ListTagsOfResource.go │ │ │ ├── api_op_PutItem.go │ │ │ ├── api_op_PutResourcePolicy.go │ │ │ ├── api_op_Query.go │ │ │ ├── api_op_RestoreTableFromBackup.go │ │ │ ├── api_op_RestoreTableToPointInTime.go │ │ │ ├── api_op_Scan.go │ │ │ ├── api_op_TagResource.go │ │ │ ├── api_op_TransactGetItems.go │ │ │ ├── api_op_TransactWriteItems.go │ │ │ ├── api_op_UntagResource.go │ │ │ ├── api_op_UpdateContinuousBackups.go │ │ │ ├── api_op_UpdateContributorInsights.go │ │ │ ├── api_op_UpdateGlobalTable.go │ │ │ ├── api_op_UpdateGlobalTableSettings.go │ │ │ ├── api_op_UpdateItem.go │ │ │ ├── api_op_UpdateKinesisStreamingDestination.go │ │ │ ├── api_op_UpdateTable.go │ │ │ ├── api_op_UpdateTableReplicaAutoScaling.go │ │ │ ├── api_op_UpdateTimeToLive.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── handwritten_paginators.go │ │ │ ├── internal │ │ │ │ ├── customizations │ │ │ │ │ ├── checksum.go │ │ │ │ │ └── doc.go │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── internal │ │ │ ├── accept-encoding │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── accept_encoding_gzip.go │ │ │ │ ├── doc.go │ │ │ │ └── go_module_metadata.go │ │ │ ├── endpoint-discovery │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── cache.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ └── middleware.go │ │ │ └── presigned-url │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ └── middleware.go │ │ │ ├── signin │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_CreateOAuth2Token.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── sns │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AddPermission.go │ │ │ ├── api_op_CheckIfPhoneNumberIsOptedOut.go │ │ │ ├── api_op_ConfirmSubscription.go │ │ │ ├── api_op_CreatePlatformApplication.go │ │ │ ├── api_op_CreatePlatformEndpoint.go │ │ │ ├── api_op_CreateSMSSandboxPhoneNumber.go │ │ │ ├── api_op_CreateTopic.go │ │ │ ├── api_op_DeleteEndpoint.go │ │ │ ├── api_op_DeletePlatformApplication.go │ │ │ ├── api_op_DeleteSMSSandboxPhoneNumber.go │ │ │ ├── api_op_DeleteTopic.go │ │ │ ├── api_op_GetDataProtectionPolicy.go │ │ │ ├── api_op_GetEndpointAttributes.go │ │ │ ├── api_op_GetPlatformApplicationAttributes.go │ │ │ ├── api_op_GetSMSAttributes.go │ │ │ ├── api_op_GetSMSSandboxAccountStatus.go │ │ │ ├── api_op_GetSubscriptionAttributes.go │ │ │ ├── api_op_GetTopicAttributes.go │ │ │ ├── api_op_ListEndpointsByPlatformApplication.go │ │ │ ├── api_op_ListOriginationNumbers.go │ │ │ ├── api_op_ListPhoneNumbersOptedOut.go │ │ │ ├── api_op_ListPlatformApplications.go │ │ │ ├── api_op_ListSMSSandboxPhoneNumbers.go │ │ │ ├── api_op_ListSubscriptions.go │ │ │ ├── api_op_ListSubscriptionsByTopic.go │ │ │ ├── api_op_ListTagsForResource.go │ │ │ ├── api_op_ListTopics.go │ │ │ ├── api_op_OptInPhoneNumber.go │ │ │ ├── api_op_Publish.go │ │ │ ├── api_op_PublishBatch.go │ │ │ ├── api_op_PutDataProtectionPolicy.go │ │ │ ├── api_op_RemovePermission.go │ │ │ ├── api_op_SetEndpointAttributes.go │ │ │ ├── api_op_SetPlatformApplicationAttributes.go │ │ │ ├── api_op_SetSMSAttributes.go │ │ │ ├── api_op_SetSubscriptionAttributes.go │ │ │ ├── api_op_SetTopicAttributes.go │ │ │ ├── api_op_Subscribe.go │ │ │ ├── api_op_TagResource.go │ │ │ ├── api_op_Unsubscribe.go │ │ │ ├── api_op_UntagResource.go │ │ │ ├── api_op_VerifySMSSandboxPhoneNumber.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── sqs │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AddPermission.go │ │ │ ├── api_op_CancelMessageMoveTask.go │ │ │ ├── api_op_ChangeMessageVisibility.go │ │ │ ├── api_op_ChangeMessageVisibilityBatch.go │ │ │ ├── api_op_CreateQueue.go │ │ │ ├── api_op_DeleteMessage.go │ │ │ ├── api_op_DeleteMessageBatch.go │ │ │ ├── api_op_DeleteQueue.go │ │ │ ├── api_op_GetQueueAttributes.go │ │ │ ├── api_op_GetQueueUrl.go │ │ │ ├── api_op_ListDeadLetterSourceQueues.go │ │ │ ├── api_op_ListMessageMoveTasks.go │ │ │ ├── api_op_ListQueueTags.go │ │ │ ├── api_op_ListQueues.go │ │ │ ├── api_op_PurgeQueue.go │ │ │ ├── api_op_ReceiveMessage.go │ │ │ ├── api_op_RemovePermission.go │ │ │ ├── api_op_SendMessage.go │ │ │ ├── api_op_SendMessageBatch.go │ │ │ ├── api_op_SetQueueAttributes.go │ │ │ ├── api_op_StartMessageMoveTask.go │ │ │ ├── api_op_TagQueue.go │ │ │ ├── api_op_UntagQueue.go │ │ │ ├── auth.go │ │ │ ├── cust_checksum_validation.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── sso │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_GetRoleCredentials.go │ │ │ ├── api_op_ListAccountRoles.go │ │ │ ├── api_op_ListAccounts.go │ │ │ ├── api_op_Logout.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── ssooidc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_CreateToken.go │ │ │ ├── api_op_CreateTokenWithIAM.go │ │ │ ├── api_op_RegisterClient.go │ │ │ ├── api_op_StartDeviceAuthorization.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ └── sts │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AssumeRole.go │ │ │ ├── api_op_AssumeRoleWithSAML.go │ │ │ ├── api_op_AssumeRoleWithWebIdentity.go │ │ │ ├── api_op_AssumeRoot.go │ │ │ ├── api_op_DecodeAuthorizationMessage.go │ │ │ ├── api_op_GetAccessKeyInfo.go │ │ │ ├── api_op_GetCallerIdentity.go │ │ │ ├── api_op_GetDelegatedAccessToken.go │ │ │ ├── api_op_GetFederationToken.go │ │ │ ├── api_op_GetSessionToken.go │ │ │ ├── api_op_GetWebIdentityToken.go │ │ │ ├── auth.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ └── endpoints │ │ │ │ └── endpoints.go │ │ │ ├── options.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ ├── errors.go │ │ │ └── types.go │ │ │ └── validators.go │ └── smithy-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── auth │ │ ├── auth.go │ │ ├── bearer │ │ │ ├── docs.go │ │ │ ├── middleware.go │ │ │ ├── token.go │ │ │ └── token_cache.go │ │ ├── identity.go │ │ ├── option.go │ │ └── scheme_id.go │ │ ├── changelog-template.json │ │ ├── context │ │ └── suppress_expired.go │ │ ├── doc.go │ │ ├── document.go │ │ ├── document │ │ ├── doc.go │ │ ├── document.go │ │ └── errors.go │ │ ├── encoding │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── httpbinding │ │ │ ├── encode.go │ │ │ ├── header.go │ │ │ ├── path_replace.go │ │ │ ├── query.go │ │ │ └── uri.go │ │ ├── json │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── decoder_util.go │ │ │ ├── encoder.go │ │ │ ├── escape.go │ │ │ ├── object.go │ │ │ └── value.go │ │ └── xml │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── element.go │ │ │ ├── encoder.go │ │ │ ├── error_utils.go │ │ │ ├── escape.go │ │ │ ├── map.go │ │ │ ├── value.go │ │ │ └── xml_decoder.go │ │ ├── endpoints │ │ ├── endpoint.go │ │ └── private │ │ │ └── rulesfn │ │ │ ├── doc.go │ │ │ ├── strings.go │ │ │ └── uri.go │ │ ├── errors.go │ │ ├── go_module_metadata.go │ │ ├── internal │ │ └── sync │ │ │ └── singleflight │ │ │ ├── LICENSE │ │ │ ├── docs.go │ │ │ └── singleflight.go │ │ ├── io │ │ ├── byte.go │ │ ├── doc.go │ │ ├── reader.go │ │ └── ringbuffer.go │ │ ├── local-mod-replace.sh │ │ ├── logging │ │ └── logger.go │ │ ├── metrics │ │ ├── metrics.go │ │ └── nop.go │ │ ├── middleware │ │ ├── context.go │ │ ├── doc.go │ │ ├── logging.go │ │ ├── metadata.go │ │ ├── middleware.go │ │ ├── ordered_group.go │ │ ├── stack.go │ │ ├── stack_values.go │ │ ├── step_build.go │ │ ├── step_deserialize.go │ │ ├── step_finalize.go │ │ ├── step_initialize.go │ │ └── step_serialize.go │ │ ├── modman.toml │ │ ├── private │ │ └── requestcompression │ │ │ ├── gzip.go │ │ │ ├── middleware_capture_request_compression.go │ │ │ └── request_compression.go │ │ ├── properties.go │ │ ├── ptr │ │ ├── doc.go │ │ ├── from_ptr.go │ │ ├── gen_scalars.go │ │ └── to_ptr.go │ │ ├── rand │ │ ├── doc.go │ │ ├── rand.go │ │ └── uuid.go │ │ ├── time │ │ └── time.go │ │ ├── tracing │ │ ├── context.go │ │ ├── nop.go │ │ └── tracing.go │ │ ├── transport │ │ └── http │ │ │ ├── auth.go │ │ │ ├── auth_schemes.go │ │ │ ├── checksum_middleware.go │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── headerlist.go │ │ │ ├── host.go │ │ │ ├── interceptor.go │ │ │ ├── interceptor_middleware.go │ │ │ ├── internal │ │ │ └── io │ │ │ │ └── safe.go │ │ │ ├── md5_checksum.go │ │ │ ├── metrics.go │ │ │ ├── middleware_close_response_body.go │ │ │ ├── middleware_content_length.go │ │ │ ├── middleware_header_comment.go │ │ │ ├── middleware_headers.go │ │ │ ├── middleware_http_logging.go │ │ │ ├── middleware_metadata.go │ │ │ ├── middleware_min_proto.go │ │ │ ├── properties.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── time.go │ │ │ ├── url.go │ │ │ └── user_agent.go │ │ ├── validation.go │ │ └── waiter │ │ ├── logger.go │ │ └── waiter.go ├── cenkalti │ └── backoff │ │ └── v5 │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── error.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ └── timer.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── dgryski │ └── go-rendezvous │ │ ├── LICENSE │ │ └── rdv.go ├── eapache │ ├── go-resiliency │ │ ├── LICENSE │ │ └── breaker │ │ │ ├── README.md │ │ │ └── breaker.go │ ├── go-xerial-snappy │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── snappy.go │ └── queue │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── queue.go ├── eclipse │ └── paho.golang │ │ ├── LICENSE │ │ ├── autopaho │ │ ├── auto.go │ │ ├── backoff.go │ │ ├── error.go │ │ ├── net.go │ │ ├── queue │ │ │ ├── memory │ │ │ │ └── queue.go │ │ │ └── queue.go │ │ └── readme.md │ │ ├── packets │ │ ├── auth.go │ │ ├── connack.go │ │ ├── connect.go │ │ ├── disconnect.go │ │ ├── packets.go │ │ ├── pingreq.go │ │ ├── pingresp.go │ │ ├── properties.go │ │ ├── puback.go │ │ ├── pubcomp.go │ │ ├── publish.go │ │ ├── pubrec.go │ │ ├── pubrel.go │ │ ├── suback.go │ │ ├── subscribe.go │ │ ├── unsuback.go │ │ └── unsubscribe.go │ │ └── paho │ │ ├── acks_tracker.go │ │ ├── auth.go │ │ ├── client.go │ │ ├── cp_auth.go │ │ ├── cp_connack.go │ │ ├── cp_connect.go │ │ ├── cp_disconnect.go │ │ ├── cp_publish.go │ │ ├── cp_pubresp.go │ │ ├── cp_suback.go │ │ ├── cp_subscribe.go │ │ ├── cp_unsuback.go │ │ ├── cp_unsubscribe.go │ │ ├── cp_utils.go │ │ ├── log │ │ ├── test.go │ │ └── trace.go │ │ ├── pinger.go │ │ ├── router.go │ │ ├── session │ │ ├── session.go │ │ └── state │ │ │ ├── readme.md │ │ │ ├── sendquota.go │ │ │ ├── state.go │ │ │ └── store.go │ │ └── store │ │ └── memory │ │ └── store.go ├── elastic │ ├── elastic-transport-go │ │ └── v8 │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── elastictransport │ │ │ ├── connection.go │ │ │ ├── discovery.go │ │ │ ├── doc.go │ │ │ ├── elastictransport.go │ │ │ ├── gzip.go │ │ │ ├── instrumentation.go │ │ │ ├── interceptor.go │ │ │ ├── logger.go │ │ │ ├── metrics.go │ │ │ └── version │ │ │ └── version.go │ └── go-elasticsearch │ │ └── v8 │ │ ├── .codecov.yml │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── catalog-info.yaml │ │ ├── doc.go │ │ ├── elasticsearch.go │ │ ├── esapi │ │ ├── api._.go │ │ ├── api.bulk.go │ │ ├── api.capabilities.go │ │ ├── api.cat.aliases.go │ │ ├── api.cat.allocation.go │ │ ├── api.cat.component_templates.go │ │ ├── api.cat.count.go │ │ ├── api.cat.fielddata.go │ │ ├── api.cat.health.go │ │ ├── api.cat.help.go │ │ ├── api.cat.indices.go │ │ ├── api.cat.master.go │ │ ├── api.cat.nodeattrs.go │ │ ├── api.cat.nodes.go │ │ ├── api.cat.pending_tasks.go │ │ ├── api.cat.plugins.go │ │ ├── api.cat.recovery.go │ │ ├── api.cat.repositories.go │ │ ├── api.cat.segments.go │ │ ├── api.cat.shards.go │ │ ├── api.cat.snapshots.go │ │ ├── api.cat.tasks.go │ │ ├── api.cat.templates.go │ │ ├── api.cat.thread_pool.go │ │ ├── api.clear_scroll.go │ │ ├── api.cluster.allocation_explain.go │ │ ├── api.cluster.delete_component_template.go │ │ ├── api.cluster.delete_voting_config_exclusions.go │ │ ├── api.cluster.exists_component_template.go │ │ ├── api.cluster.get_component_template.go │ │ ├── api.cluster.get_settings.go │ │ ├── api.cluster.health.go │ │ ├── api.cluster.info.go │ │ ├── api.cluster.pending_tasks.go │ │ ├── api.cluster.post_voting_config_exclusions.go │ │ ├── api.cluster.put_component_template.go │ │ ├── api.cluster.put_settings.go │ │ ├── api.cluster.remote_info.go │ │ ├── api.cluster.reroute.go │ │ ├── api.cluster.state.go │ │ ├── api.cluster.stats.go │ │ ├── api.connector.check_in.go │ │ ├── api.connector.delete.go │ │ ├── api.connector.get.go │ │ ├── api.connector.last_sync.go │ │ ├── api.connector.list.go │ │ ├── api.connector.post.go │ │ ├── api.connector.put.go │ │ ├── api.connector.secret_delete.go │ │ ├── api.connector.secret_get.go │ │ ├── api.connector.secret_post.go │ │ ├── api.connector.secret_put.go │ │ ├── api.connector.sync_job_cancel.go │ │ ├── api.connector.sync_job_check_in.go │ │ ├── api.connector.sync_job_claim.go │ │ ├── api.connector.sync_job_delete.go │ │ ├── api.connector.sync_job_error.go │ │ ├── api.connector.sync_job_get.go │ │ ├── api.connector.sync_job_list.go │ │ ├── api.connector.sync_job_post.go │ │ ├── api.connector.sync_job_update_stats.go │ │ ├── api.connector.update_active_filtering.go │ │ ├── api.connector.update_api_key_id.go │ │ ├── api.connector.update_configuration.go │ │ ├── api.connector.update_error.go │ │ ├── api.connector.update_features.go │ │ ├── api.connector.update_filtering.go │ │ ├── api.connector.update_filtering_validation.go │ │ ├── api.connector.update_index_name.go │ │ ├── api.connector.update_name.go │ │ ├── api.connector.update_native.go │ │ ├── api.connector.update_pipeline.go │ │ ├── api.connector.update_scheduling.go │ │ ├── api.connector.update_service_type.go │ │ ├── api.connector.update_status.go │ │ ├── api.count.go │ │ ├── api.create.go │ │ ├── api.dangling_indices.delete_dangling_index.go │ │ ├── api.dangling_indices.import_dangling_index.go │ │ ├── api.dangling_indices.list_dangling_indices.go │ │ ├── api.delete.go │ │ ├── api.delete_by_query.go │ │ ├── api.delete_by_query_rethrottle.go │ │ ├── api.delete_script.go │ │ ├── api.exists.go │ │ ├── api.exists_source.go │ │ ├── api.explain.go │ │ ├── api.features.get_features.go │ │ ├── api.features.reset_features.go │ │ ├── api.field_caps.go │ │ ├── api.fleet.delete_secret.go │ │ ├── api.fleet.get_secret.go │ │ ├── api.fleet.global_checkpoints.go │ │ ├── api.fleet.msearch.go │ │ ├── api.fleet.post_secret.go │ │ ├── api.fleet.search.go │ │ ├── api.get.go │ │ ├── api.get_script.go │ │ ├── api.get_script_context.go │ │ ├── api.get_script_languages.go │ │ ├── api.get_source.go │ │ ├── api.health_report.go │ │ ├── api.index.go │ │ ├── api.indices.add_block.go │ │ ├── api.indices.analyze.go │ │ ├── api.indices.cancel_migrate_reindex.go │ │ ├── api.indices.clear_cache.go │ │ ├── api.indices.clone.go │ │ ├── api.indices.close.go │ │ ├── api.indices.create.go │ │ ├── api.indices.create_from.go │ │ ├── api.indices.delete.go │ │ ├── api.indices.delete_alias.go │ │ ├── api.indices.delete_data_lifecycle.go │ │ ├── api.indices.delete_index_template.go │ │ ├── api.indices.delete_template.go │ │ ├── api.indices.disk_usage.go │ │ ├── api.indices.downsample.go │ │ ├── api.indices.exists.go │ │ ├── api.indices.exists_alias.go │ │ ├── api.indices.exists_index_template.go │ │ ├── api.indices.exists_template.go │ │ ├── api.indices.explain_data_lifecycle.go │ │ ├── api.indices.field_usage_stats.go │ │ ├── api.indices.flush.go │ │ ├── api.indices.forcemerge.go │ │ ├── api.indices.get.go │ │ ├── api.indices.get_alias.go │ │ ├── api.indices.get_data_lifecycle.go │ │ ├── api.indices.get_data_lifecycle_stats.go │ │ ├── api.indices.get_field_mapping.go │ │ ├── api.indices.get_index_template.go │ │ ├── api.indices.get_mapping.go │ │ ├── api.indices.get_migrate_reindex_status.go │ │ ├── api.indices.get_settings.go │ │ ├── api.indices.get_template.go │ │ ├── api.indices.migrate_reindex.go │ │ ├── api.indices.modify_data_stream.go │ │ ├── api.indices.open.go │ │ ├── api.indices.put_alias.go │ │ ├── api.indices.put_data_lifecycle.go │ │ ├── api.indices.put_data_stream_options.go │ │ ├── api.indices.put_data_stream_settings.go │ │ ├── api.indices.put_index_template.go │ │ ├── api.indices.put_mapping.go │ │ ├── api.indices.put_settings.go │ │ ├── api.indices.put_template.go │ │ ├── api.indices.recovery.go │ │ ├── api.indices.refresh.go │ │ ├── api.indices.resolve_cluster.go │ │ ├── api.indices.resolve_index.go │ │ ├── api.indices.rollover.go │ │ ├── api.indices.segments.go │ │ ├── api.indices.shard_stores.go │ │ ├── api.indices.shrink.go │ │ ├── api.indices.simulate_index_template.go │ │ ├── api.indices.simulate_template.go │ │ ├── api.indices.split.go │ │ ├── api.indices.stats.go │ │ ├── api.indices.update_aliases.go │ │ ├── api.indices.validate_query.go │ │ ├── api.inference.chat_completion_unified.go │ │ ├── api.inference.completion.go │ │ ├── api.inference.delete.go │ │ ├── api.inference.get.go │ │ ├── api.inference.inference.go │ │ ├── api.inference.put.go │ │ ├── api.inference.put_alibabacloud.go │ │ ├── api.inference.put_amazonbedrock.go │ │ ├── api.inference.put_amazonsagemaker.go │ │ ├── api.inference.put_anthropic.go │ │ ├── api.inference.put_azureaistudio.go │ │ ├── api.inference.put_azureopenai.go │ │ ├── api.inference.put_cohere.go │ │ ├── api.inference.put_custom.go │ │ ├── api.inference.put_deepseek.go │ │ ├── api.inference.put_elasticsearch.go │ │ ├── api.inference.put_elser.go │ │ ├── api.inference.put_googleaistudio.go │ │ ├── api.inference.put_googlevertexai.go │ │ ├── api.inference.put_hugging_face.go │ │ ├── api.inference.put_jinaai.go │ │ ├── api.inference.put_mistral.go │ │ ├── api.inference.put_openai.go │ │ ├── api.inference.put_voyageai.go │ │ ├── api.inference.put_watsonx.go │ │ ├── api.inference.rerank.go │ │ ├── api.inference.sparse_embedding.go │ │ ├── api.inference.stream_completion.go │ │ ├── api.inference.text_embedding.go │ │ ├── api.inference.update.go │ │ ├── api.info.go │ │ ├── api.ingest.delete_geoip_database.go │ │ ├── api.ingest.delete_ip_location_database.go │ │ ├── api.ingest.delete_pipeline.go │ │ ├── api.ingest.geo_ip_stats.go │ │ ├── api.ingest.get_geoip_database.go │ │ ├── api.ingest.get_ip_location_database.go │ │ ├── api.ingest.get_pipeline.go │ │ ├── api.ingest.processor_grok.go │ │ ├── api.ingest.put_geoip_database.go │ │ ├── api.ingest.put_ip_location_database.go │ │ ├── api.ingest.put_pipeline.go │ │ ├── api.ingest.simulate.go │ │ ├── api.knn_search.go │ │ ├── api.mget.go │ │ ├── api.msearch.go │ │ ├── api.msearch_template.go │ │ ├── api.mtermvectors.go │ │ ├── api.nodes.clear_repositories_metering_archive.go │ │ ├── api.nodes.get_repositories_metering_info.go │ │ ├── api.nodes.hot_threads.go │ │ ├── api.nodes.info.go │ │ ├── api.nodes.reload_secure_settings.go │ │ ├── api.nodes.stats.go │ │ ├── api.nodes.usage.go │ │ ├── api.ping.go │ │ ├── api.profiling.stacktraces.go │ │ ├── api.profiling.status.go │ │ ├── api.profiling.topn_functions.go │ │ ├── api.put_script.go │ │ ├── api.query_rules.delete_rule.go │ │ ├── api.query_rules.delete_ruleset.go │ │ ├── api.query_rules.get_rule.go │ │ ├── api.query_rules.get_ruleset.go │ │ ├── api.query_rules.list_rulesets.go │ │ ├── api.query_rules.put_rule.go │ │ ├── api.query_rules.put_ruleset.go │ │ ├── api.query_rules.test.go │ │ ├── api.rank_eval.go │ │ ├── api.reindex.go │ │ ├── api.reindex_rethrottle.go │ │ ├── api.render_search_template.go │ │ ├── api.scripts_painless_execute.go │ │ ├── api.scroll.go │ │ ├── api.search.go │ │ ├── api.search_application.delete.go │ │ ├── api.search_application.delete_behavioral_analytics.go │ │ ├── api.search_application.get.go │ │ ├── api.search_application.get_behavioral_analytics.go │ │ ├── api.search_application.list.go │ │ ├── api.search_application.post_behavioral_analytics_event.go │ │ ├── api.search_application.put.go │ │ ├── api.search_application.put_behavioral_analytics.go │ │ ├── api.search_application.render_query.go │ │ ├── api.search_application.search.go │ │ ├── api.search_mvt.go │ │ ├── api.search_shards.go │ │ ├── api.search_template.go │ │ ├── api.shutdown.delete_node.go │ │ ├── api.shutdown.get_node.go │ │ ├── api.shutdown.put_node.go │ │ ├── api.simulate.ingest.go │ │ ├── api.snapshot.cleanup_repository.go │ │ ├── api.snapshot.clone.go │ │ ├── api.snapshot.create.go │ │ ├── api.snapshot.create_repository.go │ │ ├── api.snapshot.delete.go │ │ ├── api.snapshot.delete_repository.go │ │ ├── api.snapshot.get.go │ │ ├── api.snapshot.get_repository.go │ │ ├── api.snapshot.repository_analyze.go │ │ ├── api.snapshot.repository_verify_integrity.go │ │ ├── api.snapshot.restore.go │ │ ├── api.snapshot.status.go │ │ ├── api.snapshot.verify_repository.go │ │ ├── api.streams.logs_disable.go │ │ ├── api.streams.logs_enable.go │ │ ├── api.streams.status.go │ │ ├── api.synonyms.delete_synonym.go │ │ ├── api.synonyms.delete_synonym_rule.go │ │ ├── api.synonyms.get_synonym.go │ │ ├── api.synonyms.get_synonym_rule.go │ │ ├── api.synonyms.get_synonyms_sets.go │ │ ├── api.synonyms.put_synonym.go │ │ ├── api.synonyms.put_synonym_rule.go │ │ ├── api.tasks.cancel.go │ │ ├── api.tasks.get.go │ │ ├── api.tasks.list.go │ │ ├── api.terms_enum.go │ │ ├── api.termvectors.go │ │ ├── api.update.go │ │ ├── api.update_by_query.go │ │ ├── api.update_by_query_rethrottle.go │ │ ├── api.xpack.async_search.delete.go │ │ ├── api.xpack.async_search.get.go │ │ ├── api.xpack.async_search.status.go │ │ ├── api.xpack.async_search.submit.go │ │ ├── api.xpack.autoscaling.delete_autoscaling_policy.go │ │ ├── api.xpack.autoscaling.get_autoscaling_capacity.go │ │ ├── api.xpack.autoscaling.get_autoscaling_policy.go │ │ ├── api.xpack.autoscaling.put_autoscaling_policy.go │ │ ├── api.xpack.cat.ml_data_frame_analytics.go │ │ ├── api.xpack.cat.ml_datafeeds.go │ │ ├── api.xpack.cat.ml_jobs.go │ │ ├── api.xpack.cat.ml_trained_models.go │ │ ├── api.xpack.cat.transforms.go │ │ ├── api.xpack.ccr.delete_auto_follow_pattern.go │ │ ├── api.xpack.ccr.follow.go │ │ ├── api.xpack.ccr.follow_info.go │ │ ├── api.xpack.ccr.follow_stats.go │ │ ├── api.xpack.ccr.forget_follower.go │ │ ├── api.xpack.ccr.get_auto_follow_pattern.go │ │ ├── api.xpack.ccr.pause_auto_follow_pattern.go │ │ ├── api.xpack.ccr.pause_follow.go │ │ ├── api.xpack.ccr.put_auto_follow_pattern.go │ │ ├── api.xpack.ccr.resume_auto_follow_pattern.go │ │ ├── api.xpack.ccr.resume_follow.go │ │ ├── api.xpack.ccr.stats.go │ │ ├── api.xpack.ccr.unfollow.go │ │ ├── api.xpack.close_point_in_time.go │ │ ├── api.xpack.enrich.delete_policy.go │ │ ├── api.xpack.enrich.execute_policy.go │ │ ├── api.xpack.enrich.get_policy.go │ │ ├── api.xpack.enrich.put_policy.go │ │ ├── api.xpack.enrich.stats.go │ │ ├── api.xpack.eql.delete.go │ │ ├── api.xpack.eql.get.go │ │ ├── api.xpack.eql.get_status.go │ │ ├── api.xpack.eql.search.go │ │ ├── api.xpack.esql.async_query.go │ │ ├── api.xpack.esql.async_query_delete.go │ │ ├── api.xpack.esql.async_query_get.go │ │ ├── api.xpack.esql.async_query_stop.go │ │ ├── api.xpack.esql.query.go │ │ ├── api.xpack.graph.explore.go │ │ ├── api.xpack.ilm.delete_lifecycle.go │ │ ├── api.xpack.ilm.explain_lifecycle.go │ │ ├── api.xpack.ilm.get_lifecycle.go │ │ ├── api.xpack.ilm.get_status.go │ │ ├── api.xpack.ilm.migrate_to_data_tiers.go │ │ ├── api.xpack.ilm.move_to_step.go │ │ ├── api.xpack.ilm.put_lifecycle.go │ │ ├── api.xpack.ilm.remove_policy.go │ │ ├── api.xpack.ilm.retry.go │ │ ├── api.xpack.ilm.start.go │ │ ├── api.xpack.ilm.stop.go │ │ ├── api.xpack.indices.create_data_stream.go │ │ ├── api.xpack.indices.data_streams_stats.go │ │ ├── api.xpack.indices.delete_data_stream.go │ │ ├── api.xpack.indices.delete_data_stream_options.go │ │ ├── api.xpack.indices.get_data_stream.go │ │ ├── api.xpack.indices.get_data_stream_options.go │ │ ├── api.xpack.indices.get_data_stream_settings.go │ │ ├── api.xpack.indices.migrate_to_data_stream.go │ │ ├── api.xpack.indices.promote_data_stream.go │ │ ├── api.xpack.indices.reload_search_analyzers.go │ │ ├── api.xpack.indices.unfreeze.go │ │ ├── api.xpack.license.delete.go │ │ ├── api.xpack.license.get.go │ │ ├── api.xpack.license.get_basic_status.go │ │ ├── api.xpack.license.get_trial_status.go │ │ ├── api.xpack.license.post.go │ │ ├── api.xpack.license.post_start_basic.go │ │ ├── api.xpack.license.post_start_trial.go │ │ ├── api.xpack.logstash.delete_pipeline.go │ │ ├── api.xpack.logstash.get_pipeline.go │ │ ├── api.xpack.logstash.put_pipeline.go │ │ ├── api.xpack.migration.deprecations.go │ │ ├── api.xpack.migration.get_feature_upgrade_status.go │ │ ├── api.xpack.migration.post_feature_upgrade.go │ │ ├── api.xpack.ml.clear_trained_model_deployment_cache.go │ │ ├── api.xpack.ml.close_job.go │ │ ├── api.xpack.ml.delete_calendar.go │ │ ├── api.xpack.ml.delete_calendar_event.go │ │ ├── api.xpack.ml.delete_calendar_job.go │ │ ├── api.xpack.ml.delete_data_frame_analytics.go │ │ ├── api.xpack.ml.delete_datafeed.go │ │ ├── api.xpack.ml.delete_expired_data.go │ │ ├── api.xpack.ml.delete_filter.go │ │ ├── api.xpack.ml.delete_forecast.go │ │ ├── api.xpack.ml.delete_job.go │ │ ├── api.xpack.ml.delete_model_snapshot.go │ │ ├── api.xpack.ml.delete_trained_model.go │ │ ├── api.xpack.ml.delete_trained_model_alias.go │ │ ├── api.xpack.ml.estimate_model_memory.go │ │ ├── api.xpack.ml.evaluate_data_frame.go │ │ ├── api.xpack.ml.explain_data_frame_analytics.go │ │ ├── api.xpack.ml.flush_job.go │ │ ├── api.xpack.ml.forecast.go │ │ ├── api.xpack.ml.get_buckets.go │ │ ├── api.xpack.ml.get_calendar_events.go │ │ ├── api.xpack.ml.get_calendars.go │ │ ├── api.xpack.ml.get_categories.go │ │ ├── api.xpack.ml.get_data_frame_analytics.go │ │ ├── api.xpack.ml.get_data_frame_analytics_stats.go │ │ ├── api.xpack.ml.get_datafeed_stats.go │ │ ├── api.xpack.ml.get_datafeeds.go │ │ ├── api.xpack.ml.get_filters.go │ │ ├── api.xpack.ml.get_influencers.go │ │ ├── api.xpack.ml.get_job_stats.go │ │ ├── api.xpack.ml.get_jobs.go │ │ ├── api.xpack.ml.get_memory_stats.go │ │ ├── api.xpack.ml.get_model_snapshot_upgrade_stats.go │ │ ├── api.xpack.ml.get_model_snapshots.go │ │ ├── api.xpack.ml.get_overall_buckets.go │ │ ├── api.xpack.ml.get_records.go │ │ ├── api.xpack.ml.get_trained_models.go │ │ ├── api.xpack.ml.get_trained_models_stats.go │ │ ├── api.xpack.ml.infer_trained_model.go │ │ ├── api.xpack.ml.info.go │ │ ├── api.xpack.ml.open_job.go │ │ ├── api.xpack.ml.post_calendar_events.go │ │ ├── api.xpack.ml.post_data.go │ │ ├── api.xpack.ml.preview_data_frame_analytics.go │ │ ├── api.xpack.ml.preview_datafeed.go │ │ ├── api.xpack.ml.put_calendar.go │ │ ├── api.xpack.ml.put_calendar_job.go │ │ ├── api.xpack.ml.put_data_frame_analytics.go │ │ ├── api.xpack.ml.put_datafeed.go │ │ ├── api.xpack.ml.put_filter.go │ │ ├── api.xpack.ml.put_job.go │ │ ├── api.xpack.ml.put_trained_model.go │ │ ├── api.xpack.ml.put_trained_model_alias.go │ │ ├── api.xpack.ml.put_trained_model_definition_part.go │ │ ├── api.xpack.ml.put_trained_model_vocabulary.go │ │ ├── api.xpack.ml.reset_job.go │ │ ├── api.xpack.ml.revert_model_snapshot.go │ │ ├── api.xpack.ml.set_upgrade_mode.go │ │ ├── api.xpack.ml.start_data_frame_analytics.go │ │ ├── api.xpack.ml.start_datafeed.go │ │ ├── api.xpack.ml.start_trained_model_deployment.go │ │ ├── api.xpack.ml.stop_data_frame_analytics.go │ │ ├── api.xpack.ml.stop_datafeed.go │ │ ├── api.xpack.ml.stop_trained_model_deployment.go │ │ ├── api.xpack.ml.update_data_frame_analytics.go │ │ ├── api.xpack.ml.update_datafeed.go │ │ ├── api.xpack.ml.update_filter.go │ │ ├── api.xpack.ml.update_job.go │ │ ├── api.xpack.ml.update_model_snapshot.go │ │ ├── api.xpack.ml.update_trained_model_deployment.go │ │ ├── api.xpack.ml.upgrade_job_snapshot.go │ │ ├── api.xpack.ml.validate.go │ │ ├── api.xpack.ml.validate_detector.go │ │ ├── api.xpack.monitoring.bulk.go │ │ ├── api.xpack.open_point_in_time.go │ │ ├── api.xpack.profiling.flamegraph.go │ │ ├── api.xpack.rollup.delete_job.go │ │ ├── api.xpack.rollup.get_jobs.go │ │ ├── api.xpack.rollup.get_rollup_caps.go │ │ ├── api.xpack.rollup.get_rollup_index_caps.go │ │ ├── api.xpack.rollup.put_job.go │ │ ├── api.xpack.rollup.rollup_search.go │ │ ├── api.xpack.rollup.start_job.go │ │ ├── api.xpack.rollup.stop_job.go │ │ ├── api.xpack.searchable_snapshots.cache_stats.go │ │ ├── api.xpack.searchable_snapshots.clear_cache.go │ │ ├── api.xpack.searchable_snapshots.mount.go │ │ ├── api.xpack.searchable_snapshots.stats.go │ │ ├── api.xpack.security.activate_user_profile.go │ │ ├── api.xpack.security.authenticate.go │ │ ├── api.xpack.security.bulk_delete_role.go │ │ ├── api.xpack.security.bulk_put_role.go │ │ ├── api.xpack.security.bulk_update_api_keys.go │ │ ├── api.xpack.security.change_password.go │ │ ├── api.xpack.security.clear_api_key_cache.go │ │ ├── api.xpack.security.clear_cached_privileges.go │ │ ├── api.xpack.security.clear_cached_realms.go │ │ ├── api.xpack.security.clear_cached_roles.go │ │ ├── api.xpack.security.clear_cached_service_tokens.go │ │ ├── api.xpack.security.create_api_key.go │ │ ├── api.xpack.security.create_cross_cluster_api_key.go │ │ ├── api.xpack.security.create_service_token.go │ │ ├── api.xpack.security.delegate_pki.go │ │ ├── api.xpack.security.delete_privileges.go │ │ ├── api.xpack.security.delete_role.go │ │ ├── api.xpack.security.delete_role_mapping.go │ │ ├── api.xpack.security.delete_service_token.go │ │ ├── api.xpack.security.delete_user.go │ │ ├── api.xpack.security.disable_user.go │ │ ├── api.xpack.security.disable_user_profile.go │ │ ├── api.xpack.security.enable_user.go │ │ ├── api.xpack.security.enable_user_profile.go │ │ ├── api.xpack.security.enroll_kibana.go │ │ ├── api.xpack.security.enroll_node.go │ │ ├── api.xpack.security.get_api_key.go │ │ ├── api.xpack.security.get_builtin_privileges.go │ │ ├── api.xpack.security.get_privileges.go │ │ ├── api.xpack.security.get_role.go │ │ ├── api.xpack.security.get_role_mapping.go │ │ ├── api.xpack.security.get_service_accounts.go │ │ ├── api.xpack.security.get_service_credentials.go │ │ ├── api.xpack.security.get_settings.go │ │ ├── api.xpack.security.get_token.go │ │ ├── api.xpack.security.get_user.go │ │ ├── api.xpack.security.get_user_privileges.go │ │ ├── api.xpack.security.get_user_profile.go │ │ ├── api.xpack.security.grant_api_key.go │ │ ├── api.xpack.security.has_privileges.go │ │ ├── api.xpack.security.has_privileges_user_profile.go │ │ ├── api.xpack.security.invalidate_api_key.go │ │ ├── api.xpack.security.invalidate_token.go │ │ ├── api.xpack.security.oidc_authenticate.go │ │ ├── api.xpack.security.oidc_logout.go │ │ ├── api.xpack.security.oidc_prepare_authentication.go │ │ ├── api.xpack.security.put_privileges.go │ │ ├── api.xpack.security.put_role.go │ │ ├── api.xpack.security.put_role_mapping.go │ │ ├── api.xpack.security.put_user.go │ │ ├── api.xpack.security.query_api_keys.go │ │ ├── api.xpack.security.query_role.go │ │ ├── api.xpack.security.query_user.go │ │ ├── api.xpack.security.saml_authenticate.go │ │ ├── api.xpack.security.saml_complete_logout.go │ │ ├── api.xpack.security.saml_invalidate.go │ │ ├── api.xpack.security.saml_logout.go │ │ ├── api.xpack.security.saml_prepare_authentication.go │ │ ├── api.xpack.security.saml_service_provider_metadata.go │ │ ├── api.xpack.security.suggest_user_profiles.go │ │ ├── api.xpack.security.update_api_key.go │ │ ├── api.xpack.security.update_cross_cluster_api_key.go │ │ ├── api.xpack.security.update_settings.go │ │ ├── api.xpack.security.update_user_profile_data.go │ │ ├── api.xpack.slm.delete_lifecycle.go │ │ ├── api.xpack.slm.execute_lifecycle.go │ │ ├── api.xpack.slm.execute_retention.go │ │ ├── api.xpack.slm.get_lifecycle.go │ │ ├── api.xpack.slm.get_stats.go │ │ ├── api.xpack.slm.get_status.go │ │ ├── api.xpack.slm.put_lifecycle.go │ │ ├── api.xpack.slm.start.go │ │ ├── api.xpack.slm.stop.go │ │ ├── api.xpack.sql.clear_cursor.go │ │ ├── api.xpack.sql.delete_async.go │ │ ├── api.xpack.sql.get_async.go │ │ ├── api.xpack.sql.get_async_status.go │ │ ├── api.xpack.sql.query.go │ │ ├── api.xpack.sql.translate.go │ │ ├── api.xpack.ssl.certificates.go │ │ ├── api.xpack.text_structure.find_field_structure.go │ │ ├── api.xpack.text_structure.find_message_structure.go │ │ ├── api.xpack.text_structure.find_structure.go │ │ ├── api.xpack.text_structure.test_grok_pattern.go │ │ ├── api.xpack.transform.delete_transform.go │ │ ├── api.xpack.transform.get_node_stats.go │ │ ├── api.xpack.transform.get_transform.go │ │ ├── api.xpack.transform.get_transform_stats.go │ │ ├── api.xpack.transform.preview_transform.go │ │ ├── api.xpack.transform.put_transform.go │ │ ├── api.xpack.transform.reset_transform.go │ │ ├── api.xpack.transform.schedule_now_transform.go │ │ ├── api.xpack.transform.start_transform.go │ │ ├── api.xpack.transform.stop_transform.go │ │ ├── api.xpack.transform.update_transform.go │ │ ├── api.xpack.transform.upgrade_transforms.go │ │ ├── api.xpack.watcher.ack_watch.go │ │ ├── api.xpack.watcher.activate_watch.go │ │ ├── api.xpack.watcher.deactivate_watch.go │ │ ├── api.xpack.watcher.delete_watch.go │ │ ├── api.xpack.watcher.execute_watch.go │ │ ├── api.xpack.watcher.get_settings.go │ │ ├── api.xpack.watcher.get_watch.go │ │ ├── api.xpack.watcher.put_watch.go │ │ ├── api.xpack.watcher.query_watches.go │ │ ├── api.xpack.watcher.start.go │ │ ├── api.xpack.watcher.stats.go │ │ ├── api.xpack.watcher.stop.go │ │ ├── api.xpack.watcher.update_settings.go │ │ ├── api.xpack.xpack.info.go │ │ ├── api.xpack.xpack.usage.go │ │ ├── doc.go │ │ ├── esapi.go │ │ ├── esapi.request.go │ │ └── esapi.response.go │ │ ├── internal │ │ └── version │ │ │ └── version.go │ │ └── typedapi │ │ ├── api._.go │ │ ├── asyncsearch │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ ├── status │ │ │ ├── response.go │ │ │ └── status.go │ │ └── submit │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── submit.go │ │ ├── autoscaling │ │ ├── deleteautoscalingpolicy │ │ │ ├── delete_autoscaling_policy.go │ │ │ └── response.go │ │ ├── getautoscalingcapacity │ │ │ ├── get_autoscaling_capacity.go │ │ │ └── response.go │ │ ├── getautoscalingpolicy │ │ │ ├── get_autoscaling_policy.go │ │ │ └── response.go │ │ └── putautoscalingpolicy │ │ │ ├── put_autoscaling_policy.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── capabilities │ │ └── capabilities.go │ │ ├── cat │ │ ├── aliases │ │ │ ├── aliases.go │ │ │ └── response.go │ │ ├── allocation │ │ │ ├── allocation.go │ │ │ └── response.go │ │ ├── componenttemplates │ │ │ ├── component_templates.go │ │ │ └── response.go │ │ ├── count │ │ │ ├── count.go │ │ │ └── response.go │ │ ├── fielddata │ │ │ ├── fielddata.go │ │ │ └── response.go │ │ ├── health │ │ │ ├── health.go │ │ │ └── response.go │ │ ├── help │ │ │ ├── help.go │ │ │ └── response.go │ │ ├── indices │ │ │ ├── indices.go │ │ │ └── response.go │ │ ├── master │ │ │ ├── master.go │ │ │ └── response.go │ │ ├── mldatafeeds │ │ │ ├── ml_datafeeds.go │ │ │ └── response.go │ │ ├── mldataframeanalytics │ │ │ ├── ml_data_frame_analytics.go │ │ │ └── response.go │ │ ├── mljobs │ │ │ ├── ml_jobs.go │ │ │ └── response.go │ │ ├── mltrainedmodels │ │ │ ├── ml_trained_models.go │ │ │ └── response.go │ │ ├── nodeattrs │ │ │ ├── nodeattrs.go │ │ │ └── response.go │ │ ├── nodes │ │ │ ├── nodes.go │ │ │ └── response.go │ │ ├── pendingtasks │ │ │ ├── pending_tasks.go │ │ │ └── response.go │ │ ├── plugins │ │ │ ├── plugins.go │ │ │ └── response.go │ │ ├── recovery │ │ │ ├── recovery.go │ │ │ └── response.go │ │ ├── repositories │ │ │ ├── repositories.go │ │ │ └── response.go │ │ ├── segments │ │ │ ├── response.go │ │ │ └── segments.go │ │ ├── shards │ │ │ ├── response.go │ │ │ └── shards.go │ │ ├── snapshots │ │ │ ├── response.go │ │ │ └── snapshots.go │ │ ├── tasks │ │ │ ├── response.go │ │ │ └── tasks.go │ │ ├── templates │ │ │ ├── response.go │ │ │ └── templates.go │ │ ├── threadpool │ │ │ ├── response.go │ │ │ └── thread_pool.go │ │ └── transforms │ │ │ ├── response.go │ │ │ └── transforms.go │ │ ├── ccr │ │ ├── deleteautofollowpattern │ │ │ ├── delete_auto_follow_pattern.go │ │ │ └── response.go │ │ ├── follow │ │ │ ├── follow.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── followinfo │ │ │ ├── follow_info.go │ │ │ └── response.go │ │ ├── followstats │ │ │ ├── follow_stats.go │ │ │ └── response.go │ │ ├── forgetfollower │ │ │ ├── forget_follower.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getautofollowpattern │ │ │ ├── get_auto_follow_pattern.go │ │ │ └── response.go │ │ ├── pauseautofollowpattern │ │ │ ├── pause_auto_follow_pattern.go │ │ │ └── response.go │ │ ├── pausefollow │ │ │ ├── pause_follow.go │ │ │ └── response.go │ │ ├── putautofollowpattern │ │ │ ├── put_auto_follow_pattern.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── resumeautofollowpattern │ │ │ ├── response.go │ │ │ └── resume_auto_follow_pattern.go │ │ ├── resumefollow │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── resume_follow.go │ │ ├── stats │ │ │ ├── response.go │ │ │ └── stats.go │ │ └── unfollow │ │ │ ├── response.go │ │ │ └── unfollow.go │ │ ├── cluster │ │ ├── allocationexplain │ │ │ ├── allocation_explain.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── deletecomponenttemplate │ │ │ ├── delete_component_template.go │ │ │ └── response.go │ │ ├── deletevotingconfigexclusions │ │ │ └── delete_voting_config_exclusions.go │ │ ├── existscomponenttemplate │ │ │ └── exists_component_template.go │ │ ├── getcomponenttemplate │ │ │ ├── get_component_template.go │ │ │ └── response.go │ │ ├── getsettings │ │ │ ├── get_settings.go │ │ │ └── response.go │ │ ├── health │ │ │ ├── health.go │ │ │ └── response.go │ │ ├── info │ │ │ ├── info.go │ │ │ └── response.go │ │ ├── pendingtasks │ │ │ ├── pending_tasks.go │ │ │ └── response.go │ │ ├── postvotingconfigexclusions │ │ │ └── post_voting_config_exclusions.go │ │ ├── putcomponenttemplate │ │ │ ├── put_component_template.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putsettings │ │ │ ├── put_settings.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── remoteinfo │ │ │ ├── remote_info.go │ │ │ └── response.go │ │ ├── reroute │ │ │ ├── request.go │ │ │ ├── reroute.go │ │ │ └── response.go │ │ ├── state │ │ │ ├── response.go │ │ │ └── state.go │ │ └── stats │ │ │ ├── response.go │ │ │ └── stats.go │ │ ├── connector │ │ ├── checkin │ │ │ ├── check_in.go │ │ │ └── response.go │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ ├── lastsync │ │ │ ├── last_sync.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── list │ │ │ ├── list.go │ │ │ └── response.go │ │ ├── post │ │ │ ├── post.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── put │ │ │ ├── put.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── secretpost │ │ │ └── secret_post.go │ │ ├── syncjobcancel │ │ │ ├── response.go │ │ │ └── sync_job_cancel.go │ │ ├── syncjobcheckin │ │ │ ├── response.go │ │ │ └── sync_job_check_in.go │ │ ├── syncjobclaim │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── sync_job_claim.go │ │ ├── syncjobdelete │ │ │ ├── response.go │ │ │ └── sync_job_delete.go │ │ ├── syncjoberror │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── sync_job_error.go │ │ ├── syncjobget │ │ │ ├── response.go │ │ │ └── sync_job_get.go │ │ ├── syncjoblist │ │ │ ├── response.go │ │ │ └── sync_job_list.go │ │ ├── syncjobpost │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── sync_job_post.go │ │ ├── syncjobupdatestats │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── sync_job_update_stats.go │ │ ├── updateactivefiltering │ │ │ ├── response.go │ │ │ └── update_active_filtering.go │ │ ├── updateapikeyid │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_api_key_id.go │ │ ├── updateconfiguration │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_configuration.go │ │ ├── updateerror │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_error.go │ │ ├── updatefeatures │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_features.go │ │ ├── updatefiltering │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_filtering.go │ │ ├── updatefilteringvalidation │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_filtering_validation.go │ │ ├── updateindexname │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_index_name.go │ │ ├── updatename │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_name.go │ │ ├── updatenative │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_native.go │ │ ├── updatepipeline │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_pipeline.go │ │ ├── updatescheduling │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_scheduling.go │ │ ├── updateservicetype │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_service_type.go │ │ └── updatestatus │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_status.go │ │ ├── core │ │ ├── bulk │ │ │ ├── bulk.go │ │ │ ├── helpers.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── clearscroll │ │ │ ├── clear_scroll.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── closepointintime │ │ │ ├── close_point_in_time.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── count │ │ │ ├── count.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── create │ │ │ ├── create.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── response.go │ │ ├── deletebyquery │ │ │ ├── delete_by_query.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── deletebyqueryrethrottle │ │ │ ├── delete_by_query_rethrottle.go │ │ │ └── response.go │ │ ├── deletescript │ │ │ ├── delete_script.go │ │ │ └── response.go │ │ ├── exists │ │ │ └── exists.go │ │ ├── existssource │ │ │ └── exists_source.go │ │ ├── explain │ │ │ ├── explain.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── fieldcaps │ │ │ ├── field_caps.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ ├── getscript │ │ │ ├── get_script.go │ │ │ └── response.go │ │ ├── getscriptcontext │ │ │ ├── get_script_context.go │ │ │ └── response.go │ │ ├── getscriptlanguages │ │ │ ├── get_script_languages.go │ │ │ └── response.go │ │ ├── getsource │ │ │ ├── get_source.go │ │ │ └── response.go │ │ ├── healthreport │ │ │ ├── health_report.go │ │ │ └── response.go │ │ ├── index │ │ │ ├── index.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── info │ │ │ ├── info.go │ │ │ └── response.go │ │ ├── knnsearch │ │ │ ├── knn_search.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── mget │ │ │ ├── mget.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── msearch │ │ │ ├── helpers.go │ │ │ ├── msearch.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── msearchtemplate │ │ │ ├── msearch_template.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── mtermvectors │ │ │ ├── mtermvectors.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── openpointintime │ │ │ ├── open_point_in_time.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── ping │ │ │ └── ping.go │ │ ├── putscript │ │ │ ├── put_script.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── rankeval │ │ │ ├── rank_eval.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── reindex │ │ │ ├── reindex.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── reindexrethrottle │ │ │ ├── reindex_rethrottle.go │ │ │ └── response.go │ │ ├── rendersearchtemplate │ │ │ ├── render_search_template.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── scriptspainlessexecute │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── scripts_painless_execute.go │ │ ├── scroll │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── scroll.go │ │ ├── search │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── search.go │ │ ├── searchmvt │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── search_mvt.go │ │ ├── searchshards │ │ │ ├── response.go │ │ │ └── search_shards.go │ │ ├── searchtemplate │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── search_template.go │ │ ├── termsenum │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── terms_enum.go │ │ ├── termvectors │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── termvectors.go │ │ ├── update │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update.go │ │ ├── updatebyquery │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_by_query.go │ │ └── updatebyqueryrethrottle │ │ │ ├── response.go │ │ │ └── update_by_query_rethrottle.go │ │ ├── danglingindices │ │ ├── deletedanglingindex │ │ │ ├── delete_dangling_index.go │ │ │ └── response.go │ │ ├── importdanglingindex │ │ │ ├── import_dangling_index.go │ │ │ └── response.go │ │ └── listdanglingindices │ │ │ ├── list_dangling_indices.go │ │ │ └── response.go │ │ ├── enrich │ │ ├── deletepolicy │ │ │ ├── delete_policy.go │ │ │ └── response.go │ │ ├── executepolicy │ │ │ ├── execute_policy.go │ │ │ └── response.go │ │ ├── getpolicy │ │ │ ├── get_policy.go │ │ │ └── response.go │ │ ├── putpolicy │ │ │ ├── put_policy.go │ │ │ ├── request.go │ │ │ └── response.go │ │ └── stats │ │ │ ├── response.go │ │ │ └── stats.go │ │ ├── eql │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ ├── getstatus │ │ │ ├── get_status.go │ │ │ └── response.go │ │ └── search │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── search.go │ │ ├── esql │ │ ├── asyncquery │ │ │ ├── async_query.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── asyncquerydelete │ │ │ ├── async_query_delete.go │ │ │ └── response.go │ │ ├── asyncqueryget │ │ │ ├── async_query_get.go │ │ │ └── response.go │ │ ├── asyncquerystop │ │ │ ├── async_query_stop.go │ │ │ └── response.go │ │ └── query │ │ │ ├── helpers.go │ │ │ ├── query.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── features │ │ ├── getfeatures │ │ │ ├── get_features.go │ │ │ └── response.go │ │ └── resetfeatures │ │ │ ├── reset_features.go │ │ │ └── response.go │ │ ├── fleet │ │ ├── globalcheckpoints │ │ │ ├── global_checkpoints.go │ │ │ └── response.go │ │ ├── msearch │ │ │ ├── msearch.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── postsecret │ │ │ └── post_secret.go │ │ └── search │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── search.go │ │ ├── graph │ │ └── explore │ │ │ ├── explore.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── ilm │ │ ├── deletelifecycle │ │ │ ├── delete_lifecycle.go │ │ │ └── response.go │ │ ├── explainlifecycle │ │ │ ├── explain_lifecycle.go │ │ │ └── response.go │ │ ├── getlifecycle │ │ │ ├── get_lifecycle.go │ │ │ └── response.go │ │ ├── getstatus │ │ │ ├── get_status.go │ │ │ └── response.go │ │ ├── migratetodatatiers │ │ │ ├── migrate_to_data_tiers.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── movetostep │ │ │ ├── move_to_step.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putlifecycle │ │ │ ├── put_lifecycle.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── removepolicy │ │ │ ├── remove_policy.go │ │ │ └── response.go │ │ ├── retry │ │ │ ├── response.go │ │ │ └── retry.go │ │ ├── start │ │ │ ├── response.go │ │ │ └── start.go │ │ └── stop │ │ │ ├── response.go │ │ │ └── stop.go │ │ ├── indices │ │ ├── addblock │ │ │ ├── add_block.go │ │ │ └── response.go │ │ ├── analyze │ │ │ ├── analyze.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── cancelmigratereindex │ │ │ ├── cancel_migrate_reindex.go │ │ │ └── response.go │ │ ├── clearcache │ │ │ ├── clear_cache.go │ │ │ └── response.go │ │ ├── clone │ │ │ ├── clone.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── close │ │ │ ├── close.go │ │ │ └── response.go │ │ ├── create │ │ │ ├── create.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── createdatastream │ │ │ ├── create_data_stream.go │ │ │ └── response.go │ │ ├── createfrom │ │ │ ├── create_from.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── datastreamsstats │ │ │ ├── data_streams_stats.go │ │ │ └── response.go │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── response.go │ │ ├── deletealias │ │ │ ├── delete_alias.go │ │ │ └── response.go │ │ ├── deletedatalifecycle │ │ │ ├── delete_data_lifecycle.go │ │ │ └── response.go │ │ ├── deletedatastream │ │ │ ├── delete_data_stream.go │ │ │ └── response.go │ │ ├── deleteindextemplate │ │ │ ├── delete_index_template.go │ │ │ └── response.go │ │ ├── deletetemplate │ │ │ ├── delete_template.go │ │ │ └── response.go │ │ ├── diskusage │ │ │ ├── disk_usage.go │ │ │ └── response.go │ │ ├── downsample │ │ │ ├── downsample.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── exists │ │ │ └── exists.go │ │ ├── existsalias │ │ │ └── exists_alias.go │ │ ├── existsindextemplate │ │ │ └── exists_index_template.go │ │ ├── existstemplate │ │ │ └── exists_template.go │ │ ├── explaindatalifecycle │ │ │ ├── explain_data_lifecycle.go │ │ │ └── response.go │ │ ├── fieldusagestats │ │ │ ├── field_usage_stats.go │ │ │ └── response.go │ │ ├── flush │ │ │ ├── flush.go │ │ │ └── response.go │ │ ├── forcemerge │ │ │ ├── forcemerge.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ ├── getalias │ │ │ ├── get_alias.go │ │ │ └── response.go │ │ ├── getdatalifecycle │ │ │ ├── get_data_lifecycle.go │ │ │ └── response.go │ │ ├── getdatalifecyclestats │ │ │ ├── get_data_lifecycle_stats.go │ │ │ └── response.go │ │ ├── getdatastream │ │ │ ├── get_data_stream.go │ │ │ └── response.go │ │ ├── getfieldmapping │ │ │ ├── get_field_mapping.go │ │ │ └── response.go │ │ ├── getindextemplate │ │ │ ├── get_index_template.go │ │ │ └── response.go │ │ ├── getmapping │ │ │ ├── get_mapping.go │ │ │ └── response.go │ │ ├── getmigratereindexstatus │ │ │ ├── get_migrate_reindex_status.go │ │ │ └── response.go │ │ ├── getsettings │ │ │ ├── get_settings.go │ │ │ └── response.go │ │ ├── gettemplate │ │ │ ├── get_template.go │ │ │ └── response.go │ │ ├── migratereindex │ │ │ ├── migrate_reindex.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── migratetodatastream │ │ │ ├── migrate_to_data_stream.go │ │ │ └── response.go │ │ ├── modifydatastream │ │ │ ├── modify_data_stream.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── open │ │ │ ├── open.go │ │ │ └── response.go │ │ ├── promotedatastream │ │ │ ├── promote_data_stream.go │ │ │ └── response.go │ │ ├── putalias │ │ │ ├── put_alias.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putdatalifecycle │ │ │ ├── put_data_lifecycle.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putindextemplate │ │ │ ├── put_index_template.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putmapping │ │ │ ├── put_mapping.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putsettings │ │ │ ├── put_settings.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── puttemplate │ │ │ ├── put_template.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── recovery │ │ │ ├── recovery.go │ │ │ └── response.go │ │ ├── refresh │ │ │ ├── refresh.go │ │ │ └── response.go │ │ ├── reloadsearchanalyzers │ │ │ ├── reload_search_analyzers.go │ │ │ └── response.go │ │ ├── resolvecluster │ │ │ ├── resolve_cluster.go │ │ │ └── response.go │ │ ├── resolveindex │ │ │ ├── resolve_index.go │ │ │ └── response.go │ │ ├── rollover │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── rollover.go │ │ ├── segments │ │ │ ├── response.go │ │ │ └── segments.go │ │ ├── shardstores │ │ │ ├── response.go │ │ │ └── shard_stores.go │ │ ├── shrink │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── shrink.go │ │ ├── simulateindextemplate │ │ │ ├── response.go │ │ │ └── simulate_index_template.go │ │ ├── simulatetemplate │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── simulate_template.go │ │ ├── split │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── split.go │ │ ├── stats │ │ │ ├── response.go │ │ │ └── stats.go │ │ ├── unfreeze │ │ │ ├── response.go │ │ │ └── unfreeze.go │ │ ├── updatealiases │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_aliases.go │ │ └── validatequery │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── validate_query.go │ │ ├── inference │ │ ├── chatcompletionunified │ │ │ ├── chat_completion_unified.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── completion │ │ │ ├── completion.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ ├── inference │ │ │ ├── inference.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── put │ │ │ ├── put.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putalibabacloud │ │ │ ├── put_alibabacloud.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putamazonbedrock │ │ │ ├── put_amazonbedrock.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putamazonsagemaker │ │ │ ├── put_amazonsagemaker.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putanthropic │ │ │ ├── put_anthropic.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putazureaistudio │ │ │ ├── put_azureaistudio.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putazureopenai │ │ │ ├── put_azureopenai.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putcohere │ │ │ ├── put_cohere.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putcustom │ │ │ ├── put_custom.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putdeepseek │ │ │ ├── put_deepseek.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putelasticsearch │ │ │ ├── put_elasticsearch.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putelser │ │ │ ├── put_elser.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putgoogleaistudio │ │ │ ├── put_googleaistudio.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putgooglevertexai │ │ │ ├── put_googlevertexai.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── puthuggingface │ │ │ ├── put_hugging_face.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putjinaai │ │ │ ├── put_jinaai.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putmistral │ │ │ ├── put_mistral.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putopenai │ │ │ ├── put_openai.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putvoyageai │ │ │ ├── put_voyageai.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putwatsonx │ │ │ ├── put_watsonx.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── rerank │ │ │ ├── request.go │ │ │ ├── rerank.go │ │ │ └── response.go │ │ ├── sparseembedding │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── sparse_embedding.go │ │ ├── streamcompletion │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── stream_completion.go │ │ ├── textembedding │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── text_embedding.go │ │ └── update │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update.go │ │ ├── ingest │ │ ├── deletegeoipdatabase │ │ │ ├── delete_geoip_database.go │ │ │ └── response.go │ │ ├── deleteiplocationdatabase │ │ │ ├── delete_ip_location_database.go │ │ │ └── response.go │ │ ├── deletepipeline │ │ │ ├── delete_pipeline.go │ │ │ └── response.go │ │ ├── geoipstats │ │ │ ├── geo_ip_stats.go │ │ │ └── response.go │ │ ├── getgeoipdatabase │ │ │ ├── get_geoip_database.go │ │ │ └── response.go │ │ ├── getiplocationdatabase │ │ │ ├── get_ip_location_database.go │ │ │ └── response.go │ │ ├── getpipeline │ │ │ ├── get_pipeline.go │ │ │ └── response.go │ │ ├── processorgrok │ │ │ ├── processor_grok.go │ │ │ └── response.go │ │ ├── putgeoipdatabase │ │ │ ├── put_geoip_database.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putiplocationdatabase │ │ │ ├── put_ip_location_database.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putpipeline │ │ │ ├── put_pipeline.go │ │ │ ├── request.go │ │ │ └── response.go │ │ └── simulate │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── simulate.go │ │ ├── license │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ ├── getbasicstatus │ │ │ ├── get_basic_status.go │ │ │ └── response.go │ │ ├── gettrialstatus │ │ │ ├── get_trial_status.go │ │ │ └── response.go │ │ ├── post │ │ │ ├── post.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── poststartbasic │ │ │ ├── post_start_basic.go │ │ │ └── response.go │ │ └── poststarttrial │ │ │ ├── post_start_trial.go │ │ │ └── response.go │ │ ├── logstash │ │ ├── deletepipeline │ │ │ └── delete_pipeline.go │ │ ├── getpipeline │ │ │ ├── get_pipeline.go │ │ │ └── response.go │ │ └── putpipeline │ │ │ ├── put_pipeline.go │ │ │ └── request.go │ │ ├── migration │ │ ├── deprecations │ │ │ ├── deprecations.go │ │ │ └── response.go │ │ ├── getfeatureupgradestatus │ │ │ ├── get_feature_upgrade_status.go │ │ │ └── response.go │ │ └── postfeatureupgrade │ │ │ ├── post_feature_upgrade.go │ │ │ └── response.go │ │ ├── ml │ │ ├── cleartrainedmodeldeploymentcache │ │ │ ├── clear_trained_model_deployment_cache.go │ │ │ └── response.go │ │ ├── closejob │ │ │ ├── close_job.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── deletecalendar │ │ │ ├── delete_calendar.go │ │ │ └── response.go │ │ ├── deletecalendarevent │ │ │ ├── delete_calendar_event.go │ │ │ └── response.go │ │ ├── deletecalendarjob │ │ │ ├── delete_calendar_job.go │ │ │ └── response.go │ │ ├── deletedatafeed │ │ │ ├── delete_datafeed.go │ │ │ └── response.go │ │ ├── deletedataframeanalytics │ │ │ ├── delete_data_frame_analytics.go │ │ │ └── response.go │ │ ├── deleteexpireddata │ │ │ ├── delete_expired_data.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── deletefilter │ │ │ ├── delete_filter.go │ │ │ └── response.go │ │ ├── deleteforecast │ │ │ ├── delete_forecast.go │ │ │ └── response.go │ │ ├── deletejob │ │ │ ├── delete_job.go │ │ │ └── response.go │ │ ├── deletemodelsnapshot │ │ │ ├── delete_model_snapshot.go │ │ │ └── response.go │ │ ├── deletetrainedmodel │ │ │ ├── delete_trained_model.go │ │ │ └── response.go │ │ ├── deletetrainedmodelalias │ │ │ ├── delete_trained_model_alias.go │ │ │ └── response.go │ │ ├── estimatemodelmemory │ │ │ ├── estimate_model_memory.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── evaluatedataframe │ │ │ ├── evaluate_data_frame.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── explaindataframeanalytics │ │ │ ├── explain_data_frame_analytics.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── flushjob │ │ │ ├── flush_job.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── forecast │ │ │ ├── forecast.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getbuckets │ │ │ ├── get_buckets.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getcalendarevents │ │ │ ├── get_calendar_events.go │ │ │ └── response.go │ │ ├── getcalendars │ │ │ ├── get_calendars.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getcategories │ │ │ ├── get_categories.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getdatafeeds │ │ │ ├── get_datafeeds.go │ │ │ └── response.go │ │ ├── getdatafeedstats │ │ │ ├── get_datafeed_stats.go │ │ │ └── response.go │ │ ├── getdataframeanalytics │ │ │ ├── get_data_frame_analytics.go │ │ │ └── response.go │ │ ├── getdataframeanalyticsstats │ │ │ ├── get_data_frame_analytics_stats.go │ │ │ └── response.go │ │ ├── getfilters │ │ │ ├── get_filters.go │ │ │ └── response.go │ │ ├── getinfluencers │ │ │ ├── get_influencers.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getjobs │ │ │ ├── get_jobs.go │ │ │ └── response.go │ │ ├── getjobstats │ │ │ ├── get_job_stats.go │ │ │ └── response.go │ │ ├── getmemorystats │ │ │ ├── get_memory_stats.go │ │ │ └── response.go │ │ ├── getmodelsnapshots │ │ │ ├── get_model_snapshots.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getmodelsnapshotupgradestats │ │ │ ├── get_model_snapshot_upgrade_stats.go │ │ │ └── response.go │ │ ├── getoverallbuckets │ │ │ ├── get_overall_buckets.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getrecords │ │ │ ├── get_records.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── gettrainedmodels │ │ │ ├── get_trained_models.go │ │ │ └── response.go │ │ ├── gettrainedmodelsstats │ │ │ ├── get_trained_models_stats.go │ │ │ └── response.go │ │ ├── infertrainedmodel │ │ │ ├── infer_trained_model.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── info │ │ │ ├── info.go │ │ │ └── response.go │ │ ├── openjob │ │ │ ├── open_job.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── postcalendarevents │ │ │ ├── post_calendar_events.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── postdata │ │ │ ├── post_data.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── previewdatafeed │ │ │ ├── preview_datafeed.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── previewdataframeanalytics │ │ │ ├── preview_data_frame_analytics.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putcalendar │ │ │ ├── put_calendar.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putcalendarjob │ │ │ ├── put_calendar_job.go │ │ │ └── response.go │ │ ├── putdatafeed │ │ │ ├── put_datafeed.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putdataframeanalytics │ │ │ ├── put_data_frame_analytics.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putfilter │ │ │ ├── put_filter.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putjob │ │ │ ├── put_job.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── puttrainedmodel │ │ │ ├── put_trained_model.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── puttrainedmodelalias │ │ │ ├── put_trained_model_alias.go │ │ │ └── response.go │ │ ├── puttrainedmodeldefinitionpart │ │ │ ├── put_trained_model_definition_part.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── puttrainedmodelvocabulary │ │ │ ├── put_trained_model_vocabulary.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── resetjob │ │ │ ├── reset_job.go │ │ │ └── response.go │ │ ├── revertmodelsnapshot │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── revert_model_snapshot.go │ │ ├── setupgrademode │ │ │ ├── response.go │ │ │ └── set_upgrade_mode.go │ │ ├── startdatafeed │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── start_datafeed.go │ │ ├── startdataframeanalytics │ │ │ ├── response.go │ │ │ └── start_data_frame_analytics.go │ │ ├── starttrainedmodeldeployment │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── start_trained_model_deployment.go │ │ ├── stopdatafeed │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── stop_datafeed.go │ │ ├── stopdataframeanalytics │ │ │ ├── response.go │ │ │ └── stop_data_frame_analytics.go │ │ ├── stoptrainedmodeldeployment │ │ │ ├── response.go │ │ │ └── stop_trained_model_deployment.go │ │ ├── updatedatafeed │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_datafeed.go │ │ ├── updatedataframeanalytics │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_data_frame_analytics.go │ │ ├── updatefilter │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_filter.go │ │ ├── updatejob │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_job.go │ │ ├── updatemodelsnapshot │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_model_snapshot.go │ │ ├── updatetrainedmodeldeployment │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_trained_model_deployment.go │ │ ├── upgradejobsnapshot │ │ │ ├── response.go │ │ │ └── upgrade_job_snapshot.go │ │ ├── validate │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── validate.go │ │ └── validatedetector │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── validate_detector.go │ │ ├── monitoring │ │ └── bulk │ │ │ ├── bulk.go │ │ │ ├── helpers.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── nodes │ │ ├── clearrepositoriesmeteringarchive │ │ │ ├── clear_repositories_metering_archive.go │ │ │ └── response.go │ │ ├── getrepositoriesmeteringinfo │ │ │ ├── get_repositories_metering_info.go │ │ │ └── response.go │ │ ├── hotthreads │ │ │ ├── hot_threads.go │ │ │ └── response.go │ │ ├── info │ │ │ ├── info.go │ │ │ └── response.go │ │ ├── reloadsecuresettings │ │ │ ├── reload_secure_settings.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── stats │ │ │ ├── response.go │ │ │ └── stats.go │ │ └── usage │ │ │ ├── response.go │ │ │ └── usage.go │ │ ├── profiling │ │ ├── flamegraph │ │ │ └── flamegraph.go │ │ ├── stacktraces │ │ │ └── stacktraces.go │ │ ├── status │ │ │ └── status.go │ │ └── topnfunctions │ │ │ └── topn_functions.go │ │ ├── queryrules │ │ ├── deleterule │ │ │ ├── delete_rule.go │ │ │ └── response.go │ │ ├── deleteruleset │ │ │ ├── delete_ruleset.go │ │ │ └── response.go │ │ ├── getrule │ │ │ ├── get_rule.go │ │ │ └── response.go │ │ ├── getruleset │ │ │ ├── get_ruleset.go │ │ │ └── response.go │ │ ├── listrulesets │ │ │ ├── list_rulesets.go │ │ │ └── response.go │ │ ├── putrule │ │ │ ├── put_rule.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putruleset │ │ │ ├── put_ruleset.go │ │ │ ├── request.go │ │ │ └── response.go │ │ └── test │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── test.go │ │ ├── rollup │ │ ├── deletejob │ │ │ ├── delete_job.go │ │ │ └── response.go │ │ ├── getjobs │ │ │ ├── get_jobs.go │ │ │ └── response.go │ │ ├── getrollupcaps │ │ │ ├── get_rollup_caps.go │ │ │ └── response.go │ │ ├── getrollupindexcaps │ │ │ ├── get_rollup_index_caps.go │ │ │ └── response.go │ │ ├── putjob │ │ │ ├── put_job.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── rollupsearch │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── rollup_search.go │ │ ├── startjob │ │ │ ├── response.go │ │ │ └── start_job.go │ │ └── stopjob │ │ │ ├── response.go │ │ │ └── stop_job.go │ │ ├── searchablesnapshots │ │ ├── cachestats │ │ │ ├── cache_stats.go │ │ │ └── response.go │ │ ├── clearcache │ │ │ ├── clear_cache.go │ │ │ └── response.go │ │ ├── mount │ │ │ ├── mount.go │ │ │ ├── request.go │ │ │ └── response.go │ │ └── stats │ │ │ ├── response.go │ │ │ └── stats.go │ │ ├── searchapplication │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── response.go │ │ ├── deletebehavioralanalytics │ │ │ ├── delete_behavioral_analytics.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ ├── getbehavioralanalytics │ │ │ ├── get_behavioral_analytics.go │ │ │ └── response.go │ │ ├── list │ │ │ ├── list.go │ │ │ └── response.go │ │ ├── postbehavioralanalyticsevent │ │ │ ├── post_behavioral_analytics_event.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── put │ │ │ ├── put.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putbehavioralanalytics │ │ │ ├── put_behavioral_analytics.go │ │ │ └── response.go │ │ ├── renderquery │ │ │ ├── render_query.go │ │ │ ├── request.go │ │ │ └── response.go │ │ └── search │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── search.go │ │ ├── security │ │ ├── activateuserprofile │ │ │ ├── activate_user_profile.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── authenticate │ │ │ ├── authenticate.go │ │ │ └── response.go │ │ ├── bulkdeleterole │ │ │ ├── bulk_delete_role.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── bulkputrole │ │ │ ├── bulk_put_role.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── bulkupdateapikeys │ │ │ ├── bulk_update_api_keys.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── changepassword │ │ │ ├── change_password.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── clearapikeycache │ │ │ ├── clear_api_key_cache.go │ │ │ └── response.go │ │ ├── clearcachedprivileges │ │ │ ├── clear_cached_privileges.go │ │ │ └── response.go │ │ ├── clearcachedrealms │ │ │ ├── clear_cached_realms.go │ │ │ └── response.go │ │ ├── clearcachedroles │ │ │ ├── clear_cached_roles.go │ │ │ └── response.go │ │ ├── clearcachedservicetokens │ │ │ ├── clear_cached_service_tokens.go │ │ │ └── response.go │ │ ├── createapikey │ │ │ ├── create_api_key.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── createcrossclusterapikey │ │ │ ├── create_cross_cluster_api_key.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── createservicetoken │ │ │ ├── create_service_token.go │ │ │ └── response.go │ │ ├── delegatepki │ │ │ ├── delegate_pki.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── deleteprivileges │ │ │ ├── delete_privileges.go │ │ │ └── response.go │ │ ├── deleterole │ │ │ ├── delete_role.go │ │ │ └── response.go │ │ ├── deleterolemapping │ │ │ ├── delete_role_mapping.go │ │ │ └── response.go │ │ ├── deleteservicetoken │ │ │ ├── delete_service_token.go │ │ │ └── response.go │ │ ├── deleteuser │ │ │ ├── delete_user.go │ │ │ └── response.go │ │ ├── disableuser │ │ │ ├── disable_user.go │ │ │ └── response.go │ │ ├── disableuserprofile │ │ │ ├── disable_user_profile.go │ │ │ └── response.go │ │ ├── enableuser │ │ │ ├── enable_user.go │ │ │ └── response.go │ │ ├── enableuserprofile │ │ │ ├── enable_user_profile.go │ │ │ └── response.go │ │ ├── enrollkibana │ │ │ ├── enroll_kibana.go │ │ │ └── response.go │ │ ├── enrollnode │ │ │ ├── enroll_node.go │ │ │ └── response.go │ │ ├── getapikey │ │ │ ├── get_api_key.go │ │ │ └── response.go │ │ ├── getbuiltinprivileges │ │ │ ├── get_builtin_privileges.go │ │ │ └── response.go │ │ ├── getprivileges │ │ │ ├── get_privileges.go │ │ │ └── response.go │ │ ├── getrole │ │ │ ├── get_role.go │ │ │ └── response.go │ │ ├── getrolemapping │ │ │ ├── get_role_mapping.go │ │ │ └── response.go │ │ ├── getserviceaccounts │ │ │ ├── get_service_accounts.go │ │ │ └── response.go │ │ ├── getservicecredentials │ │ │ ├── get_service_credentials.go │ │ │ └── response.go │ │ ├── getsettings │ │ │ ├── get_settings.go │ │ │ └── response.go │ │ ├── gettoken │ │ │ ├── get_token.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getuser │ │ │ ├── get_user.go │ │ │ └── response.go │ │ ├── getuserprivileges │ │ │ ├── get_user_privileges.go │ │ │ └── response.go │ │ ├── getuserprofile │ │ │ ├── get_user_profile.go │ │ │ └── response.go │ │ ├── grantapikey │ │ │ ├── grant_api_key.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── hasprivileges │ │ │ ├── has_privileges.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── hasprivilegesuserprofile │ │ │ ├── has_privileges_user_profile.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── invalidateapikey │ │ │ ├── invalidate_api_key.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── invalidatetoken │ │ │ ├── invalidate_token.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── oidcauthenticate │ │ │ ├── oidc_authenticate.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── oidclogout │ │ │ ├── oidc_logout.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── oidcprepareauthentication │ │ │ ├── oidc_prepare_authentication.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putprivileges │ │ │ ├── put_privileges.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putrole │ │ │ ├── put_role.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putrolemapping │ │ │ ├── put_role_mapping.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── putuser │ │ │ ├── put_user.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── queryapikeys │ │ │ ├── query_api_keys.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── queryrole │ │ │ ├── query_role.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── queryuser │ │ │ ├── query_user.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── samlauthenticate │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── saml_authenticate.go │ │ ├── samlcompletelogout │ │ │ ├── request.go │ │ │ └── saml_complete_logout.go │ │ ├── samlinvalidate │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── saml_invalidate.go │ │ ├── samllogout │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── saml_logout.go │ │ ├── samlprepareauthentication │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── saml_prepare_authentication.go │ │ ├── samlserviceprovidermetadata │ │ │ ├── response.go │ │ │ └── saml_service_provider_metadata.go │ │ ├── suggestuserprofiles │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── suggest_user_profiles.go │ │ ├── updateapikey │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_api_key.go │ │ ├── updatecrossclusterapikey │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_cross_cluster_api_key.go │ │ ├── updatesettings │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_settings.go │ │ └── updateuserprofiledata │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_user_profile_data.go │ │ ├── shutdown │ │ ├── deletenode │ │ │ ├── delete_node.go │ │ │ └── response.go │ │ ├── getnode │ │ │ ├── get_node.go │ │ │ └── response.go │ │ └── putnode │ │ │ ├── put_node.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── simulate │ │ └── ingest │ │ │ ├── ingest.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── slm │ │ ├── deletelifecycle │ │ │ ├── delete_lifecycle.go │ │ │ └── response.go │ │ ├── executelifecycle │ │ │ ├── execute_lifecycle.go │ │ │ └── response.go │ │ ├── executeretention │ │ │ ├── execute_retention.go │ │ │ └── response.go │ │ ├── getlifecycle │ │ │ ├── get_lifecycle.go │ │ │ └── response.go │ │ ├── getstats │ │ │ ├── get_stats.go │ │ │ └── response.go │ │ ├── getstatus │ │ │ ├── get_status.go │ │ │ └── response.go │ │ ├── putlifecycle │ │ │ ├── put_lifecycle.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── start │ │ │ ├── response.go │ │ │ └── start.go │ │ └── stop │ │ │ ├── response.go │ │ │ └── stop.go │ │ ├── snapshot │ │ ├── cleanuprepository │ │ │ ├── cleanup_repository.go │ │ │ └── response.go │ │ ├── clone │ │ │ ├── clone.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── create │ │ │ ├── create.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── createrepository │ │ │ ├── create_repository.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── delete │ │ │ ├── delete.go │ │ │ └── response.go │ │ ├── deleterepository │ │ │ ├── delete_repository.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ ├── getrepository │ │ │ ├── get_repository.go │ │ │ └── response.go │ │ ├── repositoryanalyze │ │ │ ├── repository_analyze.go │ │ │ └── response.go │ │ ├── repositoryverifyintegrity │ │ │ ├── repository_verify_integrity.go │ │ │ └── response.go │ │ ├── restore │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── restore.go │ │ ├── status │ │ │ ├── response.go │ │ │ └── status.go │ │ └── verifyrepository │ │ │ ├── response.go │ │ │ └── verify_repository.go │ │ ├── sql │ │ ├── clearcursor │ │ │ ├── clear_cursor.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── deleteasync │ │ │ ├── delete_async.go │ │ │ └── response.go │ │ ├── getasync │ │ │ ├── get_async.go │ │ │ └── response.go │ │ ├── getasyncstatus │ │ │ ├── get_async_status.go │ │ │ └── response.go │ │ ├── query │ │ │ ├── query.go │ │ │ ├── request.go │ │ │ └── response.go │ │ └── translate │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── translate.go │ │ ├── ssl │ │ └── certificates │ │ │ ├── certificates.go │ │ │ └── response.go │ │ ├── streams │ │ ├── logsdisable │ │ │ └── logs_disable.go │ │ ├── logsenable │ │ │ └── logs_enable.go │ │ └── status │ │ │ └── status.go │ │ ├── synonyms │ │ ├── deletesynonym │ │ │ ├── delete_synonym.go │ │ │ └── response.go │ │ ├── deletesynonymrule │ │ │ ├── delete_synonym_rule.go │ │ │ └── response.go │ │ ├── getsynonym │ │ │ ├── get_synonym.go │ │ │ └── response.go │ │ ├── getsynonymrule │ │ │ ├── get_synonym_rule.go │ │ │ └── response.go │ │ ├── getsynonymssets │ │ │ ├── get_synonyms_sets.go │ │ │ └── response.go │ │ ├── putsynonym │ │ │ ├── put_synonym.go │ │ │ ├── request.go │ │ │ └── response.go │ │ └── putsynonymrule │ │ │ ├── put_synonym_rule.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── tasks │ │ ├── cancel │ │ │ ├── cancel.go │ │ │ └── response.go │ │ ├── get │ │ │ ├── get.go │ │ │ └── response.go │ │ └── list │ │ │ ├── list.go │ │ │ └── response.go │ │ ├── textstructure │ │ ├── findfieldstructure │ │ │ ├── find_field_structure.go │ │ │ └── response.go │ │ ├── findmessagestructure │ │ │ ├── find_message_structure.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── findstructure │ │ │ ├── find_structure.go │ │ │ ├── request.go │ │ │ └── response.go │ │ └── testgrokpattern │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── test_grok_pattern.go │ │ ├── transform │ │ ├── deletetransform │ │ │ ├── delete_transform.go │ │ │ └── response.go │ │ ├── getnodestats │ │ │ └── get_node_stats.go │ │ ├── gettransform │ │ │ ├── get_transform.go │ │ │ └── response.go │ │ ├── gettransformstats │ │ │ ├── get_transform_stats.go │ │ │ └── response.go │ │ ├── previewtransform │ │ │ ├── preview_transform.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── puttransform │ │ │ ├── put_transform.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── resettransform │ │ │ ├── reset_transform.go │ │ │ └── response.go │ │ ├── schedulenowtransform │ │ │ ├── response.go │ │ │ └── schedule_now_transform.go │ │ ├── starttransform │ │ │ ├── response.go │ │ │ └── start_transform.go │ │ ├── stoptransform │ │ │ ├── response.go │ │ │ └── stop_transform.go │ │ ├── updatetransform │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_transform.go │ │ └── upgradetransforms │ │ │ ├── response.go │ │ │ └── upgrade_transforms.go │ │ ├── typedclient.request.go │ │ ├── types │ │ ├── access.go │ │ ├── acknowledgement.go │ │ ├── acknowledgestate.go │ │ ├── actionstatus.go │ │ ├── activationstate.go │ │ ├── activationstatus.go │ │ ├── adaptiveallocations.go │ │ ├── adaptiveallocationssettings.go │ │ ├── adaptiveselection.go │ │ ├── addaction.go │ │ ├── adjacencymatrixaggregate.go │ │ ├── adjacencymatrixaggregation.go │ │ ├── adjacencymatrixbucket.go │ │ ├── aggregate.go │ │ ├── aggregatemetricdoubleproperty.go │ │ ├── aggregateorder.go │ │ ├── aggregateoutput.go │ │ ├── aggregationbreakdown.go │ │ ├── aggregationprofile.go │ │ ├── aggregationprofiledebug.go │ │ ├── aggregationprofiledelegatedebugfilter.go │ │ ├── aggregationrange.go │ │ ├── aggregations.go │ │ ├── alias.go │ │ ├── aliasdefinition.go │ │ ├── aliasesrecord.go │ │ ├── alibabacloudservicesettings.go │ │ ├── alibabacloudtasksettings.go │ │ ├── allfield.go │ │ ├── allocateaction.go │ │ ├── allocationdecision.go │ │ ├── allocationrecord.go │ │ ├── allocationstore.go │ │ ├── alwayscondition.go │ │ ├── amazonbedrockservicesettings.go │ │ ├── amazonbedrocktasksettings.go │ │ ├── amazonsagemakerservicesettings.go │ │ ├── amazonsagemakertasksettings.go │ │ ├── analysisconfig.go │ │ ├── analysisconfigread.go │ │ ├── analysislimits.go │ │ ├── analysismemorylimit.go │ │ ├── analytics.go │ │ ├── analyticscollection.go │ │ ├── analyticsstatistics.go │ │ ├── analyzedetail.go │ │ ├── analyzer.go │ │ ├── analyzerdetail.go │ │ ├── analyzetoken.go │ │ ├── anomaly.go │ │ ├── anomalycause.go │ │ ├── anomalydetectors.go │ │ ├── anomalyexplanation.go │ │ ├── anthropicservicesettings.go │ │ ├── anthropictasksettings.go │ │ ├── apikey.go │ │ ├── apikeyaggregate.go │ │ ├── apikeyaggregationcontainer.go │ │ ├── apikeyauthorization.go │ │ ├── apikeyfiltersaggregation.go │ │ ├── apikeyquerycontainer.go │ │ ├── apostrophetokenfilter.go │ │ ├── appendprocessor.go │ │ ├── applicationglobaluserprivileges.go │ │ ├── applicationprivileges.go │ │ ├── applicationprivilegescheck.go │ │ ├── applicationsprivileges.go │ │ ├── arabicanalyzer.go │ │ ├── arabicnormalizationtokenfilter.go │ │ ├── arabicstemtokenfilter.go │ │ ├── archive.go │ │ ├── armeniananalyzer.go │ │ ├── arraycomparecondition.go │ │ ├── arraycompareopparams.go │ │ ├── arraypercentilesitem.go │ │ ├── asciifoldingtokenfilter.go │ │ ├── asyncsearch.go │ │ ├── attachmentprocessor.go │ │ ├── audit.go │ │ ├── authenticateapikey.go │ │ ├── authenticateduser.go │ │ ├── authenticatetoken.go │ │ ├── authentication.go │ │ ├── authenticationprovider.go │ │ ├── authenticationrealm.go │ │ ├── autodatehistogramaggregate.go │ │ ├── autodatehistogramaggregation.go │ │ ├── autofollowedcluster.go │ │ ├── autofollowpattern.go │ │ ├── autofollowpatternsummary.go │ │ ├── autofollowstats.go │ │ ├── autoscalingcapacity.go │ │ ├── autoscalingdecider.go │ │ ├── autoscalingdeciders.go │ │ ├── autoscalingnode.go │ │ ├── autoscalingpolicy.go │ │ ├── autoscalingresources.go │ │ ├── averageaggregation.go │ │ ├── averagebucketaggregation.go │ │ ├── avgaggregate.go │ │ ├── azureaistudioservicesettings.go │ │ ├── azureaistudiotasksettings.go │ │ ├── azureopenaiservicesettings.go │ │ ├── azureopenaitasksettings.go │ │ ├── azurerepository.go │ │ ├── azurerepositorysettings.go │ │ ├── base.go │ │ ├── basqueanalyzer.go │ │ ├── bengalianalyzer.go │ │ ├── bengalinormalizationtokenfilter.go │ │ ├── binaryproperty.go │ │ ├── blobdetails.go │ │ ├── booleanproperty.go │ │ ├── boolquery.go │ │ ├── boostingquery.go │ │ ├── boxplotaggregate.go │ │ ├── boxplotaggregation.go │ │ ├── braziliananalyzer.go │ │ ├── brazilianstemtokenfilter.go │ │ ├── breaker.go │ │ ├── bucketcorrelationaggregation.go │ │ ├── bucketcorrelationfunction.go │ │ ├── bucketcorrelationfunctioncountcorrelation.go │ │ ├── bucketcorrelationfunctioncountcorrelationindicator.go │ │ ├── bucketinfluencer.go │ │ ├── bucketksaggregation.go │ │ ├── bucketmetricvalueaggregate.go │ │ ├── bucketsadjacencymatrixbucket.go │ │ ├── bucketsapikeyquerycontainer.go │ │ ├── bucketscompositebucket.go │ │ ├── bucketscriptaggregation.go │ │ ├── bucketsdatehistogrambucket.go │ │ ├── bucketsdoubletermsbucket.go │ │ ├── bucketselectoraggregation.go │ │ ├── bucketsfiltersbucket.go │ │ ├── bucketsfrequentitemsetsbucket.go │ │ ├── bucketsgeohashgridbucket.go │ │ ├── bucketsgeohexgridbucket.go │ │ ├── bucketsgeotilegridbucket.go │ │ ├── bucketshistogrambucket.go │ │ ├── bucketsipprefixbucket.go │ │ ├── bucketsiprangebucket.go │ │ ├── bucketslongraretermsbucket.go │ │ ├── bucketslongtermsbucket.go │ │ ├── bucketsmultitermsbucket.go │ │ ├── bucketsortaggregation.go │ │ ├── bucketspath.go │ │ ├── bucketsquery.go │ │ ├── bucketsrangebucket.go │ │ ├── bucketssignificantlongtermsbucket.go │ │ ├── bucketssignificantstringtermsbucket.go │ │ ├── bucketsstringraretermsbucket.go │ │ ├── bucketsstringtermsbucket.go │ │ ├── bucketstimeseriesbucket.go │ │ ├── bucketsummary.go │ │ ├── bucketsvariablewidthhistogrambucket.go │ │ ├── bucketsvoid.go │ │ ├── buildinformation.go │ │ ├── bulgariananalyzer.go │ │ ├── bulkerror.go │ │ ├── bulkindexbyscrollfailure.go │ │ ├── bulkstats.go │ │ ├── bytenumberproperty.go │ │ ├── bytesize.go │ │ ├── bytesprocessor.go │ │ ├── cachequeries.go │ │ ├── cachestats.go │ │ ├── calendar.go │ │ ├── calendarevent.go │ │ ├── cardinalityaggregate.go │ │ ├── cardinalityaggregation.go │ │ ├── catalananalyzer.go │ │ ├── catanonalydetectorcolumns.go │ │ ├── catcomponenttemplate.go │ │ ├── catdatafeedcolumns.go │ │ ├── catdfacolumns.go │ │ ├── categorizationanalyzer.go │ │ ├── categorizationanalyzerdefinition.go │ │ ├── categorizetextaggregation.go │ │ ├── categorizetextanalyzer.go │ │ ├── category.go │ │ ├── catnodecolumns.go │ │ ├── catrecoverycolumns.go │ │ ├── catsegmentscolumns.go │ │ ├── catshardcolumns.go │ │ ├── catsnapshotscolumns.go │ │ ├── catthreadpoolcolumns.go │ │ ├── cattrainedmodelscolumns.go │ │ ├── cattransformcolumns.go │ │ ├── ccr.go │ │ ├── ccrshardstats.go │ │ ├── ccsstats.go │ │ ├── ccsusageclusterstats.go │ │ ├── ccsusagestats.go │ │ ├── ccsusagetimevalue.go │ │ ├── certificateinformation.go │ │ ├── cgroup.go │ │ ├── cgroupcpu.go │ │ ├── cgroupcpustat.go │ │ ├── cgroupmemory.go │ │ ├── chaininput.go │ │ ├── charfilter.go │ │ ├── charfilterdefinition.go │ │ ├── charfilterdetail.go │ │ ├── charfiltertypes.go │ │ ├── chargrouptokenizer.go │ │ ├── checkpointing.go │ │ ├── checkpointstats.go │ │ ├── childrenaggregate.go │ │ ├── childrenaggregation.go │ │ ├── chineseanalyzer.go │ │ ├── chisquareheuristic.go │ │ ├── chunkingconfig.go │ │ ├── chunkingsettings.go │ │ ├── circleprocessor.go │ │ ├── cjkanalyzer.go │ │ ├── cjkbigramtokenfilter.go │ │ ├── cjkwidthtokenfilter.go │ │ ├── classictokenfilter.go │ │ ├── classictokenizer.go │ │ ├── classificationinferenceoptions.go │ │ ├── cleanuprepositoryresults.go │ │ ├── client.go │ │ ├── closeindexresult.go │ │ ├── closeshardresult.go │ │ ├── clusterappliedstats.go │ │ ├── clustercomponenttemplate.go │ │ ├── clusterdetails.go │ │ ├── clusterfilesystem.go │ │ ├── clusterindexingpressure.go │ │ ├── clusterindices.go │ │ ├── clusterindicesshards.go │ │ ├── clusterindicesshardsindex.go │ │ ├── clusterinfo.go │ │ ├── clusterinfotargets.go │ │ ├── clusteringest.go │ │ ├── clusterjvm.go │ │ ├── clusterjvmmemory.go │ │ ├── clusterjvmversion.go │ │ ├── clusternetworktypes.go │ │ ├── clusternode.go │ │ ├── clusternodecount.go │ │ ├── clusternodes.go │ │ ├── clusteroperatingsystem.go │ │ ├── clusteroperatingsystemarchitecture.go │ │ ├── clusteroperatingsystemname.go │ │ ├── clusteroperatingsystemprettyname.go │ │ ├── clusterprocess.go │ │ ├── clusterprocesscpu.go │ │ ├── clusterprocessopenfiledescriptors.go │ │ ├── clusterprocessor.go │ │ ├── clusterremoteinfo.go │ │ ├── clusterremoteproxyinfo.go │ │ ├── clusterremotesniffinfo.go │ │ ├── clusterruntimefieldtypes.go │ │ ├── clustershardmetrics.go │ │ ├── clustersnapshotstats.go │ │ ├── clusterstatequeue.go │ │ ├── clusterstateupdate.go │ │ ├── clusterstatistics.go │ │ ├── cohereservicesettings.go │ │ ├── coheretasksettings.go │ │ ├── collector.go │ │ ├── column.go │ │ ├── combinedfieldsquery.go │ │ ├── command.go │ │ ├── commandallocateprimaryaction.go │ │ ├── commandallocatereplicaaction.go │ │ ├── commandcancelaction.go │ │ ├── commandmoveaction.go │ │ ├── commongramstokenfilter.go │ │ ├── commontermsquery.go │ │ ├── communityidprocessor.go │ │ ├── compactnodeinfo.go │ │ ├── completioncontext.go │ │ ├── completionproperty.go │ │ ├── completionresult.go │ │ ├── completionstats.go │ │ ├── completionsuggest.go │ │ ├── completionsuggester.go │ │ ├── completionsuggestoption.go │ │ ├── completiontool.go │ │ ├── completiontoolchoice.go │ │ ├── completiontoolchoicefunction.go │ │ ├── completiontoolfunction.go │ │ ├── completiontooltype.go │ │ ├── componenttemplatenode.go │ │ ├── componenttemplatesummary.go │ │ ├── compositeaggregate.go │ │ ├── compositeaggregatekey.go │ │ ├── compositeaggregation.go │ │ ├── compositeaggregationsource.go │ │ ├── compositebucket.go │ │ ├── compositedatehistogramaggregation.go │ │ ├── compositegeotilegridaggregation.go │ │ ├── compositehistogramaggregation.go │ │ ├── compositesubfield.go │ │ ├── compositetermsaggregation.go │ │ ├── conditiontokenfilter.go │ │ ├── configuration.go │ │ ├── confusionmatrixitem.go │ │ ├── confusionmatrixprediction.go │ │ ├── confusionmatrixthreshold.go │ │ ├── connection.go │ │ ├── connector.go │ │ ├── connectorconfigproperties.go │ │ ├── connectorconfiguration.go │ │ ├── connectorcustomscheduling.go │ │ ├── connectorfeatures.go │ │ ├── connectorscheduling.go │ │ ├── connectorsyncjob.go │ │ ├── constantkeywordproperty.go │ │ ├── constantscorequery.go │ │ ├── contentobject.go │ │ ├── context.go │ │ ├── contextmethod.go │ │ ├── contextmethodparam.go │ │ ├── convertprocessor.go │ │ ├── coordinatorstats.go │ │ ├── coordsgeobounds.go │ │ ├── coreknnquery.go │ │ ├── countedkeywordproperty.go │ │ ├── counter.go │ │ ├── countrecord.go │ │ ├── cpu.go │ │ ├── cpuacct.go │ │ ├── createdstatus.go │ │ ├── createfrom.go │ │ ├── createoperation.go │ │ ├── csvprocessor.go │ │ ├── cumulativecardinalityaggregate.go │ │ ├── cumulativecardinalityaggregation.go │ │ ├── cumulativesumaggregation.go │ │ ├── currentnode.go │ │ ├── customanalyzer.go │ │ ├── customcategorizetextanalyzer.go │ │ ├── customnormalizer.go │ │ ├── customrequestparams.go │ │ ├── customresponseparams.go │ │ ├── customscheduling.go │ │ ├── customschedulingconfigurationoverrides.go │ │ ├── customservicesettings.go │ │ ├── customtasksettings.go │ │ ├── czechanalyzer.go │ │ ├── czechstemtokenfilter.go │ │ ├── dailyschedule.go │ │ ├── danglingindex.go │ │ ├── danishanalyzer.go │ │ ├── databaseconfiguration.go │ │ ├── databaseconfigurationfull.go │ │ ├── datacounts.go │ │ ├── datadescription.go │ │ ├── dataemailattachment.go │ │ ├── datafeedauthorization.go │ │ ├── datafeedconfig.go │ │ ├── datafeedrunningstate.go │ │ ├── datafeeds.go │ │ ├── datafeedsrecord.go │ │ ├── datafeedstats.go │ │ ├── datafeedtimingstats.go │ │ ├── dataframeanalysisanalyzedfields.go │ │ ├── dataframeanalysisclassification.go │ │ ├── dataframeanalysiscontainer.go │ │ ├── dataframeanalysisfeatureprocessor.go │ │ ├── dataframeanalysisfeatureprocessorfrequencyencoding.go │ │ ├── dataframeanalysisfeatureprocessormultiencoding.go │ │ ├── dataframeanalysisfeatureprocessorngramencoding.go │ │ ├── dataframeanalysisfeatureprocessoronehotencoding.go │ │ ├── dataframeanalysisfeatureprocessortargetmeanencoding.go │ │ ├── dataframeanalysisoutlierdetection.go │ │ ├── dataframeanalysisregression.go │ │ ├── dataframeanalytics.go │ │ ├── dataframeanalyticsauthorization.go │ │ ├── dataframeanalyticsdestination.go │ │ ├── dataframeanalyticsfieldselection.go │ │ ├── dataframeanalyticsmemoryestimation.go │ │ ├── dataframeanalyticsrecord.go │ │ ├── dataframeanalyticssource.go │ │ ├── dataframeanalyticsstatscontainer.go │ │ ├── dataframeanalyticsstatsdatacounts.go │ │ ├── dataframeanalyticsstatshyperparameters.go │ │ ├── dataframeanalyticsstatsmemoryusage.go │ │ ├── dataframeanalyticsstatsoutlierdetection.go │ │ ├── dataframeanalyticsstatsprogress.go │ │ ├── dataframeanalyticssummary.go │ │ ├── dataframeclassificationsummary.go │ │ ├── dataframeclassificationsummaryaccuracy.go │ │ ├── dataframeclassificationsummarymulticlassconfusionmatrix.go │ │ ├── dataframeclassificationsummaryprecision.go │ │ ├── dataframeclassificationsummaryrecall.go │ │ ├── dataframeevaluationclass.go │ │ ├── dataframeevaluationclassification.go │ │ ├── dataframeevaluationclassificationmetrics.go │ │ ├── dataframeevaluationclassificationmetricsaucroc.go │ │ ├── dataframeevaluationcontainer.go │ │ ├── dataframeevaluationoutlierdetection.go │ │ ├── dataframeevaluationoutlierdetectionmetrics.go │ │ ├── dataframeevaluationregression.go │ │ ├── dataframeevaluationregressionmetrics.go │ │ ├── dataframeevaluationregressionmetricshuber.go │ │ ├── dataframeevaluationregressionmetricsmsle.go │ │ ├── dataframeevaluationsummaryaucroc.go │ │ ├── dataframeevaluationsummaryaucroccurveitem.go │ │ ├── dataframeevaluationvalue.go │ │ ├── dataframeoutlierdetectionsummary.go │ │ ├── dataframepreviewconfig.go │ │ ├── dataframeregressionsummary.go │ │ ├── datapathstats.go │ │ ├── datastream.go │ │ ├── datastreamindex.go │ │ ├── datastreamlifecycle.go │ │ ├── datastreamlifecycledetails.go │ │ ├── datastreamlifecycledownsampling.go │ │ ├── datastreamlifecycleexplain.go │ │ ├── datastreamlifecycleindicator.go │ │ ├── datastreamlifecyclerolloverconditions.go │ │ ├── datastreamlifecyclewithrollover.go │ │ ├── datastreamnames.go │ │ ├── datastreams.go │ │ ├── datastreamsstatsitem.go │ │ ├── datastreamstats.go │ │ ├── datastreamtimestamp.go │ │ ├── datastreamtimestampfield.go │ │ ├── datastreamvisibility.go │ │ ├── datastreamwithlifecycle.go │ │ ├── datatierphasestatistics.go │ │ ├── datatiers.go │ │ ├── datedecayfunction.go │ │ ├── datedistancefeaturequery.go │ │ ├── datehistogramaggregate.go │ │ ├── datehistogramaggregation.go │ │ ├── datehistogrambucket.go │ │ ├── datehistogramgrouping.go │ │ ├── dateindexnameprocessor.go │ │ ├── datenanosproperty.go │ │ ├── dateprocessor.go │ │ ├── dateproperty.go │ │ ├── daterangeaggregate.go │ │ ├── daterangeaggregation.go │ │ ├── daterangeexpression.go │ │ ├── daterangeproperty.go │ │ ├── daterangequery.go │ │ ├── datetime.go │ │ ├── decayfunction.go │ │ ├── decayplacement.go │ │ ├── decayplacementdatemathduration.go │ │ ├── decayplacementdoubledouble.go │ │ ├── decayplacementgeolocationdistance.go │ │ ├── decimaldigittokenfilter.go │ │ ├── deepseekservicesettings.go │ │ ├── defaults.go │ │ ├── definition.go │ │ ├── delayeddatacheckconfig.go │ │ ├── deleteaction.go │ │ ├── deleteoperation.go │ │ ├── delimitedpayloadtokenfilter.go │ │ ├── densevectorindexoptions.go │ │ ├── densevectoroffheapstats.go │ │ ├── densevectorproperty.go │ │ ├── densevectorstats.go │ │ ├── dependency.go │ │ ├── deprecation.go │ │ ├── deprecationindexing.go │ │ ├── derivativeaggregate.go │ │ ├── derivativeaggregation.go │ │ ├── detailsinfo.go │ │ ├── detectionrule.go │ │ ├── detector.go │ │ ├── detectorread.go │ │ ├── detectorupdate.go │ │ ├── dfsknnprofile.go │ │ ├── dfsprofile.go │ │ ├── dfsstatisticsbreakdown.go │ │ ├── dfsstatisticsprofile.go │ │ ├── diagnosis.go │ │ ├── diagnosisaffectedresources.go │ │ ├── dictionarydecompoundertokenfilter.go │ │ ├── directgenerator.go │ │ ├── discovery.go │ │ ├── discoverynode.go │ │ ├── discoverynodecompact.go │ │ ├── discoverynodecontent.go │ │ ├── diskindicator.go │ │ ├── diskindicatordetails.go │ │ ├── diskusage.go │ │ ├── dismaxquery.go │ │ ├── dissectprocessor.go │ │ ├── distancefeaturequery.go │ │ ├── diversifiedsampleraggregation.go │ │ ├── docstats.go │ │ ├── document.go │ │ ├── documentrating.go │ │ ├── documentsimulation.go │ │ ├── dotexpanderprocessor.go │ │ ├── doublenumberproperty.go │ │ ├── doublerangeproperty.go │ │ ├── doubletermsaggregate.go │ │ ├── doubletermsbucket.go │ │ ├── downsampleaction.go │ │ ├── downsampleconfig.go │ │ ├── downsamplinground.go │ │ ├── dropprocessor.go │ │ ├── duration.go │ │ ├── durationvalueunitfloatmillis.go │ │ ├── durationvalueunitmillis.go │ │ ├── durationvalueunitnanos.go │ │ ├── durationvalueunitseconds.go │ │ ├── dutchanalyzer.go │ │ ├── dutchstemtokenfilter.go │ │ ├── dynamicproperty.go │ │ ├── dynamictemplate.go │ │ ├── edgengramtokenfilter.go │ │ ├── edgengramtokenizer.go │ │ ├── elasticsearcherror.go │ │ ├── elasticsearchservicesettings.go │ │ ├── elasticsearchtasksettings.go │ │ ├── elasticsearchversioninfo.go │ │ ├── elasticsearchversionmininfo.go │ │ ├── elisiontokenfilter.go │ │ ├── elserservicesettings.go │ │ ├── email.go │ │ ├── emailaction.go │ │ ├── emailattachmentcontainer.go │ │ ├── emailbody.go │ │ ├── emailresult.go │ │ ├── emptyobject.go │ │ ├── englishanalyzer.go │ │ ├── enrichpolicy.go │ │ ├── enrichprocessor.go │ │ ├── ensemble.go │ │ ├── enums │ │ │ ├── accesstokengranttype │ │ │ │ └── accesstokengranttype.go │ │ │ ├── acknowledgementoptions │ │ │ │ └── acknowledgementoptions.go │ │ │ ├── actionexecutionmode │ │ │ │ └── actionexecutionmode.go │ │ │ ├── actionstatusoptions │ │ │ │ └── actionstatusoptions.go │ │ │ ├── actiontype │ │ │ │ └── actiontype.go │ │ │ ├── alibabacloudservicetype │ │ │ │ └── alibabacloudservicetype.go │ │ │ ├── allocationexplaindecision │ │ │ │ └── allocationexplaindecision.go │ │ │ ├── amazonbedrockservicetype │ │ │ │ └── amazonbedrockservicetype.go │ │ │ ├── amazonsagemakerapi │ │ │ │ └── amazonsagemakerapi.go │ │ │ ├── amazonsagemakerservicetype │ │ │ │ └── amazonsagemakerservicetype.go │ │ │ ├── anthropicservicetype │ │ │ │ └── anthropicservicetype.go │ │ │ ├── apikeygranttype │ │ │ │ └── apikeygranttype.go │ │ │ ├── apikeytype │ │ │ │ └── apikeytype.go │ │ │ ├── appliesto │ │ │ │ └── appliesto.go │ │ │ ├── azureaistudioservicetype │ │ │ │ └── azureaistudioservicetype.go │ │ │ ├── azureopenaiservicetype │ │ │ │ └── azureopenaiservicetype.go │ │ │ ├── boundaryscanner │ │ │ │ └── boundaryscanner.go │ │ │ ├── bytes │ │ │ │ └── bytes.go │ │ │ ├── calendarinterval │ │ │ │ └── calendarinterval.go │ │ │ ├── cardinalityexecutionmode │ │ │ │ └── cardinalityexecutionmode.go │ │ │ ├── catanomalydetectorcolumn │ │ │ │ └── catanomalydetectorcolumn.go │ │ │ ├── catdatafeedcolumn │ │ │ │ └── catdatafeedcolumn.go │ │ │ ├── catdfacolumn │ │ │ │ └── catdfacolumn.go │ │ │ ├── categorizationstatus │ │ │ │ └── categorizationstatus.go │ │ │ ├── catnodecolumn │ │ │ │ └── catnodecolumn.go │ │ │ ├── catrecoverycolumn │ │ │ │ └── catrecoverycolumn.go │ │ │ ├── catsegmentscolumn │ │ │ │ └── catsegmentscolumn.go │ │ │ ├── catshardcolumn │ │ │ │ └── catshardcolumn.go │ │ │ ├── catsnapshotscolumn │ │ │ │ └── catsnapshotscolumn.go │ │ │ ├── catthreadpoolcolumn │ │ │ │ └── catthreadpoolcolumn.go │ │ │ ├── cattrainedmodelscolumn │ │ │ │ └── cattrainedmodelscolumn.go │ │ │ ├── cattransformcolumn │ │ │ │ └── cattransformcolumn.go │ │ │ ├── childscoremode │ │ │ │ └── childscoremode.go │ │ │ ├── chunkingmode │ │ │ │ └── chunkingmode.go │ │ │ ├── cjkbigramignoredscript │ │ │ │ └── cjkbigramignoredscript.go │ │ │ ├── clusterinfotarget │ │ │ │ └── clusterinfotarget.go │ │ │ ├── clusterprivilege │ │ │ │ └── clusterprivilege.go │ │ │ ├── clustersearchstatus │ │ │ │ └── clustersearchstatus.go │ │ │ ├── cohereembeddingtype │ │ │ │ └── cohereembeddingtype.go │ │ │ ├── cohereinputtype │ │ │ │ └── cohereinputtype.go │ │ │ ├── cohereservicetype │ │ │ │ └── cohereservicetype.go │ │ │ ├── coheresimilaritytype │ │ │ │ └── coheresimilaritytype.go │ │ │ ├── coheretruncatetype │ │ │ │ └── coheretruncatetype.go │ │ │ ├── combinedfieldsoperator │ │ │ │ └── combinedfieldsoperator.go │ │ │ ├── combinedfieldszeroterms │ │ │ │ └── combinedfieldszeroterms.go │ │ │ ├── conditionop │ │ │ │ └── conditionop.go │ │ │ ├── conditionoperator │ │ │ │ └── conditionoperator.go │ │ │ ├── conditiontype │ │ │ │ └── conditiontype.go │ │ │ ├── conflicts │ │ │ │ └── conflicts.go │ │ │ ├── connectionscheme │ │ │ │ └── connectionscheme.go │ │ │ ├── connectorfieldtype │ │ │ │ └── connectorfieldtype.go │ │ │ ├── connectorstatus │ │ │ │ └── connectorstatus.go │ │ │ ├── converttype │ │ │ │ └── converttype.go │ │ │ ├── customservicetype │ │ │ │ └── customservicetype.go │ │ │ ├── dataattachmentformat │ │ │ │ └── dataattachmentformat.go │ │ │ ├── datafeedstate │ │ │ │ └── datafeedstate.go │ │ │ ├── dataframestate │ │ │ │ └── dataframestate.go │ │ │ ├── day │ │ │ │ └── day.go │ │ │ ├── decision │ │ │ │ └── decision.go │ │ │ ├── deepseekservicetype │ │ │ │ └── deepseekservicetype.go │ │ │ ├── delimitedpayloadencoding │ │ │ │ └── delimitedpayloadencoding.go │ │ │ ├── densevectorelementtype │ │ │ │ └── densevectorelementtype.go │ │ │ ├── densevectorindexoptionstype │ │ │ │ └── densevectorindexoptionstype.go │ │ │ ├── densevectorsimilarity │ │ │ │ └── densevectorsimilarity.go │ │ │ ├── deploymentallocationstate │ │ │ │ └── deploymentallocationstate.go │ │ │ ├── deploymentassignmentstate │ │ │ │ └── deploymentassignmentstate.go │ │ │ ├── deprecationlevel │ │ │ │ └── deprecationlevel.go │ │ │ ├── dfiindependencemeasure │ │ │ │ └── dfiindependencemeasure.go │ │ │ ├── dfraftereffect │ │ │ │ └── dfraftereffect.go │ │ │ ├── dfrbasicmodel │ │ │ │ └── dfrbasicmodel.go │ │ │ ├── displaytype │ │ │ │ └── displaytype.go │ │ │ ├── distanceunit │ │ │ │ └── distanceunit.go │ │ │ ├── dynamicmapping │ │ │ │ └── dynamicmapping.go │ │ │ ├── ecscompatibilitytype │ │ │ │ └── ecscompatibilitytype.go │ │ │ ├── edgengramside │ │ │ │ └── edgengramside.go │ │ │ ├── elasticsearchservicetype │ │ │ │ └── elasticsearchservicetype.go │ │ │ ├── elserservicetype │ │ │ │ └── elserservicetype.go │ │ │ ├── emailpriority │ │ │ │ └── emailpriority.go │ │ │ ├── enrichpolicyphase │ │ │ │ └── enrichpolicyphase.go │ │ │ ├── esqlclusterstatus │ │ │ │ └── esqlclusterstatus.go │ │ │ ├── esqlformat │ │ │ │ └── esqlformat.go │ │ │ ├── excludefrequent │ │ │ │ └── excludefrequent.go │ │ │ ├── executionphase │ │ │ │ └── executionphase.go │ │ │ ├── executionstatus │ │ │ │ └── executionstatus.go │ │ │ ├── expandwildcard │ │ │ │ └── expandwildcard.go │ │ │ ├── failurestorestatus │ │ │ │ └── failurestorestatus.go │ │ │ ├── feature │ │ │ │ └── feature.go │ │ │ ├── fieldsortnumerictype │ │ │ │ └── fieldsortnumerictype.go │ │ │ ├── fieldtype │ │ │ │ └── fieldtype.go │ │ │ ├── fieldvaluefactormodifier │ │ │ │ └── fieldvaluefactormodifier.go │ │ │ ├── filteringpolicy │ │ │ │ └── filteringpolicy.go │ │ │ ├── filteringrulerule │ │ │ │ └── filteringrulerule.go │ │ │ ├── filteringvalidationstate │ │ │ │ └── filteringvalidationstate.go │ │ │ ├── filtertype │ │ │ │ └── filtertype.go │ │ │ ├── fingerprintdigest │ │ │ │ └── fingerprintdigest.go │ │ │ ├── followerindexstatus │ │ │ │ └── followerindexstatus.go │ │ │ ├── formattype │ │ │ │ └── formattype.go │ │ │ ├── functionboostmode │ │ │ │ └── functionboostmode.go │ │ │ ├── functionscoremode │ │ │ │ └── functionscoremode.go │ │ │ ├── gappolicy │ │ │ │ └── gappolicy.go │ │ │ ├── geodistancetype │ │ │ │ └── geodistancetype.go │ │ │ ├── geoexecution │ │ │ │ └── geoexecution.go │ │ │ ├── geogridtargetformat │ │ │ │ └── geogridtargetformat.go │ │ │ ├── geogridtiletype │ │ │ │ └── geogridtiletype.go │ │ │ ├── geoorientation │ │ │ │ └── geoorientation.go │ │ │ ├── geopointmetrictype │ │ │ │ └── geopointmetrictype.go │ │ │ ├── geoshaperelation │ │ │ │ └── geoshaperelation.go │ │ │ ├── geostrategy │ │ │ │ └── geostrategy.go │ │ │ ├── geovalidationmethod │ │ │ │ └── geovalidationmethod.go │ │ │ ├── googleaiservicetype │ │ │ │ └── googleaiservicetype.go │ │ │ ├── googlevertexaiservicetype │ │ │ │ └── googlevertexaiservicetype.go │ │ │ ├── granttype │ │ │ │ └── granttype.go │ │ │ ├── gridaggregationtype │ │ │ │ └── gridaggregationtype.go │ │ │ ├── gridtype │ │ │ │ └── gridtype.go │ │ │ ├── groupby │ │ │ │ └── groupby.go │ │ │ ├── healthstatus │ │ │ │ └── healthstatus.go │ │ │ ├── highlighterencoder │ │ │ │ └── highlighterencoder.go │ │ │ ├── highlighterfragmenter │ │ │ │ └── highlighterfragmenter.go │ │ │ ├── highlighterorder │ │ │ │ └── highlighterorder.go │ │ │ ├── highlightertagsschema │ │ │ │ └── highlightertagsschema.go │ │ │ ├── highlightertype │ │ │ │ └── highlightertype.go │ │ │ ├── holtwinterstype │ │ │ │ └── holtwinterstype.go │ │ │ ├── httpinputmethod │ │ │ │ └── httpinputmethod.go │ │ │ ├── huggingfaceservicetype │ │ │ │ └── huggingfaceservicetype.go │ │ │ ├── ibdistribution │ │ │ │ └── ibdistribution.go │ │ │ ├── iblambda │ │ │ │ └── iblambda.go │ │ │ ├── icucollationalternate │ │ │ │ └── icucollationalternate.go │ │ │ ├── icucollationcasefirst │ │ │ │ └── icucollationcasefirst.go │ │ │ ├── icucollationdecomposition │ │ │ │ └── icucollationdecomposition.go │ │ │ ├── icucollationstrength │ │ │ │ └── icucollationstrength.go │ │ │ ├── icunormalizationmode │ │ │ │ └── icunormalizationmode.go │ │ │ ├── icunormalizationtype │ │ │ │ └── icunormalizationtype.go │ │ │ ├── icutransformdirection │ │ │ │ └── icutransformdirection.go │ │ │ ├── impactarea │ │ │ │ └── impactarea.go │ │ │ ├── include │ │ │ │ └── include.go │ │ │ ├── indexcheckonstartup │ │ │ │ └── indexcheckonstartup.go │ │ │ ├── indexingjobstate │ │ │ │ └── indexingjobstate.go │ │ │ ├── indexmetadatastate │ │ │ │ └── indexmetadatastate.go │ │ │ ├── indexoptions │ │ │ │ └── indexoptions.go │ │ │ ├── indexprivilege │ │ │ │ └── indexprivilege.go │ │ │ ├── indexroutingallocationoptions │ │ │ │ └── indexroutingallocationoptions.go │ │ │ ├── indexroutingrebalanceoptions │ │ │ │ └── indexroutingrebalanceoptions.go │ │ │ ├── indicatorhealthstatus │ │ │ │ └── indicatorhealthstatus.go │ │ │ ├── inputtype │ │ │ │ └── inputtype.go │ │ │ ├── jinaaiservicetype │ │ │ │ └── jinaaiservicetype.go │ │ │ ├── jinaaisimilaritytype │ │ │ │ └── jinaaisimilaritytype.go │ │ │ ├── jinaaitextembeddingtask │ │ │ │ └── jinaaitextembeddingtask.go │ │ │ ├── jobblockedreason │ │ │ │ └── jobblockedreason.go │ │ │ ├── jobstate │ │ │ │ └── jobstate.go │ │ │ ├── jsonprocessorconflictstrategy │ │ │ │ └── jsonprocessorconflictstrategy.go │ │ │ ├── keeptypesmode │ │ │ │ └── keeptypesmode.go │ │ │ ├── kuromojitokenizationmode │ │ │ │ └── kuromojitokenizationmode.go │ │ │ ├── level │ │ │ │ └── level.go │ │ │ ├── licensestatus │ │ │ │ └── licensestatus.go │ │ │ ├── licensetype │ │ │ │ └── licensetype.go │ │ │ ├── lifecycleoperationmode │ │ │ │ └── lifecycleoperationmode.go │ │ │ ├── lowercasetokenfilterlanguages │ │ │ │ └── lowercasetokenfilterlanguages.go │ │ │ ├── managedby │ │ │ │ └── managedby.go │ │ │ ├── matchtype │ │ │ │ └── matchtype.go │ │ │ ├── memorystatus │ │ │ │ └── memorystatus.go │ │ │ ├── metric │ │ │ │ └── metric.go │ │ │ ├── migrationstatus │ │ │ │ └── migrationstatus.go │ │ │ ├── minimuminterval │ │ │ │ └── minimuminterval.go │ │ │ ├── missingorder │ │ │ │ └── missingorder.go │ │ │ ├── mistralservicetype │ │ │ │ └── mistralservicetype.go │ │ │ ├── modeenum │ │ │ │ └── modeenum.go │ │ │ ├── month │ │ │ │ └── month.go │ │ │ ├── multivaluemode │ │ │ │ └── multivaluemode.go │ │ │ ├── noderole │ │ │ │ └── noderole.go │ │ │ ├── noridecompoundmode │ │ │ │ └── noridecompoundmode.go │ │ │ ├── normalization │ │ │ │ └── normalization.go │ │ │ ├── normalizemethod │ │ │ │ └── normalizemethod.go │ │ │ ├── numericfielddataformat │ │ │ │ └── numericfielddataformat.go │ │ │ ├── onscripterror │ │ │ │ └── onscripterror.go │ │ │ ├── openaiservicetype │ │ │ │ └── openaiservicetype.go │ │ │ ├── operationtype │ │ │ │ └── operationtype.go │ │ │ ├── operator │ │ │ │ └── operator.go │ │ │ ├── optype │ │ │ │ └── optype.go │ │ │ ├── pagerdutycontexttype │ │ │ │ └── pagerdutycontexttype.go │ │ │ ├── pagerdutyeventtype │ │ │ │ └── pagerdutyeventtype.go │ │ │ ├── painlesscontext │ │ │ │ └── painlesscontext.go │ │ │ ├── phoneticencoder │ │ │ │ └── phoneticencoder.go │ │ │ ├── phoneticlanguage │ │ │ │ └── phoneticlanguage.go │ │ │ ├── phoneticnametype │ │ │ │ └── phoneticnametype.go │ │ │ ├── phoneticruletype │ │ │ │ └── phoneticruletype.go │ │ │ ├── pipelinesimulationstatusoptions │ │ │ │ └── pipelinesimulationstatusoptions.go │ │ │ ├── policytype │ │ │ │ └── policytype.go │ │ │ ├── quantifier │ │ │ │ └── quantifier.go │ │ │ ├── queryrulecriteriatype │ │ │ │ └── queryrulecriteriatype.go │ │ │ ├── queryruletype │ │ │ │ └── queryruletype.go │ │ │ ├── rangerelation │ │ │ │ └── rangerelation.go │ │ │ ├── rankvectorelementtype │ │ │ │ └── rankvectorelementtype.go │ │ │ ├── ratemode │ │ │ │ └── ratemode.go │ │ │ ├── refresh │ │ │ │ └── refresh.go │ │ │ ├── remoteclusterprivilege │ │ │ │ └── remoteclusterprivilege.go │ │ │ ├── responsecontenttype │ │ │ │ └── responsecontenttype.go │ │ │ ├── restrictionworkflow │ │ │ │ └── restrictionworkflow.go │ │ │ ├── result │ │ │ │ └── result.go │ │ │ ├── resultposition │ │ │ │ └── resultposition.go │ │ │ ├── routingstate │ │ │ │ └── routingstate.go │ │ │ ├── ruleaction │ │ │ │ └── ruleaction.go │ │ │ ├── runtimefieldtype │ │ │ │ └── runtimefieldtype.go │ │ │ ├── sampleraggregationexecutionhint │ │ │ │ └── sampleraggregationexecutionhint.go │ │ │ ├── scoremode │ │ │ │ └── scoremode.go │ │ │ ├── scorenormalizer │ │ │ │ └── scorenormalizer.go │ │ │ ├── scriptlanguage │ │ │ │ └── scriptlanguage.go │ │ │ ├── scriptsorttype │ │ │ │ └── scriptsorttype.go │ │ │ ├── searchtype │ │ │ │ └── searchtype.go │ │ │ ├── segmentsortmissing │ │ │ │ └── segmentsortmissing.go │ │ │ ├── segmentsortmode │ │ │ │ └── segmentsortmode.go │ │ │ ├── segmentsortorder │ │ │ │ └── segmentsortorder.go │ │ │ ├── shapetype │ │ │ │ └── shapetype.go │ │ │ ├── shardroutingstate │ │ │ │ └── shardroutingstate.go │ │ │ ├── shardsstatsstage │ │ │ │ └── shardsstatsstage.go │ │ │ ├── shardstate │ │ │ │ └── shardstate.go │ │ │ ├── shardstoreallocation │ │ │ │ └── shardstoreallocation.go │ │ │ ├── shardstorestatus │ │ │ │ └── shardstorestatus.go │ │ │ ├── shutdownstatus │ │ │ │ └── shutdownstatus.go │ │ │ ├── shutdowntype │ │ │ │ └── shutdowntype.go │ │ │ ├── snapshotsort │ │ │ │ └── snapshotsort.go │ │ │ ├── snapshotupgradestate │ │ │ │ └── snapshotupgradestate.go │ │ │ ├── snowballlanguage │ │ │ │ └── snowballlanguage.go │ │ │ ├── sortmode │ │ │ │ └── sortmode.go │ │ │ ├── sortorder │ │ │ │ └── sortorder.go │ │ │ ├── sourcefieldmode │ │ │ │ └── sourcefieldmode.go │ │ │ ├── sourcemode │ │ │ │ └── sourcemode.go │ │ │ ├── sqlformat │ │ │ │ └── sqlformat.go │ │ │ ├── statslevel │ │ │ │ └── statslevel.go │ │ │ ├── storagetype │ │ │ │ └── storagetype.go │ │ │ ├── stringdistance │ │ │ │ └── stringdistance.go │ │ │ ├── subobjects │ │ │ │ └── subobjects.go │ │ │ ├── suggestmode │ │ │ │ └── suggestmode.go │ │ │ ├── suggestsort │ │ │ │ └── suggestsort.go │ │ │ ├── syncjobtriggermethod │ │ │ │ └── syncjobtriggermethod.go │ │ │ ├── syncjobtype │ │ │ │ └── syncjobtype.go │ │ │ ├── syncstatus │ │ │ │ └── syncstatus.go │ │ │ ├── synonymformat │ │ │ │ └── synonymformat.go │ │ │ ├── syntheticsourcekeepenum │ │ │ │ └── syntheticsourcekeepenum.go │ │ │ ├── tasktype │ │ │ │ └── tasktype.go │ │ │ ├── tasktypealibabacloudai │ │ │ │ └── tasktypealibabacloudai.go │ │ │ ├── tasktypeamazonbedrock │ │ │ │ └── tasktypeamazonbedrock.go │ │ │ ├── tasktypeamazonsagemaker │ │ │ │ └── tasktypeamazonsagemaker.go │ │ │ ├── tasktypeanthropic │ │ │ │ └── tasktypeanthropic.go │ │ │ ├── tasktypeazureaistudio │ │ │ │ └── tasktypeazureaistudio.go │ │ │ ├── tasktypeazureopenai │ │ │ │ └── tasktypeazureopenai.go │ │ │ ├── tasktypecohere │ │ │ │ └── tasktypecohere.go │ │ │ ├── tasktypecustom │ │ │ │ └── tasktypecustom.go │ │ │ ├── tasktypedeepseek │ │ │ │ └── tasktypedeepseek.go │ │ │ ├── tasktypeelasticsearch │ │ │ │ └── tasktypeelasticsearch.go │ │ │ ├── tasktypeelser │ │ │ │ └── tasktypeelser.go │ │ │ ├── tasktypegoogleaistudio │ │ │ │ └── tasktypegoogleaistudio.go │ │ │ ├── tasktypegooglevertexai │ │ │ │ └── tasktypegooglevertexai.go │ │ │ ├── tasktypehuggingface │ │ │ │ └── tasktypehuggingface.go │ │ │ ├── tasktypejinaai │ │ │ │ └── tasktypejinaai.go │ │ │ ├── tasktypemistral │ │ │ │ └── tasktypemistral.go │ │ │ ├── tasktypeopenai │ │ │ │ └── tasktypeopenai.go │ │ │ ├── tasktypevoyageai │ │ │ │ └── tasktypevoyageai.go │ │ │ ├── tasktypewatsonx │ │ │ │ └── tasktypewatsonx.go │ │ │ ├── tdigestexecutionhint │ │ │ │ └── tdigestexecutionhint.go │ │ │ ├── templateformat │ │ │ │ └── templateformat.go │ │ │ ├── termsaggregationcollectmode │ │ │ │ └── termsaggregationcollectmode.go │ │ │ ├── termsaggregationexecutionhint │ │ │ │ └── termsaggregationexecutionhint.go │ │ │ ├── termvectoroption │ │ │ │ └── termvectoroption.go │ │ │ ├── textquerytype │ │ │ │ └── textquerytype.go │ │ │ ├── threadtype │ │ │ │ └── threadtype.go │ │ │ ├── timeseriesmetrictype │ │ │ │ └── timeseriesmetrictype.go │ │ │ ├── timeunit │ │ │ │ └── timeunit.go │ │ │ ├── tokenchar │ │ │ │ └── tokenchar.go │ │ │ ├── tokenizationtruncate │ │ │ │ └── tokenizationtruncate.go │ │ │ ├── totalhitsrelation │ │ │ │ └── totalhitsrelation.go │ │ │ ├── trainedmodeltype │ │ │ │ └── trainedmodeltype.go │ │ │ ├── trainingpriority │ │ │ │ └── trainingpriority.go │ │ │ ├── translogdurability │ │ │ │ └── translogdurability.go │ │ │ ├── ttesttype │ │ │ │ └── ttesttype.go │ │ │ ├── type_ │ │ │ │ └── type_.go │ │ │ ├── unassignedinformationreason │ │ │ │ └── unassignedinformationreason.go │ │ │ ├── useragentproperty │ │ │ │ └── useragentproperty.go │ │ │ ├── valuetype │ │ │ │ └── valuetype.go │ │ │ ├── versiontype │ │ │ │ └── versiontype.go │ │ │ ├── voyageaiservicetype │ │ │ │ └── voyageaiservicetype.go │ │ │ ├── waitforevents │ │ │ │ └── waitforevents.go │ │ │ ├── watcherstate │ │ │ │ └── watcherstate.go │ │ │ ├── watsonxservicetype │ │ │ │ └── watsonxservicetype.go │ │ │ ├── xpackcategory │ │ │ │ └── xpackcategory.go │ │ │ └── zerotermsquery │ │ │ │ └── zerotermsquery.go │ │ ├── epochtimeunitmillis.go │ │ ├── epochtimeunitseconds.go │ │ ├── eql.go │ │ ├── eqlfeatures.go │ │ ├── eqlfeaturesjoin.go │ │ ├── eqlfeatureskeys.go │ │ ├── eqlfeaturespipes.go │ │ ├── eqlfeaturessequences.go │ │ ├── eqlhits.go │ │ ├── errorcause.go │ │ ├── errorresponsebase.go │ │ ├── esqlclusterdetails.go │ │ ├── esqlclusterinfo.go │ │ ├── esqlcolumninfo.go │ │ ├── esqlshardfailure.go │ │ ├── esqlshardinfo.go │ │ ├── estoniananalyzer.go │ │ ├── eventdatastream.go │ │ ├── ewmamodelsettings.go │ │ ├── ewmamovingaverageaggregation.go │ │ ├── executeenrichpolicystatus.go │ │ ├── executingpolicy.go │ │ ├── executionresult.go │ │ ├── executionresultaction.go │ │ ├── executionresultcondition.go │ │ ├── executionresultinput.go │ │ ├── executionstate.go │ │ ├── executionthreadpool.go │ │ ├── existsquery.go │ │ ├── expandwildcards.go │ │ ├── explainanalyzetoken.go │ │ ├── explanation.go │ │ ├── explanationdetail.go │ │ ├── explorecontrols.go │ │ ├── exponentialaveragecalculationcontext.go │ │ ├── extendedboundsdouble.go │ │ ├── extendedboundsfielddatemath.go │ │ ├── extendedmemorystats.go │ │ ├── extendedstatsaggregate.go │ │ ├── extendedstatsaggregation.go │ │ ├── extendedstatsbucketaggregate.go │ │ ├── extendedstatsbucketaggregation.go │ │ ├── failprocessor.go │ │ ├── failurestore.go │ │ ├── feature.go │ │ ├── featureenabled.go │ │ ├── featureextractor.go │ │ ├── features.go │ │ ├── featuretoggle.go │ │ ├── fetchprofile.go │ │ ├── fetchprofilebreakdown.go │ │ ├── fetchprofiledebug.go │ │ ├── fieldaliasproperty.go │ │ ├── fieldandformat.go │ │ ├── fieldcapability.go │ │ ├── fieldcollapse.go │ │ ├── fielddatafrequencyfilter.go │ │ ├── fielddatarecord.go │ │ ├── fielddatastats.go │ │ ├── fielddatemath.go │ │ ├── fieldlookup.go │ │ ├── fieldmapping.go │ │ ├── fieldmemoryusage.go │ │ ├── fieldmetric.go │ │ ├── fieldnamesfield.go │ │ ├── fieldrule.go │ │ ├── fields.go │ │ ├── fieldsecurity.go │ │ ├── fieldsizeusage.go │ │ ├── fieldsort.go │ │ ├── fieldstat.go │ │ ├── fieldstatistics.go │ │ ├── fieldsuggester.go │ │ ├── fieldsummary.go │ │ ├── fieldtypes.go │ │ ├── fieldtypesmappings.go │ │ ├── fieldvalue.go │ │ ├── fieldvaluefactorscorefunction.go │ │ ├── filecountsnapshotstats.go │ │ ├── filedetails.go │ │ ├── filesystem.go │ │ ├── filesystemtotal.go │ │ ├── fillmaskinferenceoptions.go │ │ ├── fillmaskinferenceupdateoptions.go │ │ ├── filteraggregate.go │ │ ├── filteringadvancedsnippet.go │ │ ├── filteringconfig.go │ │ ├── filteringrule.go │ │ ├── filteringrules.go │ │ ├── filteringrulesvalidation.go │ │ ├── filteringvalidation.go │ │ ├── filterref.go │ │ ├── filtersaggregate.go │ │ ├── filtersaggregation.go │ │ ├── filtersbucket.go │ │ ├── fingerprintanalyzer.go │ │ ├── fingerprintprocessor.go │ │ ├── fingerprinttokenfilter.go │ │ ├── finnishanalyzer.go │ │ ├── flattened.go │ │ ├── flattenedproperty.go │ │ ├── flattengraphtokenfilter.go │ │ ├── float64.go │ │ ├── floatnumberproperty.go │ │ ├── floatrangeproperty.go │ │ ├── flushstats.go │ │ ├── followerindex.go │ │ ├── followerindexparameters.go │ │ ├── followindexstats.go │ │ ├── followstats.go │ │ ├── forcemergeaction.go │ │ ├── foreachprocessor.go │ │ ├── foundstatus.go │ │ ├── frenchanalyzer.go │ │ ├── frenchstemtokenfilter.go │ │ ├── frequencyencodingpreprocessor.go │ │ ├── frequentitemsetsaggregate.go │ │ ├── frequentitemsetsaggregation.go │ │ ├── frequentitemsetsbucket.go │ │ ├── frequentitemsetsfield.go │ │ ├── frozenindices.go │ │ ├── functionscore.go │ │ ├── functionscorequery.go │ │ ├── fuzziness.go │ │ ├── fuzzyquery.go │ │ ├── galiciananalyzer.go │ │ ├── garbagecollector.go │ │ ├── garbagecollectortotal.go │ │ ├── gcsrepository.go │ │ ├── gcsrepositorysettings.go │ │ ├── geoboundingboxquery.go │ │ ├── geobounds.go │ │ ├── geoboundsaggregate.go │ │ ├── geoboundsaggregation.go │ │ ├── geocentroidaggregate.go │ │ ├── geocentroidaggregation.go │ │ ├── geodecayfunction.go │ │ ├── geodistanceaggregate.go │ │ ├── geodistanceaggregation.go │ │ ├── geodistancefeaturequery.go │ │ ├── geodistancequery.go │ │ ├── geodistancesort.go │ │ ├── geogridprocessor.go │ │ ├── geogridquery.go │ │ ├── geohashgridaggregate.go │ │ ├── geohashgridaggregation.go │ │ ├── geohashgridbucket.go │ │ ├── geohashlocation.go │ │ ├── geohashprecision.go │ │ ├── geohexgridaggregate.go │ │ ├── geohexgridaggregation.go │ │ ├── geohexgridbucket.go │ │ ├── geoipdatabaseconfigurationmetadata.go │ │ ├── geoipdownloadstatistics.go │ │ ├── geoipnodedatabasename.go │ │ ├── geoipnodedatabases.go │ │ ├── geoipprocessor.go │ │ ├── geoline.go │ │ ├── geolineaggregate.go │ │ ├── geolineaggregation.go │ │ ├── geolinepoint.go │ │ ├── geolinesort.go │ │ ├── geolocation.go │ │ ├── geopointproperty.go │ │ ├── geopolygonpoints.go │ │ ├── geopolygonquery.go │ │ ├── georesults.go │ │ ├── geoshapefieldquery.go │ │ ├── geoshapeproperty.go │ │ ├── geoshapequery.go │ │ ├── geotilegridaggregate.go │ │ ├── geotilegridaggregation.go │ │ ├── geotilegridbucket.go │ │ ├── germananalyzer.go │ │ ├── germannormalizationtokenfilter.go │ │ ├── germanstemtokenfilter.go │ │ ├── getmigrationfeature.go │ │ ├── getresult.go │ │ ├── getscriptcontext.go │ │ ├── getstats.go │ │ ├── getuserprofileerrors.go │ │ ├── globalaggregate.go │ │ ├── globalaggregation.go │ │ ├── globalordinalfieldstats.go │ │ ├── globalordinalsstats.go │ │ ├── globalprivilege.go │ │ ├── googleaistudioservicesettings.go │ │ ├── googlenormalizeddistanceheuristic.go │ │ ├── googlevertexaiservicesettings.go │ │ ├── googlevertexaitasksettings.go │ │ ├── grantapikey.go │ │ ├── greaterthanvalidation.go │ │ ├── greekanalyzer.go │ │ ├── grokprocessor.go │ │ ├── groupings.go │ │ ├── gsubprocessor.go │ │ ├── halffloatnumberproperty.go │ │ ├── haschildquery.go │ │ ├── hasparentquery.go │ │ ├── hasprivilegesuserprofileerrors.go │ │ ├── hdrmethod.go │ │ ├── hdrpercentileranksaggregate.go │ │ ├── hdrpercentilesaggregate.go │ │ ├── healthrecord.go │ │ ├── healthstatistics.go │ │ ├── highlight.go │ │ ├── highlightfield.go │ │ ├── hindianalyzer.go │ │ ├── hindinormalizationtokenfilter.go │ │ ├── hint.go │ │ ├── histogramaggregate.go │ │ ├── histogramaggregation.go │ │ ├── histogrambucket.go │ │ ├── histogramgrouping.go │ │ ├── histogramproperty.go │ │ ├── hit.go │ │ ├── hitsevent.go │ │ ├── hitsmetadata.go │ │ ├── hitssequence.go │ │ ├── holtlinearmodelsettings.go │ │ ├── holtmovingaverageaggregation.go │ │ ├── holtwintersmodelsettings.go │ │ ├── holtwintersmovingaverageaggregation.go │ │ ├── hop.go │ │ ├── hourandminute.go │ │ ├── hourlyschedule.go │ │ ├── htmlstripcharfilter.go │ │ ├── htmlstripprocessor.go │ │ ├── http.go │ │ ├── httpemailattachment.go │ │ ├── httpheaders.go │ │ ├── httpinput.go │ │ ├── httpinputauthentication.go │ │ ├── httpinputbasicauthentication.go │ │ ├── httpinputproxy.go │ │ ├── httpinputrequestdefinition.go │ │ ├── httpinputrequestresult.go │ │ ├── httpinputresponseresult.go │ │ ├── httproute.go │ │ ├── httprouterequests.go │ │ ├── httprouteresponses.go │ │ ├── huggingfaceservicesettings.go │ │ ├── huggingfacetasksettings.go │ │ ├── hungariananalyzer.go │ │ ├── hunspelltokenfilter.go │ │ ├── hyperparameter.go │ │ ├── hyperparameters.go │ │ ├── hyphenationdecompoundertokenfilter.go │ │ ├── icuanalyzer.go │ │ ├── icucollationproperty.go │ │ ├── icucollationtokenfilter.go │ │ ├── icufoldingtokenfilter.go │ │ ├── icunormalizationcharfilter.go │ │ ├── icunormalizationtokenfilter.go │ │ ├── icutokenizer.go │ │ ├── icutransformtokenfilter.go │ │ ├── ids.go │ │ ├── idsquery.go │ │ ├── ilm.go │ │ ├── ilmactions.go │ │ ├── ilmindicator.go │ │ ├── ilmindicatordetails.go │ │ ├── ilmpolicy.go │ │ ├── ilmpolicystatistics.go │ │ ├── impact.go │ │ ├── includedinvalidation.go │ │ ├── indexaction.go │ │ ├── indexaliases.go │ │ ├── indexanddatastreamaction.go │ │ ├── indexcapabilities.go │ │ ├── indexdetails.go │ │ ├── indexfield.go │ │ ├── indexhealthstats.go │ │ ├── indexingslowlogsettings.go │ │ ├── indexingslowlogtresholds.go │ │ ├── indexingstats.go │ │ ├── indexmappingrecord.go │ │ ├── indexoperation.go │ │ ├── indexprivilegescheck.go │ │ ├── indexresult.go │ │ ├── indexresultsummary.go │ │ ├── indexrouting.go │ │ ├── indexroutingallocation.go │ │ ├── indexroutingallocationdisk.go │ │ ├── indexroutingallocationinclude.go │ │ ├── indexroutingallocationinitialrecovery.go │ │ ├── indexroutingrebalance.go │ │ ├── indexsegment.go │ │ ├── indexsegmentsort.go │ │ ├── indexsettingblocks.go │ │ ├── indexsettings.go │ │ ├── indexsettingsanalysis.go │ │ ├── indexsettingslifecycle.go │ │ ├── indexsettingslifecyclestep.go │ │ ├── indexsettingstimeseries.go │ │ ├── indexstate.go │ │ ├── indexstats.go │ │ ├── indextemplate.go │ │ ├── indextemplatedatastreamconfiguration.go │ │ ├── indextemplateitem.go │ │ ├── indextemplatemapping.go │ │ ├── indextemplatesummary.go │ │ ├── indexversioning.go │ │ ├── indicatornode.go │ │ ├── indicators.go │ │ ├── indices.go │ │ ├── indicesaction.go │ │ ├── indicesblockstatus.go │ │ ├── indicesindexingpressure.go │ │ ├── indicesindexingpressurememory.go │ │ ├── indicesmodifyaction.go │ │ ├── indicesoptions.go │ │ ├── indicesprivileges.go │ │ ├── indicesprivilegesquery.go │ │ ├── indicesrecord.go │ │ ├── indicesshardsstats.go │ │ ├── indicesshardstats.go │ │ ├── indicesshardstores.go │ │ ├── indicesstats.go │ │ ├── indicesvalidationexplanation.go │ │ ├── indicesversions.go │ │ ├── indicnormalizationtokenfilter.go │ │ ├── indonesiananalyzer.go │ │ ├── inferenceaggregate.go │ │ ├── inferenceaggregation.go │ │ ├── inferencechunkingsettings.go │ │ ├── inferenceclassimportance.go │ │ ├── inferenceconfig.go │ │ ├── inferenceconfigclassification.go │ │ ├── inferenceconfigcontainer.go │ │ ├── inferenceconfigcreatecontainer.go │ │ ├── inferenceconfigregression.go │ │ ├── inferenceconfigupdatecontainer.go │ │ ├── inferenceendpoint.go │ │ ├── inferenceendpointinfo.go │ │ ├── inferencefeatureimportance.go │ │ ├── inferenceprocessor.go │ │ ├── inferenceresponseresult.go │ │ ├── inferencetopclassentry.go │ │ ├── influence.go │ │ ├── influencer.go │ │ ├── infofeaturestate.go │ │ ├── ingest.go │ │ ├── ingestdocumentsimulation.go │ │ ├── ingestpipeline.go │ │ ├── ingestpipelineparams.go │ │ ├── ingeststats.go │ │ ├── ingesttotal.go │ │ ├── inlineget.go │ │ ├── inlinegetdictuserdefined.go │ │ ├── innerhits.go │ │ ├── innerhitsresult.go │ │ ├── innerretriever.go │ │ ├── inprogress.go │ │ ├── input.go │ │ ├── inputconfig.go │ │ ├── integernumberproperty.go │ │ ├── integerrangeproperty.go │ │ ├── intervals.go │ │ ├── intervalsallof.go │ │ ├── intervalsanyof.go │ │ ├── intervalsfilter.go │ │ ├── intervalsfuzzy.go │ │ ├── intervalsmatch.go │ │ ├── intervalsprefix.go │ │ ├── intervalsquery.go │ │ ├── intervalsrange.go │ │ ├── intervalsregexp.go │ │ ├── intervalswildcard.go │ │ ├── invertedindex.go │ │ ├── invocation.go │ │ ├── invocations.go │ │ ├── iostatdevice.go │ │ ├── iostats.go │ │ ├── ipfilter.go │ │ ├── ipinfo.go │ │ ├── iplocationdatabaseconfigurationmetadata.go │ │ ├── iplocationprocessor.go │ │ ├── ipprefixaggregate.go │ │ ├── ipprefixaggregation.go │ │ ├── ipprefixbucket.go │ │ ├── ipproperty.go │ │ ├── iprangeaggregate.go │ │ ├── iprangeaggregation.go │ │ ├── iprangeaggregationrange.go │ │ ├── iprangebucket.go │ │ ├── iprangeproperty.go │ │ ├── irishanalyzer.go │ │ ├── italiananalyzer.go │ │ ├── jastoptokenfilter.go │ │ ├── jinaaiservicesettings.go │ │ ├── jinaaitasksettings.go │ │ ├── job.go │ │ ├── jobblocked.go │ │ ├── jobconfig.go │ │ ├── jobforecaststatistics.go │ │ ├── jobsrecord.go │ │ ├── jobstatistics.go │ │ ├── jobstats.go │ │ ├── jobtimingstats.go │ │ ├── jobusage.go │ │ ├── joinprocessor.go │ │ ├── joinproperty.go │ │ ├── jsonprocessor.go │ │ ├── jvm.go │ │ ├── jvmclasses.go │ │ ├── jvmmemorystats.go │ │ ├── jvmstats.go │ │ ├── jvmthreads.go │ │ ├── keeptypestokenfilter.go │ │ ├── keepwordstokenfilter.go │ │ ├── keyedpercentiles.go │ │ ├── keyedprocessor.go │ │ ├── keyvalueprocessor.go │ │ ├── keywordanalyzer.go │ │ ├── keywordmarkertokenfilter.go │ │ ├── keywordproperty.go │ │ ├── keywordrepeattokenfilter.go │ │ ├── keywordtokenizer.go │ │ ├── kibanatoken.go │ │ ├── knncollectorresult.go │ │ ├── knnquery.go │ │ ├── knnqueryprofilebreakdown.go │ │ ├── knnqueryprofileresult.go │ │ ├── knnretriever.go │ │ ├── knnsearch.go │ │ ├── kstemtokenfilter.go │ │ ├── kuromojianalyzer.go │ │ ├── kuromojiiterationmarkcharfilter.go │ │ ├── kuromojipartofspeechtokenfilter.go │ │ ├── kuromojireadingformtokenfilter.go │ │ ├── kuromojistemmertokenfilter.go │ │ ├── kuromojitokenizer.go │ │ ├── languagecontext.go │ │ ├── laplacesmoothingmodel.go │ │ ├── latest.go │ │ ├── latlongeolocation.go │ │ ├── latviananalyzer.go │ │ ├── learningtorank.go │ │ ├── learningtorankconfig.go │ │ ├── lengthtokenfilter.go │ │ ├── lessthanvalidation.go │ │ ├── lettertokenizer.go │ │ ├── license.go │ │ ├── licenseinformation.go │ │ ├── lifecycle.go │ │ ├── lifecycleexplain.go │ │ ├── lifecycleexplainmanaged.go │ │ ├── lifecycleexplainphaseexecution.go │ │ ├── lifecycleexplainunmanaged.go │ │ ├── like.go │ │ ├── likedocument.go │ │ ├── limits.go │ │ ├── limittokencounttokenfilter.go │ │ ├── linearinterpolationsmoothingmodel.go │ │ ├── linearmovingaverageaggregation.go │ │ ├── linearretriever.go │ │ ├── listtypevalidation.go │ │ ├── lithuaniananalyzer.go │ │ ├── local.go │ │ ├── loggingaction.go │ │ ├── loggingresult.go │ │ ├── logstashpipeline.go │ │ ├── longnumberproperty.go │ │ ├── longrangeproperty.go │ │ ├── longraretermsaggregate.go │ │ ├── longraretermsbucket.go │ │ ├── longtermsaggregate.go │ │ ├── longtermsbucket.go │ │ ├── lowercasenormalizer.go │ │ ├── lowercaseprocessor.go │ │ ├── lowercasetokenfilter.go │ │ ├── lowercasetokenizer.go │ │ ├── machinelearning.go │ │ ├── manageuserprivileges.go │ │ ├── mapboxvectortiles.go │ │ ├── mappingcharfilter.go │ │ ├── mappinglimitsettings.go │ │ ├── mappinglimitsettingsdepth.go │ │ ├── mappinglimitsettingsdimensionfields.go │ │ ├── mappinglimitsettingsfieldnamelength.go │ │ ├── mappinglimitsettingsnestedfields.go │ │ ├── mappinglimitsettingsnestedobjects.go │ │ ├── mappinglimitsettingssourcefields.go │ │ ├── mappinglimitsettingstotalfields.go │ │ ├── mappingstats.go │ │ ├── masterisstableindicator.go │ │ ├── masterisstableindicatorclusterformationnode.go │ │ ├── masterisstableindicatordetails.go │ │ ├── masterisstableindicatorexceptionfetchinghistory.go │ │ ├── masterrecord.go │ │ ├── matchallquery.go │ │ ├── matchboolprefixquery.go │ │ ├── matchedfield.go │ │ ├── matchedtext.go │ │ ├── matchnonequery.go │ │ ├── matchonlytextproperty.go │ │ ├── matchphraseprefixquery.go │ │ ├── matchphrasequery.go │ │ ├── matchquery.go │ │ ├── matrixstatsaggregate.go │ │ ├── matrixstatsaggregation.go │ │ ├── matrixstatsfields.go │ │ ├── maxaggregate.go │ │ ├── maxaggregation.go │ │ ├── maxbucketaggregation.go │ │ ├── maxmind.go │ │ ├── medianabsolutedeviationaggregate.go │ │ ├── medianabsolutedeviationaggregation.go │ │ ├── memmlstats.go │ │ ├── memory.go │ │ ├── memorystats.go │ │ ├── memstats.go │ │ ├── merge.go │ │ ├── mergescheduler.go │ │ ├── mergesstats.go │ │ ├── message.go │ │ ├── messagecontent.go │ │ ├── metadata.go │ │ ├── metrics.go │ │ ├── mgetoperation.go │ │ ├── mgetresponseitem.go │ │ ├── migrateaction.go │ │ ├── migratereindex.go │ │ ├── migrationfeatureindexinfo.go │ │ ├── minaggregate.go │ │ ├── minaggregation.go │ │ ├── minbucketaggregation.go │ │ ├── minhashtokenfilter.go │ │ ├── minimallicenseinformation.go │ │ ├── minimumshouldmatch.go │ │ ├── missing.go │ │ ├── missingaggregate.go │ │ ├── missingaggregation.go │ │ ├── mistralservicesettings.go │ │ ├── mlcounter.go │ │ ├── mldatafeed.go │ │ ├── mldataframeanalyticsjobs.go │ │ ├── mldataframeanalyticsjobsanalysis.go │ │ ├── mldataframeanalyticsjobscount.go │ │ ├── mldataframeanalyticsjobsmemory.go │ │ ├── mlfilter.go │ │ ├── mlinference.go │ │ ├── mlinferencedeployments.go │ │ ├── mlinferencedeploymentstimems.go │ │ ├── mlinferenceingestprocessor.go │ │ ├── mlinferenceingestprocessorcount.go │ │ ├── mlinferencetrainedmodels.go │ │ ├── mlinferencetrainedmodelscount.go │ │ ├── mljobforecasts.go │ │ ├── modelpackageconfig.go │ │ ├── modelplotconfig.go │ │ ├── modelsizestats.go │ │ ├── modelsnapshot.go │ │ ├── modelsnapshotupgrade.go │ │ ├── monitoring.go │ │ ├── morelikethisquery.go │ │ ├── mountedsnapshot.go │ │ ├── movingaverageaggregation.go │ │ ├── movingfunctionaggregation.go │ │ ├── movingpercentilesaggregation.go │ │ ├── msearchrequestitem.go │ │ ├── msearchresponseitem.go │ │ ├── mtermvectorsoperation.go │ │ ├── multigeterror.go │ │ ├── multimatchquery.go │ │ ├── multiplexertokenfilter.go │ │ ├── multisearchbody.go │ │ ├── multisearchheader.go │ │ ├── multisearchitem.go │ │ ├── multitermlookup.go │ │ ├── multitermsaggregate.go │ │ ├── multitermsaggregation.go │ │ ├── multitermsbucket.go │ │ ├── murmur3hashproperty.go │ │ ├── mutualinformationheuristic.go │ │ ├── names.go │ │ ├── nativecode.go │ │ ├── nativecodeinformation.go │ │ ├── nerinferenceoptions.go │ │ ├── nerinferenceupdateoptions.go │ │ ├── nestedaggregate.go │ │ ├── nestedaggregation.go │ │ ├── nestedidentity.go │ │ ├── nestedproperty.go │ │ ├── nestedquery.go │ │ ├── nestedsortvalue.go │ │ ├── networkdirectionprocessor.go │ │ ├── nevercondition.go │ │ ├── ngramtokenfilter.go │ │ ├── ngramtokenizer.go │ │ ├── nlpberttokenizationconfig.go │ │ ├── nlprobertatokenizationconfig.go │ │ ├── nlptokenizationupdateoptions.go │ │ ├── node.go │ │ ├── nodeallocationexplanation.go │ │ ├── nodeattributes.go │ │ ├── nodeattributesrecord.go │ │ ├── nodebufferpool.go │ │ ├── nodediskusage.go │ │ ├── nodeids.go │ │ ├── nodeinfo.go │ │ ├── nodeinfoaction.go │ │ ├── nodeinfoaggregation.go │ │ ├── nodeinfobootstrap.go │ │ ├── nodeinfoclient.go │ │ ├── nodeinfodiscover.go │ │ ├── nodeinfohttp.go │ │ ├── nodeinfoingest.go │ │ ├── nodeinfoingestdownloader.go │ │ ├── nodeinfoingestinfo.go │ │ ├── nodeinfoingestprocessor.go │ │ ├── nodeinfojvmmemory.go │ │ ├── nodeinfomemory.go │ │ ├── nodeinfooscpu.go │ │ ├── nodeinfopath.go │ │ ├── nodeinforepositories.go │ │ ├── nodeinforepositoriesurl.go │ │ ├── nodeinfoscript.go │ │ ├── nodeinfosearch.go │ │ ├── nodeinfosearchremote.go │ │ ├── nodeinfosettings.go │ │ ├── nodeinfosettingscluster.go │ │ ├── nodeinfosettingsclusterelection.go │ │ ├── nodeinfosettingshttp.go │ │ ├── nodeinfosettingshttptype.go │ │ ├── nodeinfosettingsingest.go │ │ ├── nodeinfosettingsnetwork.go │ │ ├── nodeinfosettingsnode.go │ │ ├── nodeinfosettingstransport.go │ │ ├── nodeinfosettingstransportfeatures.go │ │ ├── nodeinfosettingstransporttype.go │ │ ├── nodeinfotransport.go │ │ ├── nodeinfoxpack.go │ │ ├── nodeinfoxpacklicense.go │ │ ├── nodeinfoxpacklicensetype.go │ │ ├── nodeinfoxpackml.go │ │ ├── nodeinfoxpacksecurity.go │ │ ├── nodeinfoxpacksecurityauthc.go │ │ ├── nodeinfoxpacksecurityauthcrealms.go │ │ ├── nodeinfoxpacksecurityauthcrealmsstatus.go │ │ ├── nodeinfoxpacksecurityauthctoken.go │ │ ├── nodeinfoxpacksecurityssl.go │ │ ├── nodejvminfo.go │ │ ├── nodeoperatingsysteminfo.go │ │ ├── nodepackagingtype.go │ │ ├── nodeprocessinfo.go │ │ ├── nodereloadresult.go │ │ ├── nodescontext.go │ │ ├── nodescredentials.go │ │ ├── nodescredentialsfiletoken.go │ │ ├── nodeshard.go │ │ ├── nodeshutdownstatus.go │ │ ├── nodesindexingpressure.go │ │ ├── nodesindexingpressurememory.go │ │ ├── nodesingest.go │ │ ├── nodesrecord.go │ │ ├── nodestatistics.go │ │ ├── nodetasks.go │ │ ├── nodethreadpoolinfo.go │ │ ├── nodeusage.go │ │ ├── norianalyzer.go │ │ ├── noripartofspeechtokenfilter.go │ │ ├── noritokenizer.go │ │ ├── normalizeaggregation.go │ │ ├── normalizer.go │ │ ├── norwegiananalyzer.go │ │ ├── notfoundaliases.go │ │ ├── nullvalue.go │ │ ├── numberrangequery.go │ │ ├── numericdecayfunction.go │ │ ├── numericfielddata.go │ │ ├── objectproperty.go │ │ ├── onehotencodingpreprocessor.go │ │ ├── openaiservicesettings.go │ │ ├── openaitasksettings.go │ │ ├── operatingsystem.go │ │ ├── operatingsystemmemoryinfo.go │ │ ├── operationcontainer.go │ │ ├── outlierdetectionparameters.go │ │ ├── overallbucket.go │ │ ├── overallbucketjob.go │ │ ├── overlapping.go │ │ ├── page.go │ │ ├── pagerdutyaction.go │ │ ├── pagerdutycontext.go │ │ ├── pagerdutyevent.go │ │ ├── pagerdutyeventproxy.go │ │ ├── pagerdutyresult.go │ │ ├── painlesscontextsetup.go │ │ ├── parentaggregate.go │ │ ├── parentaggregation.go │ │ ├── parentidquery.go │ │ ├── parenttaskinfo.go │ │ ├── passthroughinferenceoptions.go │ │ ├── passthroughinferenceupdateoptions.go │ │ ├── passthroughobjectproperty.go │ │ ├── pathhierarchytokenizer.go │ │ ├── patternanalyzer.go │ │ ├── patterncapturetokenfilter.go │ │ ├── patternreplacecharfilter.go │ │ ├── patternreplacetokenfilter.go │ │ ├── patterntokenizer.go │ │ ├── pendingtask.go │ │ ├── pendingtasksrecord.go │ │ ├── percentage.go │ │ ├── percentagescoreheuristic.go │ │ ├── percentileranksaggregation.go │ │ ├── percentiles.go │ │ ├── percentilesaggregation.go │ │ ├── percentilesbucketaggregate.go │ │ ├── percentilesbucketaggregation.go │ │ ├── percolatequery.go │ │ ├── percolatorproperty.go │ │ ├── perpartitioncategorization.go │ │ ├── perrepositorystats.go │ │ ├── persiananalyzer.go │ │ ├── persiannormalizationtokenfilter.go │ │ ├── persianstemtokenfilter.go │ │ ├── persistenttaskstatus.go │ │ ├── phase.go │ │ ├── phases.go │ │ ├── phonetictokenfilter.go │ │ ├── phrasesuggest.go │ │ ├── phrasesuggestcollate.go │ │ ├── phrasesuggestcollatequery.go │ │ ├── phrasesuggester.go │ │ ├── phrasesuggesthighlight.go │ │ ├── phrasesuggestoption.go │ │ ├── pinneddoc.go │ │ ├── pinnedquery.go │ │ ├── pinnedretriever.go │ │ ├── pipelineconfig.go │ │ ├── pipelinemetadata.go │ │ ├── pipelineprocessor.go │ │ ├── pipelineprocessorresult.go │ │ ├── pipelinesettings.go │ │ ├── pipeseparatedflagssimplequerystringflag.go │ │ ├── pivot.go │ │ ├── pivotgroupbycontainer.go │ │ ├── pluginsrecord.go │ │ ├── pluginsstatus.go │ │ ├── pluginstats.go │ │ ├── pointintimereference.go │ │ ├── pointproperty.go │ │ ├── pool.go │ │ ├── porterstemtokenfilter.go │ │ ├── portugueseanalyzer.go │ │ ├── postmigrationfeature.go │ │ ├── predicatetokenfilter.go │ │ ├── predictedvalue.go │ │ ├── prefixquery.go │ │ ├── preprocessor.go │ │ ├── pressurememory.go │ │ ├── privileges.go │ │ ├── privilegesactions.go │ │ ├── privilegescheck.go │ │ ├── process.go │ │ ├── processor.go │ │ ├── processorcontainer.go │ │ ├── profile.go │ │ ├── property.go │ │ ├── publishedclusterstates.go │ │ ├── queries.go │ │ ├── query.go │ │ ├── querybreakdown.go │ │ ├── querycachestats.go │ │ ├── queryfeatureextractor.go │ │ ├── queryprofile.go │ │ ├── queryrole.go │ │ ├── queryrule.go │ │ ├── queryruleactions.go │ │ ├── queryrulecriteria.go │ │ ├── queryrulesetlistitem.go │ │ ├── queryrulesetmatchedrule.go │ │ ├── querystringquery.go │ │ ├── queryuser.go │ │ ├── queryvectorbuilder.go │ │ ├── querywatch.go │ │ ├── questionansweringinferenceoptions.go │ │ ├── questionansweringinferenceupdateoptions.go │ │ ├── randomsampleraggregation.go │ │ ├── randomscorefunction.go │ │ ├── rangeaggregate.go │ │ ├── rangeaggregation.go │ │ ├── rangebucket.go │ │ ├── rangequery.go │ │ ├── rankcontainer.go │ │ ├── rankeddocument.go │ │ ├── rankevalhit.go │ │ ├── rankevalhititem.go │ │ ├── rankevalmetric.go │ │ ├── rankevalmetricdetail.go │ │ ├── rankevalmetricdiscountedcumulativegain.go │ │ ├── rankevalmetricexpectedreciprocalrank.go │ │ ├── rankevalmetricmeanreciprocalrank.go │ │ ├── rankevalmetricprecision.go │ │ ├── rankevalmetricrecall.go │ │ ├── rankevalquery.go │ │ ├── rankevalrequestitem.go │ │ ├── rankfeaturefunctionlinear.go │ │ ├── rankfeaturefunctionlogarithm.go │ │ ├── rankfeaturefunctionsaturation.go │ │ ├── rankfeaturefunctionsigmoid.go │ │ ├── rankfeatureproperty.go │ │ ├── rankfeaturequery.go │ │ ├── rankfeaturesproperty.go │ │ ├── rankvectorproperty.go │ │ ├── raretermsaggregation.go │ │ ├── rateaggregate.go │ │ ├── rateaggregation.go │ │ ├── ratelimitsetting.go │ │ ├── readblobdetails.go │ │ ├── readexception.go │ │ ├── readonlyurlrepository.go │ │ ├── readonlyurlrepositorysettings.go │ │ ├── readsummaryinfo.go │ │ ├── realmcache.go │ │ ├── realminfo.go │ │ ├── recording.go │ │ ├── recoverybytes.go │ │ ├── recoveryfiles.go │ │ ├── recoveryindexstatus.go │ │ ├── recoveryorigin.go │ │ ├── recoveryrecord.go │ │ ├── recoverystartstatus.go │ │ ├── recoverystats.go │ │ ├── recoverystatus.go │ │ ├── redact.go │ │ ├── redactprocessor.go │ │ ├── refreshstats.go │ │ ├── regexoptions.go │ │ ├── regexpquery.go │ │ ├── regexvalidation.go │ │ ├── registereddomainprocessor.go │ │ ├── regressioninferenceoptions.go │ │ ├── reindexdestination.go │ │ ├── reindexnode.go │ │ ├── reindexsource.go │ │ ├── reindexstatus.go │ │ ├── reindextask.go │ │ ├── reloaddetails.go │ │ ├── reloadresult.go │ │ ├── relocationfailureinfo.go │ │ ├── remoteclusterinfo.go │ │ ├── remoteclusterprivileges.go │ │ ├── remoteindicesprivileges.go │ │ ├── remotesource.go │ │ ├── remoteuserindicesprivileges.go │ │ ├── removeaction.go │ │ ├── removeclusterserver.go │ │ ├── removeduplicatestokenfilter.go │ │ ├── removeindexaction.go │ │ ├── removeprocessor.go │ │ ├── renameprocessor.go │ │ ├── replicationaccess.go │ │ ├── reportingemailattachment.go │ │ ├── repositoriesrecord.go │ │ ├── repository.go │ │ ├── repositoryintegrityindicator.go │ │ ├── repositoryintegrityindicatordetails.go │ │ ├── repositorylocation.go │ │ ├── repositorymeteringinformation.go │ │ ├── repositorystatscurrentcounts.go │ │ ├── repositorystatsshards.go │ │ ├── requestcachestats.go │ │ ├── requestchatcompletion.go │ │ ├── requestcounts.go │ │ ├── requestitem.go │ │ ├── reroutedecision.go │ │ ├── rerouteexplanation.go │ │ ├── rerouteparameters.go │ │ ├── rerouteprocessor.go │ │ ├── rescore.go │ │ ├── rescorequery.go │ │ ├── rescorerretriever.go │ │ ├── rescorevector.go │ │ ├── reservedsize.go │ │ ├── resolveclusterinfo.go │ │ ├── resolveindexaliasitem.go │ │ ├── resolveindexdatastreamsitem.go │ │ ├── resolveindexitem.go │ │ ├── resourceprivileges.go │ │ ├── responseitem.go │ │ ├── restriction.go │ │ ├── retention.go │ │ ├── retentionlease.go │ │ ├── retentionpolicy.go │ │ ├── retentionpolicycontainer.go │ │ ├── retries.go │ │ ├── retrievercontainer.go │ │ ├── reversenestedaggregate.go │ │ ├── reversenestedaggregation.go │ │ ├── reversetokenfilter.go │ │ ├── role.go │ │ ├── roledescriptor.go │ │ ├── roledescriptorread.go │ │ ├── roledescriptorwrapper.go │ │ ├── rolemappingrule.go │ │ ├── rolequerycontainer.go │ │ ├── roletemplate.go │ │ ├── roletemplateinlinequery.go │ │ ├── roletemplatequery.go │ │ ├── roletemplatescript.go │ │ ├── rolloveraction.go │ │ ├── rolloverconditions.go │ │ ├── rollupcapabilities.go │ │ ├── rollupcapabilitysummary.go │ │ ├── rollupfieldsummary.go │ │ ├── rollupjob.go │ │ ├── rollupjobconfiguration.go │ │ ├── rollupjobstats.go │ │ ├── rollupjobstatus.go │ │ ├── rollupjobsummary.go │ │ ├── rollupjobsummaryfield.go │ │ ├── romaniananalyzer.go │ │ ├── routingfield.go │ │ ├── rrfrank.go │ │ ├── rrfretriever.go │ │ ├── rulecondition.go │ │ ├── rulequery.go │ │ ├── ruleretriever.go │ │ ├── runningstatesearchinterval.go │ │ ├── runtimefield.go │ │ ├── runtimefieldfetchfields.go │ │ ├── runtimefields.go │ │ ├── runtimefieldstype.go │ │ ├── russiananalyzer.go │ │ ├── russianstemtokenfilter.go │ │ ├── s3repository.go │ │ ├── s3repositorysettings.go │ │ ├── samplediversity.go │ │ ├── sampleraggregate.go │ │ ├── sampleraggregation.go │ │ ├── scalarvalue.go │ │ ├── scaledfloatnumberproperty.go │ │ ├── scandinavianfoldingtokenfilter.go │ │ ├── scandinaviannormalizationtokenfilter.go │ │ ├── schedulecontainer.go │ │ ├── scheduletimeofday.go │ │ ├── scheduletriggerevent.go │ │ ├── schedulingconfiguration.go │ │ ├── scoresort.go │ │ ├── script.go │ │ ├── scriptcache.go │ │ ├── scriptcondition.go │ │ ├── scriptedheuristic.go │ │ ├── scriptedmetricaggregate.go │ │ ├── scriptedmetricaggregation.go │ │ ├── scriptfield.go │ │ ├── scripting.go │ │ ├── scriptprocessor.go │ │ ├── scriptquery.go │ │ ├── scriptscorefunction.go │ │ ├── scriptscorequery.go │ │ ├── scriptsort.go │ │ ├── scripttransform.go │ │ ├── scrollids.go │ │ ├── searchablesnapshotaction.go │ │ ├── searchablesnapshots.go │ │ ├── searchaccess.go │ │ ├── searchapplication.go │ │ ├── searchapplicationparameters.go │ │ ├── searchapplicationtemplate.go │ │ ├── searchasyoutypeproperty.go │ │ ├── searchidle.go │ │ ├── searchinput.go │ │ ├── searchinputrequestbody.go │ │ ├── searchinputrequestdefinition.go │ │ ├── searchprofile.go │ │ ├── searchshardsnodeattributes.go │ │ ├── searchstats.go │ │ ├── searchtemplaterequestbody.go │ │ ├── searchtransform.go │ │ ├── searchusagestats.go │ │ ├── security.go │ │ ├── securityrolemapping.go │ │ ├── securityroles.go │ │ ├── securityrolesdls.go │ │ ├── securityrolesdlsbitsetcache.go │ │ ├── securityrolesfile.go │ │ ├── securityrolesnative.go │ │ ├── securitysettings.go │ │ ├── segment.go │ │ ├── segmentsrecord.go │ │ ├── segmentsstats.go │ │ ├── selectoption.go │ │ ├── semanticquery.go │ │ ├── semantictextindexoptions.go │ │ ├── semantictextproperty.go │ │ ├── serbiananalyzer.go │ │ ├── serbiannormalizationtokenfilter.go │ │ ├── serialdifferencingaggregation.go │ │ ├── serializedclusterstate.go │ │ ├── serializedclusterstatedetail.go │ │ ├── servicetoken.go │ │ ├── setpriorityaction.go │ │ ├── setprocessor.go │ │ ├── setsecurityuserprocessor.go │ │ ├── settings.go │ │ ├── settingsanalyze.go │ │ ├── settingshighlight.go │ │ ├── settingsquerystring.go │ │ ├── settingssearch.go │ │ ├── settingssimilarity.go │ │ ├── settingssimilaritybm25.go │ │ ├── settingssimilarityboolean.go │ │ ├── settingssimilaritydfi.go │ │ ├── settingssimilaritydfr.go │ │ ├── settingssimilarityib.go │ │ ├── settingssimilaritylmd.go │ │ ├── settingssimilaritylmj.go │ │ ├── settingssimilarityscripted.go │ │ ├── shapefieldquery.go │ │ ├── shapeproperty.go │ │ ├── shapequery.go │ │ ├── shardcommit.go │ │ ├── shardfailure.go │ │ ├── shardfilesizeinfo.go │ │ ├── shardhealthstats.go │ │ ├── shardlease.go │ │ ├── shardmigrationstatus.go │ │ ├── shardpath.go │ │ ├── shardprofile.go │ │ ├── shardquerycache.go │ │ ├── shardrecovery.go │ │ ├── shardretentionleases.go │ │ ├── shardrouting.go │ │ ├── shardsavailabilityindicator.go │ │ ├── shardsavailabilityindicatordetails.go │ │ ├── shardscapacityindicator.go │ │ ├── shardscapacityindicatordetails.go │ │ ├── shardscapacityindicatortierdetail.go │ │ ├── shardsegmentrouting.go │ │ ├── shardsequencenumber.go │ │ ├── shardsrecord.go │ │ ├── shardssegment.go │ │ ├── shardsstatssummary.go │ │ ├── shardsstatssummaryitem.go │ │ ├── shardstatistics.go │ │ ├── shardstore.go │ │ ├── shardstoreexception.go │ │ ├── shardstoreindex.go │ │ ├── shardstorenode.go │ │ ├── shardstorewrapper.go │ │ ├── shardstotalstats.go │ │ ├── shared.go │ │ ├── sharedfilesystemrepository.go │ │ ├── sharedfilesystemrepositorysettings.go │ │ ├── shingletokenfilter.go │ │ ├── shortnumberproperty.go │ │ ├── shrinkaction.go │ │ ├── significantlongtermsaggregate.go │ │ ├── significantlongtermsbucket.go │ │ ├── significantstringtermsaggregate.go │ │ ├── significantstringtermsbucket.go │ │ ├── significanttermsaggregation.go │ │ ├── significanttextaggregation.go │ │ ├── simpleanalyzer.go │ │ ├── simplemovingaverageaggregation.go │ │ ├── simplepatternsplittokenizer.go │ │ ├── simplepatterntokenizer.go │ │ ├── simplequerystringflags.go │ │ ├── simplequerystringquery.go │ │ ├── simplevalueaggregate.go │ │ ├── simulatedactions.go │ │ ├── simulatedocumentresult.go │ │ ├── simulateingestdocumentresult.go │ │ ├── sizefield.go │ │ ├── sizehttphistogram.go │ │ ├── slackaction.go │ │ ├── slackattachment.go │ │ ├── slackattachmentfield.go │ │ ├── slackdynamicattachment.go │ │ ├── slackmessage.go │ │ ├── slackresult.go │ │ ├── slicedscroll.go │ │ ├── slices.go │ │ ├── slm.go │ │ ├── slmindicator.go │ │ ├── slmindicatordetails.go │ │ ├── slmindicatorunhealthypolicies.go │ │ ├── slmpolicy.go │ │ ├── slowlogsettings.go │ │ ├── slowlogtresholdlevels.go │ │ ├── slowlogtresholds.go │ │ ├── smoothingmodelcontainer.go │ │ ├── snapshotcurrentcounts.go │ │ ├── snapshotindexstats.go │ │ ├── snapshotinfo.go │ │ ├── snapshotlifecycle.go │ │ ├── snapshotnodeinfo.go │ │ ├── snapshotpolicystats.go │ │ ├── snapshotresponseitem.go │ │ ├── snapshotrestore.go │ │ ├── snapshotshardfailure.go │ │ ├── snapshotshardsstats.go │ │ ├── snapshotshardsstatus.go │ │ ├── snapshotsrecord.go │ │ ├── snapshotstats.go │ │ ├── snowballanalyzer.go │ │ ├── snowballtokenfilter.go │ │ ├── softdeletes.go │ │ ├── soranianalyzer.go │ │ ├── soraninormalizationtokenfilter.go │ │ ├── sort.go │ │ ├── sortcombinations.go │ │ ├── sortoptions.go │ │ ├── sortprocessor.go │ │ ├── sourceconfig.go │ │ ├── sourceconfigparam.go │ │ ├── sourcefield.go │ │ ├── sourcefilter.go │ │ ├── sourceindex.go │ │ ├── sourceonlyrepository.go │ │ ├── sourceonlyrepositorysettings.go │ │ ├── spancontainingquery.go │ │ ├── spanfieldmaskingquery.go │ │ ├── spanfirstquery.go │ │ ├── spangapquery.go │ │ ├── spanishanalyzer.go │ │ ├── spanmultitermquery.go │ │ ├── spannearquery.go │ │ ├── spannotquery.go │ │ ├── spanorquery.go │ │ ├── spanquery.go │ │ ├── spantermquery.go │ │ ├── spanwithinquery.go │ │ ├── sparseembeddingresult.go │ │ ├── sparsevector.go │ │ ├── sparsevectorindexoptions.go │ │ ├── sparsevectorproperty.go │ │ ├── sparsevectorquery.go │ │ ├── sparsevectorstats.go │ │ ├── specifieddocument.go │ │ ├── splitprocessor.go │ │ ├── sql.go │ │ ├── ssl.go │ │ ├── stagnatingbackingindices.go │ │ ├── standardanalyzer.go │ │ ├── standarddeviationbounds.go │ │ ├── standarddeviationboundsasstring.go │ │ ├── standardretriever.go │ │ ├── standardtokenizer.go │ │ ├── statistics.go │ │ ├── stats.go │ │ ├── statsaggregate.go │ │ ├── statsaggregation.go │ │ ├── statsbucketaggregate.go │ │ ├── statsbucketaggregation.go │ │ ├── status.go │ │ ├── statuserror.go │ │ ├── statusinprogress.go │ │ ├── stemmeroverridetokenfilter.go │ │ ├── stemmertokenfilter.go │ │ ├── stepkey.go │ │ ├── stopanalyzer.go │ │ ├── stoptokenfilter.go │ │ ├── stopwords.go │ │ ├── storage.go │ │ ├── storedscript.go │ │ ├── storestats.go │ │ ├── streamresult.go │ │ ├── stringifiedboolean.go │ │ ├── stringifieddouble.go │ │ ├── stringifiedepochtimeunitmillis.go │ │ ├── stringifiedepochtimeunitseconds.go │ │ ├── stringifiedinteger.go │ │ ├── stringifiedversionnumber.go │ │ ├── stringraretermsaggregate.go │ │ ├── stringraretermsbucket.go │ │ ├── stringstatsaggregate.go │ │ ├── stringstatsaggregation.go │ │ ├── stringtermsaggregate.go │ │ ├── stringtermsbucket.go │ │ ├── stupidbackoffsmoothingmodel.go │ │ ├── suggest.go │ │ ├── suggestcontext.go │ │ ├── suggester.go │ │ ├── suggestfuzziness.go │ │ ├── sumaggregate.go │ │ ├── sumaggregation.go │ │ ├── sumbucketaggregation.go │ │ ├── summary.go │ │ ├── summaryinfo.go │ │ ├── swedishanalyzer.go │ │ ├── synccontainer.go │ │ ├── syncjobconnectorreference.go │ │ ├── syncrulesfeature.go │ │ ├── synonymgraphtokenfilter.go │ │ ├── synonymrule.go │ │ ├── synonymruleread.go │ │ ├── synonymssetitem.go │ │ ├── synonymsstats.go │ │ ├── synonymtokenfilter.go │ │ ├── tablevaluescontainer.go │ │ ├── tablevaluesintegervalue.go │ │ ├── tablevalueskeywordvalue.go │ │ ├── tablevalueslongdouble.go │ │ ├── tablevalueslongvalue.go │ │ ├── targetmeanencodingpreprocessor.go │ │ ├── taskfailure.go │ │ ├── taskid.go │ │ ├── taskinfo.go │ │ ├── taskinfos.go │ │ ├── tasksrecord.go │ │ ├── tdigest.go │ │ ├── tdigestpercentileranksaggregate.go │ │ ├── tdigestpercentilesaggregate.go │ │ ├── template.go │ │ ├── templateconfig.go │ │ ├── templatemapping.go │ │ ├── templatesrecord.go │ │ ├── term.go │ │ ├── terminateprocessor.go │ │ ├── termquery.go │ │ ├── termrangequery.go │ │ ├── termsaggregation.go │ │ ├── termsexclude.go │ │ ├── termsgrouping.go │ │ ├── termsinclude.go │ │ ├── termslookup.go │ │ ├── termspartition.go │ │ ├── termsquery.go │ │ ├── termsqueryfield.go │ │ ├── termssetquery.go │ │ ├── termsuggest.go │ │ ├── termsuggester.go │ │ ├── termsuggestoption.go │ │ ├── termvector.go │ │ ├── termvectorsfilter.go │ │ ├── termvectorsresult.go │ │ ├── termvectorstoken.go │ │ ├── testpopulation.go │ │ ├── textclassificationinferenceoptions.go │ │ ├── textclassificationinferenceupdateoptions.go │ │ ├── textembedding.go │ │ ├── textembeddingbyteresult.go │ │ ├── textembeddinginferenceoptions.go │ │ ├── textembeddinginferenceupdateoptions.go │ │ ├── textembeddingresult.go │ │ ├── textexpansioninferenceoptions.go │ │ ├── textexpansioninferenceupdateoptions.go │ │ ├── textexpansionquery.go │ │ ├── textindexprefixes.go │ │ ├── textproperty.go │ │ ├── textsimilarityreranker.go │ │ ├── texttoanalyze.go │ │ ├── thaianalyzer.go │ │ ├── thaitokenizer.go │ │ ├── threadcount.go │ │ ├── threadpoolrecord.go │ │ ├── throttlestate.go │ │ ├── timehttphistogram.go │ │ ├── timeofmonth.go │ │ ├── timeofweek.go │ │ ├── timeofyear.go │ │ ├── timeseriesaggregate.go │ │ ├── timeseriesaggregation.go │ │ ├── timeseriesbucket.go │ │ ├── timesync.go │ │ ├── timingstats.go │ │ ├── tokencountproperty.go │ │ ├── tokendetail.go │ │ ├── tokenfilter.go │ │ ├── tokenfilterdefinition.go │ │ ├── tokenizationconfigcontainer.go │ │ ├── tokenizer.go │ │ ├── tokenizerdefinition.go │ │ ├── tokenpruningconfig.go │ │ ├── toolcall.go │ │ ├── toolcallfunction.go │ │ ├── topclassentry.go │ │ ├── tophit.go │ │ ├── tophitsaggregate.go │ │ ├── tophitsaggregation.go │ │ ├── topleftbottomrightgeobounds.go │ │ ├── topmetrics.go │ │ ├── topmetricsaggregate.go │ │ ├── topmetricsaggregation.go │ │ ├── topmetricsvalue.go │ │ ├── toprightbottomleftgeobounds.go │ │ ├── totalfeatureimportance.go │ │ ├── totalfeatureimportanceclass.go │ │ ├── totalfeatureimportancestatistics.go │ │ ├── totalhits.go │ │ ├── totaluserprofiles.go │ │ ├── trackhits.go │ │ ├── trainedmodel.go │ │ ├── trainedmodelassignment.go │ │ ├── trainedmodelassignmentroutingstateandreason.go │ │ ├── trainedmodelassignmentroutingtable.go │ │ ├── trainedmodelassignmenttaskparameters.go │ │ ├── trainedmodelconfig.go │ │ ├── trainedmodelconfiginput.go │ │ ├── trainedmodelconfigmetadata.go │ │ ├── trainedmodeldeploymentallocationstatus.go │ │ ├── trainedmodeldeploymentnodesstats.go │ │ ├── trainedmodeldeploymentstats.go │ │ ├── trainedmodelentities.go │ │ ├── trainedmodelinferenceclassimportance.go │ │ ├── trainedmodelinferencefeatureimportance.go │ │ ├── trainedmodelinferencestats.go │ │ ├── trainedmodellocation.go │ │ ├── trainedmodellocationindex.go │ │ ├── trainedmodelprefixstrings.go │ │ ├── trainedmodelsizestats.go │ │ ├── trainedmodelsrecord.go │ │ ├── trainedmodelstats.go │ │ ├── trainedmodeltree.go │ │ ├── trainedmodeltreenode.go │ │ ├── transformauthorization.go │ │ ├── transformcontainer.go │ │ ├── transformdestination.go │ │ ├── transformhealthissue.go │ │ ├── transformindexerstats.go │ │ ├── transformprogress.go │ │ ├── transformsource.go │ │ ├── transformsrecord.go │ │ ├── transformstats.go │ │ ├── transformstatshealth.go │ │ ├── transformsummary.go │ │ ├── translog.go │ │ ├── translogretention.go │ │ ├── translogstats.go │ │ ├── translogstatus.go │ │ ├── transport.go │ │ ├── transporthistogram.go │ │ ├── triggercontainer.go │ │ ├── triggereventcontainer.go │ │ ├── triggereventresult.go │ │ ├── trimprocessor.go │ │ ├── trimtokenfilter.go │ │ ├── truncatetokenfilter.go │ │ ├── ttestaggregate.go │ │ ├── ttestaggregation.go │ │ ├── turkishanalyzer.go │ │ ├── typefieldmappings.go │ │ ├── typemapping.go │ │ ├── typequery.go │ │ ├── uaxemailurltokenizer.go │ │ ├── unassignedinformation.go │ │ ├── uniquetokenfilter.go │ │ ├── unmappedraretermsaggregate.go │ │ ├── unmappedsampleraggregate.go │ │ ├── unmappedsignificanttermsaggregate.go │ │ ├── unmappedtermsaggregate.go │ │ ├── unrateddocument.go │ │ ├── unsignedlongnumberproperty.go │ │ ├── untypeddecayfunction.go │ │ ├── untypeddistancefeaturequery.go │ │ ├── untypedrangequery.go │ │ ├── updateaction.go │ │ ├── updatebyqueryrethrottlenode.go │ │ ├── updateoperation.go │ │ ├── uppercaseprocessor.go │ │ ├── uppercasetokenfilter.go │ │ ├── uripartsprocessor.go │ │ ├── urldecodeprocessor.go │ │ ├── usagephase.go │ │ ├── usagephases.go │ │ ├── usagestatsindex.go │ │ ├── usagestatsshards.go │ │ ├── user.go │ │ ├── useragentprocessor.go │ │ ├── userindicesprivileges.go │ │ ├── userprofile.go │ │ ├── userprofilehitmetadata.go │ │ ├── userprofileuser.go │ │ ├── userprofilewithmetadata.go │ │ ├── userquerycontainer.go │ │ ├── userrealm.go │ │ ├── validation.go │ │ ├── validationloss.go │ │ ├── valuecountaggregate.go │ │ ├── valuecountaggregation.go │ │ ├── variablewidthhistogramaggregate.go │ │ ├── variablewidthhistogramaggregation.go │ │ ├── variablewidthhistogrambucket.go │ │ ├── vector.go │ │ ├── verifyindex.go │ │ ├── versionproperty.go │ │ ├── vertex.go │ │ ├── vertexdefinition.go │ │ ├── vertexinclude.go │ │ ├── vocabulary.go │ │ ├── void.go │ │ ├── voyageaiservicesettings.go │ │ ├── voyageaitasksettings.go │ │ ├── waitforactiveshards.go │ │ ├── waitfornodes.go │ │ ├── waitforsnapshotaction.go │ │ ├── warmerstats.go │ │ ├── watch.go │ │ ├── watcher.go │ │ ├── watcheraction.go │ │ ├── watcheractions.go │ │ ├── watcheractiontotals.go │ │ ├── watchercondition.go │ │ ├── watcherinput.go │ │ ├── watchernodestats.go │ │ ├── watcherstatusactions.go │ │ ├── watcherwatch.go │ │ ├── watcherwatchtrigger.go │ │ ├── watcherwatchtriggerschedule.go │ │ ├── watchrecord.go │ │ ├── watchrecordqueuedstats.go │ │ ├── watchrecordstats.go │ │ ├── watchstatus.go │ │ ├── watsonxservicesettings.go │ │ ├── web.go │ │ ├── webhookaction.go │ │ ├── webhookresult.go │ │ ├── weightedaverageaggregation.go │ │ ├── weightedaveragevalue.go │ │ ├── weightedavgaggregate.go │ │ ├── weightedtokensquery.go │ │ ├── weights.go │ │ ├── whitespaceanalyzer.go │ │ ├── whitespacetokenizer.go │ │ ├── wildcardproperty.go │ │ ├── wildcardquery.go │ │ ├── wktgeobounds.go │ │ ├── worddelimitergraphtokenfilter.go │ │ ├── worddelimitertokenfilter.go │ │ ├── wrapperquery.go │ │ ├── writeresponsebase.go │ │ ├── writesummaryinfo.go │ │ ├── xlmrobertatokenizationconfig.go │ │ ├── xpackdatafeed.go │ │ ├── xpackfeature.go │ │ ├── xpackfeatures.go │ │ ├── xpackquery.go │ │ ├── xpackrealm.go │ │ ├── xpackrolemapping.go │ │ ├── xpackruntimefieldtypes.go │ │ ├── zeroshotclassificationinferenceoptions.go │ │ └── zeroshotclassificationinferenceupdateoptions.go │ │ ├── watcher │ │ ├── ackwatch │ │ │ ├── ack_watch.go │ │ │ └── response.go │ │ ├── activatewatch │ │ │ ├── activate_watch.go │ │ │ └── response.go │ │ ├── deactivatewatch │ │ │ ├── deactivate_watch.go │ │ │ └── response.go │ │ ├── deletewatch │ │ │ ├── delete_watch.go │ │ │ └── response.go │ │ ├── executewatch │ │ │ ├── execute_watch.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── getsettings │ │ │ ├── get_settings.go │ │ │ └── response.go │ │ ├── getwatch │ │ │ ├── get_watch.go │ │ │ └── response.go │ │ ├── putwatch │ │ │ ├── put_watch.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── querywatches │ │ │ ├── query_watches.go │ │ │ ├── request.go │ │ │ └── response.go │ │ ├── start │ │ │ ├── response.go │ │ │ └── start.go │ │ ├── stats │ │ │ ├── response.go │ │ │ └── stats.go │ │ ├── stop │ │ │ ├── response.go │ │ │ └── stop.go │ │ └── updatesettings │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── update_settings.go │ │ └── xpack │ │ ├── info │ │ ├── info.go │ │ └── response.go │ │ └── usage │ │ ├── response.go │ │ └── usage.go ├── felixge │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ └── slogsink.go │ └── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go ├── go-sql-driver │ └── mysql │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth.go │ │ ├── buffer.go │ │ ├── collations.go │ │ ├── compress.go │ │ ├── conncheck.go │ │ ├── conncheck_dummy.go │ │ ├── connection.go │ │ ├── connector.go │ │ ├── const.go │ │ ├── driver.go │ │ ├── dsn.go │ │ ├── errors.go │ │ ├── fields.go │ │ ├── infile.go │ │ ├── nulltime.go │ │ ├── packets.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── statement.go │ │ ├── transaction.go │ │ └── utils.go ├── golang │ └── snappy │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README │ │ ├── decode.go │ │ ├── decode_amd64.s │ │ ├── decode_arm64.s │ │ ├── decode_asm.go │ │ ├── decode_other.go │ │ ├── encode.go │ │ ├── encode_amd64.s │ │ ├── encode_arm64.s │ │ ├── encode_asm.go │ │ ├── encode_other.go │ │ └── snappy.go ├── google │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── compression.go │ │ ├── conn.go │ │ ├── doc.go │ │ ├── join.go │ │ ├── json.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── prepared.go │ │ ├── proxy.go │ │ ├── server.go │ │ ├── tls_handshake.go │ │ ├── tls_handshake_116.go │ │ ├── util.go │ │ └── x_net_proxy.go ├── grpc-ecosystem │ └── grpc-gateway │ │ └── v2 │ │ ├── LICENSE │ │ ├── internal │ │ └── httprule │ │ │ ├── BUILD.bazel │ │ │ ├── compile.go │ │ │ ├── fuzz.go │ │ │ ├── parse.go │ │ │ └── types.go │ │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── context.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fieldmask.go │ │ ├── handler.go │ │ ├── marshal_httpbodyproto.go │ │ ├── marshal_json.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_proto.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── mux.go │ │ ├── pattern.go │ │ ├── proto2_convert.go │ │ └── query.go │ │ └── utilities │ │ ├── BUILD.bazel │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ ├── string_array_flag.go │ │ └── trie.go ├── hashicorp │ ├── go-uuid │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── uuid.go │ └── golang-lru │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── 2q.go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── internal │ │ └── list.go │ │ ├── lru.go │ │ └── simplelru │ │ ├── LICENSE_list │ │ ├── lru.go │ │ └── lru_interface.go ├── jcmturner │ ├── aescts │ │ └── v2 │ │ │ ├── LICENSE │ │ │ └── aescts.go │ ├── dnsutils │ │ └── v2 │ │ │ ├── LICENSE │ │ │ └── srv.go │ ├── gofork │ │ ├── LICENSE │ │ ├── encoding │ │ │ └── asn1 │ │ │ │ ├── README.md │ │ │ │ ├── asn1.go │ │ │ │ ├── common.go │ │ │ │ └── marshal.go │ │ └── x │ │ │ └── crypto │ │ │ └── pbkdf2 │ │ │ └── pbkdf2.go │ ├── gokrb5 │ │ └── v8 │ │ │ ├── LICENSE │ │ │ ├── asn1tools │ │ │ └── tools.go │ │ │ ├── client │ │ │ ├── ASExchange.go │ │ │ ├── TGSExchange.go │ │ │ ├── cache.go │ │ │ ├── client.go │ │ │ ├── network.go │ │ │ ├── passwd.go │ │ │ ├── session.go │ │ │ └── settings.go │ │ │ ├── config │ │ │ ├── error.go │ │ │ ├── hosts.go │ │ │ └── krb5conf.go │ │ │ ├── credentials │ │ │ ├── ccache.go │ │ │ └── credentials.go │ │ │ ├── crypto │ │ │ ├── aes128-cts-hmac-sha1-96.go │ │ │ ├── aes128-cts-hmac-sha256-128.go │ │ │ ├── aes256-cts-hmac-sha1-96.go │ │ │ ├── aes256-cts-hmac-sha384-192.go │ │ │ ├── common │ │ │ │ └── common.go │ │ │ ├── crypto.go │ │ │ ├── des3-cbc-sha1-kd.go │ │ │ ├── etype │ │ │ │ └── etype.go │ │ │ ├── rc4-hmac.go │ │ │ ├── rfc3961 │ │ │ │ ├── encryption.go │ │ │ │ ├── keyDerivation.go │ │ │ │ └── nfold.go │ │ │ ├── rfc3962 │ │ │ │ ├── encryption.go │ │ │ │ └── keyDerivation.go │ │ │ ├── rfc4757 │ │ │ │ ├── checksum.go │ │ │ │ ├── encryption.go │ │ │ │ ├── keyDerivation.go │ │ │ │ └── msgtype.go │ │ │ └── rfc8009 │ │ │ │ ├── encryption.go │ │ │ │ └── keyDerivation.go │ │ │ ├── gssapi │ │ │ ├── MICToken.go │ │ │ ├── README.md │ │ │ ├── contextFlags.go │ │ │ ├── gssapi.go │ │ │ └── wrapToken.go │ │ │ ├── iana │ │ │ ├── addrtype │ │ │ │ └── constants.go │ │ │ ├── adtype │ │ │ │ └── constants.go │ │ │ ├── asnAppTag │ │ │ │ └── constants.go │ │ │ ├── chksumtype │ │ │ │ └── constants.go │ │ │ ├── constants.go │ │ │ ├── errorcode │ │ │ │ └── constants.go │ │ │ ├── etypeID │ │ │ │ └── constants.go │ │ │ ├── flags │ │ │ │ └── constants.go │ │ │ ├── keyusage │ │ │ │ └── constants.go │ │ │ ├── msgtype │ │ │ │ └── constants.go │ │ │ ├── nametype │ │ │ │ └── constants.go │ │ │ └── patype │ │ │ │ └── constants.go │ │ │ ├── kadmin │ │ │ ├── changepasswddata.go │ │ │ ├── message.go │ │ │ └── passwd.go │ │ │ ├── keytab │ │ │ └── keytab.go │ │ │ ├── krberror │ │ │ └── error.go │ │ │ ├── messages │ │ │ ├── APRep.go │ │ │ ├── APReq.go │ │ │ ├── KDCRep.go │ │ │ ├── KDCReq.go │ │ │ ├── KRBCred.go │ │ │ ├── KRBError.go │ │ │ ├── KRBPriv.go │ │ │ ├── KRBSafe.go │ │ │ └── Ticket.go │ │ │ ├── pac │ │ │ ├── client_claims.go │ │ │ ├── client_info.go │ │ │ ├── credentials_info.go │ │ │ ├── device_claims.go │ │ │ ├── device_info.go │ │ │ ├── kerb_validation_info.go │ │ │ ├── pac_type.go │ │ │ ├── s4u_delegation_info.go │ │ │ ├── signature_data.go │ │ │ ├── supplemental_cred.go │ │ │ └── upn_dns_info.go │ │ │ └── types │ │ │ ├── Authenticator.go │ │ │ ├── AuthorizationData.go │ │ │ ├── Cryptosystem.go │ │ │ ├── HostAddress.go │ │ │ ├── KerberosFlags.go │ │ │ ├── PAData.go │ │ │ ├── PrincipalName.go │ │ │ └── TypedData.go │ └── rpc │ │ └── v2 │ │ ├── LICENSE │ │ ├── mstypes │ │ ├── claims.go │ │ ├── common.go │ │ ├── filetime.go │ │ ├── group_membership.go │ │ ├── kerb_sid_and_attributes.go │ │ ├── reader.go │ │ ├── rpc_unicode_string.go │ │ ├── sid.go │ │ └── user_session_key.go │ │ └── ndr │ │ ├── arrays.go │ │ ├── decoder.go │ │ ├── error.go │ │ ├── header.go │ │ ├── pipe.go │ │ ├── primitives.go │ │ ├── rawbytes.go │ │ ├── strings.go │ │ ├── tags.go │ │ └── union.go ├── klauspost │ └── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── flate │ │ ├── deflate.go │ │ ├── dict_decoder.go │ │ ├── fast_encoder.go │ │ ├── huffman_bit_writer.go │ │ ├── huffman_code.go │ │ ├── huffman_sortByFreq.go │ │ ├── huffman_sortByLiteral.go │ │ ├── inflate.go │ │ ├── inflate_gen.go │ │ ├── level1.go │ │ ├── level2.go │ │ ├── level3.go │ │ ├── level4.go │ │ ├── level5.go │ │ ├── level6.go │ │ ├── matchlen_generic.go │ │ ├── regmask_amd64.go │ │ ├── regmask_other.go │ │ ├── stateless.go │ │ └── token.go │ │ ├── fse │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── fse.go │ │ ├── gen.sh │ │ ├── gzip │ │ ├── gunzip.go │ │ └── gzip.go │ │ ├── huff0 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── compress.go │ │ ├── decompress.go │ │ ├── decompress_amd64.go │ │ ├── decompress_amd64.s │ │ ├── decompress_generic.go │ │ └── huff0.go │ │ ├── internal │ │ ├── cpuinfo │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_amd64.go │ │ │ └── cpuinfo_amd64.s │ │ ├── le │ │ │ ├── le.go │ │ │ ├── unsafe_disabled.go │ │ │ └── unsafe_enabled.go │ │ └── snapref │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── blockdec.go │ │ ├── blockenc.go │ │ ├── blocktype_string.go │ │ ├── bytebuf.go │ │ ├── bytereader.go │ │ ├── decodeheader.go │ │ ├── decoder.go │ │ ├── decoder_options.go │ │ ├── dict.go │ │ ├── enc_base.go │ │ ├── enc_best.go │ │ ├── enc_better.go │ │ ├── enc_dfast.go │ │ ├── enc_fast.go │ │ ├── encoder.go │ │ ├── encoder_options.go │ │ ├── framedec.go │ │ ├── frameenc.go │ │ ├── fse_decoder.go │ │ ├── fse_decoder_amd64.go │ │ ├── fse_decoder_amd64.s │ │ ├── fse_decoder_generic.go │ │ ├── fse_encoder.go │ │ ├── fse_predefined.go │ │ ├── hash.go │ │ ├── history.go │ │ ├── internal │ │ └── xxhash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ └── xxhash_safe.go │ │ ├── matchlen_amd64.go │ │ ├── matchlen_amd64.s │ │ ├── matchlen_generic.go │ │ ├── seqdec.go │ │ ├── seqdec_amd64.go │ │ ├── seqdec_amd64.s │ │ ├── seqdec_generic.go │ │ ├── seqenc.go │ │ ├── simple_go124.go │ │ ├── snappy.go │ │ ├── zip.go │ │ └── zstd.go ├── montanaflynn │ └── stats │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── DOCUMENTATION.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── correlation.go │ │ ├── cumulative_sum.go │ │ ├── data.go │ │ ├── describe.go │ │ ├── deviation.go │ │ ├── distances.go │ │ ├── doc.go │ │ ├── entropy.go │ │ ├── errors.go │ │ ├── geometric_distribution.go │ │ ├── legacy.go │ │ ├── load.go │ │ ├── max.go │ │ ├── mean.go │ │ ├── median.go │ │ ├── min.go │ │ ├── mode.go │ │ ├── norm.go │ │ ├── outlier.go │ │ ├── percentile.go │ │ ├── quartile.go │ │ ├── ranksum.go │ │ ├── regression.go │ │ ├── round.go │ │ ├── sample.go │ │ ├── sigmoid.go │ │ ├── softmax.go │ │ ├── sum.go │ │ ├── util.go │ │ └── variance.go ├── pierrec │ └── lz4 │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compressing_reader.go │ │ ├── internal │ │ ├── lz4block │ │ │ ├── block.go │ │ │ ├── blocks.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_arm.s │ │ │ ├── decode_arm64.s │ │ │ ├── decode_asm.go │ │ │ └── decode_other.go │ │ ├── lz4errors │ │ │ └── errors.go │ │ ├── lz4stream │ │ │ ├── block.go │ │ │ ├── frame.go │ │ │ └── frame_gen.go │ │ └── xxh32 │ │ │ ├── xxh32zero.go │ │ │ ├── xxh32zero_arm.go │ │ │ ├── xxh32zero_arm.s │ │ │ └── xxh32zero_other.go │ │ ├── lz4.go │ │ ├── options.go │ │ ├── options_gen.go │ │ ├── reader.go │ │ ├── state.go │ │ ├── state_gen.go │ │ └── writer.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── rabbitmq │ └── amqp091-go │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── allocator.go │ │ ├── auth.go │ │ ├── certs.sh │ │ ├── change_version.sh │ │ ├── channel.go │ │ ├── confirms.go │ │ ├── connection.go │ │ ├── consumers.go │ │ ├── delivery.go │ │ ├── doc.go │ │ ├── fuzz.go │ │ ├── gen.ps1 │ │ ├── gen.sh │ │ ├── log.go │ │ ├── read.go │ │ ├── return.go │ │ ├── spec091.go │ │ ├── types.go │ │ ├── uri.go │ │ └── write.go ├── rcrowley │ └── go-metrics │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── counter.go │ │ ├── debug.go │ │ ├── ewma.go │ │ ├── gauge.go │ │ ├── gauge_float64.go │ │ ├── graphite.go │ │ ├── healthcheck.go │ │ ├── histogram.go │ │ ├── json.go │ │ ├── log.go │ │ ├── memory.md │ │ ├── meter.go │ │ ├── metrics.go │ │ ├── opentsdb.go │ │ ├── registry.go │ │ ├── runtime.go │ │ ├── runtime_cgo.go │ │ ├── runtime_gccpufraction.go │ │ ├── runtime_no_cgo.go │ │ ├── runtime_no_gccpufraction.go │ │ ├── sample.go │ │ ├── syslog.go │ │ ├── timer.go │ │ ├── validate.sh │ │ └── writer.go ├── redis │ └── go-redis │ │ ├── extra │ │ ├── rediscmd │ │ │ └── v9 │ │ │ │ ├── LICENSE │ │ │ │ ├── rediscmd.go │ │ │ │ ├── safe.go │ │ │ │ └── unsafe.go │ │ └── redisotel │ │ │ └── v9 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── metrics.go │ │ │ └── tracing.go │ │ └── v9 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .prettierrc.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASE-NOTES.md │ │ ├── RELEASING.md │ │ ├── acl_commands.go │ │ ├── adapters.go │ │ ├── auth │ │ ├── auth.go │ │ └── reauth_credentials_listener.go │ │ ├── bitmap_commands.go │ │ ├── cluster_commands.go │ │ ├── command.go │ │ ├── commands.go │ │ ├── doc.go │ │ ├── docker-compose.yml │ │ ├── error.go │ │ ├── generic_commands.go │ │ ├── geo_commands.go │ │ ├── hash_commands.go │ │ ├── hyperloglog_commands.go │ │ ├── internal │ │ ├── arg.go │ │ ├── auth │ │ │ └── streaming │ │ │ │ ├── conn_reauth_credentials_listener.go │ │ │ │ ├── cred_listeners.go │ │ │ │ ├── manager.go │ │ │ │ └── pool_hook.go │ │ ├── hashtag │ │ │ └── hashtag.go │ │ ├── hscan │ │ │ ├── hscan.go │ │ │ └── structmap.go │ │ ├── interfaces │ │ │ └── interfaces.go │ │ ├── internal.go │ │ ├── log.go │ │ ├── maintnotifications │ │ │ └── logs │ │ │ │ └── log_messages.go │ │ ├── once.go │ │ ├── pool │ │ │ ├── conn.go │ │ │ ├── conn_check.go │ │ │ ├── conn_check_dummy.go │ │ │ ├── conn_state.go │ │ │ ├── hooks.go │ │ │ ├── pool.go │ │ │ ├── pool_single.go │ │ │ ├── pool_sticky.go │ │ │ ├── pubsub.go │ │ │ └── want_conn.go │ │ ├── proto │ │ │ ├── reader.go │ │ │ ├── redis_errors.go │ │ │ ├── scan.go │ │ │ └── writer.go │ │ ├── rand │ │ │ └── rand.go │ │ ├── redis.go │ │ ├── semaphore.go │ │ ├── util.go │ │ └── util │ │ │ ├── convert.go │ │ │ ├── math.go │ │ │ ├── safe.go │ │ │ ├── strconv.go │ │ │ ├── type.go │ │ │ └── unsafe.go │ │ ├── iterator.go │ │ ├── json.go │ │ ├── list_commands.go │ │ ├── maintnotifications │ │ ├── FEATURES.md │ │ ├── README.md │ │ ├── circuit_breaker.go │ │ ├── config.go │ │ ├── errors.go │ │ ├── example_hooks.go │ │ ├── handoff_worker.go │ │ ├── hooks.go │ │ ├── manager.go │ │ ├── pool_hook.go │ │ ├── push_notification_handler.go │ │ └── state.go │ │ ├── options.go │ │ ├── osscluster.go │ │ ├── osscluster_commands.go │ │ ├── pipeline.go │ │ ├── probabilistic.go │ │ ├── pubsub.go │ │ ├── pubsub_commands.go │ │ ├── push │ │ ├── errors.go │ │ ├── handler.go │ │ ├── handler_context.go │ │ ├── processor.go │ │ ├── push.go │ │ └── registry.go │ │ ├── push_notifications.go │ │ ├── redis.go │ │ ├── result.go │ │ ├── ring.go │ │ ├── script.go │ │ ├── scripting_commands.go │ │ ├── search_builders.go │ │ ├── search_commands.go │ │ ├── sentinel.go │ │ ├── set_commands.go │ │ ├── sortedset_commands.go │ │ ├── stream_commands.go │ │ ├── string_commands.go │ │ ├── timeseries_commands.go │ │ ├── tx.go │ │ ├── universal.go │ │ ├── vectorset_commands.go │ │ └── version.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── xdg-go │ ├── pbkdf2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── pbkdf2.go │ ├── scram │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_conv.go │ │ ├── common.go │ │ ├── doc.go │ │ ├── parse.go │ │ ├── scram.go │ │ ├── server.go │ │ └── server_conv.go │ └── stringprep │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bidi.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── map.go │ │ ├── profile.go │ │ ├── saslprep.go │ │ ├── set.go │ │ └── tables.go └── youmark │ └── pkcs8 │ ├── .gitignore │ ├── LICENSE │ ├── README │ ├── README.md │ ├── cipher.go │ ├── cipher_3des.go │ ├── cipher_aes.go │ ├── kdf_pbkdf2.go │ ├── kdf_scrypt.go │ └── pkcs8.go ├── go.mongodb.org └── mongo-driver │ ├── LICENSE │ ├── bson │ ├── bson.go │ ├── bsoncodec │ │ ├── array_codec.go │ │ ├── bsoncodec.go │ │ ├── byte_slice_codec.go │ │ ├── codec_cache.go │ │ ├── cond_addr_codec.go │ │ ├── default_value_decoders.go │ │ ├── default_value_encoders.go │ │ ├── doc.go │ │ ├── empty_interface_codec.go │ │ ├── map_codec.go │ │ ├── mode.go │ │ ├── pointer_codec.go │ │ ├── proxy.go │ │ ├── registry.go │ │ ├── slice_codec.go │ │ ├── string_codec.go │ │ ├── struct_codec.go │ │ ├── struct_tag_parser.go │ │ ├── time_codec.go │ │ ├── types.go │ │ └── uint_codec.go │ ├── bsonoptions │ │ ├── byte_slice_codec_options.go │ │ ├── doc.go │ │ ├── empty_interface_codec_options.go │ │ ├── map_codec_options.go │ │ ├── slice_codec_options.go │ │ ├── string_codec_options.go │ │ ├── struct_codec_options.go │ │ ├── time_codec_options.go │ │ └── uint_codec_options.go │ ├── bsonrw │ │ ├── copier.go │ │ ├── doc.go │ │ ├── extjson_parser.go │ │ ├── extjson_reader.go │ │ ├── extjson_tables.go │ │ ├── extjson_wrappers.go │ │ ├── extjson_writer.go │ │ ├── json_scanner.go │ │ ├── mode.go │ │ ├── reader.go │ │ ├── value_reader.go │ │ ├── value_writer.go │ │ └── writer.go │ ├── bsontype │ │ └── bsontype.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── marshal.go │ ├── primitive │ │ ├── decimal.go │ │ ├── objectid.go │ │ └── primitive.go │ ├── primitive_codecs.go │ ├── raw.go │ ├── raw_element.go │ ├── raw_value.go │ ├── registry.go │ ├── types.go │ └── unmarshal.go │ ├── event │ ├── doc.go │ └── monitoring.go │ ├── internal │ ├── aws │ │ ├── awserr │ │ │ ├── error.go │ │ │ └── types.go │ │ ├── credentials │ │ │ ├── chain_provider.go │ │ │ └── credentials.go │ │ ├── signer │ │ │ └── v4 │ │ │ │ ├── header_rules.go │ │ │ │ ├── request.go │ │ │ │ ├── uri_path.go │ │ │ │ └── v4.go │ │ └── types.go │ ├── bsonutil │ │ └── bsonutil.go │ ├── codecutil │ │ └── encoding.go │ ├── credproviders │ │ ├── assume_role_provider.go │ │ ├── ec2_provider.go │ │ ├── ecs_provider.go │ │ ├── env_provider.go │ │ ├── imds_provider.go │ │ └── static_provider.go │ ├── csfle │ │ └── csfle.go │ ├── csot │ │ └── csot.go │ ├── driverutil │ │ ├── hello.go │ │ └── operation.go │ ├── handshake │ │ └── handshake.go │ ├── httputil │ │ └── httputil.go │ ├── logger │ │ ├── component.go │ │ ├── context.go │ │ ├── io_sink.go │ │ ├── level.go │ │ └── logger.go │ ├── ptrutil │ │ └── int64.go │ ├── rand │ │ ├── bits.go │ │ ├── exp.go │ │ ├── normal.go │ │ ├── rand.go │ │ └── rng.go │ ├── randutil │ │ └── randutil.go │ └── uuid │ │ └── uuid.go │ ├── mongo │ ├── address │ │ └── addr.go │ ├── background_context.go │ ├── batch_cursor.go │ ├── bulk_write.go │ ├── bulk_write_models.go │ ├── change_stream.go │ ├── change_stream_deployment.go │ ├── client.go │ ├── client_encryption.go │ ├── collection.go │ ├── crypt_retrievers.go │ ├── cursor.go │ ├── database.go │ ├── description │ │ ├── description.go │ │ ├── server.go │ │ ├── server_kind.go │ │ ├── server_selector.go │ │ ├── topology.go │ │ ├── topology_kind.go │ │ ├── topology_version.go │ │ └── version_range.go │ ├── doc.go │ ├── errors.go │ ├── index_options_builder.go │ ├── index_view.go │ ├── mongo.go │ ├── mongocryptd.go │ ├── mongointernal.go │ ├── options │ │ ├── aggregateoptions.go │ │ ├── autoencryptionoptions.go │ │ ├── bulkwriteoptions.go │ │ ├── changestreamoptions.go │ │ ├── clientencryptionoptions.go │ │ ├── clientoptions.go │ │ ├── collectionoptions.go │ │ ├── countoptions.go │ │ ├── createcollectionoptions.go │ │ ├── datakeyoptions.go │ │ ├── dboptions.go │ │ ├── deleteoptions.go │ │ ├── distinctoptions.go │ │ ├── doc.go │ │ ├── encryptoptions.go │ │ ├── estimatedcountoptions.go │ │ ├── findoptions.go │ │ ├── gridfsoptions.go │ │ ├── indexoptions.go │ │ ├── insertoptions.go │ │ ├── listcollectionsoptions.go │ │ ├── listdatabasesoptions.go │ │ ├── loggeroptions.go │ │ ├── mongooptions.go │ │ ├── replaceoptions.go │ │ ├── rewrapdatakeyoptions.go │ │ ├── runcmdoptions.go │ │ ├── searchindexoptions.go │ │ ├── serverapioptions.go │ │ ├── sessionoptions.go │ │ ├── transactionoptions.go │ │ └── updateoptions.go │ ├── readconcern │ │ └── readconcern.go │ ├── readpref │ │ ├── mode.go │ │ ├── options.go │ │ └── readpref.go │ ├── results.go │ ├── search_index_view.go │ ├── session.go │ ├── single_result.go │ ├── util.go │ └── writeconcern │ │ └── writeconcern.go │ ├── tag │ └── tag.go │ ├── version │ └── version.go │ └── x │ ├── bsonx │ └── bsoncore │ │ ├── array.go │ │ ├── bson_arraybuilder.go │ │ ├── bson_documentbuilder.go │ │ ├── bsoncore.go │ │ ├── doc.go │ │ ├── document.go │ │ ├── document_sequence.go │ │ ├── element.go │ │ ├── tables.go │ │ └── value.go │ └── mongo │ └── driver │ ├── auth │ ├── auth.go │ ├── aws_conv.go │ ├── conversation.go │ ├── cred.go │ ├── creds │ │ ├── awscreds.go │ │ ├── azurecreds.go │ │ ├── doc.go │ │ └── gcpcreds.go │ ├── default.go │ ├── doc.go │ ├── gssapi.go │ ├── gssapi_not_enabled.go │ ├── gssapi_not_supported.go │ ├── internal │ │ └── gssapi │ │ │ ├── gss.go │ │ │ ├── gss_wrapper.c │ │ │ ├── gss_wrapper.h │ │ │ ├── sspi.go │ │ │ ├── sspi_wrapper.c │ │ │ └── sspi_wrapper.h │ ├── mongodbaws.go │ ├── mongodbcr.go │ ├── oidc.go │ ├── plain.go │ ├── sasl.go │ ├── scram.go │ ├── util.go │ └── x509.go │ ├── batch_cursor.go │ ├── batches.go │ ├── compression.go │ ├── connstring │ └── connstring.go │ ├── crypt.go │ ├── dns │ └── dns.go │ ├── driver.go │ ├── errors.go │ ├── legacy.go │ ├── mongocrypt │ ├── binary.go │ ├── errors.go │ ├── errors_not_enabled.go │ ├── mongocrypt.go │ ├── mongocrypt_context.go │ ├── mongocrypt_context_not_enabled.go │ ├── mongocrypt_kms_context.go │ ├── mongocrypt_kms_context_not_enabled.go │ ├── mongocrypt_not_enabled.go │ ├── options │ │ ├── doc.go │ │ ├── mongocrypt_context_options.go │ │ └── mongocrypt_options.go │ └── state.go │ ├── ocsp │ ├── cache.go │ ├── config.go │ ├── ocsp.go │ └── options.go │ ├── operation.go │ ├── operation │ ├── abort_transaction.go │ ├── aggregate.go │ ├── command.go │ ├── commit_transaction.go │ ├── count.go │ ├── create.go │ ├── create_indexes.go │ ├── create_search_indexes.go │ ├── delete.go │ ├── distinct.go │ ├── doc.go │ ├── drop_collection.go │ ├── drop_database.go │ ├── drop_indexes.go │ ├── drop_search_index.go │ ├── end_sessions.go │ ├── errors.go │ ├── find.go │ ├── find_and_modify.go │ ├── hello.go │ ├── insert.go │ ├── listDatabases.go │ ├── list_collections.go │ ├── list_indexes.go │ ├── update.go │ └── update_search_index.go │ ├── operation_exhaust.go │ ├── serverapioptions.go │ ├── session │ ├── client_session.go │ ├── cluster_clock.go │ ├── doc.go │ ├── options.go │ ├── server_session.go │ └── session_pool.go │ ├── topology │ ├── DESIGN.md │ ├── cancellation_listener.go │ ├── connection.go │ ├── connection_legacy.go │ ├── connection_options.go │ ├── diff.go │ ├── errors.go │ ├── fsm.go │ ├── pool.go │ ├── pool_generation_counter.go │ ├── rtt_monitor.go │ ├── server.go │ ├── server_options.go │ ├── tls_connection_source_1_16.go │ ├── tls_connection_source_1_17.go │ ├── topology.go │ └── topology_options.go │ └── wiremessage │ └── wiremessage.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── contrib │ └── instrumentation │ │ ├── github.com │ │ └── aws │ │ │ └── aws-sdk-go-v2 │ │ │ └── otelaws │ │ │ ├── LICENSE │ │ │ ├── attributes.go │ │ │ ├── aws.go │ │ │ ├── config.go │ │ │ ├── dynamodbattributes.go │ │ │ ├── snsattributes.go │ │ │ ├── sqsattributes.go │ │ │ └── version.go │ │ ├── go.mongodb.org │ │ └── mongo-driver │ │ │ └── mongo │ │ │ └── otelmongo │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ └── semconv │ │ │ │ └── event_monitor.go │ │ │ ├── mongo.go │ │ │ └── version.go │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ ├── gen.go │ │ │ └── resp_writer_wrapper.go │ │ └── semconv │ │ │ ├── env.go │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── util.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go ├── otel │ ├── .clomonitor.yml │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY-INSIGHTS.yml │ ├── VERSIONING.md │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── internal │ │ │ └── attribute.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── rawhelpers.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── exporters │ │ └── otlp │ │ │ ├── otlpmetric │ │ │ └── otlpmetricgrpc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal │ │ │ │ ├── envconfig │ │ │ │ │ └── envconfig.go │ │ │ │ ├── gen.go │ │ │ │ ├── oconf │ │ │ │ │ ├── envconfig.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ └── tls.go │ │ │ │ ├── partialsuccess.go │ │ │ │ ├── retry │ │ │ │ │ └── retry.go │ │ │ │ └── transform │ │ │ │ │ ├── attribute.go │ │ │ │ │ ├── error.go │ │ │ │ │ └── metricdata.go │ │ │ │ └── version.go │ │ │ └── otlptrace │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── clients.go │ │ │ ├── doc.go │ │ │ ├── exporter.go │ │ │ ├── internal │ │ │ └── tracetransform │ │ │ │ ├── attribute.go │ │ │ │ ├── instrumentation.go │ │ │ │ ├── resource.go │ │ │ │ └── span.go │ │ │ ├── otlptracegrpc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── exporter.go │ │ │ ├── internal │ │ │ │ ├── envconfig │ │ │ │ │ └── envconfig.go │ │ │ │ ├── gen.go │ │ │ │ ├── otlpconfig │ │ │ │ │ ├── envconfig.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ └── tls.go │ │ │ │ ├── partialsuccess.go │ │ │ │ └── retry │ │ │ │ │ └── retry.go │ │ │ └── options.go │ │ │ └── version.go │ ├── handler.go │ ├── internal │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ └── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ ├── internal_logging.go │ ├── metric.go │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ ├── renovate.json │ ├── requirements.txt │ ├── sdk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── instrumentation │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── library.go │ │ │ └── scope.go │ │ ├── internal │ │ │ ├── env │ │ │ │ └── env.go │ │ │ └── x │ │ │ │ ├── README.md │ │ │ │ └── x.go │ │ ├── metric │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aggregation.go │ │ │ ├── cache.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── exemplar.go │ │ │ ├── exemplar │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── exemplar.go │ │ │ │ ├── filter.go │ │ │ │ ├── fixed_size_reservoir.go │ │ │ │ ├── histogram_reservoir.go │ │ │ │ ├── reservoir.go │ │ │ │ ├── storage.go │ │ │ │ └── value.go │ │ │ ├── exporter.go │ │ │ ├── instrument.go │ │ │ ├── instrumentkind_string.go │ │ │ ├── internal │ │ │ │ ├── aggregate │ │ │ │ │ ├── aggregate.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── drop.go │ │ │ │ │ ├── exemplar.go │ │ │ │ │ ├── exponential_histogram.go │ │ │ │ │ ├── filtered_reservoir.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── lastvalue.go │ │ │ │ │ ├── limit.go │ │ │ │ │ └── sum.go │ │ │ │ ├── reuse_slice.go │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ ├── manual_reader.go │ │ │ ├── meter.go │ │ │ ├── metricdata │ │ │ │ ├── README.md │ │ │ │ ├── data.go │ │ │ │ ├── temporality.go │ │ │ │ └── temporality_string.go │ │ │ ├── periodic_reader.go │ │ │ ├── pipeline.go │ │ │ ├── provider.go │ │ │ ├── reader.go │ │ │ ├── version.go │ │ │ └── view.go │ │ ├── resource │ │ │ ├── README.md │ │ │ ├── auto.go │ │ │ ├── builtin.go │ │ │ ├── config.go │ │ │ ├── container.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── host_id.go │ │ │ ├── host_id_bsd.go │ │ │ ├── host_id_darwin.go │ │ │ ├── host_id_exec.go │ │ │ ├── host_id_linux.go │ │ │ ├── host_id_readfile.go │ │ │ ├── host_id_unsupported.go │ │ │ ├── host_id_windows.go │ │ │ ├── os.go │ │ │ ├── os_release_darwin.go │ │ │ ├── os_release_unix.go │ │ │ ├── os_unix.go │ │ │ ├── os_unsupported.go │ │ │ ├── os_windows.go │ │ │ ├── process.go │ │ │ └── resource.go │ │ ├── trace │ │ │ ├── README.md │ │ │ ├── batch_span_processor.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── evictedqueue.go │ │ │ ├── id_generator.go │ │ │ ├── internal │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ ├── link.go │ │ │ ├── provider.go │ │ │ ├── sampler_env.go │ │ │ ├── sampling.go │ │ │ ├── simple_span_processor.go │ │ │ ├── snapshot.go │ │ │ ├── span.go │ │ │ ├── span_exporter.go │ │ │ ├── span_limits.go │ │ │ ├── span_processor.go │ │ │ ├── tracer.go │ │ │ └── tracetest │ │ │ │ ├── README.md │ │ │ │ ├── exporter.go │ │ │ │ ├── recorder.go │ │ │ │ └── span.go │ │ └── version.go │ ├── semconv │ │ ├── v1.21.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.24.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ └── v1.37.0 │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── error_type.go │ │ │ ├── exception.go │ │ │ ├── httpconv │ │ │ └── metric.go │ │ │ ├── otelconv │ │ │ └── metric.go │ │ │ ├── rpcconv │ │ │ └── metric.go │ │ │ └── schema.go │ ├── trace.go │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── hex.go │ │ ├── internal │ │ │ └── telemetry │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml └── proto │ └── otlp │ ├── LICENSE │ ├── collector │ ├── metrics │ │ └── v1 │ │ │ ├── metrics_service.pb.go │ │ │ ├── metrics_service.pb.gw.go │ │ │ └── metrics_service_grpc.pb.go │ └── trace │ │ └── v1 │ │ ├── trace_service.pb.go │ │ ├── trace_service.pb.gw.go │ │ └── trace_service_grpc.pb.go │ ├── common │ └── v1 │ │ └── common.pb.go │ ├── metrics │ └── v1 │ │ └── metrics.pb.go │ ├── resource │ └── v1 │ │ └── resource.pb.go │ └── trace │ └── v1 │ └── trace.pb.go ├── go.uber.org └── goleak │ ├── .gitignore │ ├── .golangci.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── doc.go │ ├── internal │ └── stack │ │ ├── doc.go │ │ ├── scan.go │ │ └── stacks.go │ ├── leaks.go │ ├── options.go │ ├── testmain.go │ └── tracestack_new.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── md4 │ │ ├── md4.go │ │ └── md4block.go │ ├── ocsp │ │ └── ocsp.go │ ├── pbkdf2 │ │ └── pbkdf2.go │ └── scrypt │ │ └── scrypt.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ └── singleflight │ │ └── singleflight.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ └── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ ├── rate.go │ └── sometimes.go ├── google.golang.org ├── genproto │ └── googleapis │ │ ├── api │ │ ├── LICENSE │ │ └── httpbody │ │ │ └── httpbody.pb.go │ │ └── rpc │ │ ├── LICENSE │ │ ├── errdetails │ │ └── error_details.pb.go │ │ └── status │ │ └── status.pb.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── endpointsharding │ │ │ └── endpointsharding.go │ │ ├── grpclb │ │ │ └── state │ │ │ │ └── state.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ └── subconn.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── credentials.go │ │ ├── insecure │ │ │ └── insecure.go │ │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ ├── gzip │ │ │ └── gzip.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── health │ │ ├── client.go │ │ ├── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health_grpc.pb.go │ │ ├── logging.go │ │ ├── producer.go │ │ └── server.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── channel.go │ │ │ ├── channelmap.go │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── server.go │ │ │ ├── socket.go │ │ │ ├── subchannel.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_nonlinux.go │ │ │ └── trace.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── syscallconn.go │ │ │ └── util.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── labels.go │ │ │ └── metrics_recorder_list.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ └── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── reflection │ │ ├── README.md │ │ ├── adapt.go │ │ ├── grpc_reflection_v1 │ │ │ ├── reflection.pb.go │ │ │ └── reflection_grpc.pb.go │ │ ├── grpc_reflection_v1alpha │ │ │ ├── reflection.pb.go │ │ │ └── reflection_grpc.pb.go │ │ ├── internal │ │ │ └── internal.go │ │ └── serverreflection.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ ├── placeholder.go │ │ └── presence.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── gofeaturespb │ └── go_features.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ ├── structpb │ └── struct.pb.go │ ├── timestamppb │ └── timestamp.pb.go │ └── wrapperspb │ └── wrappers.pb.go ├── gopkg.in └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── modules.txt /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/.golangci.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/AGENTS.md -------------------------------------------------------------------------------- /BREAKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/BREAKING.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/_config.yml -------------------------------------------------------------------------------- /cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/cache/cache.go -------------------------------------------------------------------------------- /cache/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/cache/lru/lru.go -------------------------------------------------------------------------------- /cache/lru/lru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/cache/lru/lru_test.go -------------------------------------------------------------------------------- /cache/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/cache/metric.go -------------------------------------------------------------------------------- /cache/metric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/cache/metric_test.go -------------------------------------------------------------------------------- /cache/redis/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/cache/redis/integration_test.go -------------------------------------------------------------------------------- /cache/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/cache/redis/redis.go -------------------------------------------------------------------------------- /client/amqp/amqp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/amqp/amqp.go -------------------------------------------------------------------------------- /client/amqp/amqp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/amqp/amqp_test.go -------------------------------------------------------------------------------- /client/amqp/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/amqp/integration_test.go -------------------------------------------------------------------------------- /client/amqp/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/amqp/option.go -------------------------------------------------------------------------------- /client/amqp/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/amqp/option_test.go -------------------------------------------------------------------------------- /client/es/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/es/benchmark_test.go -------------------------------------------------------------------------------- /client/es/elasticsearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/es/elasticsearch.go -------------------------------------------------------------------------------- /client/es/elasticsearch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/es/elasticsearch_test.go -------------------------------------------------------------------------------- /client/es/instrumentation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/es/instrumentation.go -------------------------------------------------------------------------------- /client/es/instrumentation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/es/instrumentation_test.go -------------------------------------------------------------------------------- /client/grpc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/grpc/grpc.go -------------------------------------------------------------------------------- /client/grpc/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/grpc/grpc_test.go -------------------------------------------------------------------------------- /client/grpc/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/grpc/integration_test.go -------------------------------------------------------------------------------- /client/http/encoding/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/http/encoding/json/json.go -------------------------------------------------------------------------------- /client/http/encoding/json/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/http/encoding/json/json_test.go -------------------------------------------------------------------------------- /client/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/http/http.go -------------------------------------------------------------------------------- /client/http/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/http/http_test.go -------------------------------------------------------------------------------- /client/http/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/http/option.go -------------------------------------------------------------------------------- /client/http/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/http/option_test.go -------------------------------------------------------------------------------- /client/kafka/async_producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/kafka/async_producer.go -------------------------------------------------------------------------------- /client/kafka/async_producer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/kafka/async_producer_test.go -------------------------------------------------------------------------------- /client/kafka/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/kafka/integration_test.go -------------------------------------------------------------------------------- /client/kafka/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/kafka/kafka.go -------------------------------------------------------------------------------- /client/kafka/kafka_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/kafka/kafka_test.go -------------------------------------------------------------------------------- /client/kafka/sync_producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/kafka/sync_producer.go -------------------------------------------------------------------------------- /client/kafka/sync_producer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/kafka/sync_producer_test.go -------------------------------------------------------------------------------- /client/mongo/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mongo/integration_test.go -------------------------------------------------------------------------------- /client/mongo/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mongo/metric.go -------------------------------------------------------------------------------- /client/mongo/metric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mongo/metric_test.go -------------------------------------------------------------------------------- /client/mongo/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mongo/mongo.go -------------------------------------------------------------------------------- /client/mongo/mongo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mongo/mongo_test.go -------------------------------------------------------------------------------- /client/mqtt/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mqtt/integration_test.go -------------------------------------------------------------------------------- /client/mqtt/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mqtt/metric.go -------------------------------------------------------------------------------- /client/mqtt/metric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mqtt/metric_test.go -------------------------------------------------------------------------------- /client/mqtt/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mqtt/publisher.go -------------------------------------------------------------------------------- /client/mqtt/publisher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/mqtt/publisher_test.go -------------------------------------------------------------------------------- /client/redis/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/redis/integration_test.go -------------------------------------------------------------------------------- /client/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/redis/redis.go -------------------------------------------------------------------------------- /client/redis/redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/redis/redis_test.go -------------------------------------------------------------------------------- /client/sns/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/sns/integration_test.go -------------------------------------------------------------------------------- /client/sns/sns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/sns/sns.go -------------------------------------------------------------------------------- /client/sns/sns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/sns/sns_test.go -------------------------------------------------------------------------------- /client/sql/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/sql/integration_test.go -------------------------------------------------------------------------------- /client/sql/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/sql/sql.go -------------------------------------------------------------------------------- /client/sql/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/sql/sql_test.go -------------------------------------------------------------------------------- /client/sqs/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/sqs/integration_test.go -------------------------------------------------------------------------------- /client/sqs/sqs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/sqs/sqs.go -------------------------------------------------------------------------------- /client/sqs/sqs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/client/sqs/sqs_test.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/codecov.yml -------------------------------------------------------------------------------- /component/amqp/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/amqp/component.go -------------------------------------------------------------------------------- /component/amqp/component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/amqp/component_test.go -------------------------------------------------------------------------------- /component/amqp/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/amqp/integration_test.go -------------------------------------------------------------------------------- /component/amqp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/amqp/message.go -------------------------------------------------------------------------------- /component/amqp/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/amqp/message_test.go -------------------------------------------------------------------------------- /component/amqp/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/amqp/metric.go -------------------------------------------------------------------------------- /component/amqp/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/amqp/option.go -------------------------------------------------------------------------------- /component/amqp/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/amqp/option_test.go -------------------------------------------------------------------------------- /component/grpc/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/grpc/component.go -------------------------------------------------------------------------------- /component/grpc/component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/grpc/component_test.go -------------------------------------------------------------------------------- /component/grpc/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/grpc/options.go -------------------------------------------------------------------------------- /component/grpc/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/grpc/options_test.go -------------------------------------------------------------------------------- /component/http/auth/apikey/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/auth/apikey/apikey.go -------------------------------------------------------------------------------- /component/http/auth/apikey/apikey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/auth/apikey/apikey_test.go -------------------------------------------------------------------------------- /component/http/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/auth/auth.go -------------------------------------------------------------------------------- /component/http/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/cache/cache.go -------------------------------------------------------------------------------- /component/http/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/cache/cache_test.go -------------------------------------------------------------------------------- /component/http/cache/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/cache/metric.go -------------------------------------------------------------------------------- /component/http/cache/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/cache/model.go -------------------------------------------------------------------------------- /component/http/cache/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/cache/model_test.go -------------------------------------------------------------------------------- /component/http/cache/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/cache/route.go -------------------------------------------------------------------------------- /component/http/cache/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/cache/route_test.go -------------------------------------------------------------------------------- /component/http/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/check.go -------------------------------------------------------------------------------- /component/http/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/check_test.go -------------------------------------------------------------------------------- /component/http/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/component.go -------------------------------------------------------------------------------- /component/http/component_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/component_option.go -------------------------------------------------------------------------------- /component/http/component_option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/component_option_test.go -------------------------------------------------------------------------------- /component/http/component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/component_test.go -------------------------------------------------------------------------------- /component/http/middleware/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/middleware/logging.go -------------------------------------------------------------------------------- /component/http/middleware/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/middleware/logging_test.go -------------------------------------------------------------------------------- /component/http/middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/middleware/middleware.go -------------------------------------------------------------------------------- /component/http/middleware/middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/middleware/middleware_test.go -------------------------------------------------------------------------------- /component/http/observability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/observability.go -------------------------------------------------------------------------------- /component/http/observability_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/observability_test.go -------------------------------------------------------------------------------- /component/http/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/route.go -------------------------------------------------------------------------------- /component/http/route_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/route_option.go -------------------------------------------------------------------------------- /component/http/route_option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/route_option_test.go -------------------------------------------------------------------------------- /component/http/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/route_test.go -------------------------------------------------------------------------------- /component/http/router/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/router/route.go -------------------------------------------------------------------------------- /component/http/router/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/router/route_test.go -------------------------------------------------------------------------------- /component/http/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/router/router.go -------------------------------------------------------------------------------- /component/http/router/router_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/router/router_option.go -------------------------------------------------------------------------------- /component/http/router/router_option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/router/router_option_test.go -------------------------------------------------------------------------------- /component/http/router/router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/router/router_test.go -------------------------------------------------------------------------------- /component/http/router/testdata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/router/testdata/index.html -------------------------------------------------------------------------------- /component/http/testdata/existing.html: -------------------------------------------------------------------------------- 1 | existing -------------------------------------------------------------------------------- /component/http/testdata/index.html: -------------------------------------------------------------------------------- 1 | fallback -------------------------------------------------------------------------------- /component/http/testdata/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/testdata/server.key -------------------------------------------------------------------------------- /component/http/testdata/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/http/testdata/server.pem -------------------------------------------------------------------------------- /component/kafka/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/kafka/component.go -------------------------------------------------------------------------------- /component/kafka/component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/kafka/component_test.go -------------------------------------------------------------------------------- /component/kafka/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/kafka/integration_test.go -------------------------------------------------------------------------------- /component/kafka/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/kafka/kafka.go -------------------------------------------------------------------------------- /component/kafka/kafka_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/kafka/kafka_test.go -------------------------------------------------------------------------------- /component/kafka/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/kafka/metric.go -------------------------------------------------------------------------------- /component/kafka/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/kafka/option.go -------------------------------------------------------------------------------- /component/kafka/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/kafka/option_test.go -------------------------------------------------------------------------------- /component/sqs/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/sqs/component.go -------------------------------------------------------------------------------- /component/sqs/component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/sqs/component_test.go -------------------------------------------------------------------------------- /component/sqs/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/sqs/integration_test.go -------------------------------------------------------------------------------- /component/sqs/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/sqs/message.go -------------------------------------------------------------------------------- /component/sqs/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/sqs/message_test.go -------------------------------------------------------------------------------- /component/sqs/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/sqs/metric.go -------------------------------------------------------------------------------- /component/sqs/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/sqs/option.go -------------------------------------------------------------------------------- /component/sqs/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/component/sqs/option_test.go -------------------------------------------------------------------------------- /correlation/correlation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/correlation/correlation.go -------------------------------------------------------------------------------- /correlation/correlation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/correlation/correlation_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/doc.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/otelcol-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docker-compose/otelcol-config.yaml -------------------------------------------------------------------------------- /docs/ACKNOWLEDGMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/ACKNOWLEDGMENTS.md -------------------------------------------------------------------------------- /docs/CodeOfConduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/CodeOfConduct.md -------------------------------------------------------------------------------- /docs/ContributionGuidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/ContributionGuidelines.md -------------------------------------------------------------------------------- /docs/SIGNYOURWORK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/SIGNYOURWORK.md -------------------------------------------------------------------------------- /docs/api/clients/amqp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/amqp.md -------------------------------------------------------------------------------- /docs/api/clients/es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/es.md -------------------------------------------------------------------------------- /docs/api/clients/grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/grpc.md -------------------------------------------------------------------------------- /docs/api/clients/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/http.md -------------------------------------------------------------------------------- /docs/api/clients/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/kafka.md -------------------------------------------------------------------------------- /docs/api/clients/mongo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/mongo.md -------------------------------------------------------------------------------- /docs/api/clients/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/mqtt.md -------------------------------------------------------------------------------- /docs/api/clients/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/redis.md -------------------------------------------------------------------------------- /docs/api/clients/sns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/sns.md -------------------------------------------------------------------------------- /docs/api/clients/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/sql.md -------------------------------------------------------------------------------- /docs/api/clients/sqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/clients/sqs.md -------------------------------------------------------------------------------- /docs/api/components/amqp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/components/amqp.md -------------------------------------------------------------------------------- /docs/api/components/grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/components/grpc.md -------------------------------------------------------------------------------- /docs/api/components/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/components/http.md -------------------------------------------------------------------------------- /docs/api/components/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/components/kafka.md -------------------------------------------------------------------------------- /docs/api/components/sqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/docs/api/components/sqs.md -------------------------------------------------------------------------------- /encoding/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/encoding/encoding.go -------------------------------------------------------------------------------- /encoding/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/encoding/json/json.go -------------------------------------------------------------------------------- /encoding/json/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/encoding/json/json_test.go -------------------------------------------------------------------------------- /encoding/protobuf/protobuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/encoding/protobuf/protobuf.go -------------------------------------------------------------------------------- /encoding/protobuf/protobuf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/encoding/protobuf/protobuf_test.go -------------------------------------------------------------------------------- /encoding/protobuf/test/user.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/encoding/protobuf/test/user.pb.go -------------------------------------------------------------------------------- /encoding/protobuf/test/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/encoding/protobuf/test/user.proto -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/client/main.go -------------------------------------------------------------------------------- /examples/examples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/examples.go -------------------------------------------------------------------------------- /examples/greeter.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/greeter.pb.go -------------------------------------------------------------------------------- /examples/greeter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/greeter.proto -------------------------------------------------------------------------------- /examples/greeter_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/greeter_grpc.pb.go -------------------------------------------------------------------------------- /examples/service/amqp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/service/amqp.go -------------------------------------------------------------------------------- /examples/service/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/service/grpc.go -------------------------------------------------------------------------------- /examples/service/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/service/http.go -------------------------------------------------------------------------------- /examples/service/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/service/kafka.go -------------------------------------------------------------------------------- /examples/service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/service/main.go -------------------------------------------------------------------------------- /examples/service/sqs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/examples/service/sqs.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/go.sum -------------------------------------------------------------------------------- /integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/integration_test.go -------------------------------------------------------------------------------- /internal/test/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/internal/test/assert.go -------------------------------------------------------------------------------- /internal/test/assert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/internal/test/assert_test.go -------------------------------------------------------------------------------- /internal/test/observability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/internal/test/observability.go -------------------------------------------------------------------------------- /internal/test/observability_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/internal/test/observability_test.go -------------------------------------------------------------------------------- /internal/validation/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/internal/validation/validation.go -------------------------------------------------------------------------------- /internal/validation/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/internal/validation/validation_test.go -------------------------------------------------------------------------------- /observability/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/integration_test.go -------------------------------------------------------------------------------- /observability/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/log/log.go -------------------------------------------------------------------------------- /observability/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/log/log_test.go -------------------------------------------------------------------------------- /observability/metric/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/metric/integration_test.go -------------------------------------------------------------------------------- /observability/metric/meter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/metric/meter.go -------------------------------------------------------------------------------- /observability/metric/meter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/metric/meter_test.go -------------------------------------------------------------------------------- /observability/observability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/observability.go -------------------------------------------------------------------------------- /observability/observability_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/observability_test.go -------------------------------------------------------------------------------- /observability/trace/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/trace/tracing.go -------------------------------------------------------------------------------- /observability/trace/tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/observability/trace/tracing_test.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/options.go -------------------------------------------------------------------------------- /options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/options_test.go -------------------------------------------------------------------------------- /reliability/circuitbreaker/breaker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/reliability/circuitbreaker/breaker.go -------------------------------------------------------------------------------- /reliability/circuitbreaker/breaker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/reliability/circuitbreaker/breaker_test.go -------------------------------------------------------------------------------- /reliability/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/reliability/retry/retry.go -------------------------------------------------------------------------------- /reliability/retry/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/reliability/retry/retry_test.go -------------------------------------------------------------------------------- /script/gofmtcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/script/gofmtcheck.sh -------------------------------------------------------------------------------- /service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/service.go -------------------------------------------------------------------------------- /service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/service_test.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/LICENSE -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/README.md -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/doc.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/edwards25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/edwards25519.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/extra.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/field/fe.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/field/fe_amd64.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/field/fe_amd64.s -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/field/fe_arm64.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/field/fe_arm64.s -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/field/fe_extra.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/scalar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/scalar.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/scalar_fiat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/scalar_fiat.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/scalarmult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/scalarmult.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/filippo.io/edwards25519/tables.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/.whitesource -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/Dockerfile.kafka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/Dockerfile.kafka -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/Makefile -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/README.md -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/Vagrantfile -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/acl_bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/acl_bindings.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/acl_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/acl_filter.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/acl_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/acl_types.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/admin.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/api_versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/api_versions.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/async_producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/async_producer.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/balance_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/balance_strategy.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/broker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/broker.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/client.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/compress.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/config.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/consumer.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/consumer_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/consumer_group.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/control_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/control_record.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/crc32_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/crc32_field.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/decompress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/decompress.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/dev.yml -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/docker-compose.yml -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/election_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/election_type.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/encoder_decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/encoder_decoder.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/end_txn_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/end_txn_request.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/end_txn_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/end_txn_response.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/entrypoint.sh -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/errors.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/fetch_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/fetch_request.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/fetch_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/fetch_response.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/gssapi_kerberos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/gssapi_kerberos.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/interceptors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/interceptors.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/kerberos_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/kerberos_client.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/length_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/length_field.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/message.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/message_set.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/metadata.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/metadata_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/metadata_request.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/metrics.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/mockbroker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/mockbroker.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/mockkerberos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/mockkerberos.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/mockresponses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/mockresponses.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/offset_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/offset_manager.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/offset_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/offset_request.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/offset_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/offset_response.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/packet_decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/packet_decoder.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/packet_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/packet_encoder.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/partitioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/partitioner.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/prep_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/prep_encoder.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/produce_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/produce_request.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/produce_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/produce_response.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/produce_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/produce_set.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/quota_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/quota_types.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/real_decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/real_decoder.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/real_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/real_encoder.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/record.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/record_batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/record_batch.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/records.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/records.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/request.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/response_header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/response_header.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/sarama.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/sarama.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/scram_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/scram_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/server.properties -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/sync_producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/sync_producer.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/utils.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/version.go -------------------------------------------------------------------------------- /vendor/github.com/IBM/sarama/zstd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/IBM/sarama/zstd.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/aws-sdk-go-v2/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/aws-sdk-go-v2/NOTICE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/aws-sdk-go-v2/aws/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/aws/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/aws-sdk-go-v2/aws/types.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/Makefile -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/auth/auth.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/auth/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/auth/identity.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/auth/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/auth/option.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/document.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/document/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/document/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/encoding/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/encoding/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/errors.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/io/byte.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/io/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/io/reader.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/ringbuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/io/ringbuffer.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/metrics/nop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/metrics/nop.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/modman.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/modman.toml -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/properties.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/ptr/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/from_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/ptr/from_ptr.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/to_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/ptr/to_ptr.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/rand/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/rand/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/rand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/rand/rand.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/rand/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/rand/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/time/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/time/time.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/tracing/nop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/tracing/nop.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/validation.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/waiter/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/waiter/logger.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/waiter/waiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/aws/smithy-go/waiter/waiter.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cenkalti/backoff/v5/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cenkalti/backoff/v5/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cenkalti/backoff/v5/README.md -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v5/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cenkalti/backoff/v5/backoff.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v5/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cenkalti/backoff/v5/error.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v5/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cenkalti/backoff/v5/retry.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v5/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cenkalti/backoff/v5/ticker.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v5/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cenkalti/backoff/v5/timer.go -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cespare/xxhash/v2/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cespare/xxhash/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/testall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cespare/xxhash/v2/testall.sh -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/xxhash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/cespare/xxhash/v2/xxhash.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/dgryski/go-rendezvous/rdv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/dgryski/go-rendezvous/rdv.go -------------------------------------------------------------------------------- /vendor/github.com/eapache/queue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/eapache/queue/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/eapache/queue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/eapache/queue/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/eapache/queue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/eapache/queue/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/eapache/queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/eapache/queue/README.md -------------------------------------------------------------------------------- /vendor/github.com/eapache/queue/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/eapache/queue/queue.go -------------------------------------------------------------------------------- /vendor/github.com/eclipse/paho.golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/eclipse/paho.golang/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/elastic/go-elasticsearch/v8/.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | tmp/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/elastic/go-elasticsearch/v8/.gitignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | *.test 3 | 4 | #jetBrains editors 5 | .idea 6 | -------------------------------------------------------------------------------- /vendor/github.com/elastic/go-elasticsearch/v8/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | 303 See Other 2 | 3 | Location: https://www.elastic.co/community/codeofconduct -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/felixge/httpsnoop/Makefile -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/felixge/httpsnoop/README.md -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/felixge/httpsnoop/docs.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/context_slog.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/funcr/funcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/funcr/funcr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/sloghandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/sloghandler.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-sql-driver/mysql/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-sql-driver/mysql/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-sql-driver/mysql/auth.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-sql-driver/mysql/const.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/dsn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-sql-driver/mysql/dsn.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-sql-driver/mysql/rows.go -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/go-sql-driver/mysql/utils.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/README -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/decode_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/decode_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/decode_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/decode_arm64.s -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/decode_asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/decode_asm.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/encode_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/encode_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/encode_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/encode_arm64.s -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/encode_asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/encode_asm.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/snappy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/golang/snappy/snappy.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/version6.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/google/uuid/version7.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/client.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/conn.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/join.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/json.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/mask.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/proxy.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/server.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/gorilla/websocket/util.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/hashicorp/go-uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/hashicorp/go-uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/hashicorp/go-uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/jcmturner/aescts/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/jcmturner/aescts/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jcmturner/dnsutils/v2/srv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/jcmturner/dnsutils/v2/srv.go -------------------------------------------------------------------------------- /vendor/github.com/jcmturner/gofork/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/jcmturner/gofork/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jcmturner/gokrb5/v8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/jcmturner/gokrb5/v8/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jcmturner/rpc/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/jcmturner/rpc/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jcmturner/rpc/v2/ndr/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/jcmturner/rpc/v2/ndr/pipe.go -------------------------------------------------------------------------------- /vendor/github.com/jcmturner/rpc/v2/ndr/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/jcmturner/rpc/v2/ndr/tags.go -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/klauspost/compress/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/klauspost/compress/README.md -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/Makefile -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/README.md -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/data.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/doc.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/errors.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/legacy.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/load.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/max.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/mean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/mean.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/median.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/median.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/min.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/min.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/mode.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/norm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/norm.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/round.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/round.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/sample.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/sum.go -------------------------------------------------------------------------------- /vendor/github.com/montanaflynn/stats/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/montanaflynn/stats/util.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pierrec/lz4/v4/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pierrec/lz4/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pierrec/lz4/v4/README.md -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/lz4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pierrec/lz4/v4/lz4.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pierrec/lz4/v4/options.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pierrec/lz4/v4/reader.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pierrec/lz4/v4/state.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/state_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pierrec/lz4/v4/state_gen.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pierrec/lz4/v4/writer.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/Makefile -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/auth.go -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/certs.sh -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/gen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/gen.ps1 -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/gen.sh -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/log.go -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/read.go -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/types.go -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/uri.go -------------------------------------------------------------------------------- /vendor/github.com/rabbitmq/amqp091-go/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rabbitmq/amqp091-go/write.go -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rcrowley/go-metrics/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rcrowley/go-metrics/debug.go -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rcrowley/go-metrics/ewma.go -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rcrowley/go-metrics/gauge.go -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rcrowley/go-metrics/json.go -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rcrowley/go-metrics/log.go -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/meter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rcrowley/go-metrics/meter.go -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/rcrowley/go-metrics/timer.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/.prettierrc.yml: -------------------------------------------------------------------------------- 1 | semi: false 2 | singleQuote: true 3 | proseWrap: always 4 | printWidth: 100 5 | -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/Makefile -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/README.md -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/command.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/doc.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/error.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/internal/redis.go: -------------------------------------------------------------------------------- 1 | package internal 2 | 3 | const RedisNull = "" 4 | -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/internal/util/type.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | func ToPtr[T any](v T) *T { 4 | return &v 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/json.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/options.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/pubsub.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/redis.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/result.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/ring.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/script.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/tx.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/redis/go-redis/v9/version.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/pbkdf2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/pbkdf2/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/pbkdf2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/pbkdf2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/pbkdf2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/pbkdf2/README.md -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/README.md -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/client.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/client_conv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/client_conv.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/common.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/doc.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/parse.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/scram.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/server.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/scram/server_conv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/scram/server_conv.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/stringprep/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/stringprep/README.md -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/stringprep/bidi.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/stringprep/doc.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/stringprep/error.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/stringprep/map.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/stringprep/profile.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/stringprep/set.go -------------------------------------------------------------------------------- /vendor/github.com/xdg-go/stringprep/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/xdg-go/stringprep/tables.go -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/README -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/README.md -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/cipher.go -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/cipher_3des.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/cipher_3des.go -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/cipher_aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/cipher_aes.go -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/kdf_pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/kdf_pbkdf2.go -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/kdf_scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/kdf_scrypt.go -------------------------------------------------------------------------------- /vendor/github.com/youmark/pkcs8/pkcs8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/github.com/youmark/pkcs8/pkcs8.go -------------------------------------------------------------------------------- /vendor/go.mongodb.org/mongo-driver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.mongodb.org/mongo-driver/LICENSE -------------------------------------------------------------------------------- /vendor/go.mongodb.org/mongo-driver/bson/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.mongodb.org/mongo-driver/bson/doc.go -------------------------------------------------------------------------------- /vendor/go.mongodb.org/mongo-driver/bson/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.mongodb.org/mongo-driver/bson/raw.go -------------------------------------------------------------------------------- /vendor/go.mongodb.org/mongo-driver/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.mongodb.org/mongo-driver/tag/tag.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/auto/sdk/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/auto/sdk/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/auto/sdk/limit.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/auto/sdk/span.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/auto/sdk/tracer.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/.codespellrc -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/.gitattributes -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/.gitignore -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/.lycheeignore -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/CODEOWNERS -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/RELEASING.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/VERSIONING.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/baggage/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/baggage/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/codes/codes.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/codes/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/handler.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/metric.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/metric/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/metric/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/propagation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/propagation.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/renovate.json -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/sdk/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/sdk/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/sdk/version.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/trace/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/auto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/trace/auto.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/hex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/trace/hex.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/trace/noop.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/trace/span.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/version.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/otel/versions.yaml -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/proto/otlp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.opentelemetry.io/proto/otlp/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/leaks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/leaks.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/testmain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/testmain.go -------------------------------------------------------------------------------- /vendor/go.uber.org/goleak/tracestack_new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/go.uber.org/goleak/tracestack_new.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config_go125.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/config_go125.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config_go126.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/config_go126.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/unencrypted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/unencrypted.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/pre_go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables15.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/tables15.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/trie12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/trie13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/errgroup/errgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sync/errgroup/errgroup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ifreq_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/ifreq_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_signed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/ioctl_signed.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_unsigned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/ioctl_unsigned.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mmap_nomremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/mmap_nomremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/ptrace_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_hurd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/syscall_hurd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/sysvshm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/sysvshm_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/sometimes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/golang.org/x/time/rate/sometimes.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/GOVERNANCE.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/MAINTAINERS.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/SECURITY.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/dialoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/dialoptions.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/health/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/health/client.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/health/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/health/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/mem/buffers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/mem/buffers.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/preloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/preloader.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/resolver/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/resolver/map.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stats/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/stats/metrics.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/status/status.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace_notrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/trace_notrace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/google.golang.org/protobuf/proto/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/patron/HEAD/vendor/modules.txt --------------------------------------------------------------------------------