
com.pulumi.azurenative.compute.inputs.KeyForDiskEncryptionSetArgs Maven / Gradle / Ivy
// *** 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.compute.inputs;
import com.pulumi.azurenative.compute.inputs.SourceVaultArgs;
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;
/**
* Key Vault Key Url to be used for server side encryption of Managed Disks and Snapshots
*
*/
public final class KeyForDiskEncryptionSetArgs extends com.pulumi.resources.ResourceArgs {
public static final KeyForDiskEncryptionSetArgs Empty = new KeyForDiskEncryptionSetArgs();
/**
* Fully versioned Key Url pointing to a key in KeyVault. Version segment of the Url is required regardless of rotationToLatestKeyVersionEnabled value.
*
*/
@Import(name="keyUrl", required=true)
private Output keyUrl;
/**
* @return Fully versioned Key Url pointing to a key in KeyVault. Version segment of the Url is required regardless of rotationToLatestKeyVersionEnabled value.
*
*/
public Output keyUrl() {
return this.keyUrl;
}
/**
* Resource id of the KeyVault containing the key or secret. This property is optional and cannot be used if the KeyVault subscription is not the same as the Disk Encryption Set subscription.
*
*/
@Import(name="sourceVault")
private @Nullable Output sourceVault;
/**
* @return Resource id of the KeyVault containing the key or secret. This property is optional and cannot be used if the KeyVault subscription is not the same as the Disk Encryption Set subscription.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy