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

com.pulumi.azurenative.databricks.inputs.EncryptionEntitiesDefinitionArgs Maven / Gradle / Ivy

There is a newer version: 2.82.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.databricks.inputs;

import com.pulumi.azurenative.databricks.inputs.EncryptionV2Args;
import com.pulumi.azurenative.databricks.inputs.ManagedDiskEncryptionArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Encryption entities for databricks workspace resource.
 * 
 */
public final class EncryptionEntitiesDefinitionArgs extends com.pulumi.resources.ResourceArgs {

    public static final EncryptionEntitiesDefinitionArgs Empty = new EncryptionEntitiesDefinitionArgs();

    /**
     * Encryption properties for the databricks managed disks.
     * 
     */
    @Import(name="managedDisk")
    private @Nullable Output managedDisk;

    /**
     * @return Encryption properties for the databricks managed disks.
     * 
     */
    public Optional> managedDisk() {
        return Optional.ofNullable(this.managedDisk);
    }

    /**
     * Encryption properties for the databricks managed services.
     * 
     */
    @Import(name="managedServices")
    private @Nullable Output managedServices;

    /**
     * @return Encryption properties for the databricks managed services.
     * 
     */
    public Optional> managedServices() {
        return Optional.ofNullable(this.managedServices);
    }

    private EncryptionEntitiesDefinitionArgs() {}

    private EncryptionEntitiesDefinitionArgs(EncryptionEntitiesDefinitionArgs $) {
        this.managedDisk = $.managedDisk;
        this.managedServices = $.managedServices;
    }

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

    public static final class Builder {
        private EncryptionEntitiesDefinitionArgs $;

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

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

        /**
         * @param managedDisk Encryption properties for the databricks managed disks.
         * 
         * @return builder
         * 
         */
        public Builder managedDisk(@Nullable Output managedDisk) {
            $.managedDisk = managedDisk;
            return this;
        }

        /**
         * @param managedDisk Encryption properties for the databricks managed disks.
         * 
         * @return builder
         * 
         */
        public Builder managedDisk(ManagedDiskEncryptionArgs managedDisk) {
            return managedDisk(Output.of(managedDisk));
        }

        /**
         * @param managedServices Encryption properties for the databricks managed services.
         * 
         * @return builder
         * 
         */
        public Builder managedServices(@Nullable Output managedServices) {
            $.managedServices = managedServices;
            return this;
        }

        /**
         * @param managedServices Encryption properties for the databricks managed services.
         * 
         * @return builder
         * 
         */
        public Builder managedServices(EncryptionV2Args managedServices) {
            return managedServices(Output.of(managedServices));
        }

        public EncryptionEntitiesDefinitionArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy