azure-native.machinelearningservices.MachineLearningDataset
Explore with Pulumi AI
Machine Learning dataset object wrapped into ARM resource envelope. API Version: 2020-05-01-preview.
Example Usage
Create Dataset
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machineLearningDataset = new AzureNative.MachineLearningServices.MachineLearningDataset("machineLearningDataset", new()
{
DatasetName = "datasetName123",
DatasetType = "file",
Parameters = new AzureNative.MachineLearningServices.Inputs.DatasetCreateRequestParametersArgs
{
Path = new AzureNative.MachineLearningServices.Inputs.DatasetCreateRequestPathArgs
{
DataPath = new AzureNative.MachineLearningServices.Inputs.DatasetCreateRequestDataPathArgs
{
DatastoreName = "testblobfromarm",
RelativePath = "UI/03-26-2020_083359_UTC/latin1encoding.csv",
},
},
},
Registration = new AzureNative.MachineLearningServices.Inputs.DatasetCreateRequestRegistrationArgs
{
Description = "test description",
Name = "datasetName123",
},
ResourceGroupName = "acjain-mleastUS2",
SkipValidation = false,
WorkspaceName = "acjain-mleastUS2",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewMachineLearningDataset(ctx, "machineLearningDataset", &machinelearningservices.MachineLearningDatasetArgs{
DatasetName: pulumi.String("datasetName123"),
DatasetType: pulumi.String("file"),
Parameters: &machinelearningservices.DatasetCreateRequestParametersArgs{
Path: &machinelearningservices.DatasetCreateRequestPathArgs{
DataPath: &machinelearningservices.DatasetCreateRequestDataPathArgs{
DatastoreName: pulumi.String("testblobfromarm"),
RelativePath: pulumi.String("UI/03-26-2020_083359_UTC/latin1encoding.csv"),
},
},
},
Registration: &machinelearningservices.DatasetCreateRequestRegistrationArgs{
Description: pulumi.String("test description"),
Name: pulumi.String("datasetName123"),
},
ResourceGroupName: pulumi.String("acjain-mleastUS2"),
SkipValidation: pulumi.Bool(false),
WorkspaceName: pulumi.String("acjain-mleastUS2"),
})
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.machinelearningservices.MachineLearningDataset;
import com.pulumi.azurenative.machinelearningservices.MachineLearningDatasetArgs;
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 machineLearningDataset = new MachineLearningDataset("machineLearningDataset", MachineLearningDatasetArgs.builder()
.datasetName("datasetName123")
.datasetType("file")
.parameters(Map.of("path", Map.of("dataPath", Map.ofEntries(
Map.entry("datastoreName", "testblobfromarm"),
Map.entry("relativePath", "UI/03-26-2020_083359_UTC/latin1encoding.csv")
))))
.registration(Map.ofEntries(
Map.entry("description", "test description"),
Map.entry("name", "datasetName123")
))
.resourceGroupName("acjain-mleastUS2")
.skipValidation(false)
.workspaceName("acjain-mleastUS2")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
machine_learning_dataset = azure_native.machinelearningservices.MachineLearningDataset("machineLearningDataset",
dataset_name="datasetName123",
dataset_type="file",
parameters=azure_native.machinelearningservices.DatasetCreateRequestParametersArgs(
path=azure_native.machinelearningservices.DatasetCreateRequestPathArgs(
data_path=azure_native.machinelearningservices.DatasetCreateRequestDataPathArgs(
datastore_name="testblobfromarm",
relative_path="UI/03-26-2020_083359_UTC/latin1encoding.csv",
),
),
),
registration=azure_native.machinelearningservices.DatasetCreateRequestRegistrationArgs(
description="test description",
name="datasetName123",
),
resource_group_name="acjain-mleastUS2",
skip_validation=False,
workspace_name="acjain-mleastUS2")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machineLearningDataset = new azure_native.machinelearningservices.MachineLearningDataset("machineLearningDataset", {
datasetName: "datasetName123",
datasetType: "file",
parameters: {
path: {
dataPath: {
datastoreName: "testblobfromarm",
relativePath: "UI/03-26-2020_083359_UTC/latin1encoding.csv",
},
},
},
registration: {
description: "test description",
name: "datasetName123",
},
resourceGroupName: "acjain-mleastUS2",
skipValidation: false,
workspaceName: "acjain-mleastUS2",
});
resources:
machineLearningDataset:
type: azure-native:machinelearningservices:MachineLearningDataset
properties:
datasetName: datasetName123
datasetType: file
parameters:
path:
dataPath:
datastoreName: testblobfromarm
relativePath: UI/03-26-2020_083359_UTC/latin1encoding.csv
registration:
description: test description
name: datasetName123
resourceGroupName: acjain-mleastUS2
skipValidation: false
workspaceName: acjain-mleastUS2
Create MachineLearningDataset Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MachineLearningDataset(name: string, args: MachineLearningDatasetArgs, opts?: CustomResourceOptions);
@overload
def MachineLearningDataset(resource_name: str,
args: MachineLearningDatasetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MachineLearningDataset(resource_name: str,
opts: Optional[ResourceOptions] = None,
dataset_type: Optional[Union[str, DatasetType]] = None,
parameters: Optional[DatasetCreateRequestParametersArgs] = None,
registration: Optional[DatasetCreateRequestRegistrationArgs] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
dataset_name: Optional[str] = None,
skip_validation: Optional[bool] = None,
time_series: Optional[DatasetCreateRequestTimeSeriesArgs] = None)
func NewMachineLearningDataset(ctx *Context, name string, args MachineLearningDatasetArgs, opts ...ResourceOption) (*MachineLearningDataset, error)
public MachineLearningDataset(string name, MachineLearningDatasetArgs args, CustomResourceOptions? opts = null)
public MachineLearningDataset(String name, MachineLearningDatasetArgs args)
public MachineLearningDataset(String name, MachineLearningDatasetArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:MachineLearningDataset
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 MachineLearningDatasetArgs
- 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 MachineLearningDatasetArgs
- 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 MachineLearningDatasetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MachineLearningDatasetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MachineLearningDatasetArgs
- 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 machineLearningDatasetResource = new AzureNative.Machinelearningservices.MachineLearningDataset("machineLearningDatasetResource", new()
{
DatasetType = "string",
Parameters =
{
{ "header", "string" },
{ "includePath", false },
{ "partitionFormat", "string" },
{ "path",
{
{ "dataPath",
{
{ "datastoreName", "string" },
{ "relativePath", "string" },
} },
{ "httpUrl", "string" },
} },
{ "query",
{
{ "datastoreName", "string" },
{ "query", "string" },
} },
{ "separator", "string" },
{ "sourceType", "string" },
},
Registration =
{
{ "description", "string" },
{ "name", "string" },
{ "tags",
{
{ "string", "string" },
} },
},
ResourceGroupName = "string",
WorkspaceName = "string",
DatasetName = "string",
SkipValidation = false,
TimeSeries =
{
{ "coarseGrainTimestamp", "string" },
{ "fineGrainTimestamp", "string" },
},
});
example, err := machinelearningservices.NewMachineLearningDataset(ctx, "machineLearningDatasetResource", &machinelearningservices.MachineLearningDatasetArgs{
DatasetType: "string",
Parameters: map[string]interface{}{
"header": "string",
"includePath": false,
"partitionFormat": "string",
"path": map[string]interface{}{
"dataPath": map[string]interface{}{
"datastoreName": "string",
"relativePath": "string",
},
"httpUrl": "string",
},
"query": map[string]interface{}{
"datastoreName": "string",
"query": "string",
},
"separator": "string",
"sourceType": "string",
},
Registration: map[string]interface{}{
"description": "string",
"name": "string",
"tags": map[string]interface{}{
"string": "string",
},
},
ResourceGroupName: "string",
WorkspaceName: "string",
DatasetName: "string",
SkipValidation: false,
TimeSeries: map[string]interface{}{
"coarseGrainTimestamp": "string",
"fineGrainTimestamp": "string",
},
})
var machineLearningDatasetResource = new MachineLearningDataset("machineLearningDatasetResource", MachineLearningDatasetArgs.builder()
.datasetType("string")
.parameters(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.registration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.workspaceName("string")
.datasetName("string")
.skipValidation(false)
.timeSeries(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
machine_learning_dataset_resource = azure_native.machinelearningservices.MachineLearningDataset("machineLearningDatasetResource",
dataset_type=string,
parameters={
header: string,
includePath: False,
partitionFormat: string,
path: {
dataPath: {
datastoreName: string,
relativePath: string,
},
httpUrl: string,
},
query: {
datastoreName: string,
query: string,
},
separator: string,
sourceType: string,
},
registration={
description: string,
name: string,
tags: {
string: string,
},
},
resource_group_name=string,
workspace_name=string,
dataset_name=string,
skip_validation=False,
time_series={
coarseGrainTimestamp: string,
fineGrainTimestamp: string,
})
const machineLearningDatasetResource = new azure_native.machinelearningservices.MachineLearningDataset("machineLearningDatasetResource", {
datasetType: "string",
parameters: {
header: "string",
includePath: false,
partitionFormat: "string",
path: {
dataPath: {
datastoreName: "string",
relativePath: "string",
},
httpUrl: "string",
},
query: {
datastoreName: "string",
query: "string",
},
separator: "string",
sourceType: "string",
},
registration: {
description: "string",
name: "string",
tags: {
string: "string",
},
},
resourceGroupName: "string",
workspaceName: "string",
datasetName: "string",
skipValidation: false,
timeSeries: {
coarseGrainTimestamp: "string",
fineGrainTimestamp: "string",
},
});
type: azure-native:machinelearningservices:MachineLearningDataset
properties:
datasetName: string
datasetType: string
parameters:
header: string
includePath: false
partitionFormat: string
path:
dataPath:
datastoreName: string
relativePath: string
httpUrl: string
query:
datastoreName: string
query: string
separator: string
sourceType: string
registration:
description: string
name: string
tags:
string: string
resourceGroupName: string
skipValidation: false
timeSeries:
coarseGrainTimestamp: string
fineGrainTimestamp: string
workspaceName: string
MachineLearningDataset 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 MachineLearningDataset resource accepts the following input properties:
- Dataset
Type string | Pulumi.Azure Native. Machine Learning Services. Dataset Type - Specifies dataset type.
- Parameters
Pulumi.
Azure Native. Machine Learning Services. Inputs. Dataset Create Request Parameters - Registration
Pulumi.
Azure Native. Machine Learning Services. Inputs. Dataset Create Request Registration - Resource
Group stringName - Name of the resource group in which workspace is located.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Dataset
Name string - The Dataset name.
- Skip
Validation bool - Skip validation that ensures data can be loaded from the dataset before registration.
- Time
Series Pulumi.Azure Native. Machine Learning Services. Inputs. Dataset Create Request Time Series
- Dataset
Type string | DatasetType - Specifies dataset type.
- Parameters
Dataset
Create Request Parameters Args - Registration
Dataset
Create Request Registration Args - Resource
Group stringName - Name of the resource group in which workspace is located.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Dataset
Name string - The Dataset name.
- Skip
Validation bool - Skip validation that ensures data can be loaded from the dataset before registration.
- Time
Series DatasetCreate Request Time Series Args
- dataset
Type String | DatasetType - Specifies dataset type.
- parameters
Dataset
Create Request Parameters - registration
Dataset
Create Request Registration - resource
Group StringName - Name of the resource group in which workspace is located.
- workspace
Name String - Name of Azure Machine Learning workspace.
- dataset
Name String - The Dataset name.
- skip
Validation Boolean - Skip validation that ensures data can be loaded from the dataset before registration.
- time
Series DatasetCreate Request Time Series
- dataset
Type string | DatasetType - Specifies dataset type.
- parameters
Dataset
Create Request Parameters - registration
Dataset
Create Request Registration - resource
Group stringName - Name of the resource group in which workspace is located.
- workspace
Name string - Name of Azure Machine Learning workspace.
- dataset
Name string - The Dataset name.
- skip
Validation boolean - Skip validation that ensures data can be loaded from the dataset before registration.
- time
Series DatasetCreate Request Time Series
- dataset_
type str | DatasetType - Specifies dataset type.
- parameters
Dataset
Create Request Parameters Args - registration
Dataset
Create Request Registration Args - resource_
group_ strname - Name of the resource group in which workspace is located.
- workspace_
name str - Name of Azure Machine Learning workspace.
- dataset_
name str - The Dataset name.
- skip_
validation bool - Skip validation that ensures data can be loaded from the dataset before registration.
- time_
series DatasetCreate Request Time Series Args
- dataset
Type String | "tabular" | "file" - Specifies dataset type.
- parameters Property Map
- registration Property Map
- resource
Group StringName - Name of the resource group in which workspace is located.
- workspace
Name String - Name of Azure Machine Learning workspace.
- dataset
Name String - The Dataset name.
- skip
Validation Boolean - Skip validation that ensures data can be loaded from the dataset before registration.
- time
Series Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the MachineLearningDataset resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the resource.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Outputs. Dataset Response - Dataset properties
- Type string
- Specifies the type of the resource.
- Identity
Pulumi.
Azure Native. Machine Learning Services. Outputs. Identity Response - The identity of the resource.
- Location string
- Specifies the location of the resource.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Outputs. Sku Response - The sku of the workspace.
- Dictionary<string, string>
- Contains resource tags defined as key/value pairs.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the resource.
- Properties
Dataset
Response - Dataset properties
- Type string
- Specifies the type of the resource.
- Identity
Identity
Response - The identity of the resource.
- Location string
- Specifies the location of the resource.
- Sku
Sku
Response - The sku of the workspace.
- map[string]string
- Contains resource tags defined as key/value pairs.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the resource.
- properties
Dataset
Response - Dataset properties
- type String
- Specifies the type of the resource.
- identity
Identity
Response - The identity of the resource.
- location String
- Specifies the location of the resource.
- sku
Sku
Response - The sku of the workspace.
- Map<String,String>
- Contains resource tags defined as key/value pairs.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Specifies the name of the resource.
- properties
Dataset
Response - Dataset properties
- type string
- Specifies the type of the resource.
- identity
Identity
Response - The identity of the resource.
- location string
- Specifies the location of the resource.
- sku
Sku
Response - The sku of the workspace.
- {[key: string]: string}
- Contains resource tags defined as key/value pairs.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Specifies the name of the resource.
- properties
Dataset
Response - Dataset properties
- type str
- Specifies the type of the resource.
- identity
Identity
Response - The identity of the resource.
- location str
- Specifies the location of the resource.
- sku
Sku
Response - The sku of the workspace.
- Mapping[str, str]
- Contains resource tags defined as key/value pairs.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the resource.
- properties Property Map
- Dataset properties
- type String
- Specifies the type of the resource.
- identity Property Map
- The identity of the resource.
- location String
- Specifies the location of the resource.
- sku Property Map
- The sku of the workspace.
- Map<String>
- Contains resource tags defined as key/value pairs.
Supporting Types
DatasetCreateRequestDataPath, DatasetCreateRequestDataPathArgs
- Datastore
Name string - The datastore name.
- Relative
Path string - Path within the datastore.
- Datastore
Name string - The datastore name.
- Relative
Path string - Path within the datastore.
- datastore
Name String - The datastore name.
- relative
Path String - Path within the datastore.
- datastore
Name string - The datastore name.
- relative
Path string - Path within the datastore.
- datastore_
name str - The datastore name.
- relative_
path str - Path within the datastore.
- datastore
Name String - The datastore name.
- relative
Path String - Path within the datastore.
DatasetCreateRequestParameters, DatasetCreateRequestParametersArgs
- Header
string | Pulumi.
Azure Native. Machine Learning Services. Header - Header type.
- Include
Path bool - Boolean to keep path information as column in the dataset. Defaults to False. This is useful when reading multiple files, and want to know which file a particular record originated from, or to keep useful information in file path.
- Partition
Format string - The partition information of each path will be extracted into columns based on the specified format. Format part '{column_name}' creates string column, and '{column_name:yyyy/MM/dd/HH/mm/ss}' creates datetime column, where 'yyyy', 'MM', 'dd', 'HH', 'mm' and 'ss' are used to extract year, month, day, hour, minute and second for the datetime type. The format should start from the position of first partition key until the end of file path. For example, given the path '../USA/2019/01/01/data.parquet' where the partition is by country/region and time, partition_format='/{CountryOrRegion}/{PartitionDate:yyyy/MM/dd}/data.csv' creates a string column 'CountryOrRegion' with the value 'USA' and a datetime column 'PartitionDate' with the value '2019-01-01
- Path
Pulumi.
Azure Native. Machine Learning Services. Inputs. Dataset Create Request Path - Query
Pulumi.
Azure Native. Machine Learning Services. Inputs. Dataset Create Request Query - Separator string
- The separator used to split columns for 'delimited_files' sourceType.
- Source
Type string | Pulumi.Azure Native. Machine Learning Services. Source Type - Data source type.
- Header string | Header
- Header type.
- Include
Path bool - Boolean to keep path information as column in the dataset. Defaults to False. This is useful when reading multiple files, and want to know which file a particular record originated from, or to keep useful information in file path.
- Partition
Format string - The partition information of each path will be extracted into columns based on the specified format. Format part '{column_name}' creates string column, and '{column_name:yyyy/MM/dd/HH/mm/ss}' creates datetime column, where 'yyyy', 'MM', 'dd', 'HH', 'mm' and 'ss' are used to extract year, month, day, hour, minute and second for the datetime type. The format should start from the position of first partition key until the end of file path. For example, given the path '../USA/2019/01/01/data.parquet' where the partition is by country/region and time, partition_format='/{CountryOrRegion}/{PartitionDate:yyyy/MM/dd}/data.csv' creates a string column 'CountryOrRegion' with the value 'USA' and a datetime column 'PartitionDate' with the value '2019-01-01
- Path
Dataset
Create Request Path - Query
Dataset
Create Request Query - Separator string
- The separator used to split columns for 'delimited_files' sourceType.
- Source
Type string | SourceType - Data source type.
- header String | Header
- Header type.
- include
Path Boolean - Boolean to keep path information as column in the dataset. Defaults to False. This is useful when reading multiple files, and want to know which file a particular record originated from, or to keep useful information in file path.
- partition
Format String - The partition information of each path will be extracted into columns based on the specified format. Format part '{column_name}' creates string column, and '{column_name:yyyy/MM/dd/HH/mm/ss}' creates datetime column, where 'yyyy', 'MM', 'dd', 'HH', 'mm' and 'ss' are used to extract year, month, day, hour, minute and second for the datetime type. The format should start from the position of first partition key until the end of file path. For example, given the path '../USA/2019/01/01/data.parquet' where the partition is by country/region and time, partition_format='/{CountryOrRegion}/{PartitionDate:yyyy/MM/dd}/data.csv' creates a string column 'CountryOrRegion' with the value 'USA' and a datetime column 'PartitionDate' with the value '2019-01-01
- path
Dataset
Create Request Path - query
Dataset
Create Request Query - separator String
- The separator used to split columns for 'delimited_files' sourceType.
- source
Type String | SourceType - Data source type.
- header string | Header
- Header type.
- include
Path boolean - Boolean to keep path information as column in the dataset. Defaults to False. This is useful when reading multiple files, and want to know which file a particular record originated from, or to keep useful information in file path.
- partition
Format string - The partition information of each path will be extracted into columns based on the specified format. Format part '{column_name}' creates string column, and '{column_name:yyyy/MM/dd/HH/mm/ss}' creates datetime column, where 'yyyy', 'MM', 'dd', 'HH', 'mm' and 'ss' are used to extract year, month, day, hour, minute and second for the datetime type. The format should start from the position of first partition key until the end of file path. For example, given the path '../USA/2019/01/01/data.parquet' where the partition is by country/region and time, partition_format='/{CountryOrRegion}/{PartitionDate:yyyy/MM/dd}/data.csv' creates a string column 'CountryOrRegion' with the value 'USA' and a datetime column 'PartitionDate' with the value '2019-01-01
- path
Dataset
Create Request Path - query
Dataset
Create Request Query - separator string
- The separator used to split columns for 'delimited_files' sourceType.
- source
Type string | SourceType - Data source type.
- header str | Header
- Header type.
- include_
path bool - Boolean to keep path information as column in the dataset. Defaults to False. This is useful when reading multiple files, and want to know which file a particular record originated from, or to keep useful information in file path.
- partition_
format str - The partition information of each path will be extracted into columns based on the specified format. Format part '{column_name}' creates string column, and '{column_name:yyyy/MM/dd/HH/mm/ss}' creates datetime column, where 'yyyy', 'MM', 'dd', 'HH', 'mm' and 'ss' are used to extract year, month, day, hour, minute and second for the datetime type. The format should start from the position of first partition key until the end of file path. For example, given the path '../USA/2019/01/01/data.parquet' where the partition is by country/region and time, partition_format='/{CountryOrRegion}/{PartitionDate:yyyy/MM/dd}/data.csv' creates a string column 'CountryOrRegion' with the value 'USA' and a datetime column 'PartitionDate' with the value '2019-01-01
- path
Dataset
Create Request Path - query
Dataset
Create Request Query - separator str
- The separator used to split columns for 'delimited_files' sourceType.
- source_
type str | SourceType - Data source type.
- header
String | "all_
files_ have_ same_ headers" | "only_ first_ file_ has_ headers" | "no_ headers" | "combine_ all_ files_ headers" - Header type.
- include
Path Boolean - Boolean to keep path information as column in the dataset. Defaults to False. This is useful when reading multiple files, and want to know which file a particular record originated from, or to keep useful information in file path.
- partition
Format String - The partition information of each path will be extracted into columns based on the specified format. Format part '{column_name}' creates string column, and '{column_name:yyyy/MM/dd/HH/mm/ss}' creates datetime column, where 'yyyy', 'MM', 'dd', 'HH', 'mm' and 'ss' are used to extract year, month, day, hour, minute and second for the datetime type. The format should start from the position of first partition key until the end of file path. For example, given the path '../USA/2019/01/01/data.parquet' where the partition is by country/region and time, partition_format='/{CountryOrRegion}/{PartitionDate:yyyy/MM/dd}/data.csv' creates a string column 'CountryOrRegion' with the value 'USA' and a datetime column 'PartitionDate' with the value '2019-01-01
- path Property Map
- query Property Map
- separator String
- The separator used to split columns for 'delimited_files' sourceType.
- source
Type String | "delimited_files" | "json_ lines_ files" | "parquet_ files" - Data source type.
DatasetCreateRequestPath, DatasetCreateRequestPathArgs
- Data
Path DatasetCreate Request Data Path - Http
Url string - The Http URL.
- data
Path DatasetCreate Request Data Path - http
Url String - The Http URL.
- data
Path DatasetCreate Request Data Path - http
Url string - The Http URL.
- data_
path DatasetCreate Request Data Path - http_
url str - The Http URL.
- data
Path Property Map - http
Url String - The Http URL.
DatasetCreateRequestQuery, DatasetCreateRequestQueryArgs
- Datastore
Name string - The SQL/PostgreSQL/MySQL datastore name.
- Query string
- SQL Quey.
- Datastore
Name string - The SQL/PostgreSQL/MySQL datastore name.
- Query string
- SQL Quey.
- datastore
Name String - The SQL/PostgreSQL/MySQL datastore name.
- query String
- SQL Quey.
- datastore
Name string - The SQL/PostgreSQL/MySQL datastore name.
- query string
- SQL Quey.
- datastore_
name str - The SQL/PostgreSQL/MySQL datastore name.
- query str
- SQL Quey.
- datastore
Name String - The SQL/PostgreSQL/MySQL datastore name.
- query String
- SQL Quey.
DatasetCreateRequestRegistration, DatasetCreateRequestRegistrationArgs
- Description string
- The description for the dataset.
- Name string
- The name of the dataset.
- Dictionary<string, string>
- Tags associated with the dataset.
- Description string
- The description for the dataset.
- Name string
- The name of the dataset.
- map[string]string
- Tags associated with the dataset.
- description String
- The description for the dataset.
- name String
- The name of the dataset.
- Map<String,String>
- Tags associated with the dataset.
- description string
- The description for the dataset.
- name string
- The name of the dataset.
- {[key: string]: string}
- Tags associated with the dataset.
- description str
- The description for the dataset.
- name str
- The name of the dataset.
- Mapping[str, str]
- Tags associated with the dataset.
- description String
- The description for the dataset.
- name String
- The name of the dataset.
- Map<String>
- Tags associated with the dataset.
DatasetCreateRequestTimeSeries, DatasetCreateRequestTimeSeriesArgs
- Coarse
Grain stringTimestamp - Column name to be used as CoarseGrainTimestamp. Can only be used if 'fineGrainTimestamp' is specified and cannot be same as 'fineGrainTimestamp'.
- Fine
Grain stringTimestamp - Column name to be used as FineGrainTimestamp
- Coarse
Grain stringTimestamp - Column name to be used as CoarseGrainTimestamp. Can only be used if 'fineGrainTimestamp' is specified and cannot be same as 'fineGrainTimestamp'.
- Fine
Grain stringTimestamp - Column name to be used as FineGrainTimestamp
- coarse
Grain StringTimestamp - Column name to be used as CoarseGrainTimestamp. Can only be used if 'fineGrainTimestamp' is specified and cannot be same as 'fineGrainTimestamp'.
- fine
Grain StringTimestamp - Column name to be used as FineGrainTimestamp
- coarse
Grain stringTimestamp - Column name to be used as CoarseGrainTimestamp. Can only be used if 'fineGrainTimestamp' is specified and cannot be same as 'fineGrainTimestamp'.
- fine
Grain stringTimestamp - Column name to be used as FineGrainTimestamp
- coarse_
grain_ strtimestamp - Column name to be used as CoarseGrainTimestamp. Can only be used if 'fineGrainTimestamp' is specified and cannot be same as 'fineGrainTimestamp'.
- fine_
grain_ strtimestamp - Column name to be used as FineGrainTimestamp
- coarse
Grain StringTimestamp - Column name to be used as CoarseGrainTimestamp. Can only be used if 'fineGrainTimestamp' is specified and cannot be same as 'fineGrainTimestamp'.
- fine
Grain StringTimestamp - Column name to be used as FineGrainTimestamp
DatasetResponse, DatasetResponseArgs
- Created
Time string - The dataset creation time (UTC).
- Dataset
Id string - Unique Dataset identifier.
- Dataset
Type string - Dataset Type.
- Default
Compute string - Name of the default compute to be used for any Dataset actions (such as Profile, Write).
- Description string
- Description about this dataset version.
- Etag string
- eTag description
- Is
Visible bool - Flag to hide Dataset in UI
- Modified
Time string - The dataset last modified time (UTC).
- Name string
- Unique dataset name
- Dictionary<string, string>
- Tags for this dataset version.
- Dataset
State Pulumi.Azure Native. Machine Learning Services. Inputs. Dataset State Response - Dataset state
- Latest
Pulumi.
Azure Native. Machine Learning Services. Inputs. Dataset Response Latest - Last created Dataset definition.
- Created
Time string - The dataset creation time (UTC).
- Dataset
Id string - Unique Dataset identifier.
- Dataset
Type string - Dataset Type.
- Default
Compute string - Name of the default compute to be used for any Dataset actions (such as Profile, Write).
- Description string
- Description about this dataset version.
- Etag string
- eTag description
- Is
Visible bool - Flag to hide Dataset in UI
- Modified
Time string - The dataset last modified time (UTC).
- Name string
- Unique dataset name
- map[string]string
- Tags for this dataset version.
- Dataset
State DatasetState Response - Dataset state
- Latest
Dataset
Response Latest - Last created Dataset definition.
- created
Time String - The dataset creation time (UTC).
- dataset
Id String - Unique Dataset identifier.
- dataset
Type String - Dataset Type.
- default
Compute String - Name of the default compute to be used for any Dataset actions (such as Profile, Write).
- description String
- Description about this dataset version.
- etag String
- eTag description
- is
Visible Boolean - Flag to hide Dataset in UI
- modified
Time String - The dataset last modified time (UTC).
- name String
- Unique dataset name
- Map<String,String>
- Tags for this dataset version.
- dataset
State DatasetState Response - Dataset state
- latest
Dataset
Response Latest - Last created Dataset definition.
- created
Time string - The dataset creation time (UTC).
- dataset
Id string - Unique Dataset identifier.
- dataset
Type string - Dataset Type.
- default
Compute string - Name of the default compute to be used for any Dataset actions (such as Profile, Write).
- description string
- Description about this dataset version.
- etag string
- eTag description
- is
Visible boolean - Flag to hide Dataset in UI
- modified
Time string - The dataset last modified time (UTC).
- name string
- Unique dataset name
- {[key: string]: string}
- Tags for this dataset version.
- dataset
State DatasetState Response - Dataset state
- latest
Dataset
Response Latest - Last created Dataset definition.
- created_
time str - The dataset creation time (UTC).
- dataset_
id str - Unique Dataset identifier.
- dataset_
type str - Dataset Type.
- default_
compute str - Name of the default compute to be used for any Dataset actions (such as Profile, Write).
- description str
- Description about this dataset version.
- etag str
- eTag description
- is_
visible bool - Flag to hide Dataset in UI
- modified_
time str - The dataset last modified time (UTC).
- name str
- Unique dataset name
- Mapping[str, str]
- Tags for this dataset version.
- dataset_
state DatasetState Response - Dataset state
- latest
Dataset
Response Latest - Last created Dataset definition.
- created
Time String - The dataset creation time (UTC).
- dataset
Id String - Unique Dataset identifier.
- dataset
Type String - Dataset Type.
- default
Compute String - Name of the default compute to be used for any Dataset actions (such as Profile, Write).
- description String
- Description about this dataset version.
- etag String
- eTag description
- is
Visible Boolean - Flag to hide Dataset in UI
- modified
Time String - The dataset last modified time (UTC).
- name String
- Unique dataset name
- Map<String>
- Tags for this dataset version.
- dataset
State Property Map - Dataset state
- latest Property Map
- Last created Dataset definition.
DatasetResponseDataPath, DatasetResponseDataPathArgs
- Azure
File stringPath - Azure path for Azure Blob or File
- Datastore
Name string - Data store Name
- Http
Url string - HTTP URL.
- Partition
Format string - Specify the partition format of path. Defaults to None.
- Partition
Format boolIgnore Error - Whether or not to ignore unmatched path.
- Paths List<string>
- List of files expanded from a file GLOB specified
- Relative
Path string - Relative path in the data store
- Additional
Properties Dictionary<string, object> - Additional Properties.
- Sql
Data Pulumi.Path Azure Native. Machine Learning Services. Inputs. Dataset Response Sql Data Path - Sql Query/Table/Stored Procedure details.
- Azure
File stringPath - Azure path for Azure Blob or File
- Datastore
Name string - Data store Name
- Http
Url string - HTTP URL.
- Partition
Format string - Specify the partition format of path. Defaults to None.
- Partition
Format boolIgnore Error - Whether or not to ignore unmatched path.
- Paths []string
- List of files expanded from a file GLOB specified
- Relative
Path string - Relative path in the data store
- Additional
Properties map[string]interface{} - Additional Properties.
- Sql
Data DatasetPath Response Sql Data Path - Sql Query/Table/Stored Procedure details.
- azure
File StringPath - Azure path for Azure Blob or File
- datastore
Name String - Data store Name
- http
Url String - HTTP URL.
- partition
Format String - Specify the partition format of path. Defaults to None.
- partition
Format BooleanIgnore Error - Whether or not to ignore unmatched path.
- paths List<String>
- List of files expanded from a file GLOB specified
- relative
Path String - Relative path in the data store
- additional
Properties Map<String,Object> - Additional Properties.
- sql
Data DatasetPath Response Sql Data Path - Sql Query/Table/Stored Procedure details.
- azure
File stringPath - Azure path for Azure Blob or File
- datastore
Name string - Data store Name
- http
Url string - HTTP URL.
- partition
Format string - Specify the partition format of path. Defaults to None.
- partition
Format booleanIgnore Error - Whether or not to ignore unmatched path.
- paths string[]
- List of files expanded from a file GLOB specified
- relative
Path string - Relative path in the data store
- additional
Properties {[key: string]: any} - Additional Properties.
- sql
Data DatasetPath Response Sql Data Path - Sql Query/Table/Stored Procedure details.
- azure_
file_ strpath - Azure path for Azure Blob or File
- datastore_
name str - Data store Name
- http_
url str - HTTP URL.
- partition_
format str - Specify the partition format of path. Defaults to None.
- partition_
format_ boolignore_ error - Whether or not to ignore unmatched path.
- paths Sequence[str]
- List of files expanded from a file GLOB specified
- relative_
path str - Relative path in the data store
- additional_
properties Mapping[str, Any] - Additional Properties.
- sql_
data_ Datasetpath Response Sql Data Path - Sql Query/Table/Stored Procedure details.
- azure
File StringPath - Azure path for Azure Blob or File
- datastore
Name String - Data store Name
- http
Url String - HTTP URL.
- partition
Format String - Specify the partition format of path. Defaults to None.
- partition
Format BooleanIgnore Error - Whether or not to ignore unmatched path.
- paths List<String>
- List of files expanded from a file GLOB specified
- relative
Path String - Relative path in the data store
- additional
Properties Map<Any> - Additional Properties.
- sql
Data Property MapPath - Sql Query/Table/Stored Procedure details.
DatasetResponseLatest, DatasetResponseLatestArgs
- Created
Time string - The dataset creation time (UTC).
- Dataflow string
- Dataflow Json
- Dataset
Id string - Unique Dataset identifier.
- Description string
- Description about the dataset.
- Etag string
- eTag description
- File
Type string - Dataset FileType, specified by user.
- Modified
Time string - The dataset last modified time (UTC).
- Notes string
- Summary of Definition changes.
- Partition
Format boolIn Path - Indicates how the source data is partitioned. This is defined to filter on a range of partitioned data before performing actions or materialization.
- Saved
Dataset stringId - Indicates the saved dataset this definition is mapping to, populated on Get.
- Dictionary<string, string>
- Tags associated with the dataset.
- Telemetry
Info Dictionary<string, string> - Telemetry information about the dataset including information like which service the dataset was created from.
- bool
- Whether to use description and tags from the definition level as opposed to dataset level (old behavior).
- Version
Id string - An identifier uniquely identifies a definition change.
- Created
By Pulumi.Azure Native. Machine Learning Services. Inputs. User Info Response - User who created.
- Data
Path Pulumi.Azure Native. Machine Learning Services. Inputs. Dataset Response Data Path - Datastore and reference to location of data such as relativePath, Sql Query and etc.
- Dataset
Definition Pulumi.State Azure Native. Machine Learning Services. Inputs. Dataset State Response - Dataset state
- Properties Dictionary<string, object>
- Properties stores information like name of time series column for time series dataset.
- Created
Time string - The dataset creation time (UTC).
- Dataflow string
- Dataflow Json
- Dataset
Id string - Unique Dataset identifier.
- Description string
- Description about the dataset.
- Etag string
- eTag description
- File
Type string - Dataset FileType, specified by user.
- Modified
Time string - The dataset last modified time (UTC).
- Notes string
- Summary of Definition changes.
- Partition
Format boolIn Path - Indicates how the source data is partitioned. This is defined to filter on a range of partitioned data before performing actions or materialization.
- Saved
Dataset stringId - Indicates the saved dataset this definition is mapping to, populated on Get.
- map[string]string
- Tags associated with the dataset.
- Telemetry
Info map[string]string - Telemetry information about the dataset including information like which service the dataset was created from.
- bool
- Whether to use description and tags from the definition level as opposed to dataset level (old behavior).
- Version
Id string - An identifier uniquely identifies a definition change.
- Created
By UserInfo Response - User who created.
- Data
Path DatasetResponse Data Path - Datastore and reference to location of data such as relativePath, Sql Query and etc.
- Dataset
Definition DatasetState State Response - Dataset state
- Properties map[string]interface{}
- Properties stores information like name of time series column for time series dataset.
- created
Time String - The dataset creation time (UTC).
- dataflow String
- Dataflow Json
- dataset
Id String - Unique Dataset identifier.
- description String
- Description about the dataset.
- etag String
- eTag description
- file
Type String - Dataset FileType, specified by user.
- modified
Time String - The dataset last modified time (UTC).
- notes String
- Summary of Definition changes.
- partition
Format BooleanIn Path - Indicates how the source data is partitioned. This is defined to filter on a range of partitioned data before performing actions or materialization.
- saved
Dataset StringId - Indicates the saved dataset this definition is mapping to, populated on Get.
- Map<String,String>
- Tags associated with the dataset.
- telemetry
Info Map<String,String> - Telemetry information about the dataset including information like which service the dataset was created from.
- Boolean
- Whether to use description and tags from the definition level as opposed to dataset level (old behavior).
- version
Id String - An identifier uniquely identifies a definition change.
- created
By UserInfo Response - User who created.
- data
Path DatasetResponse Data Path - Datastore and reference to location of data such as relativePath, Sql Query and etc.
- dataset
Definition DatasetState State Response - Dataset state
- properties Map<String,Object>
- Properties stores information like name of time series column for time series dataset.
- created
Time string - The dataset creation time (UTC).
- dataflow string
- Dataflow Json
- dataset
Id string - Unique Dataset identifier.
- description string
- Description about the dataset.
- etag string
- eTag description
- file
Type string - Dataset FileType, specified by user.
- modified
Time string - The dataset last modified time (UTC).
- notes string
- Summary of Definition changes.
- partition
Format booleanIn Path - Indicates how the source data is partitioned. This is defined to filter on a range of partitioned data before performing actions or materialization.
- saved
Dataset stringId - Indicates the saved dataset this definition is mapping to, populated on Get.
- {[key: string]: string}
- Tags associated with the dataset.
- telemetry
Info {[key: string]: string} - Telemetry information about the dataset including information like which service the dataset was created from.
- boolean
- Whether to use description and tags from the definition level as opposed to dataset level (old behavior).
- version
Id string - An identifier uniquely identifies a definition change.
- created
By UserInfo Response - User who created.
- data
Path DatasetResponse Data Path - Datastore and reference to location of data such as relativePath, Sql Query and etc.
- dataset
Definition DatasetState State Response - Dataset state
- properties {[key: string]: any}
- Properties stores information like name of time series column for time series dataset.
- created_
time str - The dataset creation time (UTC).
- dataflow str
- Dataflow Json
- dataset_
id str - Unique Dataset identifier.
- description str
- Description about the dataset.
- etag str
- eTag description
- file_
type str - Dataset FileType, specified by user.
- modified_
time str - The dataset last modified time (UTC).
- notes str
- Summary of Definition changes.
- partition_
format_ boolin_ path - Indicates how the source data is partitioned. This is defined to filter on a range of partitioned data before performing actions or materialization.
- saved_
dataset_ strid - Indicates the saved dataset this definition is mapping to, populated on Get.
- Mapping[str, str]
- Tags associated with the dataset.
- telemetry_
info Mapping[str, str] - Telemetry information about the dataset including information like which service the dataset was created from.
- bool
- Whether to use description and tags from the definition level as opposed to dataset level (old behavior).
- version_
id str - An identifier uniquely identifies a definition change.
- created_
by UserInfo Response - User who created.
- data_
path DatasetResponse Data Path - Datastore and reference to location of data such as relativePath, Sql Query and etc.
- dataset_
definition_ Datasetstate State Response - Dataset state
- properties Mapping[str, Any]
- Properties stores information like name of time series column for time series dataset.
- created
Time String - The dataset creation time (UTC).
- dataflow String
- Dataflow Json
- dataset
Id String - Unique Dataset identifier.
- description String
- Description about the dataset.
- etag String
- eTag description
- file
Type String - Dataset FileType, specified by user.
- modified
Time String - The dataset last modified time (UTC).
- notes String
- Summary of Definition changes.
- partition
Format BooleanIn Path - Indicates how the source data is partitioned. This is defined to filter on a range of partitioned data before performing actions or materialization.
- saved
Dataset StringId - Indicates the saved dataset this definition is mapping to, populated on Get.
- Map<String>
- Tags associated with the dataset.
- telemetry
Info Map<String> - Telemetry information about the dataset including information like which service the dataset was created from.
- Boolean
- Whether to use description and tags from the definition level as opposed to dataset level (old behavior).
- version
Id String - An identifier uniquely identifies a definition change.
- created
By Property Map - User who created.
- data
Path Property Map - Datastore and reference to location of data such as relativePath, Sql Query and etc.
- dataset
Definition Property MapState - Dataset state
- properties Map<Any>
- Properties stores information like name of time series column for time series dataset.
DatasetResponseSqlDataPath, DatasetResponseSqlDataPathArgs
- Query
Timeout double - SQL query timeout. Unit in seconds.
- Sql
Query string - SQL query
- Sql
Stored stringProcedure Name - SQL storedProcedure name
- Sql
Table stringName - SQL table name
- Query
Timeout float64 - SQL query timeout. Unit in seconds.
- Sql
Query string - SQL query
- Sql
Stored stringProcedure Name - SQL storedProcedure name
- Sql
Table stringName - SQL table name
- query
Timeout Double - SQL query timeout. Unit in seconds.
- sql
Query String - SQL query
- sql
Stored StringProcedure Name - SQL storedProcedure name
- sql
Table StringName - SQL table name
- query
Timeout number - SQL query timeout. Unit in seconds.
- sql
Query string - SQL query
- sql
Stored stringProcedure Name - SQL storedProcedure name
- sql
Table stringName - SQL table name
- query_
timeout float - SQL query timeout. Unit in seconds.
- sql_
query str - SQL query
- sql_
stored_ strprocedure_ name - SQL storedProcedure name
- sql_
table_ strname - SQL table name
- query
Timeout Number - SQL query timeout. Unit in seconds.
- sql
Query String - SQL query
- sql
Stored StringProcedure Name - SQL storedProcedure name
- sql
Table StringName - SQL table name
DatasetStateResponse, DatasetStateResponseArgs
- Etag string
- eTag description
- Deprecated
By Pulumi.Azure Native. Machine Learning Services. Inputs. Dataset State Response Deprecated By - Reference to better Dataset or a Definition
- State string
- Dataset state
- Etag string
- eTag description
- Deprecated
By DatasetState Response Deprecated By - Reference to better Dataset or a Definition
- State string
- Dataset state
- etag String
- eTag description
- deprecated
By DatasetState Response Deprecated By - Reference to better Dataset or a Definition
- state String
- Dataset state
- etag string
- eTag description
- deprecated
By DatasetState Response Deprecated By - Reference to better Dataset or a Definition
- state string
- Dataset state
- etag str
- eTag description
- deprecated_
by DatasetState Response Deprecated By - Reference to better Dataset or a Definition
- state str
- Dataset state
- etag String
- eTag description
- deprecated
By Property Map - Reference to better Dataset or a Definition
- state String
- Dataset state
DatasetStateResponseDeprecatedBy, DatasetStateResponseDeprecatedByArgs
- Dataset
Id string - Unique Dataset identifier.
- Definition
Version string - Definition Version
- Dataset
Id string - Unique Dataset identifier.
- Definition
Version string - Definition Version
- dataset
Id String - Unique Dataset identifier.
- definition
Version String - Definition Version
- dataset
Id string - Unique Dataset identifier.
- definition
Version string - Definition Version
- dataset_
id str - Unique Dataset identifier.
- definition_
version str - Definition Version
- dataset
Id String - Unique Dataset identifier.
- definition
Version String - Definition Version
DatasetType, DatasetTypeArgs
- Tabular
- tabular
- File
- file
- Dataset
Type Tabular - tabular
- Dataset
Type File - file
- Tabular
- tabular
- File
- file
- Tabular
- tabular
- File
- file
- TABULAR
- tabular
- FILE
- file
- "tabular"
- tabular
- "file"
- file
Header, HeaderArgs
- All_
files_ have_ same_ headers - all_files_have_same_headers
- Only_
first_ file_ has_ headers - only_first_file_has_headers
- No_
headers - no_headers
- Combine_
all_ files_ headers - combine_all_files_headers
- Header_All_
files_ have_ same_ headers - all_files_have_same_headers
- Header_Only_
first_ file_ has_ headers - only_first_file_has_headers
- Header_No_
headers - no_headers
- Header_Combine_
all_ files_ headers - combine_all_files_headers
- All_
files_ have_ same_ headers - all_files_have_same_headers
- Only_
first_ file_ has_ headers - only_first_file_has_headers
- No_
headers - no_headers
- Combine_
all_ files_ headers - combine_all_files_headers
- All_
files_ have_ same_ headers - all_files_have_same_headers
- Only_
first_ file_ has_ headers - only_first_file_has_headers
- No_
headers - no_headers
- Combine_
all_ files_ headers - combine_all_files_headers
- ALL_FILES_HAVE_SAME_HEADERS
- all_files_have_same_headers
- ONLY_FIRST_FILE_HAS_HEADERS
- only_first_file_has_headers
- NO_HEADERS
- no_headers
- COMBINE_ALL_FILES_HEADERS
- combine_all_files_headers
- "all_
files_ have_ same_ headers" - all_files_have_same_headers
- "only_
first_ file_ has_ headers" - only_first_file_has_headers
- "no_
headers" - no_headers
- "combine_
all_ files_ headers" - combine_all_files_headers
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Machine Learning Services. Inputs. User Assigned Identity Response> - The user assigned identities associated with the resource.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned map[string]UserIdentities Assigned Identity Response - The user assigned identities associated with the resource.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The user assigned identities associated with the resource.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The user assigned identities associated with the resource.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The identity type.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The user assigned identities associated with the resource.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - The user assigned identities associated with the resource.
SkuResponse, SkuResponseArgs
SourceType, SourceTypeArgs
- Delimited_
files - delimited_files
- Json_
lines_ files - json_lines_files
- Parquet_
files - parquet_files
- Source
Type_Delimited_ files - delimited_files
- Source
Type_Json_ lines_ files - json_lines_files
- Source
Type_Parquet_ files - parquet_files
- Delimited_
files - delimited_files
- Json_
lines_ files - json_lines_files
- Parquet_
files - parquet_files
- Delimited_
files - delimited_files
- Json_
lines_ files - json_lines_files
- Parquet_
files - parquet_files
- DELIMITED_FILES
- delimited_files
- JSON_LINES_FILES
- json_lines_files
- PARQUET_FILES
- parquet_files
- "delimited_
files" - delimited_files
- "json_
lines_ files" - json_lines_files
- "parquet_
files" - parquet_files
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The clientId(aka appId) of the user assigned identity.
- Principal
Id string - The principal ID of the user assigned identity.
- Tenant
Id string - The tenant ID of the user assigned identity.
- Client
Id string - The clientId(aka appId) of the user assigned identity.
- Principal
Id string - The principal ID of the user assigned identity.
- Tenant
Id string - The tenant ID of the user assigned identity.
- client
Id String - The clientId(aka appId) of the user assigned identity.
- principal
Id String - The principal ID of the user assigned identity.
- tenant
Id String - The tenant ID of the user assigned identity.
- client
Id string - The clientId(aka appId) of the user assigned identity.
- principal
Id string - The principal ID of the user assigned identity.
- tenant
Id string - The tenant ID of the user assigned identity.
- client_
id str - The clientId(aka appId) of the user assigned identity.
- principal_
id str - The principal ID of the user assigned identity.
- tenant_
id str - The tenant ID of the user assigned identity.
- client
Id String - The clientId(aka appId) of the user assigned identity.
- principal
Id String - The principal ID of the user assigned identity.
- tenant
Id String - The tenant ID of the user assigned identity.
UserInfoResponse, UserInfoResponseArgs
- User
Alt stringSec Id - A user alternate sec id. This represents the user in a different identity provider system Eg.1:live.com:puid
- User
Idp string - A user identity provider. Eg live.com
- User
Iss string - The issuer which issued the token for this user.
- User
Name string - A user's full name or a service principal's app ID.
- User
Object stringId - A user or service principal's object ID..
- User
Pu stringId - A user or service principal's PuID.
- User
Tenant stringId - A user or service principal's tenant ID.
- User
Alt stringSec Id - A user alternate sec id. This represents the user in a different identity provider system Eg.1:live.com:puid
- User
Idp string - A user identity provider. Eg live.com
- User
Iss string - The issuer which issued the token for this user.
- User
Name string - A user's full name or a service principal's app ID.
- User
Object stringId - A user or service principal's object ID..
- User
Pu stringId - A user or service principal's PuID.
- User
Tenant stringId - A user or service principal's tenant ID.
- user
Alt StringSec Id - A user alternate sec id. This represents the user in a different identity provider system Eg.1:live.com:puid
- user
Idp String - A user identity provider. Eg live.com
- user
Iss String - The issuer which issued the token for this user.
- user
Name String - A user's full name or a service principal's app ID.
- user
Object StringId - A user or service principal's object ID..
- user
Pu StringId - A user or service principal's PuID.
- user
Tenant StringId - A user or service principal's tenant ID.
- user
Alt stringSec Id - A user alternate sec id. This represents the user in a different identity provider system Eg.1:live.com:puid
- user
Idp string - A user identity provider. Eg live.com
- user
Iss string - The issuer which issued the token for this user.
- user
Name string - A user's full name or a service principal's app ID.
- user
Object stringId - A user or service principal's object ID..
- user
Pu stringId - A user or service principal's PuID.
- user
Tenant stringId - A user or service principal's tenant ID.
- user_
alt_ strsec_ id - A user alternate sec id. This represents the user in a different identity provider system Eg.1:live.com:puid
- user_
idp str - A user identity provider. Eg live.com
- user_
iss str - The issuer which issued the token for this user.
- user_
name str - A user's full name or a service principal's app ID.
- user_
object_ strid - A user or service principal's object ID..
- user_
pu_ strid - A user or service principal's PuID.
- user_
tenant_ strid - A user or service principal's tenant ID.
- user
Alt StringSec Id - A user alternate sec id. This represents the user in a different identity provider system Eg.1:live.com:puid
- user
Idp String - A user identity provider. Eg live.com
- user
Iss String - The issuer which issued the token for this user.
- user
Name String - A user's full name or a service principal's app ID.
- user
Object StringId - A user or service principal's object ID..
- user
Pu StringId - A user or service principal's PuID.
- user
Tenant StringId - A user or service principal's tenant ID.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:machinelearningservices:MachineLearningDataset datasetName123 /subscriptions/35f16a99-532a-4a47-9e93-00305f6c40f2/resourceGroups/acjain-mleastUS2/providers/Microsoft.MachineLearningServices/workspaces/acjain-mleastUS2/datasets/datasetName123
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