azure-native.machinelearningservices.Datastore
Explore with Pulumi AI
Azure Resource Manager resource envelope. Azure REST API version: 2023-04-01.
Other available API versions: 2021-03-01-preview, 2022-02-01-preview, 2023-04-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-10-01, 2024-01-01-preview, 2024-04-01, 2024-04-01-preview, 2024-07-01-preview, 2024-10-01, 2024-10-01-preview.
Example Usage
CreateOrUpdate datastore (Azure Data Lake Gen1 w/ ServicePrincipal).
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var datastore = new AzureNative.MachineLearningServices.Datastore("datastore", new()
    {
        DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureDataLakeGen1DatastoreArgs
        {
            Credentials = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentialsArgs
            {
                AuthorityUrl = "string",
                ClientId = "00000000-1111-2222-3333-444444444444",
                CredentialsType = "ServicePrincipal",
                ResourceUrl = "string",
                Secrets = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreSecretsArgs
                {
                    ClientSecret = "string",
                    SecretsType = "ServicePrincipal",
                },
                TenantId = "00000000-1111-2222-3333-444444444444",
            },
            DatastoreType = "AzureDataLakeGen1",
            Description = "string",
            StoreName = "string",
            Tags = 
            {
                { "string", "string" },
            },
        },
        Name = "string",
        ResourceGroupName = "test-rg",
        SkipValidation = false,
        WorkspaceName = "my-aml-workspace",
    });
});
package main
import (
	machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := machinelearningservices.NewDatastore(ctx, "datastore", &machinelearningservices.DatastoreArgs{
			DatastoreProperties: &machinelearningservices.AzureDataLakeGen1DatastoreArgs{
				Credentials: machinelearningservices.ServicePrincipalDatastoreCredentials{
					AuthorityUrl:    "string",
					ClientId:        "00000000-1111-2222-3333-444444444444",
					CredentialsType: "ServicePrincipal",
					ResourceUrl:     "string",
					Secrets: machinelearningservices.ServicePrincipalDatastoreSecrets{
						ClientSecret: "string",
						SecretsType:  "ServicePrincipal",
					},
					TenantId: "00000000-1111-2222-3333-444444444444",
				},
				DatastoreType: pulumi.String("AzureDataLakeGen1"),
				Description:   pulumi.String("string"),
				StoreName:     pulumi.String("string"),
				Tags: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
			},
			Name:              pulumi.String("string"),
			ResourceGroupName: pulumi.String("test-rg"),
			SkipValidation:    pulumi.Bool(false),
			WorkspaceName:     pulumi.String("my-aml-workspace"),
		})
		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.Datastore;
import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
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 datastore = new Datastore("datastore", DatastoreArgs.builder()
            .datastoreProperties(AzureDataLakeGen1DatastoreArgs.builder()
                .credentials(ServicePrincipalDatastoreCredentialsArgs.builder()
                    .authorityUrl("string")
                    .clientId("00000000-1111-2222-3333-444444444444")
                    .credentialsType("ServicePrincipal")
                    .resourceUrl("string")
                    .secrets(ServicePrincipalDatastoreSecretsArgs.builder()
                        .clientSecret("string")
                        .secretsType("ServicePrincipal")
                        .build())
                    .tenantId("00000000-1111-2222-3333-444444444444")
                    .build())
                .datastoreType("AzureDataLakeGen1")
                .description("string")
                .storeName("string")
                .tags(Map.of("string", "string"))
                .build())
            .name("string")
            .resourceGroupName("test-rg")
            .skipValidation(false)
            .workspaceName("my-aml-workspace")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const datastore = new azure_native.machinelearningservices.Datastore("datastore", {
    datastoreProperties: {
        credentials: {
            authorityUrl: "string",
            clientId: "00000000-1111-2222-3333-444444444444",
            credentialsType: "ServicePrincipal",
            resourceUrl: "string",
            secrets: {
                clientSecret: "string",
                secretsType: "ServicePrincipal",
            },
            tenantId: "00000000-1111-2222-3333-444444444444",
        },
        datastoreType: "AzureDataLakeGen1",
        description: "string",
        storeName: "string",
        tags: {
            string: "string",
        },
    },
    name: "string",
    resourceGroupName: "test-rg",
    skipValidation: false,
    workspaceName: "my-aml-workspace",
});
import pulumi
import pulumi_azure_native as azure_native
datastore = azure_native.machinelearningservices.Datastore("datastore",
    datastore_properties={
        "credentials": {
            "authority_url": "string",
            "client_id": "00000000-1111-2222-3333-444444444444",
            "credentials_type": "ServicePrincipal",
            "resource_url": "string",
            "secrets": {
                "client_secret": "string",
                "secrets_type": "ServicePrincipal",
            },
            "tenant_id": "00000000-1111-2222-3333-444444444444",
        },
        "datastore_type": "AzureDataLakeGen1",
        "description": "string",
        "store_name": "string",
        "tags": {
            "string": "string",
        },
    },
    name="string",
    resource_group_name="test-rg",
    skip_validation=False,
    workspace_name="my-aml-workspace")
resources:
  datastore:
    type: azure-native:machinelearningservices:Datastore
    properties:
      datastoreProperties:
        credentials:
          authorityUrl: string
          clientId: 00000000-1111-2222-3333-444444444444
          credentialsType: ServicePrincipal
          resourceUrl: string
          secrets:
            clientSecret: string
            secretsType: ServicePrincipal
          tenantId: 00000000-1111-2222-3333-444444444444
        datastoreType: AzureDataLakeGen1
        description: string
        storeName: string
        tags:
          string: string
      name: string
      resourceGroupName: test-rg
      skipValidation: false
      workspaceName: my-aml-workspace
CreateOrUpdate datastore (Azure Data Lake Gen2 w/ Service Principal).
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var datastore = new AzureNative.MachineLearningServices.Datastore("datastore", new()
    {
        DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureDataLakeGen2DatastoreArgs
        {
            AccountName = "string",
            Credentials = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentialsArgs
            {
                AuthorityUrl = "string",
                ClientId = "00000000-1111-2222-3333-444444444444",
                CredentialsType = "ServicePrincipal",
                ResourceUrl = "string",
                Secrets = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreSecretsArgs
                {
                    ClientSecret = "string",
                    SecretsType = "ServicePrincipal",
                },
                TenantId = "00000000-1111-2222-3333-444444444444",
            },
            DatastoreType = "AzureDataLakeGen2",
            Description = "string",
            Endpoint = "string",
            Filesystem = "string",
            Protocol = "string",
            Tags = 
            {
                { "string", "string" },
            },
        },
        Name = "string",
        ResourceGroupName = "test-rg",
        SkipValidation = false,
        WorkspaceName = "my-aml-workspace",
    });
});
package main
import (
	machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := machinelearningservices.NewDatastore(ctx, "datastore", &machinelearningservices.DatastoreArgs{
			DatastoreProperties: &machinelearningservices.AzureDataLakeGen2DatastoreArgs{
				AccountName: pulumi.String("string"),
				Credentials: machinelearningservices.ServicePrincipalDatastoreCredentials{
					AuthorityUrl:    "string",
					ClientId:        "00000000-1111-2222-3333-444444444444",
					CredentialsType: "ServicePrincipal",
					ResourceUrl:     "string",
					Secrets: machinelearningservices.ServicePrincipalDatastoreSecrets{
						ClientSecret: "string",
						SecretsType:  "ServicePrincipal",
					},
					TenantId: "00000000-1111-2222-3333-444444444444",
				},
				DatastoreType: pulumi.String("AzureDataLakeGen2"),
				Description:   pulumi.String("string"),
				Endpoint:      pulumi.String("string"),
				Filesystem:    pulumi.String("string"),
				Protocol:      pulumi.String("string"),
				Tags: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
			},
			Name:              pulumi.String("string"),
			ResourceGroupName: pulumi.String("test-rg"),
			SkipValidation:    pulumi.Bool(false),
			WorkspaceName:     pulumi.String("my-aml-workspace"),
		})
		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.Datastore;
import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
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 datastore = new Datastore("datastore", DatastoreArgs.builder()
            .datastoreProperties(AzureDataLakeGen2DatastoreArgs.builder()
                .accountName("string")
                .credentials(ServicePrincipalDatastoreCredentialsArgs.builder()
                    .authorityUrl("string")
                    .clientId("00000000-1111-2222-3333-444444444444")
                    .credentialsType("ServicePrincipal")
                    .resourceUrl("string")
                    .secrets(ServicePrincipalDatastoreSecretsArgs.builder()
                        .clientSecret("string")
                        .secretsType("ServicePrincipal")
                        .build())
                    .tenantId("00000000-1111-2222-3333-444444444444")
                    .build())
                .datastoreType("AzureDataLakeGen2")
                .description("string")
                .endpoint("string")
                .filesystem("string")
                .protocol("string")
                .tags(Map.of("string", "string"))
                .build())
            .name("string")
            .resourceGroupName("test-rg")
            .skipValidation(false)
            .workspaceName("my-aml-workspace")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const datastore = new azure_native.machinelearningservices.Datastore("datastore", {
    datastoreProperties: {
        accountName: "string",
        credentials: {
            authorityUrl: "string",
            clientId: "00000000-1111-2222-3333-444444444444",
            credentialsType: "ServicePrincipal",
            resourceUrl: "string",
            secrets: {
                clientSecret: "string",
                secretsType: "ServicePrincipal",
            },
            tenantId: "00000000-1111-2222-3333-444444444444",
        },
        datastoreType: "AzureDataLakeGen2",
        description: "string",
        endpoint: "string",
        filesystem: "string",
        protocol: "string",
        tags: {
            string: "string",
        },
    },
    name: "string",
    resourceGroupName: "test-rg",
    skipValidation: false,
    workspaceName: "my-aml-workspace",
});
import pulumi
import pulumi_azure_native as azure_native
datastore = azure_native.machinelearningservices.Datastore("datastore",
    datastore_properties={
        "account_name": "string",
        "credentials": {
            "authority_url": "string",
            "client_id": "00000000-1111-2222-3333-444444444444",
            "credentials_type": "ServicePrincipal",
            "resource_url": "string",
            "secrets": {
                "client_secret": "string",
                "secrets_type": "ServicePrincipal",
            },
            "tenant_id": "00000000-1111-2222-3333-444444444444",
        },
        "datastore_type": "AzureDataLakeGen2",
        "description": "string",
        "endpoint": "string",
        "filesystem": "string",
        "protocol": "string",
        "tags": {
            "string": "string",
        },
    },
    name="string",
    resource_group_name="test-rg",
    skip_validation=False,
    workspace_name="my-aml-workspace")
resources:
  datastore:
    type: azure-native:machinelearningservices:Datastore
    properties:
      datastoreProperties:
        accountName: string
        credentials:
          authorityUrl: string
          clientId: 00000000-1111-2222-3333-444444444444
          credentialsType: ServicePrincipal
          resourceUrl: string
          secrets:
            clientSecret: string
            secretsType: ServicePrincipal
          tenantId: 00000000-1111-2222-3333-444444444444
        datastoreType: AzureDataLakeGen2
        description: string
        endpoint: string
        filesystem: string
        protocol: string
        tags:
          string: string
      name: string
      resourceGroupName: test-rg
      skipValidation: false
      workspaceName: my-aml-workspace
CreateOrUpdate datastore (Azure File store w/ AccountKey).
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var datastore = new AzureNative.MachineLearningServices.Datastore("datastore", new()
    {
        DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureFileDatastoreArgs
        {
            AccountName = "string",
            Credentials = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsArgs
            {
                CredentialsType = "AccountKey",
                Secrets = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreSecretsArgs
                {
                    Key = "string",
                    SecretsType = "AccountKey",
                },
            },
            DatastoreType = "AzureFile",
            Description = "string",
            Endpoint = "string",
            FileShareName = "string",
            Protocol = "string",
            Tags = 
            {
                { "string", "string" },
            },
        },
        Name = "string",
        ResourceGroupName = "test-rg",
        SkipValidation = false,
        WorkspaceName = "my-aml-workspace",
    });
});
package main
import (
	machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := machinelearningservices.NewDatastore(ctx, "datastore", &machinelearningservices.DatastoreArgs{
			DatastoreProperties: &machinelearningservices.AzureFileDatastoreArgs{
				AccountName: pulumi.String("string"),
				Credentials: machinelearningservices.AccountKeyDatastoreCredentials{
					CredentialsType: "AccountKey",
					Secrets: machinelearningservices.AccountKeyDatastoreSecrets{
						Key:         "string",
						SecretsType: "AccountKey",
					},
				},
				DatastoreType: pulumi.String("AzureFile"),
				Description:   pulumi.String("string"),
				Endpoint:      pulumi.String("string"),
				FileShareName: pulumi.String("string"),
				Protocol:      pulumi.String("string"),
				Tags: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
			},
			Name:              pulumi.String("string"),
			ResourceGroupName: pulumi.String("test-rg"),
			SkipValidation:    pulumi.Bool(false),
			WorkspaceName:     pulumi.String("my-aml-workspace"),
		})
		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.Datastore;
import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
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 datastore = new Datastore("datastore", DatastoreArgs.builder()
            .datastoreProperties(AzureFileDatastoreArgs.builder()
                .accountName("string")
                .credentials(AccountKeyDatastoreCredentialsArgs.builder()
                    .credentialsType("AccountKey")
                    .secrets(AccountKeyDatastoreSecretsArgs.builder()
                        .key("string")
                        .secretsType("AccountKey")
                        .build())
                    .build())
                .datastoreType("AzureFile")
                .description("string")
                .endpoint("string")
                .fileShareName("string")
                .protocol("string")
                .tags(Map.of("string", "string"))
                .build())
            .name("string")
            .resourceGroupName("test-rg")
            .skipValidation(false)
            .workspaceName("my-aml-workspace")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const datastore = new azure_native.machinelearningservices.Datastore("datastore", {
    datastoreProperties: {
        accountName: "string",
        credentials: {
            credentialsType: "AccountKey",
            secrets: {
                key: "string",
                secretsType: "AccountKey",
            },
        },
        datastoreType: "AzureFile",
        description: "string",
        endpoint: "string",
        fileShareName: "string",
        protocol: "string",
        tags: {
            string: "string",
        },
    },
    name: "string",
    resourceGroupName: "test-rg",
    skipValidation: false,
    workspaceName: "my-aml-workspace",
});
import pulumi
import pulumi_azure_native as azure_native
datastore = azure_native.machinelearningservices.Datastore("datastore",
    datastore_properties={
        "account_name": "string",
        "credentials": {
            "credentials_type": "AccountKey",
            "secrets": {
                "key": "string",
                "secrets_type": "AccountKey",
            },
        },
        "datastore_type": "AzureFile",
        "description": "string",
        "endpoint": "string",
        "file_share_name": "string",
        "protocol": "string",
        "tags": {
            "string": "string",
        },
    },
    name="string",
    resource_group_name="test-rg",
    skip_validation=False,
    workspace_name="my-aml-workspace")
resources:
  datastore:
    type: azure-native:machinelearningservices:Datastore
    properties:
      datastoreProperties:
        accountName: string
        credentials:
          credentialsType: AccountKey
          secrets:
            key: string
            secretsType: AccountKey
        datastoreType: AzureFile
        description: string
        endpoint: string
        fileShareName: string
        protocol: string
        tags:
          string: string
      name: string
      resourceGroupName: test-rg
      skipValidation: false
      workspaceName: my-aml-workspace
CreateOrUpdate datastore (AzureBlob w/ AccountKey).
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var datastore = new AzureNative.MachineLearningServices.Datastore("datastore", new()
    {
        DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureBlobDatastoreArgs
        {
            AccountName = "string",
            ContainerName = "string",
            Credentials = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsArgs
            {
                CredentialsType = "AccountKey",
                Secrets = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreSecretsArgs
                {
                    Key = "string",
                    SecretsType = "AccountKey",
                },
            },
            DatastoreType = "AzureBlob",
            Description = "string",
            Endpoint = "core.windows.net",
            Protocol = "https",
            Tags = 
            {
                { "string", "string" },
            },
        },
        Name = "string",
        ResourceGroupName = "test-rg",
        SkipValidation = false,
        WorkspaceName = "my-aml-workspace",
    });
});
package main
import (
	machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := machinelearningservices.NewDatastore(ctx, "datastore", &machinelearningservices.DatastoreArgs{
			DatastoreProperties: &machinelearningservices.AzureBlobDatastoreArgs{
				AccountName:   pulumi.String("string"),
				ContainerName: pulumi.String("string"),
				Credentials: machinelearningservices.AccountKeyDatastoreCredentials{
					CredentialsType: "AccountKey",
					Secrets: machinelearningservices.AccountKeyDatastoreSecrets{
						Key:         "string",
						SecretsType: "AccountKey",
					},
				},
				DatastoreType: pulumi.String("AzureBlob"),
				Description:   pulumi.String("string"),
				Endpoint:      pulumi.String("core.windows.net"),
				Protocol:      pulumi.String("https"),
				Tags: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
			},
			Name:              pulumi.String("string"),
			ResourceGroupName: pulumi.String("test-rg"),
			SkipValidation:    pulumi.Bool(false),
			WorkspaceName:     pulumi.String("my-aml-workspace"),
		})
		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.Datastore;
import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
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 datastore = new Datastore("datastore", DatastoreArgs.builder()
            .datastoreProperties(AzureBlobDatastoreArgs.builder()
                .accountName("string")
                .containerName("string")
                .credentials(AccountKeyDatastoreCredentialsArgs.builder()
                    .credentialsType("AccountKey")
                    .secrets(AccountKeyDatastoreSecretsArgs.builder()
                        .key("string")
                        .secretsType("AccountKey")
                        .build())
                    .build())
                .datastoreType("AzureBlob")
                .description("string")
                .endpoint("core.windows.net")
                .protocol("https")
                .tags(Map.of("string", "string"))
                .build())
            .name("string")
            .resourceGroupName("test-rg")
            .skipValidation(false)
            .workspaceName("my-aml-workspace")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const datastore = new azure_native.machinelearningservices.Datastore("datastore", {
    datastoreProperties: {
        accountName: "string",
        containerName: "string",
        credentials: {
            credentialsType: "AccountKey",
            secrets: {
                key: "string",
                secretsType: "AccountKey",
            },
        },
        datastoreType: "AzureBlob",
        description: "string",
        endpoint: "core.windows.net",
        protocol: "https",
        tags: {
            string: "string",
        },
    },
    name: "string",
    resourceGroupName: "test-rg",
    skipValidation: false,
    workspaceName: "my-aml-workspace",
});
import pulumi
import pulumi_azure_native as azure_native
datastore = azure_native.machinelearningservices.Datastore("datastore",
    datastore_properties={
        "account_name": "string",
        "container_name": "string",
        "credentials": {
            "credentials_type": "AccountKey",
            "secrets": {
                "key": "string",
                "secrets_type": "AccountKey",
            },
        },
        "datastore_type": "AzureBlob",
        "description": "string",
        "endpoint": "core.windows.net",
        "protocol": "https",
        "tags": {
            "string": "string",
        },
    },
    name="string",
    resource_group_name="test-rg",
    skip_validation=False,
    workspace_name="my-aml-workspace")
resources:
  datastore:
    type: azure-native:machinelearningservices:Datastore
    properties:
      datastoreProperties:
        accountName: string
        containerName: string
        credentials:
          credentialsType: AccountKey
          secrets:
            key: string
            secretsType: AccountKey
        datastoreType: AzureBlob
        description: string
        endpoint: core.windows.net
        protocol: https
        tags:
          string: string
      name: string
      resourceGroupName: test-rg
      skipValidation: false
      workspaceName: my-aml-workspace
Create Datastore Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Datastore(name: string, args: DatastoreArgs, opts?: CustomResourceOptions);@overload
def Datastore(resource_name: str,
              args: DatastoreArgs,
              opts: Optional[ResourceOptions] = None)
@overload
def Datastore(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              datastore_properties: Optional[Union[AzureBlobDatastoreArgs, AzureDataLakeGen1DatastoreArgs, AzureDataLakeGen2DatastoreArgs, AzureFileDatastoreArgs]] = None,
              resource_group_name: Optional[str] = None,
              workspace_name: Optional[str] = None,
              name: Optional[str] = None,
              skip_validation: Optional[bool] = None)func NewDatastore(ctx *Context, name string, args DatastoreArgs, opts ...ResourceOption) (*Datastore, error)public Datastore(string name, DatastoreArgs args, CustomResourceOptions? opts = null)
public Datastore(String name, DatastoreArgs args)
public Datastore(String name, DatastoreArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:Datastore
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 DatastoreArgs
- 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 DatastoreArgs
- 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 DatastoreArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatastoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DatastoreArgs
- 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 exampledatastoreResourceResourceFromMachinelearningservices = new AzureNative.MachineLearningServices.Datastore("exampledatastoreResourceResourceFromMachinelearningservices", new()
{
    DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureBlobDatastoreArgs
    {
        Credentials = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsArgs
        {
            CredentialsType = "AccountKey",
            Secrets = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreSecretsArgs
            {
                SecretsType = "AccountKey",
                Key = "string",
            },
        },
        DatastoreType = "AzureBlob",
        AccountName = "string",
        ContainerName = "string",
        Description = "string",
        Endpoint = "string",
        Properties = 
        {
            { "string", "string" },
        },
        Protocol = "string",
        ServiceDataAccessAuthIdentity = "string",
        Tags = 
        {
            { "string", "string" },
        },
    },
    ResourceGroupName = "string",
    WorkspaceName = "string",
    Name = "string",
    SkipValidation = false,
});
example, err := machinelearningservices.NewDatastore(ctx, "exampledatastoreResourceResourceFromMachinelearningservices", &machinelearningservices.DatastoreArgs{
	DatastoreProperties: &machinelearningservices.AzureBlobDatastoreArgs{
		Credentials: machinelearningservices.AccountKeyDatastoreCredentials{
			CredentialsType: "AccountKey",
			Secrets: machinelearningservices.AccountKeyDatastoreSecrets{
				SecretsType: "AccountKey",
				Key:         "string",
			},
		},
		DatastoreType: pulumi.String("AzureBlob"),
		AccountName:   pulumi.String("string"),
		ContainerName: pulumi.String("string"),
		Description:   pulumi.String("string"),
		Endpoint:      pulumi.String("string"),
		Properties: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		Protocol:                      pulumi.String("string"),
		ServiceDataAccessAuthIdentity: pulumi.String("string"),
		Tags: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
	},
	ResourceGroupName: pulumi.String("string"),
	WorkspaceName:     pulumi.String("string"),
	Name:              pulumi.String("string"),
	SkipValidation:    pulumi.Bool(false),
})
var exampledatastoreResourceResourceFromMachinelearningservices = new Datastore("exampledatastoreResourceResourceFromMachinelearningservices", DatastoreArgs.builder()
    .datastoreProperties(AzureBlobDatastoreArgs.builder()
        .credentials(AccountKeyDatastoreCredentialsArgs.builder()
            .credentialsType("AccountKey")
            .secrets(AccountKeyDatastoreSecretsArgs.builder()
                .secretsType("AccountKey")
                .key("string")
                .build())
            .build())
        .datastoreType("AzureBlob")
        .accountName("string")
        .containerName("string")
        .description("string")
        .endpoint("string")
        .properties(Map.of("string", "string"))
        .protocol("string")
        .serviceDataAccessAuthIdentity("string")
        .tags(Map.of("string", "string"))
        .build())
    .resourceGroupName("string")
    .workspaceName("string")
    .name("string")
    .skipValidation(false)
    .build());
exampledatastore_resource_resource_from_machinelearningservices = azure_native.machinelearningservices.Datastore("exampledatastoreResourceResourceFromMachinelearningservices",
    datastore_properties={
        "credentials": {
            "credentials_type": "AccountKey",
            "secrets": {
                "secrets_type": "AccountKey",
                "key": "string",
            },
        },
        "datastore_type": "AzureBlob",
        "account_name": "string",
        "container_name": "string",
        "description": "string",
        "endpoint": "string",
        "properties": {
            "string": "string",
        },
        "protocol": "string",
        "service_data_access_auth_identity": "string",
        "tags": {
            "string": "string",
        },
    },
    resource_group_name="string",
    workspace_name="string",
    name="string",
    skip_validation=False)
const exampledatastoreResourceResourceFromMachinelearningservices = new azure_native.machinelearningservices.Datastore("exampledatastoreResourceResourceFromMachinelearningservices", {
    datastoreProperties: {
        credentials: {
            credentialsType: "AccountKey",
            secrets: {
                secretsType: "AccountKey",
                key: "string",
            },
        },
        datastoreType: "AzureBlob",
        accountName: "string",
        containerName: "string",
        description: "string",
        endpoint: "string",
        properties: {
            string: "string",
        },
        protocol: "string",
        serviceDataAccessAuthIdentity: "string",
        tags: {
            string: "string",
        },
    },
    resourceGroupName: "string",
    workspaceName: "string",
    name: "string",
    skipValidation: false,
});
type: azure-native:machinelearningservices:Datastore
properties:
    datastoreProperties:
        accountName: string
        containerName: string
        credentials:
            credentialsType: AccountKey
            secrets:
                key: string
                secretsType: AccountKey
        datastoreType: AzureBlob
        description: string
        endpoint: string
        properties:
            string: string
        protocol: string
        serviceDataAccessAuthIdentity: string
        tags:
            string: string
    name: string
    resourceGroupName: string
    skipValidation: false
    workspaceName: string
Datastore Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Datastore resource accepts the following input properties:
- DatastoreProperties Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Azure Blob Datastore Azure | Pulumi.Native. Machine Learning Services. Inputs. Azure Data Lake Gen1Datastore Azure | Pulumi.Native. Machine Learning Services. Inputs. Azure Data Lake Gen2Datastore Azure Native. Machine Learning Services. Inputs. Azure File Datastore 
- [Required] Additional attributes of the entity.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- Name of Azure Machine Learning workspace.
- Name string
- Datastore name.
- SkipValidation bool
- Flag to skip validation.
- DatastoreProperties AzureBlob | AzureDatastore Args Data | AzureLake Gen1Datastore Args Data | AzureLake Gen2Datastore Args File Datastore Args 
- [Required] Additional attributes of the entity.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- Name of Azure Machine Learning workspace.
- Name string
- Datastore name.
- SkipValidation bool
- Flag to skip validation.
- datastoreProperties AzureBlob | AzureDatastore Data | AzureLake Gen1Datastore Data | AzureLake Gen2Datastore File Datastore 
- [Required] Additional attributes of the entity.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- Name of Azure Machine Learning workspace.
- name String
- Datastore name.
- skipValidation Boolean
- Flag to skip validation.
- datastoreProperties AzureBlob | AzureDatastore Data | AzureLake Gen1Datastore Data | AzureLake Gen2Datastore File Datastore 
- [Required] Additional attributes of the entity.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- workspaceName string
- Name of Azure Machine Learning workspace.
- name string
- Datastore name.
- skipValidation boolean
- Flag to skip validation.
- datastore_properties AzureBlob | AzureDatastore Args Data | AzureLake Gen1Datastore Args Data | AzureLake Gen2Datastore Args File Datastore Args 
- [Required] Additional attributes of the entity.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- workspace_name str
- Name of Azure Machine Learning workspace.
- name str
- Datastore name.
- skip_validation bool
- Flag to skip validation.
- datastoreProperties Property Map | Property Map | Property Map | Property Map
- [Required] Additional attributes of the entity.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- Name of Azure Machine Learning workspace.
- name String
- Datastore name.
- skipValidation Boolean
- Flag to skip validation.
Outputs
All input properties are implicitly available as output properties. Additionally, the Datastore resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- SystemData Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AccountKeyDatastoreCredentials, AccountKeyDatastoreCredentialsArgs        
- Secrets
Pulumi.Azure Native. Machine Learning Services. Inputs. Account Key Datastore Secrets 
- [Required] Storage account secrets.
- Secrets
AccountKey Datastore Secrets 
- [Required] Storage account secrets.
- secrets
AccountKey Datastore Secrets 
- [Required] Storage account secrets.
- secrets
AccountKey Datastore Secrets 
- [Required] Storage account secrets.
- secrets
AccountKey Datastore Secrets 
- [Required] Storage account secrets.
- secrets Property Map
- [Required] Storage account secrets.
AccountKeyDatastoreCredentialsResponse, AccountKeyDatastoreCredentialsResponseArgs          
AccountKeyDatastoreSecrets, AccountKeyDatastoreSecretsArgs        
- Key string
- Storage account key.
- Key string
- Storage account key.
- key String
- Storage account key.
- key string
- Storage account key.
- key str
- Storage account key.
- key String
- Storage account key.
AzureBlobDatastore, AzureBlobDatastoreArgs      
- Credentials
Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials 
- [Required] Account credentials.
- AccountName string
- Storage account name.
- ContainerName string
- Storage account container name.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData string | Pulumi.Access Auth Identity Azure Native. Machine Learning Services. Service Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- AccountName string
- Storage account name.
- ContainerName string
- Storage account container name.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties map[string]string
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData string | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- accountName String
- Storage account name.
- containerName String
- Storage account container name.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String,String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData String | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- accountName string
- Storage account name.
- containerName string
- Storage account container name.
- description string
- The asset description text.
- endpoint string
- Azure cloud endpoint for the storage account.
- properties {[key: string]: string}
- The asset property dictionary.
- protocol string
- Protocol used to communicate with the storage account.
- serviceData string | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- account_name str
- Storage account name.
- container_name str
- Storage account container name.
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_data_ str | Serviceaccess_ auth_ identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- accountName String
- Storage account name.
- containerName String
- Storage account container name.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData String | "None" | "WorkspaceAccess Auth Identity System Assigned Identity" | "Workspace User Assigned Identity" 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureBlobDatastoreResponse, AzureBlobDatastoreResponseArgs        
- Credentials
Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Response Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials Response 
- [Required] Account credentials.
- IsDefault bool
- Readonly property to indicate if datastore is the workspace default datastore
- AccountName string
- Storage account name.
- ContainerName string
- Storage account container name.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- IsDefault bool
- Readonly property to indicate if datastore is the workspace default datastore
- AccountName string
- Storage account name.
- ContainerName string
- Storage account container name.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties map[string]string
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- isDefault Boolean
- Readonly property to indicate if datastore is the workspace default datastore
- accountName String
- Storage account name.
- containerName String
- Storage account container name.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String,String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData StringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- isDefault boolean
- Readonly property to indicate if datastore is the workspace default datastore
- accountName string
- Storage account name.
- containerName string
- Storage account container name.
- description string
- The asset description text.
- endpoint string
- Azure cloud endpoint for the storage account.
- properties {[key: string]: string}
- The asset property dictionary.
- protocol string
- Protocol used to communicate with the storage account.
- serviceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- is_default bool
- Readonly property to indicate if datastore is the workspace default datastore
- account_name str
- Storage account name.
- container_name str
- Storage account container name.
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_data_ straccess_ auth_ identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- isDefault Boolean
- Readonly property to indicate if datastore is the workspace default datastore
- accountName String
- Storage account name.
- containerName String
- Storage account container name.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData StringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureDataLakeGen1Datastore, AzureDataLakeGen1DatastoreArgs        
- Credentials
Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials 
- [Required] Account credentials.
- StoreName string
- [Required] Azure Data Lake store name.
- Description string
- The asset description text.
- Properties Dictionary<string, string>
- The asset property dictionary.
- ServiceData string | Pulumi.Access Auth Identity Azure Native. Machine Learning Services. Service Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- StoreName string
- [Required] Azure Data Lake store name.
- Description string
- The asset description text.
- Properties map[string]string
- The asset property dictionary.
- ServiceData string | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- storeName String
- [Required] Azure Data Lake store name.
- description String
- The asset description text.
- properties Map<String,String>
- The asset property dictionary.
- serviceData String | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- storeName string
- [Required] Azure Data Lake store name.
- description string
- The asset description text.
- properties {[key: string]: string}
- The asset property dictionary.
- serviceData string | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- store_name str
- [Required] Azure Data Lake store name.
- description str
- The asset description text.
- properties Mapping[str, str]
- The asset property dictionary.
- service_data_ str | Serviceaccess_ auth_ identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- storeName String
- [Required] Azure Data Lake store name.
- description String
- The asset description text.
- properties Map<String>
- The asset property dictionary.
- serviceData String | "None" | "WorkspaceAccess Auth Identity System Assigned Identity" | "Workspace User Assigned Identity" 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureDataLakeGen1DatastoreResponse, AzureDataLakeGen1DatastoreResponseArgs          
- Credentials
Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Response Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials Response 
- [Required] Account credentials.
- IsDefault bool
- Readonly property to indicate if datastore is the workspace default datastore
- StoreName string
- [Required] Azure Data Lake store name.
- Description string
- The asset description text.
- Properties Dictionary<string, string>
- The asset property dictionary.
- ServiceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- IsDefault bool
- Readonly property to indicate if datastore is the workspace default datastore
- StoreName string
- [Required] Azure Data Lake store name.
- Description string
- The asset description text.
- Properties map[string]string
- The asset property dictionary.
- ServiceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- isDefault Boolean
- Readonly property to indicate if datastore is the workspace default datastore
- storeName String
- [Required] Azure Data Lake store name.
- description String
- The asset description text.
- properties Map<String,String>
- The asset property dictionary.
- serviceData StringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- isDefault boolean
- Readonly property to indicate if datastore is the workspace default datastore
- storeName string
- [Required] Azure Data Lake store name.
- description string
- The asset description text.
- properties {[key: string]: string}
- The asset property dictionary.
- serviceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- is_default bool
- Readonly property to indicate if datastore is the workspace default datastore
- store_name str
- [Required] Azure Data Lake store name.
- description str
- The asset description text.
- properties Mapping[str, str]
- The asset property dictionary.
- service_data_ straccess_ auth_ identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- isDefault Boolean
- Readonly property to indicate if datastore is the workspace default datastore
- storeName String
- [Required] Azure Data Lake store name.
- description String
- The asset description text.
- properties Map<String>
- The asset property dictionary.
- serviceData StringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureDataLakeGen2Datastore, AzureDataLakeGen2DatastoreArgs        
- AccountName string
- [Required] Storage account name.
- Credentials
Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials 
- [Required] Account credentials.
- Filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData string | Pulumi.Access Auth Identity Azure Native. Machine Learning Services. Service Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- AccountName string
- [Required] Storage account name.
- Credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- Filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties map[string]string
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData string | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- accountName String
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- filesystem String
- [Required] The name of the Data Lake Gen2 filesystem.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String,String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData String | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- accountName string
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- description string
- The asset description text.
- endpoint string
- Azure cloud endpoint for the storage account.
- properties {[key: string]: string}
- The asset property dictionary.
- protocol string
- Protocol used to communicate with the storage account.
- serviceData string | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- account_name str
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- filesystem str
- [Required] The name of the Data Lake Gen2 filesystem.
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_data_ str | Serviceaccess_ auth_ identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- accountName String
- [Required] Storage account name.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- filesystem String
- [Required] The name of the Data Lake Gen2 filesystem.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData String | "None" | "WorkspaceAccess Auth Identity System Assigned Identity" | "Workspace User Assigned Identity" 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureDataLakeGen2DatastoreResponse, AzureDataLakeGen2DatastoreResponseArgs          
- AccountName string
- [Required] Storage account name.
- Credentials
Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Response Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials Response 
- [Required] Account credentials.
- Filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- IsDefault bool
- Readonly property to indicate if datastore is the workspace default datastore
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- AccountName string
- [Required] Storage account name.
- Credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- Filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- IsDefault bool
- Readonly property to indicate if datastore is the workspace default datastore
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties map[string]string
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- accountName String
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- filesystem String
- [Required] The name of the Data Lake Gen2 filesystem.
- isDefault Boolean
- Readonly property to indicate if datastore is the workspace default datastore
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String,String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData StringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- accountName string
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- isDefault boolean
- Readonly property to indicate if datastore is the workspace default datastore
- description string
- The asset description text.
- endpoint string
- Azure cloud endpoint for the storage account.
- properties {[key: string]: string}
- The asset property dictionary.
- protocol string
- Protocol used to communicate with the storage account.
- serviceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- account_name str
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- filesystem str
- [Required] The name of the Data Lake Gen2 filesystem.
- is_default bool
- Readonly property to indicate if datastore is the workspace default datastore
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_data_ straccess_ auth_ identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- accountName String
- [Required] Storage account name.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- filesystem String
- [Required] The name of the Data Lake Gen2 filesystem.
- isDefault Boolean
- Readonly property to indicate if datastore is the workspace default datastore
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData StringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureFileDatastore, AzureFileDatastoreArgs      
- AccountName string
- [Required] Storage account name.
- Credentials
Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials 
- [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData string | Pulumi.Access Auth Identity Azure Native. Machine Learning Services. Service Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- AccountName string
- [Required] Storage account name.
- Credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties map[string]string
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData string | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- accountName String
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- String
- [Required] The name of the Azure file share that the datastore points to.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String,String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData String | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- accountName string
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- description string
- The asset description text.
- endpoint string
- Azure cloud endpoint for the storage account.
- properties {[key: string]: string}
- The asset property dictionary.
- protocol string
- Protocol used to communicate with the storage account.
- serviceData string | ServiceAccess Auth Identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- account_name str
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials 
- [Required] Account credentials.
- str
- [Required] The name of the Azure file share that the datastore points to.
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_data_ str | Serviceaccess_ auth_ identity Data Access Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- accountName String
- [Required] Storage account name.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- String
- [Required] The name of the Azure file share that the datastore points to.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData String | "None" | "WorkspaceAccess Auth Identity System Assigned Identity" | "Workspace User Assigned Identity" 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureFileDatastoreResponse, AzureFileDatastoreResponseArgs        
- AccountName string
- [Required] Storage account name.
- Credentials
Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Response Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials Response 
- [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- IsDefault bool
- Readonly property to indicate if datastore is the workspace default datastore
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- AccountName string
- [Required] Storage account name.
- Credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- IsDefault bool
- Readonly property to indicate if datastore is the workspace default datastore
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties map[string]string
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- ServiceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- accountName String
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- String
- [Required] The name of the Azure file share that the datastore points to.
- isDefault Boolean
- Readonly property to indicate if datastore is the workspace default datastore
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String,String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData StringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- accountName string
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- isDefault boolean
- Readonly property to indicate if datastore is the workspace default datastore
- description string
- The asset description text.
- endpoint string
- Azure cloud endpoint for the storage account.
- properties {[key: string]: string}
- The asset property dictionary.
- protocol string
- Protocol used to communicate with the storage account.
- serviceData stringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- account_name str
- [Required] Storage account name.
- credentials
AccountKey | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response 
- [Required] Account credentials.
- str
- [Required] The name of the Azure file share that the datastore points to.
- is_default bool
- Readonly property to indicate if datastore is the workspace default datastore
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_data_ straccess_ auth_ identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- accountName String
- [Required] Storage account name.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- String
- [Required] The name of the Azure file share that the datastore points to.
- isDefault Boolean
- Readonly property to indicate if datastore is the workspace default datastore
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- serviceData StringAccess Auth Identity 
- Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
CertificateDatastoreCredentials, CertificateDatastoreCredentialsArgs      
- ClientId string
- [Required] Service principal client ID.
- Secrets
Pulumi.Azure Native. Machine Learning Services. Inputs. Certificate Datastore Secrets 
- [Required] Service principal secrets.
- TenantId string
- [Required] ID of the tenant to which the service principal belongs.
- Thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- ResourceUrl string
- Resource the service principal has access to.
- ClientId string
- [Required] Service principal client ID.
- Secrets
CertificateDatastore Secrets 
- [Required] Service principal secrets.
- TenantId string
- [Required] ID of the tenant to which the service principal belongs.
- Thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- ResourceUrl string
- Resource the service principal has access to.
- clientId String
- [Required] Service principal client ID.
- secrets
CertificateDatastore Secrets 
- [Required] Service principal secrets.
- tenantId String
- [Required] ID of the tenant to which the service principal belongs.
- thumbprint String
- [Required] Thumbprint of the certificate used for authentication.
- String
- Authority URL used for authentication.
- resourceUrl String
- Resource the service principal has access to.
- clientId string
- [Required] Service principal client ID.
- secrets
CertificateDatastore Secrets 
- [Required] Service principal secrets.
- tenantId string
- [Required] ID of the tenant to which the service principal belongs.
- thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- resourceUrl string
- Resource the service principal has access to.
- client_id str
- [Required] Service principal client ID.
- secrets
CertificateDatastore Secrets 
- [Required] Service principal secrets.
- tenant_id str
- [Required] ID of the tenant to which the service principal belongs.
- thumbprint str
- [Required] Thumbprint of the certificate used for authentication.
- str
- Authority URL used for authentication.
- resource_url str
- Resource the service principal has access to.
- clientId String
- [Required] Service principal client ID.
- secrets Property Map
- [Required] Service principal secrets.
- tenantId String
- [Required] ID of the tenant to which the service principal belongs.
- thumbprint String
- [Required] Thumbprint of the certificate used for authentication.
- String
- Authority URL used for authentication.
- resourceUrl String
- Resource the service principal has access to.
CertificateDatastoreCredentialsResponse, CertificateDatastoreCredentialsResponseArgs        
- ClientId string
- [Required] Service principal client ID.
- TenantId string
- [Required] ID of the tenant to which the service principal belongs.
- Thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- ResourceUrl string
- Resource the service principal has access to.
- ClientId string
- [Required] Service principal client ID.
- TenantId string
- [Required] ID of the tenant to which the service principal belongs.
- Thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- ResourceUrl string
- Resource the service principal has access to.
- clientId String
- [Required] Service principal client ID.
- tenantId String
- [Required] ID of the tenant to which the service principal belongs.
- thumbprint String
- [Required] Thumbprint of the certificate used for authentication.
- String
- Authority URL used for authentication.
- resourceUrl String
- Resource the service principal has access to.
- clientId string
- [Required] Service principal client ID.
- tenantId string
- [Required] ID of the tenant to which the service principal belongs.
- thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- resourceUrl string
- Resource the service principal has access to.
- client_id str
- [Required] Service principal client ID.
- tenant_id str
- [Required] ID of the tenant to which the service principal belongs.
- thumbprint str
- [Required] Thumbprint of the certificate used for authentication.
- str
- Authority URL used for authentication.
- resource_url str
- Resource the service principal has access to.
- clientId String
- [Required] Service principal client ID.
- tenantId String
- [Required] ID of the tenant to which the service principal belongs.
- thumbprint String
- [Required] Thumbprint of the certificate used for authentication.
- String
- Authority URL used for authentication.
- resourceUrl String
- Resource the service principal has access to.
CertificateDatastoreSecrets, CertificateDatastoreSecretsArgs      
- Certificate string
- Service principal certificate.
- Certificate string
- Service principal certificate.
- certificate String
- Service principal certificate.
- certificate string
- Service principal certificate.
- certificate str
- Service principal certificate.
- certificate String
- Service principal certificate.
NoneDatastoreCredentials, NoneDatastoreCredentialsArgs      
NoneDatastoreCredentialsResponse, NoneDatastoreCredentialsResponseArgs        
SasDatastoreCredentials, SasDatastoreCredentialsArgs      
- Secrets
Pulumi.Azure Native. Machine Learning Services. Inputs. Sas Datastore Secrets 
- [Required] Storage container secrets.
- Secrets
SasDatastore Secrets 
- [Required] Storage container secrets.
- secrets
SasDatastore Secrets 
- [Required] Storage container secrets.
- secrets
SasDatastore Secrets 
- [Required] Storage container secrets.
- secrets
SasDatastore Secrets 
- [Required] Storage container secrets.
- secrets Property Map
- [Required] Storage container secrets.
SasDatastoreCredentialsResponse, SasDatastoreCredentialsResponseArgs        
SasDatastoreSecrets, SasDatastoreSecretsArgs      
- SasToken string
- Storage container SAS token.
- SasToken string
- Storage container SAS token.
- sasToken String
- Storage container SAS token.
- sasToken string
- Storage container SAS token.
- sas_token str
- Storage container SAS token.
- sasToken String
- Storage container SAS token.
ServiceDataAccessAuthIdentity, ServiceDataAccessAuthIdentityArgs          
- None
- NoneDo not use any identity for service data access.
- WorkspaceSystem Assigned Identity 
- WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- WorkspaceUser Assigned Identity 
- WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- ServiceData Access Auth Identity None 
- NoneDo not use any identity for service data access.
- ServiceData Access Auth Identity Workspace System Assigned Identity 
- WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- ServiceData Access Auth Identity Workspace User Assigned Identity 
- WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- None
- NoneDo not use any identity for service data access.
- WorkspaceSystem Assigned Identity 
- WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- WorkspaceUser Assigned Identity 
- WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- None
- NoneDo not use any identity for service data access.
- WorkspaceSystem Assigned Identity 
- WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- WorkspaceUser Assigned Identity 
- WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- NONE
- NoneDo not use any identity for service data access.
- WORKSPACE_SYSTEM_ASSIGNED_IDENTITY
- WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- WORKSPACE_USER_ASSIGNED_IDENTITY
- WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- "None"
- NoneDo not use any identity for service data access.
- "WorkspaceSystem Assigned Identity" 
- WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- "WorkspaceUser Assigned Identity" 
- WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
ServicePrincipalDatastoreCredentials, ServicePrincipalDatastoreCredentialsArgs        
- ClientId string
- [Required] Service principal client ID.
- Secrets
Pulumi.Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Secrets 
- [Required] Service principal secrets.
- TenantId string
- [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- ResourceUrl string
- Resource the service principal has access to.
- ClientId string
- [Required] Service principal client ID.
- Secrets
ServicePrincipal Datastore Secrets 
- [Required] Service principal secrets.
- TenantId string
- [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- ResourceUrl string
- Resource the service principal has access to.
- clientId String
- [Required] Service principal client ID.
- secrets
ServicePrincipal Datastore Secrets 
- [Required] Service principal secrets.
- tenantId String
- [Required] ID of the tenant to which the service principal belongs.
- String
- Authority URL used for authentication.
- resourceUrl String
- Resource the service principal has access to.
- clientId string
- [Required] Service principal client ID.
- secrets
ServicePrincipal Datastore Secrets 
- [Required] Service principal secrets.
- tenantId string
- [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- resourceUrl string
- Resource the service principal has access to.
- client_id str
- [Required] Service principal client ID.
- secrets
ServicePrincipal Datastore Secrets 
- [Required] Service principal secrets.
- tenant_id str
- [Required] ID of the tenant to which the service principal belongs.
- str
- Authority URL used for authentication.
- resource_url str
- Resource the service principal has access to.
- clientId String
- [Required] Service principal client ID.
- secrets Property Map
- [Required] Service principal secrets.
- tenantId String
- [Required] ID of the tenant to which the service principal belongs.
- String
- Authority URL used for authentication.
- resourceUrl String
- Resource the service principal has access to.
ServicePrincipalDatastoreCredentialsResponse, ServicePrincipalDatastoreCredentialsResponseArgs          
- ClientId string
- [Required] Service principal client ID.
- TenantId string
- [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- ResourceUrl string
- Resource the service principal has access to.
- ClientId string
- [Required] Service principal client ID.
- TenantId string
- [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- ResourceUrl string
- Resource the service principal has access to.
- clientId String
- [Required] Service principal client ID.
- tenantId String
- [Required] ID of the tenant to which the service principal belongs.
- String
- Authority URL used for authentication.
- resourceUrl String
- Resource the service principal has access to.
- clientId string
- [Required] Service principal client ID.
- tenantId string
- [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- resourceUrl string
- Resource the service principal has access to.
- client_id str
- [Required] Service principal client ID.
- tenant_id str
- [Required] ID of the tenant to which the service principal belongs.
- str
- Authority URL used for authentication.
- resource_url str
- Resource the service principal has access to.
- clientId String
- [Required] Service principal client ID.
- tenantId String
- [Required] ID of the tenant to which the service principal belongs.
- String
- Authority URL used for authentication.
- resourceUrl String
- Resource the service principal has access to.
ServicePrincipalDatastoreSecrets, ServicePrincipalDatastoreSecretsArgs        
- ClientSecret string
- Service principal secret.
- ClientSecret string
- Service principal secret.
- clientSecret String
- Service principal secret.
- clientSecret string
- Service principal secret.
- client_secret str
- Service principal secret.
- clientSecret String
- Service principal secret.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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 timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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:machinelearningservices:Datastore string /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0