All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.datashare.outputs.GetADLSGen2FolderDataSetResult Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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 GetADLSGen2FolderDataSetResult {
    /**
     * @return Unique id for identifying a data set resource
     * 
     */
    private String dataSetId;
    /**
     * @return File system to which the folder belongs.
     * 
     */
    private String fileSystem;
    /**
     * @return Folder path within the file system.
     * 
     */
    private String folderPath;
    /**
     * @return The resource id of the azure resource
     * 
     */
    private String id;
    /**
     * @return Kind of data set.
     * Expected value is 'AdlsGen2Folder'.
     * 
     */
    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 GetADLSGen2FolderDataSetResult() {}
    /**
     * @return Unique id for identifying a data set resource
     * 
     */
    public String dataSetId() {
        return this.dataSetId;
    }
    /**
     * @return File system to which the folder belongs.
     * 
     */
    public String fileSystem() {
        return this.fileSystem;
    }
    /**
     * @return Folder path within the file system.
     * 
     */
    public String folderPath() {
        return this.folderPath;
    }
    /**
     * @return The resource id of the azure resource
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return Kind of data set.
     * Expected value is 'AdlsGen2Folder'.
     * 
     */
    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(GetADLSGen2FolderDataSetResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String dataSetId;
        private String fileSystem;
        private String folderPath;
        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(GetADLSGen2FolderDataSetResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.dataSetId = defaults.dataSetId;
    	      this.fileSystem = defaults.fileSystem;
    	      this.folderPath = defaults.folderPath;
    	      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 dataSetId(String dataSetId) {
            if (dataSetId == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "dataSetId");
            }
            this.dataSetId = dataSetId;
            return this;
        }
        @CustomType.Setter
        public Builder fileSystem(String fileSystem) {
            if (fileSystem == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "fileSystem");
            }
            this.fileSystem = fileSystem;
            return this;
        }
        @CustomType.Setter
        public Builder folderPath(String folderPath) {
            if (folderPath == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "folderPath");
            }
            this.folderPath = folderPath;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder kind(String kind) {
            if (kind == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "kind");
            }
            this.kind = kind;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder resourceGroup(String resourceGroup) {
            if (resourceGroup == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "resourceGroup");
            }
            this.resourceGroup = resourceGroup;
            return this;
        }
        @CustomType.Setter
        public Builder storageAccountName(String storageAccountName) {
            if (storageAccountName == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "storageAccountName");
            }
            this.storageAccountName = storageAccountName;
            return this;
        }
        @CustomType.Setter
        public Builder subscriptionId(String subscriptionId) {
            if (subscriptionId == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "subscriptionId");
            }
            this.subscriptionId = subscriptionId;
            return this;
        }
        @CustomType.Setter
        public Builder systemData(SystemDataResponse systemData) {
            if (systemData == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "systemData");
            }
            this.systemData = systemData;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("GetADLSGen2FolderDataSetResult", "type");
            }
            this.type = type;
            return this;
        }
        public GetADLSGen2FolderDataSetResult build() {
            final var _resultValue = new GetADLSGen2FolderDataSetResult();
            _resultValue.dataSetId = dataSetId;
            _resultValue.fileSystem = fileSystem;
            _resultValue.folderPath = folderPath;
            _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