![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.datafactory.outputs.DatasetDelimitedTextAzureBlobStorageLocation 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.datafactory.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DatasetDelimitedTextAzureBlobStorageLocation {
/**
* @return The container on the Azure Blob Storage Account hosting the file.
*
*/
private String container;
/**
* @return Is the `container` using dynamic expression, function or system variables? Defaults to `false`.
*
*/
private @Nullable Boolean dynamicContainerEnabled;
/**
* @return Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
*
*/
private @Nullable Boolean dynamicFilenameEnabled;
/**
* @return Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
*
*/
private @Nullable Boolean dynamicPathEnabled;
/**
* @return The filename of the file.
*
*/
private @Nullable String filename;
/**
* @return The folder path to the file. This can be an empty string.
*
*/
private @Nullable String path;
private DatasetDelimitedTextAzureBlobStorageLocation() {}
/**
* @return The container on the Azure Blob Storage Account hosting the file.
*
*/
public String container() {
return this.container;
}
/**
* @return Is the `container` using dynamic expression, function or system variables? Defaults to `false`.
*
*/
public Optional dynamicContainerEnabled() {
return Optional.ofNullable(this.dynamicContainerEnabled);
}
/**
* @return Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
*
*/
public Optional dynamicFilenameEnabled() {
return Optional.ofNullable(this.dynamicFilenameEnabled);
}
/**
* @return Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
*
*/
public Optional dynamicPathEnabled() {
return Optional.ofNullable(this.dynamicPathEnabled);
}
/**
* @return The filename of the file.
*
*/
public Optional filename() {
return Optional.ofNullable(this.filename);
}
/**
* @return The folder path to the file. This can be an empty string.
*
*/
public Optional path() {
return Optional.ofNullable(this.path);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DatasetDelimitedTextAzureBlobStorageLocation defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String container;
private @Nullable Boolean dynamicContainerEnabled;
private @Nullable Boolean dynamicFilenameEnabled;
private @Nullable Boolean dynamicPathEnabled;
private @Nullable String filename;
private @Nullable String path;
public Builder() {}
public Builder(DatasetDelimitedTextAzureBlobStorageLocation defaults) {
Objects.requireNonNull(defaults);
this.container = defaults.container;
this.dynamicContainerEnabled = defaults.dynamicContainerEnabled;
this.dynamicFilenameEnabled = defaults.dynamicFilenameEnabled;
this.dynamicPathEnabled = defaults.dynamicPathEnabled;
this.filename = defaults.filename;
this.path = defaults.path;
}
@CustomType.Setter
public Builder container(String container) {
if (container == null) {
throw new MissingRequiredPropertyException("DatasetDelimitedTextAzureBlobStorageLocation", "container");
}
this.container = container;
return this;
}
@CustomType.Setter
public Builder dynamicContainerEnabled(@Nullable Boolean dynamicContainerEnabled) {
this.dynamicContainerEnabled = dynamicContainerEnabled;
return this;
}
@CustomType.Setter
public Builder dynamicFilenameEnabled(@Nullable Boolean dynamicFilenameEnabled) {
this.dynamicFilenameEnabled = dynamicFilenameEnabled;
return this;
}
@CustomType.Setter
public Builder dynamicPathEnabled(@Nullable Boolean dynamicPathEnabled) {
this.dynamicPathEnabled = dynamicPathEnabled;
return this;
}
@CustomType.Setter
public Builder filename(@Nullable String filename) {
this.filename = filename;
return this;
}
@CustomType.Setter
public Builder path(@Nullable String path) {
this.path = path;
return this;
}
public DatasetDelimitedTextAzureBlobStorageLocation build() {
final var _resultValue = new DatasetDelimitedTextAzureBlobStorageLocation();
_resultValue.container = container;
_resultValue.dynamicContainerEnabled = dynamicContainerEnabled;
_resultValue.dynamicFilenameEnabled = dynamicFilenameEnabled;
_resultValue.dynamicPathEnabled = dynamicPathEnabled;
_resultValue.filename = filename;
_resultValue.path = path;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy