
com.pulumi.azurenative.datashare.outputs.GetBlobDataSetResult 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.datashare.outputs;
import com.pulumi.azurenative.datashare.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetBlobDataSetResult {
/**
* @return Container that has the file path.
*
*/
private String containerName;
/**
* @return Unique id for identifying a data set resource
*
*/
private String dataSetId;
/**
* @return File path within the source data set
*
*/
private String filePath;
/**
* @return The resource id of the azure resource
*
*/
private String id;
/**
* @return Kind of data set.
* Expected value is 'Blob'.
*
*/
private String kind;
/**
* @return Name of the azure resource
*
*/
private String name;
/**
* @return Resource group of storage account
*
*/
private String resourceGroup;
/**
* @return Storage account name of the source data set
*
*/
private String storageAccountName;
/**
* @return Subscription id of storage account
*
*/
private String subscriptionId;
/**
* @return System Data of the Azure resource.
*
*/
private SystemDataResponse systemData;
/**
* @return Type of the azure resource
*
*/
private String type;
private GetBlobDataSetResult() {}
/**
* @return Container that has the file path.
*
*/
public String containerName() {
return this.containerName;
}
/**
* @return Unique id for identifying a data set resource
*
*/
public String dataSetId() {
return this.dataSetId;
}
/**
* @return File path within the source data set
*
*/
public String filePath() {
return this.filePath;
}
/**
* @return The resource id of the azure resource
*
*/
public String id() {
return this.id;
}
/**
* @return Kind of data set.
* Expected value is 'Blob'.
*
*/
public String kind() {
return this.kind;
}
/**
* @return Name of the azure resource
*
*/
public String name() {
return this.name;
}
/**
* @return Resource group of storage account
*
*/
public String resourceGroup() {
return this.resourceGroup;
}
/**
* @return Storage account name of the source data set
*
*/
public String storageAccountName() {
return this.storageAccountName;
}
/**
* @return Subscription id of storage account
*
*/
public String subscriptionId() {
return this.subscriptionId;
}
/**
* @return System Data of the Azure resource.
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return Type of the azure resource
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetBlobDataSetResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String containerName;
private String dataSetId;
private String filePath;
private String id;
private String kind;
private String name;
private String resourceGroup;
private String storageAccountName;
private String subscriptionId;
private SystemDataResponse systemData;
private String type;
public Builder() {}
public Builder(GetBlobDataSetResult defaults) {
Objects.requireNonNull(defaults);
this.containerName = defaults.containerName;
this.dataSetId = defaults.dataSetId;
this.filePath = defaults.filePath;
this.id = defaults.id;
this.kind = defaults.kind;
this.name = defaults.name;
this.resourceGroup = defaults.resourceGroup;
this.storageAccountName = defaults.storageAccountName;
this.subscriptionId = defaults.subscriptionId;
this.systemData = defaults.systemData;
this.type = defaults.type;
}
@CustomType.Setter
public Builder containerName(String containerName) {
if (containerName == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "containerName");
}
this.containerName = containerName;
return this;
}
@CustomType.Setter
public Builder dataSetId(String dataSetId) {
if (dataSetId == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "dataSetId");
}
this.dataSetId = dataSetId;
return this;
}
@CustomType.Setter
public Builder filePath(String filePath) {
if (filePath == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "filePath");
}
this.filePath = filePath;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(String kind) {
if (kind == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "kind");
}
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder resourceGroup(String resourceGroup) {
if (resourceGroup == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "resourceGroup");
}
this.resourceGroup = resourceGroup;
return this;
}
@CustomType.Setter
public Builder storageAccountName(String storageAccountName) {
if (storageAccountName == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "storageAccountName");
}
this.storageAccountName = storageAccountName;
return this;
}
@CustomType.Setter
public Builder subscriptionId(String subscriptionId) {
if (subscriptionId == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "subscriptionId");
}
this.subscriptionId = subscriptionId;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetBlobDataSetResult", "type");
}
this.type = type;
return this;
}
public GetBlobDataSetResult build() {
final var _resultValue = new GetBlobDataSetResult();
_resultValue.containerName = containerName;
_resultValue.dataSetId = dataSetId;
_resultValue.filePath = filePath;
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.name = name;
_resultValue.resourceGroup = resourceGroup;
_resultValue.storageAccountName = storageAccountName;
_resultValue.subscriptionId = subscriptionId;
_resultValue.systemData = systemData;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy