1. Packages
  2. Azure Native
  3. API Docs
  4. datashare
  5. SqlDBTableDataSetMapping
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.datashare.SqlDBTableDataSetMapping

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    A SQL DB Table data set mapping. Azure REST API version: 2021-08-01. Prior API version in Azure Native 1.x: 2020-09-01.

    Example Usage

    DataSetMappings_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var sqlDBTableDataSetMapping = new AzureNative.DataShare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", new()
        {
            AccountName = "Account1",
            DataSetMappingName = "DatasetMapping1",
            ResourceGroupName = "SampleResourceGroup",
            ShareSubscriptionName = "ShareSubscription1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/datashare/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datashare.NewSqlDBTableDataSetMapping(ctx, "sqlDBTableDataSetMapping", &datashare.SqlDBTableDataSetMappingArgs{
    			AccountName:           pulumi.String("Account1"),
    			DataSetMappingName:    pulumi.String("DatasetMapping1"),
    			ResourceGroupName:     pulumi.String("SampleResourceGroup"),
    			ShareSubscriptionName: pulumi.String("ShareSubscription1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMapping;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMappingArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var sqlDBTableDataSetMapping = new SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", SqlDBTableDataSetMappingArgs.builder()        
                .accountName("Account1")
                .dataSetMappingName("DatasetMapping1")
                .resourceGroupName("SampleResourceGroup")
                .shareSubscriptionName("ShareSubscription1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    sql_db_table_data_set_mapping = azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping",
        account_name="Account1",
        data_set_mapping_name="DatasetMapping1",
        resource_group_name="SampleResourceGroup",
        share_subscription_name="ShareSubscription1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const sqlDBTableDataSetMapping = new azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", {
        accountName: "Account1",
        dataSetMappingName: "DatasetMapping1",
        resourceGroupName: "SampleResourceGroup",
        shareSubscriptionName: "ShareSubscription1",
    });
    
    resources:
      sqlDBTableDataSetMapping:
        type: azure-native:datashare:SqlDBTableDataSetMapping
        properties:
          accountName: Account1
          dataSetMappingName: DatasetMapping1
          resourceGroupName: SampleResourceGroup
          shareSubscriptionName: ShareSubscription1
    

    DataSetMappings_SqlDB_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var sqlDBTableDataSetMapping = new AzureNative.DataShare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", new()
        {
            AccountName = "Account1",
            DataSetId = "a08f184b-0567-4b11-ba22-a1199336d226",
            DataSetMappingName = "DatasetMapping1",
            DatabaseName = "Database1",
            Kind = "SqlDBTable",
            ResourceGroupName = "SampleResourceGroup",
            SchemaName = "dbo",
            ShareSubscriptionName = "ShareSubscription1",
            SqlServerResourceId = "/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Sql/servers/Server1",
            TableName = "Table1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/datashare/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datashare.NewSqlDBTableDataSetMapping(ctx, "sqlDBTableDataSetMapping", &datashare.SqlDBTableDataSetMappingArgs{
    			AccountName:           pulumi.String("Account1"),
    			DataSetId:             pulumi.String("a08f184b-0567-4b11-ba22-a1199336d226"),
    			DataSetMappingName:    pulumi.String("DatasetMapping1"),
    			DatabaseName:          pulumi.String("Database1"),
    			Kind:                  pulumi.String("SqlDBTable"),
    			ResourceGroupName:     pulumi.String("SampleResourceGroup"),
    			SchemaName:            pulumi.String("dbo"),
    			ShareSubscriptionName: pulumi.String("ShareSubscription1"),
    			SqlServerResourceId:   pulumi.String("/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Sql/servers/Server1"),
    			TableName:             pulumi.String("Table1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMapping;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMappingArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var sqlDBTableDataSetMapping = new SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", SqlDBTableDataSetMappingArgs.builder()        
                .accountName("Account1")
                .dataSetId("a08f184b-0567-4b11-ba22-a1199336d226")
                .dataSetMappingName("DatasetMapping1")
                .databaseName("Database1")
                .kind("SqlDBTable")
                .resourceGroupName("SampleResourceGroup")
                .schemaName("dbo")
                .shareSubscriptionName("ShareSubscription1")
                .sqlServerResourceId("/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Sql/servers/Server1")
                .tableName("Table1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    sql_db_table_data_set_mapping = azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping",
        account_name="Account1",
        data_set_id="a08f184b-0567-4b11-ba22-a1199336d226",
        data_set_mapping_name="DatasetMapping1",
        database_name="Database1",
        kind="SqlDBTable",
        resource_group_name="SampleResourceGroup",
        schema_name="dbo",
        share_subscription_name="ShareSubscription1",
        sql_server_resource_id="/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Sql/servers/Server1",
        table_name="Table1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const sqlDBTableDataSetMapping = new azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", {
        accountName: "Account1",
        dataSetId: "a08f184b-0567-4b11-ba22-a1199336d226",
        dataSetMappingName: "DatasetMapping1",
        databaseName: "Database1",
        kind: "SqlDBTable",
        resourceGroupName: "SampleResourceGroup",
        schemaName: "dbo",
        shareSubscriptionName: "ShareSubscription1",
        sqlServerResourceId: "/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Sql/servers/Server1",
        tableName: "Table1",
    });
    
    resources:
      sqlDBTableDataSetMapping:
        type: azure-native:datashare:SqlDBTableDataSetMapping
        properties:
          accountName: Account1
          dataSetId: a08f184b-0567-4b11-ba22-a1199336d226
          dataSetMappingName: DatasetMapping1
          databaseName: Database1
          kind: SqlDBTable
          resourceGroupName: SampleResourceGroup
          schemaName: dbo
          shareSubscriptionName: ShareSubscription1
          sqlServerResourceId: /subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Sql/servers/Server1
          tableName: Table1
    

    DataSetMappings_SqlDWDataSetToAdlsGen2File_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var sqlDBTableDataSetMapping = new AzureNative.DataShare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", new()
        {
            AccountName = "Account1",
            DataSetMappingName = "DatasetMapping1",
            ResourceGroupName = "SampleResourceGroup",
            ShareSubscriptionName = "ShareSubscription1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/datashare/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datashare.NewSqlDBTableDataSetMapping(ctx, "sqlDBTableDataSetMapping", &datashare.SqlDBTableDataSetMappingArgs{
    			AccountName:           pulumi.String("Account1"),
    			DataSetMappingName:    pulumi.String("DatasetMapping1"),
    			ResourceGroupName:     pulumi.String("SampleResourceGroup"),
    			ShareSubscriptionName: pulumi.String("ShareSubscription1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMapping;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMappingArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var sqlDBTableDataSetMapping = new SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", SqlDBTableDataSetMappingArgs.builder()        
                .accountName("Account1")
                .dataSetMappingName("DatasetMapping1")
                .resourceGroupName("SampleResourceGroup")
                .shareSubscriptionName("ShareSubscription1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    sql_db_table_data_set_mapping = azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping",
        account_name="Account1",
        data_set_mapping_name="DatasetMapping1",
        resource_group_name="SampleResourceGroup",
        share_subscription_name="ShareSubscription1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const sqlDBTableDataSetMapping = new azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", {
        accountName: "Account1",
        dataSetMappingName: "DatasetMapping1",
        resourceGroupName: "SampleResourceGroup",
        shareSubscriptionName: "ShareSubscription1",
    });
    
    resources:
      sqlDBTableDataSetMapping:
        type: azure-native:datashare:SqlDBTableDataSetMapping
        properties:
          accountName: Account1
          dataSetMappingName: DatasetMapping1
          resourceGroupName: SampleResourceGroup
          shareSubscriptionName: ShareSubscription1
    

    DataSetMappings_SqlDW_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var sqlDBTableDataSetMapping = new AzureNative.DataShare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", new()
        {
            AccountName = "Account1",
            DataSetMappingName = "DatasetMapping1",
            ResourceGroupName = "SampleResourceGroup",
            ShareSubscriptionName = "ShareSubscription1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/datashare/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datashare.NewSqlDBTableDataSetMapping(ctx, "sqlDBTableDataSetMapping", &datashare.SqlDBTableDataSetMappingArgs{
    			AccountName:           pulumi.String("Account1"),
    			DataSetMappingName:    pulumi.String("DatasetMapping1"),
    			ResourceGroupName:     pulumi.String("SampleResourceGroup"),
    			ShareSubscriptionName: pulumi.String("ShareSubscription1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMapping;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMappingArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var sqlDBTableDataSetMapping = new SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", SqlDBTableDataSetMappingArgs.builder()        
                .accountName("Account1")
                .dataSetMappingName("DatasetMapping1")
                .resourceGroupName("SampleResourceGroup")
                .shareSubscriptionName("ShareSubscription1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    sql_db_table_data_set_mapping = azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping",
        account_name="Account1",
        data_set_mapping_name="DatasetMapping1",
        resource_group_name="SampleResourceGroup",
        share_subscription_name="ShareSubscription1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const sqlDBTableDataSetMapping = new azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", {
        accountName: "Account1",
        dataSetMappingName: "DatasetMapping1",
        resourceGroupName: "SampleResourceGroup",
        shareSubscriptionName: "ShareSubscription1",
    });
    
    resources:
      sqlDBTableDataSetMapping:
        type: azure-native:datashare:SqlDBTableDataSetMapping
        properties:
          accountName: Account1
          dataSetMappingName: DatasetMapping1
          resourceGroupName: SampleResourceGroup
          shareSubscriptionName: ShareSubscription1
    

    DataSetMappings_SynapseWorkspaceSqlPoolTable_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var sqlDBTableDataSetMapping = new AzureNative.DataShare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", new()
        {
            AccountName = "consumerAccount",
            DataSetMappingName = "datasetMappingName1",
            ResourceGroupName = "SampleResourceGroup",
            ShareSubscriptionName = "ShareSubscription1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/datashare/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datashare.NewSqlDBTableDataSetMapping(ctx, "sqlDBTableDataSetMapping", &datashare.SqlDBTableDataSetMappingArgs{
    			AccountName:           pulumi.String("consumerAccount"),
    			DataSetMappingName:    pulumi.String("datasetMappingName1"),
    			ResourceGroupName:     pulumi.String("SampleResourceGroup"),
    			ShareSubscriptionName: pulumi.String("ShareSubscription1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMapping;
    import com.pulumi.azurenative.datashare.SqlDBTableDataSetMappingArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var sqlDBTableDataSetMapping = new SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", SqlDBTableDataSetMappingArgs.builder()        
                .accountName("consumerAccount")
                .dataSetMappingName("datasetMappingName1")
                .resourceGroupName("SampleResourceGroup")
                .shareSubscriptionName("ShareSubscription1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    sql_db_table_data_set_mapping = azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping",
        account_name="consumerAccount",
        data_set_mapping_name="datasetMappingName1",
        resource_group_name="SampleResourceGroup",
        share_subscription_name="ShareSubscription1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const sqlDBTableDataSetMapping = new azure_native.datashare.SqlDBTableDataSetMapping("sqlDBTableDataSetMapping", {
        accountName: "consumerAccount",
        dataSetMappingName: "datasetMappingName1",
        resourceGroupName: "SampleResourceGroup",
        shareSubscriptionName: "ShareSubscription1",
    });
    
    resources:
      sqlDBTableDataSetMapping:
        type: azure-native:datashare:SqlDBTableDataSetMapping
        properties:
          accountName: consumerAccount
          dataSetMappingName: datasetMappingName1
          resourceGroupName: SampleResourceGroup
          shareSubscriptionName: ShareSubscription1
    

    Create SqlDBTableDataSetMapping Resource

    new SqlDBTableDataSetMapping(name: string, args: SqlDBTableDataSetMappingArgs, opts?: CustomResourceOptions);
    @overload
    def SqlDBTableDataSetMapping(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 account_name: Optional[str] = None,
                                 data_set_id: Optional[str] = None,
                                 data_set_mapping_name: Optional[str] = None,
                                 database_name: Optional[str] = None,
                                 resource_group_name: Optional[str] = None,
                                 schema_name: Optional[str] = None,
                                 share_subscription_name: Optional[str] = None,
                                 sql_server_resource_id: Optional[str] = None,
                                 table_name: Optional[str] = None)
    @overload
    def SqlDBTableDataSetMapping(resource_name: str,
                                 args: SqlDBTableDataSetMappingArgs,
                                 opts: Optional[ResourceOptions] = None)
    func NewSqlDBTableDataSetMapping(ctx *Context, name string, args SqlDBTableDataSetMappingArgs, opts ...ResourceOption) (*SqlDBTableDataSetMapping, error)
    public SqlDBTableDataSetMapping(string name, SqlDBTableDataSetMappingArgs args, CustomResourceOptions? opts = null)
    public SqlDBTableDataSetMapping(String name, SqlDBTableDataSetMappingArgs args)
    public SqlDBTableDataSetMapping(String name, SqlDBTableDataSetMappingArgs args, CustomResourceOptions options)
    
    type: azure-native:datashare:SqlDBTableDataSetMapping
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args SqlDBTableDataSetMappingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SqlDBTableDataSetMappingArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SqlDBTableDataSetMappingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SqlDBTableDataSetMappingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SqlDBTableDataSetMappingArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    SqlDBTableDataSetMapping Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The SqlDBTableDataSetMapping resource accepts the following input properties:

    AccountName string
    The name of the share account.
    DataSetId string
    The id of the source data set.
    DatabaseName string
    DatabaseName name of the sink data set
    ResourceGroupName string
    The resource group name.
    SchemaName string
    Schema of the table. Default value is dbo.
    ShareSubscriptionName string
    The name of the share subscription which will hold the data set sink.
    SqlServerResourceId string
    Resource id of SQL server
    TableName string
    SQL DB table name.
    DataSetMappingName string
    The name of the data set mapping to be created.
    AccountName string
    The name of the share account.
    DataSetId string
    The id of the source data set.
    DatabaseName string
    DatabaseName name of the sink data set
    ResourceGroupName string
    The resource group name.
    SchemaName string
    Schema of the table. Default value is dbo.
    ShareSubscriptionName string
    The name of the share subscription which will hold the data set sink.
    SqlServerResourceId string
    Resource id of SQL server
    TableName string
    SQL DB table name.
    DataSetMappingName string
    The name of the data set mapping to be created.
    accountName String
    The name of the share account.
    dataSetId String
    The id of the source data set.
    databaseName String
    DatabaseName name of the sink data set
    resourceGroupName String
    The resource group name.
    schemaName String
    Schema of the table. Default value is dbo.
    shareSubscriptionName String
    The name of the share subscription which will hold the data set sink.
    sqlServerResourceId String
    Resource id of SQL server
    tableName String
    SQL DB table name.
    dataSetMappingName String
    The name of the data set mapping to be created.
    accountName string
    The name of the share account.
    dataSetId string
    The id of the source data set.
    databaseName string
    DatabaseName name of the sink data set
    resourceGroupName string
    The resource group name.
    schemaName string
    Schema of the table. Default value is dbo.
    shareSubscriptionName string
    The name of the share subscription which will hold the data set sink.
    sqlServerResourceId string
    Resource id of SQL server
    tableName string
    SQL DB table name.
    dataSetMappingName string
    The name of the data set mapping to be created.
    account_name str
    The name of the share account.
    data_set_id str
    The id of the source data set.
    database_name str
    DatabaseName name of the sink data set
    resource_group_name str
    The resource group name.
    schema_name str
    Schema of the table. Default value is dbo.
    share_subscription_name str
    The name of the share subscription which will hold the data set sink.
    sql_server_resource_id str
    Resource id of SQL server
    table_name str
    SQL DB table name.
    data_set_mapping_name str
    The name of the data set mapping to be created.
    accountName String
    The name of the share account.
    dataSetId String
    The id of the source data set.
    databaseName String
    DatabaseName name of the sink data set
    resourceGroupName String
    The resource group name.
    schemaName String
    Schema of the table. Default value is dbo.
    shareSubscriptionName String
    The name of the share subscription which will hold the data set sink.
    sqlServerResourceId String
    Resource id of SQL server
    tableName String
    SQL DB table name.
    dataSetMappingName String
    The name of the data set mapping to be created.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SqlDBTableDataSetMapping resource produces the following output properties:

    DataSetMappingStatus string
    Gets the status of the data set mapping.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the azure resource
    ProvisioningState string
    Provisioning state of the data set mapping.
    SystemData Pulumi.AzureNative.DataShare.Outputs.SystemDataResponse
    System Data of the Azure resource.
    Type string
    Type of the azure resource
    DataSetMappingStatus string
    Gets the status of the data set mapping.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the azure resource
    ProvisioningState string
    Provisioning state of the data set mapping.
    SystemData SystemDataResponse
    System Data of the Azure resource.
    Type string
    Type of the azure resource
    dataSetMappingStatus String
    Gets the status of the data set mapping.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the azure resource
    provisioningState String
    Provisioning state of the data set mapping.
    systemData SystemDataResponse
    System Data of the Azure resource.
    type String
    Type of the azure resource
    dataSetMappingStatus string
    Gets the status of the data set mapping.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Name of the azure resource
    provisioningState string
    Provisioning state of the data set mapping.
    systemData SystemDataResponse
    System Data of the Azure resource.
    type string
    Type of the azure resource
    data_set_mapping_status str
    Gets the status of the data set mapping.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Name of the azure resource
    provisioning_state str
    Provisioning state of the data set mapping.
    system_data SystemDataResponse
    System Data of the Azure resource.
    type str
    Type of the azure resource
    dataSetMappingStatus String
    Gets the status of the data set mapping.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the azure resource
    provisioningState String
    Provisioning state of the data set mapping.
    systemData Property Map
    System Data of the Azure resource.
    type String
    Type of the azure resource

    Supporting Types

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The type of identity that last modified the resource.
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The type of identity that last modified the resource.
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The type of identity that last modified the resource.
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The type of identity that last modified the resource.
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The type of identity that last modified the resource.
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The type of identity that last modified the resource.
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:datashare:SqlDBTableDataSetMapping datasetMappingName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shareSubscriptions/{shareSubscriptionName}/dataSetMappings/{dataSetMappingName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi