All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.googlecloudservices.storage.runtime.StorageConfiguration Maven / Gradle / Ivy

package io.quarkiverse.googlecloudservices.storage.runtime;

import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;

@ConfigMapping(prefix = "quarkus.google.cloud.storage")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public interface StorageConfiguration {
    /**
     * Overrides the default service host.
     * This is most commonly used for development or testing activities with a local Google Cloud Storage emulator instance.
     */
    Optional hostOverride();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy