com.pulumi.azurenative.workloads.outputs.SharedStorageResourceNamesResponse 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.workloads.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SharedStorageResourceNamesResponse {
/**
* @return The full name of the shared storage account. If it is not provided, it will be defaulted to {SID}nfs{guid of 15 chars}.
*
*/
private @Nullable String sharedStorageAccountName;
/**
* @return The full name of private end point for the shared storage account. If it is not provided, it will be defaulted to {storageAccountName}_pe
*
*/
private @Nullable String sharedStorageAccountPrivateEndPointName;
private SharedStorageResourceNamesResponse() {}
/**
* @return The full name of the shared storage account. If it is not provided, it will be defaulted to {SID}nfs{guid of 15 chars}.
*
*/
public Optional sharedStorageAccountName() {
return Optional.ofNullable(this.sharedStorageAccountName);
}
/**
* @return The full name of private end point for the shared storage account. If it is not provided, it will be defaulted to {storageAccountName}_pe
*
*/
public Optional sharedStorageAccountPrivateEndPointName() {
return Optional.ofNullable(this.sharedStorageAccountPrivateEndPointName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SharedStorageResourceNamesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String sharedStorageAccountName;
private @Nullable String sharedStorageAccountPrivateEndPointName;
public Builder() {}
public Builder(SharedStorageResourceNamesResponse defaults) {
Objects.requireNonNull(defaults);
this.sharedStorageAccountName = defaults.sharedStorageAccountName;
this.sharedStorageAccountPrivateEndPointName = defaults.sharedStorageAccountPrivateEndPointName;
}
@CustomType.Setter
public Builder sharedStorageAccountName(@Nullable String sharedStorageAccountName) {
this.sharedStorageAccountName = sharedStorageAccountName;
return this;
}
@CustomType.Setter
public Builder sharedStorageAccountPrivateEndPointName(@Nullable String sharedStorageAccountPrivateEndPointName) {
this.sharedStorageAccountPrivateEndPointName = sharedStorageAccountPrivateEndPointName;
return this;
}
public SharedStorageResourceNamesResponse build() {
final var _resultValue = new SharedStorageResourceNamesResponse();
_resultValue.sharedStorageAccountName = sharedStorageAccountName;
_resultValue.sharedStorageAccountPrivateEndPointName = sharedStorageAccountPrivateEndPointName;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy