
com.pulumi.azurenative.storage.outputs.EncryptionServicesResponse 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.storage.outputs;
import com.pulumi.azurenative.storage.outputs.EncryptionServiceResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class EncryptionServicesResponse {
/**
* @return The encryption function of the blob storage service.
*
*/
private @Nullable EncryptionServiceResponse blob;
/**
* @return The encryption function of the file storage service.
*
*/
private @Nullable EncryptionServiceResponse file;
/**
* @return The encryption function of the queue storage service.
*
*/
private @Nullable EncryptionServiceResponse queue;
/**
* @return The encryption function of the table storage service.
*
*/
private @Nullable EncryptionServiceResponse table;
private EncryptionServicesResponse() {}
/**
* @return The encryption function of the blob storage service.
*
*/
public Optional blob() {
return Optional.ofNullable(this.blob);
}
/**
* @return The encryption function of the file storage service.
*
*/
public Optional file() {
return Optional.ofNullable(this.file);
}
/**
* @return The encryption function of the queue storage service.
*
*/
public Optional queue() {
return Optional.ofNullable(this.queue);
}
/**
* @return The encryption function of the table storage service.
*
*/
public Optional table() {
return Optional.ofNullable(this.table);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(EncryptionServicesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable EncryptionServiceResponse blob;
private @Nullable EncryptionServiceResponse file;
private @Nullable EncryptionServiceResponse queue;
private @Nullable EncryptionServiceResponse table;
public Builder() {}
public Builder(EncryptionServicesResponse defaults) {
Objects.requireNonNull(defaults);
this.blob = defaults.blob;
this.file = defaults.file;
this.queue = defaults.queue;
this.table = defaults.table;
}
@CustomType.Setter
public Builder blob(@Nullable EncryptionServiceResponse blob) {
this.blob = blob;
return this;
}
@CustomType.Setter
public Builder file(@Nullable EncryptionServiceResponse file) {
this.file = file;
return this;
}
@CustomType.Setter
public Builder queue(@Nullable EncryptionServiceResponse queue) {
this.queue = queue;
return this;
}
@CustomType.Setter
public Builder table(@Nullable EncryptionServiceResponse table) {
this.table = table;
return this;
}
public EncryptionServicesResponse build() {
final var _resultValue = new EncryptionServicesResponse();
_resultValue.blob = blob;
_resultValue.file = file;
_resultValue.queue = queue;
_resultValue.table = table;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy