// Copyright 2024 RustFS Team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. //! S3 client used by the storage engine when it *consumes* remote S3-compatible //! endpoints (ILM tier warm backends, transition targets). Extracted from //! `crates/ecstore/src/client` (rustfs/backlog#1842) so the engine no longer //! embeds an S3 HTTP client; ecstore re-exports these modules during the //! migration window. pub mod admin_handler_utils; pub mod api_error_response; pub mod api_get_object; pub mod api_get_options; pub mod api_list; pub mod api_put_object; pub mod api_put_object_common; pub mod api_put_object_multipart; pub mod api_put_object_streaming; pub mod api_remove; pub mod api_s3_datatypes; pub mod api_stat; pub mod bucket_cache; pub mod checksum; pub mod constants; pub mod credentials; pub mod provider_versions; pub mod runtime_sources; pub mod signer_error; pub mod transition_api; pub mod utils;