com.pulumi.azurenative.autonomousdevelopmentplatform.inputs.DataPoolEncryptionArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.autonomousdevelopmentplatform.inputs;
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;
/**
* Encryption properties of a Data Pool
*
*/
public final class DataPoolEncryptionArgs extends com.pulumi.resources.ResourceArgs {
public static final DataPoolEncryptionArgs Empty = new DataPoolEncryptionArgs();
/**
* The name of Key Vault key
*
*/
@Import(name="keyName", required=true)
private Output keyName;
/**
* @return The name of Key Vault key
*
*/
public Output keyName() {
return this.keyName;
}
/**
* The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location
*
*/
@Import(name="keyVaultUri", required=true)
private Output keyVaultUri;
/**
* @return The URI of a soft delete-enabled Key Vault that is in the same location as the Data Pool location
*
*/
public Output keyVaultUri() {
return this.keyVaultUri;
}
/**
* The version of Key Vault key
*
*/
@Import(name="keyVersion")
private @Nullable Output keyVersion;
/**
* @return The version of Key Vault key
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy