com.pulumi.azurenative.iotoperations.outputs.DataFlowEndpointLocalStorageResponse 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.iotoperations.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class DataFlowEndpointLocalStorageResponse {
/**
* @return Persistent volume claim name.
*
*/
private String persistentVolumeClaimRef;
private DataFlowEndpointLocalStorageResponse() {}
/**
* @return Persistent volume claim name.
*
*/
public String persistentVolumeClaimRef() {
return this.persistentVolumeClaimRef;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataFlowEndpointLocalStorageResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String persistentVolumeClaimRef;
public Builder() {}
public Builder(DataFlowEndpointLocalStorageResponse defaults) {
Objects.requireNonNull(defaults);
this.persistentVolumeClaimRef = defaults.persistentVolumeClaimRef;
}
@CustomType.Setter
public Builder persistentVolumeClaimRef(String persistentVolumeClaimRef) {
if (persistentVolumeClaimRef == null) {
throw new MissingRequiredPropertyException("DataFlowEndpointLocalStorageResponse", "persistentVolumeClaimRef");
}
this.persistentVolumeClaimRef = persistentVolumeClaimRef;
return this;
}
public DataFlowEndpointLocalStorageResponse build() {
final var _resultValue = new DataFlowEndpointLocalStorageResponse();
_resultValue.persistentVolumeClaimRef = persistentVolumeClaimRef;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy