com.pulumi.azure.containerapp.outputs.JobTemplateVolume 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.containerapp.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 JobTemplateVolume {
/**
* @return The name of the volume.
*
*/
private String name;
/**
* @return The name of the storage to use for the volume.
*
*/
private @Nullable String storageName;
/**
* @return The type of storage to use for the volume. Possible values are `AzureFile`, `EmptyDir` and `Secret`.
*
*/
private @Nullable String storageType;
private JobTemplateVolume() {}
/**
* @return The name of the volume.
*
*/
public String name() {
return this.name;
}
/**
* @return The name of the storage to use for the volume.
*
*/
public Optional storageName() {
return Optional.ofNullable(this.storageName);
}
/**
* @return The type of storage to use for the volume. Possible values are `AzureFile`, `EmptyDir` and `Secret`.
*
*/
public Optional storageType() {
return Optional.ofNullable(this.storageType);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(JobTemplateVolume defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String name;
private @Nullable String storageName;
private @Nullable String storageType;
public Builder() {}
public Builder(JobTemplateVolume defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
this.storageName = defaults.storageName;
this.storageType = defaults.storageType;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("JobTemplateVolume", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder storageName(@Nullable String storageName) {
this.storageName = storageName;
return this;
}
@CustomType.Setter
public Builder storageType(@Nullable String storageType) {
this.storageType = storageType;
return this;
}
public JobTemplateVolume build() {
final var _resultValue = new JobTemplateVolume();
_resultValue.name = name;
_resultValue.storageName = storageName;
_resultValue.storageType = storageType;
return _resultValue;
}
}
}