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

com.pulumi.azure.hdinsight.inputs.HBaseClusterDiskEncryptionArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.hdinsight.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final HBaseClusterDiskEncryptionArgs Empty = new HBaseClusterDiskEncryptionArgs();

    /**
     * This is an algorithm identifier for encryption. Possible values are `RSA1_5`, `RSA-OAEP`, `RSA-OAEP-256`.
     * 
     */
    @Import(name="encryptionAlgorithm")
    private @Nullable Output encryptionAlgorithm;

    /**
     * @return This is an algorithm identifier for encryption. Possible values are `RSA1_5`, `RSA-OAEP`, `RSA-OAEP-256`.
     * 
     */
    public Optional> encryptionAlgorithm() {
        return Optional.ofNullable(this.encryptionAlgorithm);
    }

    /**
     * This is indicator to show whether resource disk encryption is enabled.
     * 
     */
    @Import(name="encryptionAtHostEnabled")
    private @Nullable Output encryptionAtHostEnabled;

    /**
     * @return This is indicator to show whether resource disk encryption is enabled.
     * 
     */
    public Optional> encryptionAtHostEnabled() {
        return Optional.ofNullable(this.encryptionAtHostEnabled);
    }

    /**
     * The ID of the key vault key.
     * 
     */
    @Import(name="keyVaultKeyId")
    private @Nullable Output keyVaultKeyId;

    /**
     * @return The ID of the key vault key.
     * 
     */
    public Optional> keyVaultKeyId() {
        return Optional.ofNullable(this.keyVaultKeyId);
    }

    /**
     * This is the resource ID of Managed Identity used to access the key vault.
     * 
     */
    @Import(name="keyVaultManagedIdentityId")
    private @Nullable Output keyVaultManagedIdentityId;

    /**
     * @return This is the resource ID of Managed Identity used to access the key vault.
     * 
     */
    public Optional> keyVaultManagedIdentityId() {
        return Optional.ofNullable(this.keyVaultManagedIdentityId);
    }

    private HBaseClusterDiskEncryptionArgs() {}

    private HBaseClusterDiskEncryptionArgs(HBaseClusterDiskEncryptionArgs $) {
        this.encryptionAlgorithm = $.encryptionAlgorithm;
        this.encryptionAtHostEnabled = $.encryptionAtHostEnabled;
        this.keyVaultKeyId = $.keyVaultKeyId;
        this.keyVaultManagedIdentityId = $.keyVaultManagedIdentityId;
    }

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

    public static final class Builder {
        private HBaseClusterDiskEncryptionArgs $;

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

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

        /**
         * @param encryptionAlgorithm This is an algorithm identifier for encryption. Possible values are `RSA1_5`, `RSA-OAEP`, `RSA-OAEP-256`.
         * 
         * @return builder
         * 
         */
        public Builder encryptionAlgorithm(@Nullable Output encryptionAlgorithm) {
            $.encryptionAlgorithm = encryptionAlgorithm;
            return this;
        }

        /**
         * @param encryptionAlgorithm This is an algorithm identifier for encryption. Possible values are `RSA1_5`, `RSA-OAEP`, `RSA-OAEP-256`.
         * 
         * @return builder
         * 
         */
        public Builder encryptionAlgorithm(String encryptionAlgorithm) {
            return encryptionAlgorithm(Output.of(encryptionAlgorithm));
        }

        /**
         * @param encryptionAtHostEnabled This is indicator to show whether resource disk encryption is enabled.
         * 
         * @return builder
         * 
         */
        public Builder encryptionAtHostEnabled(@Nullable Output encryptionAtHostEnabled) {
            $.encryptionAtHostEnabled = encryptionAtHostEnabled;
            return this;
        }

        /**
         * @param encryptionAtHostEnabled This is indicator to show whether resource disk encryption is enabled.
         * 
         * @return builder
         * 
         */
        public Builder encryptionAtHostEnabled(Boolean encryptionAtHostEnabled) {
            return encryptionAtHostEnabled(Output.of(encryptionAtHostEnabled));
        }

        /**
         * @param keyVaultKeyId The ID of the key vault key.
         * 
         * @return builder
         * 
         */
        public Builder keyVaultKeyId(@Nullable Output keyVaultKeyId) {
            $.keyVaultKeyId = keyVaultKeyId;
            return this;
        }

        /**
         * @param keyVaultKeyId The ID of the key vault key.
         * 
         * @return builder
         * 
         */
        public Builder keyVaultKeyId(String keyVaultKeyId) {
            return keyVaultKeyId(Output.of(keyVaultKeyId));
        }

        /**
         * @param keyVaultManagedIdentityId This is the resource ID of Managed Identity used to access the key vault.
         * 
         * @return builder
         * 
         */
        public Builder keyVaultManagedIdentityId(@Nullable Output keyVaultManagedIdentityId) {
            $.keyVaultManagedIdentityId = keyVaultManagedIdentityId;
            return this;
        }

        /**
         * @param keyVaultManagedIdentityId This is the resource ID of Managed Identity used to access the key vault.
         * 
         * @return builder
         * 
         */
        public Builder keyVaultManagedIdentityId(String keyVaultManagedIdentityId) {
            return keyVaultManagedIdentityId(Output.of(keyVaultManagedIdentityId));
        }

        public HBaseClusterDiskEncryptionArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy