io.kestra.storage.gcs.GcsConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of storage-gcs Show documentation
Show all versions of storage-gcs Show documentation
Google Cloud Storage storage plugin for Kestra
package io.kestra.storage.gcs;
import io.micronaut.context.annotation.ConfigurationProperties;
import lombok.Getter;
import jakarta.inject.Singleton;
@Singleton
@Getter
@ConfigurationProperties("kestra.storage.gcs")
public class GcsConfig {
String bucket;
String serviceAccount;
String projectId;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy