io.quarkiverse.minio.client.MinioBuildTimeConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-minio Show documentation
Show all versions of quarkus-minio Show documentation
Integrates MinIO Java SDK for Amazon S3 Compatible Cloud Storage
The newest version!
package io.quarkiverse.minio.client;
import io.quarkus.runtime.annotations.ConfigGroup;
import io.smallrye.config.WithDefault;
@ConfigGroup
public interface MinioBuildTimeConfiguration {
/**
* Should the extension provide a `MinioClient`.
* If set to `false`, you will have to create the clients yourself,
* but will still benefit the native compatibility work.
*/
@WithDefault("true")
boolean enabled();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy