
io.kestra.plugin.gcp.bigquery.models.Entity 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.bigquery.models;
import io.kestra.core.models.annotations.PluginProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Builder;
import lombok.Getter;
import lombok.extern.jackson.Jacksonized;
import jakarta.validation.constraints.NotNull;
@Getter
@Builder
@Jacksonized
public class Entity {
@NotNull
@Schema(
title = "The type of the entity (USER, GROUP, DOMAIN or IAM_MEMBER)."
)
@PluginProperty(dynamic = true)
private final Type type;
@NotNull
@Schema(
title = "The value for the entity.",
description = "For example, user email if the type is USER."
)
@PluginProperty(dynamic = true)
private final String value;
@SuppressWarnings("unused")
public enum Type {
DOMAIN,
GROUP,
USER,
IAM_MEMBER
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy