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

io.kestra.plugin.gcp.pubsub.PubSubConnectionInterface Maven / Gradle / Ivy

There is a newer version: 0.21.2
Show newest version
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