
com.pulumi.azurenative.storagecache.outputs.AmlFilesystemHsmSettingsResponse 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.storagecache.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AmlFilesystemHsmSettingsResponse {
/**
* @return Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
*
*/
private String container;
/**
* @return Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
*
*/
private @Nullable String importPrefix;
/**
* @return Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
*
*/
private String loggingContainer;
private AmlFilesystemHsmSettingsResponse() {}
/**
* @return Resource ID of storage container used for hydrating the namespace and archiving from the namespace. The resource provider must have permission to create SAS tokens on the storage account.
*
*/
public String container() {
return this.container;
}
/**
* @return Only blobs in the non-logging container that start with this path/prefix get hydrated into the cluster namespace.
*
*/
public Optional importPrefix() {
return Optional.ofNullable(this.importPrefix);
}
/**
* @return Resource ID of storage container used for logging events and errors. Must be a separate container in the same storage account as the hydration and archive container. The resource provider must have permission to create SAS tokens on the storage account.
*
*/
public String loggingContainer() {
return this.loggingContainer;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AmlFilesystemHsmSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String container;
private @Nullable String importPrefix;
private String loggingContainer;
public Builder() {}
public Builder(AmlFilesystemHsmSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.container = defaults.container;
this.importPrefix = defaults.importPrefix;
this.loggingContainer = defaults.loggingContainer;
}
@CustomType.Setter
public Builder container(String container) {
if (container == null) {
throw new MissingRequiredPropertyException("AmlFilesystemHsmSettingsResponse", "container");
}
this.container = container;
return this;
}
@CustomType.Setter
public Builder importPrefix(@Nullable String importPrefix) {
this.importPrefix = importPrefix;
return this;
}
@CustomType.Setter
public Builder loggingContainer(String loggingContainer) {
if (loggingContainer == null) {
throw new MissingRequiredPropertyException("AmlFilesystemHsmSettingsResponse", "loggingContainer");
}
this.loggingContainer = loggingContainer;
return this;
}
public AmlFilesystemHsmSettingsResponse build() {
final var _resultValue = new AmlFilesystemHsmSettingsResponse();
_resultValue.container = container;
_resultValue.importPrefix = importPrefix;
_resultValue.loggingContainer = loggingContainer;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy