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

com.pulumi.azurenative.datashare.outputs.GetSqlDWTableDataSetMappingResult 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 GetSqlDWTableDataSetMappingResult {
    /**
     * @return The id of the source data set.
     * 
     */
    private String dataSetId;
    /**
     * @return Gets the status of the data set mapping.
     * 
     */
    private String dataSetMappingStatus;
    /**
     * @return DataWarehouse name of the source data set
     * 
     */
    private String dataWarehouseName;
    /**
     * @return The resource id of the azure resource
     * 
     */
    private String id;
    /**
     * @return Kind of data set mapping.
     * Expected value is 'SqlDWTable'.
     * 
     */
    private String kind;
    /**
     * @return Name of the azure resource
     * 
     */
    private String name;
    /**
     * @return Provisioning state of the data set mapping.
     * 
     */
    private String provisioningState;
    /**
     * @return Schema of the table. Default value is dbo.
     * 
     */
    private String schemaName;
    /**
     * @return Resource id of SQL server
     * 
     */
    private String sqlServerResourceId;
    /**
     * @return System Data of the Azure resource.
     * 
     */
    private SystemDataResponse systemData;
    /**
     * @return SQL DW table name.
     * 
     */
    private String tableName;
    /**
     * @return Type of the azure resource
     * 
     */
    private String type;

    private GetSqlDWTableDataSetMappingResult() {}
    /**
     * @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 DataWarehouse name of the source data set
     * 
     */
    public String dataWarehouseName() {
        return this.dataWarehouseName;
    }
    /**
     * @return The resource id of the azure resource
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return Kind of data set mapping.
     * Expected value is 'SqlDWTable'.
     * 
     */
    public String kind() {
        return this.kind;
    }
    /**
     * @return Name of the azure resource
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return Provisioning state of the data set mapping.
     * 
     */
    public String provisioningState() {
        return this.provisioningState;
    }
    /**
     * @return Schema of the table. Default value is dbo.
     * 
     */
    public String schemaName() {
        return this.schemaName;
    }
    /**
     * @return Resource id of SQL server
     * 
     */
    public String sqlServerResourceId() {
        return this.sqlServerResourceId;
    }
    /**
     * @return System Data of the Azure resource.
     * 
     */
    public SystemDataResponse systemData() {
        return this.systemData;
    }
    /**
     * @return SQL DW table name.
     * 
     */
    public String tableName() {
        return this.tableName;
    }
    /**
     * @return Type of the azure resource
     * 
     */
    public String type() {
        return this.type;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(GetSqlDWTableDataSetMappingResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String dataSetId;
        private String dataSetMappingStatus;
        private String dataWarehouseName;
        private String id;
        private String kind;
        private String name;
        private String provisioningState;
        private String schemaName;
        private String sqlServerResourceId;
        private SystemDataResponse systemData;
        private String tableName;
        private String type;
        public Builder() {}
        public Builder(GetSqlDWTableDataSetMappingResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.dataSetId = defaults.dataSetId;
    	      this.dataSetMappingStatus = defaults.dataSetMappingStatus;
    	      this.dataWarehouseName = defaults.dataWarehouseName;
    	      this.id = defaults.id;
    	      this.kind = defaults.kind;
    	      this.name = defaults.name;
    	      this.provisioningState = defaults.provisioningState;
    	      this.schemaName = defaults.schemaName;
    	      this.sqlServerResourceId = defaults.sqlServerResourceId;
    	      this.systemData = defaults.systemData;
    	      this.tableName = defaults.tableName;
    	      this.type = defaults.type;
        }

        @CustomType.Setter
        public Builder dataSetId(String dataSetId) {
            if (dataSetId == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "dataSetId");
            }
            this.dataSetId = dataSetId;
            return this;
        }
        @CustomType.Setter
        public Builder dataSetMappingStatus(String dataSetMappingStatus) {
            if (dataSetMappingStatus == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "dataSetMappingStatus");
            }
            this.dataSetMappingStatus = dataSetMappingStatus;
            return this;
        }
        @CustomType.Setter
        public Builder dataWarehouseName(String dataWarehouseName) {
            if (dataWarehouseName == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "dataWarehouseName");
            }
            this.dataWarehouseName = dataWarehouseName;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder kind(String kind) {
            if (kind == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "kind");
            }
            this.kind = kind;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder provisioningState(String provisioningState) {
            if (provisioningState == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "provisioningState");
            }
            this.provisioningState = provisioningState;
            return this;
        }
        @CustomType.Setter
        public Builder schemaName(String schemaName) {
            if (schemaName == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "schemaName");
            }
            this.schemaName = schemaName;
            return this;
        }
        @CustomType.Setter
        public Builder sqlServerResourceId(String sqlServerResourceId) {
            if (sqlServerResourceId == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "sqlServerResourceId");
            }
            this.sqlServerResourceId = sqlServerResourceId;
            return this;
        }
        @CustomType.Setter
        public Builder systemData(SystemDataResponse systemData) {
            if (systemData == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "systemData");
            }
            this.systemData = systemData;
            return this;
        }
        @CustomType.Setter
        public Builder tableName(String tableName) {
            if (tableName == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "tableName");
            }
            this.tableName = tableName;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("GetSqlDWTableDataSetMappingResult", "type");
            }
            this.type = type;
            return this;
        }
        public GetSqlDWTableDataSetMappingResult build() {
            final var _resultValue = new GetSqlDWTableDataSetMappingResult();
            _resultValue.dataSetId = dataSetId;
            _resultValue.dataSetMappingStatus = dataSetMappingStatus;
            _resultValue.dataWarehouseName = dataWarehouseName;
            _resultValue.id = id;
            _resultValue.kind = kind;
            _resultValue.name = name;
            _resultValue.provisioningState = provisioningState;
            _resultValue.schemaName = schemaName;
            _resultValue.sqlServerResourceId = sqlServerResourceId;
            _resultValue.systemData = systemData;
            _resultValue.tableName = tableName;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy