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

com.pulumi.azurenative.synapse.SqlPoolTransparentDataEncryptionArgs Maven / Gradle / Ivy

There is a newer version: 2.72.0
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.synapse;

import com.pulumi.azurenative.synapse.enums.TransparentDataEncryptionStatus;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class SqlPoolTransparentDataEncryptionArgs extends com.pulumi.resources.ResourceArgs {

    public static final SqlPoolTransparentDataEncryptionArgs Empty = new SqlPoolTransparentDataEncryptionArgs();

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * SQL pool name
     * 
     */
    @Import(name="sqlPoolName", required=true)
    private Output sqlPoolName;

    /**
     * @return SQL pool name
     * 
     */
    public Output sqlPoolName() {
        return this.sqlPoolName;
    }

    /**
     * The status of the database transparent data encryption.
     * 
     */
    @Import(name="status")
    private @Nullable Output> status;

    /**
     * @return The status of the database transparent data encryption.
     * 
     */
    public Optional>> status() {
        return Optional.ofNullable(this.status);
    }

    /**
     * The name of the transparent data encryption configuration.
     * 
     */
    @Import(name="transparentDataEncryptionName")
    private @Nullable Output transparentDataEncryptionName;

    /**
     * @return The name of the transparent data encryption configuration.
     * 
     */
    public Optional> transparentDataEncryptionName() {
        return Optional.ofNullable(this.transparentDataEncryptionName);
    }

    /**
     * The name of the workspace.
     * 
     */
    @Import(name="workspaceName", required=true)
    private Output workspaceName;

    /**
     * @return The name of the workspace.
     * 
     */
    public Output workspaceName() {
        return this.workspaceName;
    }

    private SqlPoolTransparentDataEncryptionArgs() {}

    private SqlPoolTransparentDataEncryptionArgs(SqlPoolTransparentDataEncryptionArgs $) {
        this.resourceGroupName = $.resourceGroupName;
        this.sqlPoolName = $.sqlPoolName;
        this.status = $.status;
        this.transparentDataEncryptionName = $.transparentDataEncryptionName;
        this.workspaceName = $.workspaceName;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(SqlPoolTransparentDataEncryptionArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private SqlPoolTransparentDataEncryptionArgs $;

        public Builder() {
            $ = new SqlPoolTransparentDataEncryptionArgs();
        }

        public Builder(SqlPoolTransparentDataEncryptionArgs defaults) {
            $ = new SqlPoolTransparentDataEncryptionArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param sqlPoolName SQL pool name
         * 
         * @return builder
         * 
         */
        public Builder sqlPoolName(Output sqlPoolName) {
            $.sqlPoolName = sqlPoolName;
            return this;
        }

        /**
         * @param sqlPoolName SQL pool name
         * 
         * @return builder
         * 
         */
        public Builder sqlPoolName(String sqlPoolName) {
            return sqlPoolName(Output.of(sqlPoolName));
        }

        /**
         * @param status The status of the database transparent data encryption.
         * 
         * @return builder
         * 
         */
        public Builder status(@Nullable Output> status) {
            $.status = status;
            return this;
        }

        /**
         * @param status The status of the database transparent data encryption.
         * 
         * @return builder
         * 
         */
        public Builder status(Either status) {
            return status(Output.of(status));
        }

        /**
         * @param status The status of the database transparent data encryption.
         * 
         * @return builder
         * 
         */
        public Builder status(String status) {
            return status(Either.ofLeft(status));
        }

        /**
         * @param status The status of the database transparent data encryption.
         * 
         * @return builder
         * 
         */
        public Builder status(TransparentDataEncryptionStatus status) {
            return status(Either.ofRight(status));
        }

        /**
         * @param transparentDataEncryptionName The name of the transparent data encryption configuration.
         * 
         * @return builder
         * 
         */
        public Builder transparentDataEncryptionName(@Nullable Output transparentDataEncryptionName) {
            $.transparentDataEncryptionName = transparentDataEncryptionName;
            return this;
        }

        /**
         * @param transparentDataEncryptionName The name of the transparent data encryption configuration.
         * 
         * @return builder
         * 
         */
        public Builder transparentDataEncryptionName(String transparentDataEncryptionName) {
            return transparentDataEncryptionName(Output.of(transparentDataEncryptionName));
        }

        /**
         * @param workspaceName The name of the workspace.
         * 
         * @return builder
         * 
         */
        public Builder workspaceName(Output workspaceName) {
            $.workspaceName = workspaceName;
            return this;
        }

        /**
         * @param workspaceName The name of the workspace.
         * 
         * @return builder
         * 
         */
        public Builder workspaceName(String workspaceName) {
            return workspaceName(Output.of(workspaceName));
        }

        public SqlPoolTransparentDataEncryptionArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("SqlPoolTransparentDataEncryptionArgs", "resourceGroupName");
            }
            if ($.sqlPoolName == null) {
                throw new MissingRequiredPropertyException("SqlPoolTransparentDataEncryptionArgs", "sqlPoolName");
            }
            if ($.workspaceName == null) {
                throw new MissingRequiredPropertyException("SqlPoolTransparentDataEncryptionArgs", "workspaceName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy