com.pulumi.azure.compute.outputs.ManagedDiskEncryptionSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
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.
// *** 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.compute.outputs;
import com.pulumi.azure.compute.outputs.ManagedDiskEncryptionSettingsDiskEncryptionKey;
import com.pulumi.azure.compute.outputs.ManagedDiskEncryptionSettingsKeyEncryptionKey;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ManagedDiskEncryptionSettings {
/**
* @return A `disk_encryption_key` block as defined above.
*
*/
private ManagedDiskEncryptionSettingsDiskEncryptionKey diskEncryptionKey;
/**
* @return A `key_encryption_key` block as defined below.
*
*/
private @Nullable ManagedDiskEncryptionSettingsKeyEncryptionKey keyEncryptionKey;
private ManagedDiskEncryptionSettings() {}
/**
* @return A `disk_encryption_key` block as defined above.
*
*/
public ManagedDiskEncryptionSettingsDiskEncryptionKey diskEncryptionKey() {
return this.diskEncryptionKey;
}
/**
* @return A `key_encryption_key` block as defined below.
*
*/
public Optional keyEncryptionKey() {
return Optional.ofNullable(this.keyEncryptionKey);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ManagedDiskEncryptionSettings defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private ManagedDiskEncryptionSettingsDiskEncryptionKey diskEncryptionKey;
private @Nullable ManagedDiskEncryptionSettingsKeyEncryptionKey keyEncryptionKey;
public Builder() {}
public Builder(ManagedDiskEncryptionSettings defaults) {
Objects.requireNonNull(defaults);
this.diskEncryptionKey = defaults.diskEncryptionKey;
this.keyEncryptionKey = defaults.keyEncryptionKey;
}
@CustomType.Setter
public Builder diskEncryptionKey(ManagedDiskEncryptionSettingsDiskEncryptionKey diskEncryptionKey) {
if (diskEncryptionKey == null) {
throw new MissingRequiredPropertyException("ManagedDiskEncryptionSettings", "diskEncryptionKey");
}
this.diskEncryptionKey = diskEncryptionKey;
return this;
}
@CustomType.Setter
public Builder keyEncryptionKey(@Nullable ManagedDiskEncryptionSettingsKeyEncryptionKey keyEncryptionKey) {
this.keyEncryptionKey = keyEncryptionKey;
return this;
}
public ManagedDiskEncryptionSettings build() {
final var _resultValue = new ManagedDiskEncryptionSettings();
_resultValue.diskEncryptionKey = diskEncryptionKey;
_resultValue.keyEncryptionKey = keyEncryptionKey;
return _resultValue;
}
}
}