
com.pulumi.azurenative.compute.inputs.EncryptionSettingsCollectionArgs 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.EncryptionSettingsElementArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Encryption settings for disk or snapshot
*
*/
public final class EncryptionSettingsCollectionArgs extends com.pulumi.resources.ResourceArgs {
public static final EncryptionSettingsCollectionArgs Empty = new EncryptionSettingsCollectionArgs();
/**
* Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
*
*/
@Import(name="enabled", required=true)
private Output enabled;
/**
* @return Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
*
*/
public Output enabled() {
return this.enabled;
}
/**
* A collection of encryption settings, one for each disk volume.
*
*/
@Import(name="encryptionSettings")
private @Nullable Output> encryptionSettings;
/**
* @return A collection of encryption settings, one for each disk volume.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy