
io.kestra.plugin.gcp.pubsub.PubSubConnectionInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-gcp Show documentation
Show all versions of plugin-gcp Show documentation
Integrate Google Cloud Platform services with Kestra data workflows.
package io.kestra.plugin.gcp.pubsub;
import io.kestra.core.models.annotations.PluginProperty;
import io.kestra.plugin.gcp.GcpInterface;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
public interface PubSubConnectionInterface extends GcpInterface {
@Schema(
title = "The Pub/Sub topic",
description = "The Pub/Sub topic. It must be created before executing the task."
)
@PluginProperty(dynamic = true)
@NotNull
String getTopic();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy