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

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

There is a newer version: 2.72.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 GetBlobFolderDataSetMappingResult {
    /**
     * @return Container that has the file path.
     * 
     */
    private String containerName;
    /**
     * @return The id of the source data set.
     * 
     */
    private String dataSetId;
    /**
     * @return Gets the status of the data set mapping.
     * 
     */
    private String dataSetMappingStatus;
    /**
     * @return The resource id of the azure resource
     * 
     */
    private String id;
    /**
     * @return Kind of data set mapping.
     * Expected value is 'BlobFolder'.
     * 
     */
    private String kind;
    /**
     * @return Name of the azure resource
     * 
     */
    private String name;
    /**
     * @return Prefix for blob folder
     * 
     */
    private String prefix;
    /**
     * @return Provisioning state of the data set mapping.
     * 
     */
    private String provisioningState;
    /**
     * @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 GetBlobFolderDataSetMappingResult() {}
    /**
     * @return Container that has the file path.
     * 
     */
    public String containerName() {
        return this.containerName;
    }
    /**
     * @return The id of the source data set.
     * 
     */
    public String dataSetId() {
        return this.dataSetId;
    }
    /**
     * @return Gets the status of the data set mapping.
     * 
     */
    public String dataSetMappingStatus() {
        return this.dataSetMappingStatus;
    }
    /**
     * @return The resource id of the azure resource
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return Kind of data set mapping.
     * Expected value is 'BlobFolder'.
     * 
     */
    public String kind() {
        return this.kind;
    }
    /**
     * @return Name of the azure resource
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return Prefix for blob folder
     * 
     */
    public String prefix() {
        return this.prefix;
    }
    /**
     * @return Provisioning state of the data set mapping.
     * 
     */
    public String provisioningState() {
        return this.provisioningState;
    }
    /**
     * @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(GetBlobFolderDataSetMappingResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String containerName;
        private String dataSetId;
        private String dataSetMappingStatus;
        private String id;
        private String kind;
        private String name;
        private String prefix;
        private String provisioningState;
        private String resourceGroup;
        private String storageAccountName;
        private String subscriptionId;
        private SystemDataResponse systemData;
        private String type;
        public Builder() {}
        public Builder(GetBlobFolderDataSetMappingResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.containerName = defaults.containerName;
    	      this.dataSetId = defaults.dataSetId;
    	      this.dataSetMappingStatus = defaults.dataSetMappingStatus;
    	      this.id = defaults.id;
    	      this.kind = defaults.kind;
    	      this.name = defaults.name;
    	      this.prefix = defaults.prefix;
    	      this.provisioningState = defaults.provisioningState;
    	      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("GetBlobFolderDataSetMappingResult", "containerName");
            }
            this.containerName = containerName;
            return this;
        }
        @CustomType.Setter
        public Builder dataSetId(String dataSetId) {
            if (dataSetId == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "dataSetId");
            }
            this.dataSetId = dataSetId;
            return this;
        }
        @CustomType.Setter
        public Builder dataSetMappingStatus(String dataSetMappingStatus) {
            if (dataSetMappingStatus == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "dataSetMappingStatus");
            }
            this.dataSetMappingStatus = dataSetMappingStatus;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder kind(String kind) {
            if (kind == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "kind");
            }
            this.kind = kind;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder prefix(String prefix) {
            if (prefix == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "prefix");
            }
            this.prefix = prefix;
            return this;
        }
        @CustomType.Setter
        public Builder provisioningState(String provisioningState) {
            if (provisioningState == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "provisioningState");
            }
            this.provisioningState = provisioningState;
            return this;
        }
        @CustomType.Setter
        public Builder resourceGroup(String resourceGroup) {
            if (resourceGroup == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "resourceGroup");
            }
            this.resourceGroup = resourceGroup;
            return this;
        }
        @CustomType.Setter
        public Builder storageAccountName(String storageAccountName) {
            if (storageAccountName == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "storageAccountName");
            }
            this.storageAccountName = storageAccountName;
            return this;
        }
        @CustomType.Setter
        public Builder subscriptionId(String subscriptionId) {
            if (subscriptionId == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "subscriptionId");
            }
            this.subscriptionId = subscriptionId;
            return this;
        }
        @CustomType.Setter
        public Builder systemData(SystemDataResponse systemData) {
            if (systemData == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "systemData");
            }
            this.systemData = systemData;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("GetBlobFolderDataSetMappingResult", "type");
            }
            this.type = type;
            return this;
        }
        public GetBlobFolderDataSetMappingResult build() {
            final var _resultValue = new GetBlobFolderDataSetMappingResult();
            _resultValue.containerName = containerName;
            _resultValue.dataSetId = dataSetId;
            _resultValue.dataSetMappingStatus = dataSetMappingStatus;
            _resultValue.id = id;
            _resultValue.kind = kind;
            _resultValue.name = name;
            _resultValue.prefix = prefix;
            _resultValue.provisioningState = provisioningState;
            _resultValue.resourceGroup = resourceGroup;
            _resultValue.storageAccountName = storageAccountName;
            _resultValue.subscriptionId = subscriptionId;
            _resultValue.systemData = systemData;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy