azure-native.datashare.BlobDataSetMapping
Explore with Pulumi AI
A Blob data set mapping. API Version: 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 blobDataSetMapping = new AzureNative.DataShare.BlobDataSetMapping("blobDataSetMapping", new()
{
AccountName = "Account1",
ContainerName = "C1",
DataSetId = "a08f184b-0567-4b11-ba22-a1199336d226",
DataSetMappingName = "DatasetMapping1",
FilePath = "file21",
Kind = "Blob",
ResourceGroup = "SampleResourceGroup",
ResourceGroupName = "SampleResourceGroup",
ShareSubscriptionName = "ShareSubscription1",
StorageAccountName = "storage2",
SubscriptionId = "433a8dfd-e5d5-4e77-ad86-90acdc75eb1a",
});
});
package main
import (
datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datashare.NewBlobDataSetMapping(ctx, "blobDataSetMapping", &datashare.BlobDataSetMappingArgs{
AccountName: pulumi.String("Account1"),
ContainerName: pulumi.String("C1"),
DataSetId: pulumi.String("a08f184b-0567-4b11-ba22-a1199336d226"),
DataSetMappingName: pulumi.String("DatasetMapping1"),
FilePath: pulumi.String("file21"),
Kind: pulumi.String("Blob"),
ResourceGroup: pulumi.String("SampleResourceGroup"),
ResourceGroupName: pulumi.String("SampleResourceGroup"),
ShareSubscriptionName: pulumi.String("ShareSubscription1"),
StorageAccountName: pulumi.String("storage2"),
SubscriptionId: pulumi.String("433a8dfd-e5d5-4e77-ad86-90acdc75eb1a"),
})
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.BlobDataSetMapping;
import com.pulumi.azurenative.datashare.BlobDataSetMappingArgs;
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 blobDataSetMapping = new BlobDataSetMapping("blobDataSetMapping", BlobDataSetMappingArgs.builder()
.accountName("Account1")
.containerName("C1")
.dataSetId("a08f184b-0567-4b11-ba22-a1199336d226")
.dataSetMappingName("DatasetMapping1")
.filePath("file21")
.kind("Blob")
.resourceGroup("SampleResourceGroup")
.resourceGroupName("SampleResourceGroup")
.shareSubscriptionName("ShareSubscription1")
.storageAccountName("storage2")
.subscriptionId("433a8dfd-e5d5-4e77-ad86-90acdc75eb1a")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
blob_data_set_mapping = azure_native.datashare.BlobDataSetMapping("blobDataSetMapping",
account_name="Account1",
container_name="C1",
data_set_id="a08f184b-0567-4b11-ba22-a1199336d226",
data_set_mapping_name="DatasetMapping1",
file_path="file21",
kind="Blob",
resource_group="SampleResourceGroup",
resource_group_name="SampleResourceGroup",
share_subscription_name="ShareSubscription1",
storage_account_name="storage2",
subscription_id="433a8dfd-e5d5-4e77-ad86-90acdc75eb1a")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const blobDataSetMapping = new azure_native.datashare.BlobDataSetMapping("blobDataSetMapping", {
accountName: "Account1",
containerName: "C1",
dataSetId: "a08f184b-0567-4b11-ba22-a1199336d226",
dataSetMappingName: "DatasetMapping1",
filePath: "file21",
kind: "Blob",
resourceGroup: "SampleResourceGroup",
resourceGroupName: "SampleResourceGroup",
shareSubscriptionName: "ShareSubscription1",
storageAccountName: "storage2",
subscriptionId: "433a8dfd-e5d5-4e77-ad86-90acdc75eb1a",
});
resources:
blobDataSetMapping:
type: azure-native:datashare:BlobDataSetMapping
properties:
accountName: Account1
containerName: C1
dataSetId: a08f184b-0567-4b11-ba22-a1199336d226
dataSetMappingName: DatasetMapping1
filePath: file21
kind: Blob
resourceGroup: SampleResourceGroup
resourceGroupName: SampleResourceGroup
shareSubscriptionName: ShareSubscription1
storageAccountName: storage2
subscriptionId: 433a8dfd-e5d5-4e77-ad86-90acdc75eb1a
DataSetMappings_SqlDB_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var blobDataSetMapping = new AzureNative.DataShare.BlobDataSetMapping("blobDataSetMapping", new()
{
AccountName = "Account1",
DataSetMappingName = "DatasetMapping1",
ResourceGroupName = "SampleResourceGroup",
ShareSubscriptionName = "ShareSubscription1",
});
});
package main
import (
datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datashare.NewBlobDataSetMapping(ctx, "blobDataSetMapping", &datashare.BlobDataSetMappingArgs{
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.BlobDataSetMapping;
import com.pulumi.azurenative.datashare.BlobDataSetMappingArgs;
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 blobDataSetMapping = new BlobDataSetMapping("blobDataSetMapping", BlobDataSetMappingArgs.builder()
.accountName("Account1")
.dataSetMappingName("DatasetMapping1")
.resourceGroupName("SampleResourceGroup")
.shareSubscriptionName("ShareSubscription1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
blob_data_set_mapping = azure_native.datashare.BlobDataSetMapping("blobDataSetMapping",
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 blobDataSetMapping = new azure_native.datashare.BlobDataSetMapping("blobDataSetMapping", {
accountName: "Account1",
dataSetMappingName: "DatasetMapping1",
resourceGroupName: "SampleResourceGroup",
shareSubscriptionName: "ShareSubscription1",
});
resources:
blobDataSetMapping:
type: azure-native:datashare:BlobDataSetMapping
properties:
accountName: Account1
dataSetMappingName: DatasetMapping1
resourceGroupName: SampleResourceGroup
shareSubscriptionName: ShareSubscription1
DataSetMappings_SqlDWDataSetToAdlsGen2File_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var blobDataSetMapping = new AzureNative.DataShare.BlobDataSetMapping("blobDataSetMapping", new()
{
AccountName = "Account1",
DataSetMappingName = "DatasetMapping1",
ResourceGroupName = "SampleResourceGroup",
ShareSubscriptionName = "ShareSubscription1",
});
});
package main
import (
datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datashare.NewBlobDataSetMapping(ctx, "blobDataSetMapping", &datashare.BlobDataSetMappingArgs{
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.BlobDataSetMapping;
import com.pulumi.azurenative.datashare.BlobDataSetMappingArgs;
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 blobDataSetMapping = new BlobDataSetMapping("blobDataSetMapping", BlobDataSetMappingArgs.builder()
.accountName("Account1")
.dataSetMappingName("DatasetMapping1")
.resourceGroupName("SampleResourceGroup")
.shareSubscriptionName("ShareSubscription1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
blob_data_set_mapping = azure_native.datashare.BlobDataSetMapping("blobDataSetMapping",
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 blobDataSetMapping = new azure_native.datashare.BlobDataSetMapping("blobDataSetMapping", {
accountName: "Account1",
dataSetMappingName: "DatasetMapping1",
resourceGroupName: "SampleResourceGroup",
shareSubscriptionName: "ShareSubscription1",
});
resources:
blobDataSetMapping:
type: azure-native:datashare:BlobDataSetMapping
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 blobDataSetMapping = new AzureNative.DataShare.BlobDataSetMapping("blobDataSetMapping", new()
{
AccountName = "Account1",
DataSetMappingName = "DatasetMapping1",
ResourceGroupName = "SampleResourceGroup",
ShareSubscriptionName = "ShareSubscription1",
});
});
package main
import (
datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datashare.NewBlobDataSetMapping(ctx, "blobDataSetMapping", &datashare.BlobDataSetMappingArgs{
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.BlobDataSetMapping;
import com.pulumi.azurenative.datashare.BlobDataSetMappingArgs;
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 blobDataSetMapping = new BlobDataSetMapping("blobDataSetMapping", BlobDataSetMappingArgs.builder()
.accountName("Account1")
.dataSetMappingName("DatasetMapping1")
.resourceGroupName("SampleResourceGroup")
.shareSubscriptionName("ShareSubscription1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
blob_data_set_mapping = azure_native.datashare.BlobDataSetMapping("blobDataSetMapping",
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 blobDataSetMapping = new azure_native.datashare.BlobDataSetMapping("blobDataSetMapping", {
accountName: "Account1",
dataSetMappingName: "DatasetMapping1",
resourceGroupName: "SampleResourceGroup",
shareSubscriptionName: "ShareSubscription1",
});
resources:
blobDataSetMapping:
type: azure-native:datashare:BlobDataSetMapping
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 blobDataSetMapping = new AzureNative.DataShare.BlobDataSetMapping("blobDataSetMapping", new()
{
AccountName = "consumerAccount",
DataSetMappingName = "datasetMappingName1",
ResourceGroupName = "SampleResourceGroup",
ShareSubscriptionName = "ShareSubscription1",
});
});
package main
import (
datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datashare.NewBlobDataSetMapping(ctx, "blobDataSetMapping", &datashare.BlobDataSetMappingArgs{
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.BlobDataSetMapping;
import com.pulumi.azurenative.datashare.BlobDataSetMappingArgs;
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 blobDataSetMapping = new BlobDataSetMapping("blobDataSetMapping", BlobDataSetMappingArgs.builder()
.accountName("consumerAccount")
.dataSetMappingName("datasetMappingName1")
.resourceGroupName("SampleResourceGroup")
.shareSubscriptionName("ShareSubscription1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
blob_data_set_mapping = azure_native.datashare.BlobDataSetMapping("blobDataSetMapping",
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 blobDataSetMapping = new azure_native.datashare.BlobDataSetMapping("blobDataSetMapping", {
accountName: "consumerAccount",
dataSetMappingName: "datasetMappingName1",
resourceGroupName: "SampleResourceGroup",
shareSubscriptionName: "ShareSubscription1",
});
resources:
blobDataSetMapping:
type: azure-native:datashare:BlobDataSetMapping
properties:
accountName: consumerAccount
dataSetMappingName: datasetMappingName1
resourceGroupName: SampleResourceGroup
shareSubscriptionName: ShareSubscription1
Create BlobDataSetMapping Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BlobDataSetMapping(name: string, args: BlobDataSetMappingArgs, opts?: CustomResourceOptions);
@overload
def BlobDataSetMapping(resource_name: str,
args: BlobDataSetMappingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BlobDataSetMapping(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
container_name: Optional[str] = None,
data_set_id: Optional[str] = None,
file_path: Optional[str] = None,
resource_group: Optional[str] = None,
resource_group_name: Optional[str] = None,
share_subscription_name: Optional[str] = None,
storage_account_name: Optional[str] = None,
subscription_id: Optional[str] = None,
data_set_mapping_name: Optional[str] = None,
output_type: Optional[Union[str, OutputType]] = None)
func NewBlobDataSetMapping(ctx *Context, name string, args BlobDataSetMappingArgs, opts ...ResourceOption) (*BlobDataSetMapping, error)
public BlobDataSetMapping(string name, BlobDataSetMappingArgs args, CustomResourceOptions? opts = null)
public BlobDataSetMapping(String name, BlobDataSetMappingArgs args)
public BlobDataSetMapping(String name, BlobDataSetMappingArgs args, CustomResourceOptions options)
type: azure-native:datashare:BlobDataSetMapping
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BlobDataSetMappingArgs
- 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 BlobDataSetMappingArgs
- 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 BlobDataSetMappingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BlobDataSetMappingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BlobDataSetMappingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var blobDataSetMappingResource = new AzureNative.Datashare.BlobDataSetMapping("blobDataSetMappingResource", new()
{
AccountName = "string",
ContainerName = "string",
DataSetId = "string",
FilePath = "string",
Kind = "string",
ResourceGroup = "string",
ResourceGroupName = "string",
ShareSubscriptionName = "string",
StorageAccountName = "string",
SubscriptionId = "string",
DataSetMappingName = "string",
OutputType = "string",
});
example, err := datashare.NewBlobDataSetMapping(ctx, "blobDataSetMappingResource", &datashare.BlobDataSetMappingArgs{
AccountName: "string",
ContainerName: "string",
DataSetId: "string",
FilePath: "string",
Kind: "string",
ResourceGroup: "string",
ResourceGroupName: "string",
ShareSubscriptionName: "string",
StorageAccountName: "string",
SubscriptionId: "string",
DataSetMappingName: "string",
OutputType: "string",
})
var blobDataSetMappingResource = new BlobDataSetMapping("blobDataSetMappingResource", BlobDataSetMappingArgs.builder()
.accountName("string")
.containerName("string")
.dataSetId("string")
.filePath("string")
.kind("string")
.resourceGroup("string")
.resourceGroupName("string")
.shareSubscriptionName("string")
.storageAccountName("string")
.subscriptionId("string")
.dataSetMappingName("string")
.outputType("string")
.build());
blob_data_set_mapping_resource = azure_native.datashare.BlobDataSetMapping("blobDataSetMappingResource",
account_name=string,
container_name=string,
data_set_id=string,
file_path=string,
kind=string,
resource_group=string,
resource_group_name=string,
share_subscription_name=string,
storage_account_name=string,
subscription_id=string,
data_set_mapping_name=string,
output_type=string)
const blobDataSetMappingResource = new azure_native.datashare.BlobDataSetMapping("blobDataSetMappingResource", {
accountName: "string",
containerName: "string",
dataSetId: "string",
filePath: "string",
kind: "string",
resourceGroup: "string",
resourceGroupName: "string",
shareSubscriptionName: "string",
storageAccountName: "string",
subscriptionId: "string",
dataSetMappingName: "string",
outputType: "string",
});
type: azure-native:datashare:BlobDataSetMapping
properties:
accountName: string
containerName: string
dataSetId: string
dataSetMappingName: string
filePath: string
kind: string
outputType: string
resourceGroup: string
resourceGroupName: string
shareSubscriptionName: string
storageAccountName: string
subscriptionId: string
BlobDataSetMapping 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 BlobDataSetMapping resource accepts the following input properties:
- Account
Name string - The name of the share account.
- Container
Name string - Container that has the file path.
- Data
Set stringId - The id of the source data set.
- File
Path string - File path within the source data set
- Resource
Group string - Resource group of storage account.
- Resource
Group stringName - The resource group name.
- string
- The name of the share subscription which will hold the data set sink.
- Storage
Account stringName - Storage account name of the source data set.
- Subscription
Id string - Subscription id of storage account.
- Data
Set stringMapping Name - The name of the data set mapping to be created.
- Output
Type string | Pulumi.Azure Native. Data Share. Output Type - File output type
- Account
Name string - The name of the share account.
- Container
Name string - Container that has the file path.
- Data
Set stringId - The id of the source data set.
- File
Path string - File path within the source data set
- Resource
Group string - Resource group of storage account.
- Resource
Group stringName - The resource group name.
- string
- The name of the share subscription which will hold the data set sink.
- Storage
Account stringName - Storage account name of the source data set.
- Subscription
Id string - Subscription id of storage account.
- Data
Set stringMapping Name - The name of the data set mapping to be created.
- Output
Type string | OutputType - File output type
- account
Name String - The name of the share account.
- container
Name String - Container that has the file path.
- data
Set StringId - The id of the source data set.
- file
Path String - File path within the source data set
- resource
Group String - Resource group of storage account.
- resource
Group StringName - The resource group name.
- String
- The name of the share subscription which will hold the data set sink.
- storage
Account StringName - Storage account name of the source data set.
- subscription
Id String - Subscription id of storage account.
- data
Set StringMapping Name - The name of the data set mapping to be created.
- output
Type String | OutputType - File output type
- account
Name string - The name of the share account.
- container
Name string - Container that has the file path.
- data
Set stringId - The id of the source data set.
- file
Path string - File path within the source data set
- resource
Group string - Resource group of storage account.
- resource
Group stringName - The resource group name.
- string
- The name of the share subscription which will hold the data set sink.
- storage
Account stringName - Storage account name of the source data set.
- subscription
Id string - Subscription id of storage account.
- data
Set stringMapping Name - The name of the data set mapping to be created.
- output
Type string | OutputType - File output type
- account_
name str - The name of the share account.
- container_
name str - Container that has the file path.
- data_
set_ strid - The id of the source data set.
- file_
path str - File path within the source data set
- resource_
group str - Resource group of storage account.
- resource_
group_ strname - The resource group name.
- str
- The name of the share subscription which will hold the data set sink.
- storage_
account_ strname - Storage account name of the source data set.
- subscription_
id str - Subscription id of storage account.
- data_
set_ strmapping_ name - The name of the data set mapping to be created.
- output_
type str | OutputType - File output type
- account
Name String - The name of the share account.
- container
Name String - Container that has the file path.
- data
Set StringId - The id of the source data set.
- file
Path String - File path within the source data set
- resource
Group String - Resource group of storage account.
- resource
Group StringName - The resource group name.
- String
- The name of the share subscription which will hold the data set sink.
- storage
Account StringName - Storage account name of the source data set.
- subscription
Id String - Subscription id of storage account.
- data
Set StringMapping Name - The name of the data set mapping to be created.
- output
Type String | "Csv" | "Parquet" - File output type
Outputs
All input properties are implicitly available as output properties. Additionally, the BlobDataSetMapping resource produces the following output properties:
- Data
Set stringMapping Status - 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
- Provisioning
State string - Provisioning state of the data set mapping.
- System
Data Pulumi.Azure Native. Data Share. Outputs. System Data Response - System Data of the Azure resource.
- Type string
- Type of the azure resource
- Data
Set stringMapping Status - 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
- Provisioning
State string - Provisioning state of the data set mapping.
- System
Data SystemData Response - System Data of the Azure resource.
- Type string
- Type of the azure resource
- data
Set StringMapping Status - 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
- provisioning
State String - Provisioning state of the data set mapping.
- system
Data SystemData Response - System Data of the Azure resource.
- type String
- Type of the azure resource
- data
Set stringMapping Status - 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
- provisioning
State string - Provisioning state of the data set mapping.
- system
Data SystemData Response - System Data of the Azure resource.
- type string
- Type of the azure resource
- data_
set_ strmapping_ status - 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 SystemData Response - System Data of the Azure resource.
- type str
- Type of the azure resource
- data
Set StringMapping Status - 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
- provisioning
State String - Provisioning state of the data set mapping.
- system
Data Property Map - System Data of the Azure resource.
- type String
- Type of the azure resource
Supporting Types
OutputType, OutputTypeArgs
- Csv
- Csv
- Parquet
- Parquet
- Output
Type Csv - Csv
- Output
Type Parquet - Parquet
- Csv
- Csv
- Parquet
- Parquet
- Csv
- Csv
- Parquet
- Parquet
- CSV
- Csv
- PARQUET
- Parquet
- "Csv"
- Csv
- "Parquet"
- Parquet
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The type of identity that last modified the resource.
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The type of identity that last modified the resource.
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The type of identity that last modified the resource.
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The type of identity that last modified the resource.
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The type of identity that last modified the resource.
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The type of identity that last modified the resource.
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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:BlobDataSetMapping datasetMappingName /subscriptions/4e745bb7-c420-479b-b0d6-a0f92d48a227/resourceGroups/SampleResourceGroup/providers/Microsoft.DataShare/accounts/consumerAccount/shareSubscriptions/ShareSubscription1/dataSetMappings/datasetMappingName1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0