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

com.edmunds.rest.databricks.DTO.jobs.DataSecurityModeDTO Maven / Gradle / Ivy

Go to download

A simple java rest client to interact with the Databricks Rest Service https://docs.databricks.com/api/latest/index.html

There is a newer version: 3.3.3
Show newest version
package com.edmunds.rest.databricks.DTO.jobs;

import java.io.Serializable;

public enum DataSecurityModeDTO implements Serializable {
    SINGLE_USER("SINGLE_USER"),
    USER_ISOLATION("USER_ISOLATION"),
    LEGACY_PASSTHROUGH("LEGACY_PASSTHROUGH"),
    LEGACY_TABLE_ACL("LEGACY_TABLE_ACL");
    private String value;

    DataSecurityModeDTO(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return this.value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy