1. Packages
  2. Azure Native v2
  3. API Docs
  4. machinelearningservices
  5. Datastore
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. DatastoreArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. DatastoreArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DatastoreArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 = 
    {
        { "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,
});
Copy
example, err := machinelearningservices.NewDatastore(ctx, "exampledatastoreResourceResourceFromMachinelearningservices", &machinelearningservices.DatastoreArgs{
	DatastoreProperties: map[string]interface{}{
		"credentials": map[string]interface{}{
			"credentialsType": "AccountKey",
			"secrets": map[string]interface{}{
				"secretsType": "AccountKey",
				"key":         "string",
			},
		},
		"datastoreType": "AzureBlob",
		"accountName":   "string",
		"containerName": "string",
		"description":   "string",
		"endpoint":      "string",
		"properties": map[string]interface{}{
			"string": "string",
		},
		"protocol":                      "string",
		"serviceDataAccessAuthIdentity": "string",
		"tags": map[string]interface{}{
			"string": "string",
		},
	},
	ResourceGroupName: "string",
	WorkspaceName:     "string",
	Name:              "string",
	SkipValidation:    false,
})
Copy
var exampledatastoreResourceResourceFromMachinelearningservices = new Datastore("exampledatastoreResourceResourceFromMachinelearningservices", DatastoreArgs.builder()
    .datastoreProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .workspaceName("string")
    .name("string")
    .skipValidation(false)
    .build());
Copy
exampledatastore_resource_resource_from_machinelearningservices = azure_native.machinelearningservices.Datastore("exampledatastoreResourceResourceFromMachinelearningservices",
    datastore_properties={
        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,
        },
    },
    resource_group_name=string,
    workspace_name=string,
    name=string,
    skip_validation=False)
Copy
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,
});
Copy
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
Copy

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 This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AzureBlobDatastore | Pulumi.AzureNative.MachineLearningServices.Inputs.AzureDataLakeGen1Datastore | Pulumi.AzureNative.MachineLearningServices.Inputs.AzureDataLakeGen2Datastore | Pulumi.AzureNative.MachineLearningServices.Inputs.AzureFileDatastore
[Required] Additional attributes of the entity.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Azure Machine Learning workspace.
Name Changes to this property will trigger replacement. string
Datastore name.
SkipValidation bool
Flag to skip validation.
DatastoreProperties This property is required. AzureBlobDatastoreArgs | AzureDataLakeGen1DatastoreArgs | AzureDataLakeGen2DatastoreArgs | AzureFileDatastoreArgs
[Required] Additional attributes of the entity.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Azure Machine Learning workspace.
Name Changes to this property will trigger replacement. string
Datastore name.
SkipValidation bool
Flag to skip validation.
datastoreProperties This property is required. AzureBlobDatastore | AzureDataLakeGen1Datastore | AzureDataLakeGen2Datastore | AzureFileDatastore
[Required] Additional attributes of the entity.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
Name of Azure Machine Learning workspace.
name Changes to this property will trigger replacement. String
Datastore name.
skipValidation Boolean
Flag to skip validation.
datastoreProperties This property is required. AzureBlobDatastore | AzureDataLakeGen1Datastore | AzureDataLakeGen2Datastore | AzureFileDatastore
[Required] Additional attributes of the entity.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Azure Machine Learning workspace.
name Changes to this property will trigger replacement. string
Datastore name.
skipValidation boolean
Flag to skip validation.
datastore_properties This property is required. AzureBlobDatastoreArgs | AzureDataLakeGen1DatastoreArgs | AzureDataLakeGen2DatastoreArgs | AzureFileDatastoreArgs
[Required] Additional attributes of the entity.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
workspace_name
This property is required.
Changes to this property will trigger replacement.
str
Name of Azure Machine Learning workspace.
name Changes to this property will trigger replacement. str
Datastore name.
skip_validation bool
Flag to skip validation.
datastoreProperties This property is required. Property Map | Property Map | Property Map | Property Map
[Required] Additional attributes of the entity.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
Name of Azure Machine Learning workspace.
name Changes to this property will trigger replacement. 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.AzureNative.MachineLearningServices.Outputs.SystemDataResponse
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 SystemDataResponse
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 SystemDataResponse
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 SystemDataResponse
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 SystemDataResponse
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 This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreSecrets
[Required] Storage account secrets.
Secrets This property is required. AccountKeyDatastoreSecrets
[Required] Storage account secrets.
secrets This property is required. AccountKeyDatastoreSecrets
[Required] Storage account secrets.
secrets This property is required. AccountKeyDatastoreSecrets
[Required] Storage account secrets.
secrets This property is required. AccountKeyDatastoreSecrets
[Required] Storage account secrets.
secrets This property is required. 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 This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.NoneDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.SasDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentials
[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.
ServiceDataAccessAuthIdentity string | Pulumi.AzureNative.MachineLearningServices.ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
Tags Dictionary<string, string>
Tag dictionary. Tags can be added, removed, and updated.
Credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[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.
ServiceDataAccessAuthIdentity string | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
Tags map[string]string
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[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.
serviceDataAccessAuthIdentity String | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String,String>
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[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.
serviceDataAccessAuthIdentity string | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags {[key: string]: string}
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[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_access_auth_identity str | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags Mapping[str, str]
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. 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.
serviceDataAccessAuthIdentity String | "None" | "WorkspaceSystemAssignedIdentity" | "WorkspaceUserAssignedIdentity"
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String>
Tag dictionary. Tags can be added, removed, and updated.

AzureBlobDatastoreResponse
, AzureBlobDatastoreResponseArgs

Credentials This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.NoneDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.SasDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
IsDefault This property is required. 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.
ServiceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
Tags Dictionary<string, string>
Tag dictionary. Tags can be added, removed, and updated.
Credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
IsDefault This property is required. 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.
ServiceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
Tags map[string]string
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
isDefault This property is required. 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.
serviceDataAccessAuthIdentity String
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String,String>
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
isDefault This property is required. 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.
serviceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
tags {[key: string]: string}
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
is_default This property is required. 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_access_auth_identity str
Indicates which identity to use to authenticate service data access to customer's storage.
tags Mapping[str, str]
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. Property Map | Property Map | Property Map | Property Map | Property Map
[Required] Account credentials.
isDefault This property is required. 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.
serviceDataAccessAuthIdentity String
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String>
Tag dictionary. Tags can be added, removed, and updated.

AzureDataLakeGen1Datastore
, AzureDataLakeGen1DatastoreArgs

Credentials This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.NoneDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.SasDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentials
[Required] Account credentials.
StoreName This property is required. string
[Required] Azure Data Lake store name.
Description string
The asset description text.
Properties Dictionary<string, string>
The asset property dictionary.
ServiceDataAccessAuthIdentity string | Pulumi.AzureNative.MachineLearningServices.ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
Tags Dictionary<string, string>
Tag dictionary. Tags can be added, removed, and updated.
Credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
StoreName This property is required. string
[Required] Azure Data Lake store name.
Description string
The asset description text.
Properties map[string]string
The asset property dictionary.
ServiceDataAccessAuthIdentity string | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
Tags map[string]string
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
storeName This property is required. String
[Required] Azure Data Lake store name.
description String
The asset description text.
properties Map<String,String>
The asset property dictionary.
serviceDataAccessAuthIdentity String | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String,String>
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
storeName This property is required. string
[Required] Azure Data Lake store name.
description string
The asset description text.
properties {[key: string]: string}
The asset property dictionary.
serviceDataAccessAuthIdentity string | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags {[key: string]: string}
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
store_name This property is required. str
[Required] Azure Data Lake store name.
description str
The asset description text.
properties Mapping[str, str]
The asset property dictionary.
service_data_access_auth_identity str | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags Mapping[str, str]
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. Property Map | Property Map | Property Map | Property Map | Property Map
[Required] Account credentials.
storeName This property is required. String
[Required] Azure Data Lake store name.
description String
The asset description text.
properties Map<String>
The asset property dictionary.
serviceDataAccessAuthIdentity String | "None" | "WorkspaceSystemAssignedIdentity" | "WorkspaceUserAssignedIdentity"
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String>
Tag dictionary. Tags can be added, removed, and updated.

AzureDataLakeGen1DatastoreResponse
, AzureDataLakeGen1DatastoreResponseArgs

Credentials This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.NoneDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.SasDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
IsDefault This property is required. bool
Readonly property to indicate if datastore is the workspace default datastore
StoreName This property is required. string
[Required] Azure Data Lake store name.
Description string
The asset description text.
Properties Dictionary<string, string>
The asset property dictionary.
ServiceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
Tags Dictionary<string, string>
Tag dictionary. Tags can be added, removed, and updated.
Credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
IsDefault This property is required. bool
Readonly property to indicate if datastore is the workspace default datastore
StoreName This property is required. string
[Required] Azure Data Lake store name.
Description string
The asset description text.
Properties map[string]string
The asset property dictionary.
ServiceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
Tags map[string]string
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
isDefault This property is required. Boolean
Readonly property to indicate if datastore is the workspace default datastore
storeName This property is required. String
[Required] Azure Data Lake store name.
description String
The asset description text.
properties Map<String,String>
The asset property dictionary.
serviceDataAccessAuthIdentity String
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String,String>
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
isDefault This property is required. boolean
Readonly property to indicate if datastore is the workspace default datastore
storeName This property is required. string
[Required] Azure Data Lake store name.
description string
The asset description text.
properties {[key: string]: string}
The asset property dictionary.
serviceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
tags {[key: string]: string}
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
is_default This property is required. bool
Readonly property to indicate if datastore is the workspace default datastore
store_name This property is required. str
[Required] Azure Data Lake store name.
description str
The asset description text.
properties Mapping[str, str]
The asset property dictionary.
service_data_access_auth_identity str
Indicates which identity to use to authenticate service data access to customer's storage.
tags Mapping[str, str]
Tag dictionary. Tags can be added, removed, and updated.
credentials This property is required. Property Map | Property Map | Property Map | Property Map | Property Map
[Required] Account credentials.
isDefault This property is required. Boolean
Readonly property to indicate if datastore is the workspace default datastore
storeName This property is required. String
[Required] Azure Data Lake store name.
description String
The asset description text.
properties Map<String>
The asset property dictionary.
serviceDataAccessAuthIdentity String
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String>
Tag dictionary. Tags can be added, removed, and updated.

AzureDataLakeGen2Datastore
, AzureDataLakeGen2DatastoreArgs

AccountName This property is required. string
[Required] Storage account name.
Credentials This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.NoneDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.SasDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentials
[Required] Account credentials.
Filesystem This property is required. 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.
ServiceDataAccessAuthIdentity string | Pulumi.AzureNative.MachineLearningServices.ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
Tags Dictionary<string, string>
Tag dictionary. Tags can be added, removed, and updated.
AccountName This property is required. string
[Required] Storage account name.
Credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
Filesystem This property is required. 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.
ServiceDataAccessAuthIdentity string | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
Tags map[string]string
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. String
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
filesystem This property is required. 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.
serviceDataAccessAuthIdentity String | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String,String>
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. string
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
filesystem This property is required. 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.
serviceDataAccessAuthIdentity string | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags {[key: string]: string}
Tag dictionary. Tags can be added, removed, and updated.
account_name This property is required. str
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
filesystem This property is required. 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_access_auth_identity str | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags Mapping[str, str]
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. String
[Required] Storage account name.
credentials This property is required. Property Map | Property Map | Property Map | Property Map | Property Map
[Required] Account credentials.
filesystem This property is required. 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.
serviceDataAccessAuthIdentity String | "None" | "WorkspaceSystemAssignedIdentity" | "WorkspaceUserAssignedIdentity"
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String>
Tag dictionary. Tags can be added, removed, and updated.

AzureDataLakeGen2DatastoreResponse
, AzureDataLakeGen2DatastoreResponseArgs

AccountName This property is required. string
[Required] Storage account name.
Credentials This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.NoneDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.SasDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
Filesystem This property is required. string
[Required] The name of the Data Lake Gen2 filesystem.
IsDefault This property is required. 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.
ServiceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
Tags Dictionary<string, string>
Tag dictionary. Tags can be added, removed, and updated.
AccountName This property is required. string
[Required] Storage account name.
Credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
Filesystem This property is required. string
[Required] The name of the Data Lake Gen2 filesystem.
IsDefault This property is required. 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.
ServiceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
Tags map[string]string
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. String
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
filesystem This property is required. String
[Required] The name of the Data Lake Gen2 filesystem.
isDefault This property is required. 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.
serviceDataAccessAuthIdentity String
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String,String>
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. string
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
filesystem This property is required. string
[Required] The name of the Data Lake Gen2 filesystem.
isDefault This property is required. 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.
serviceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
tags {[key: string]: string}
Tag dictionary. Tags can be added, removed, and updated.
account_name This property is required. str
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
filesystem This property is required. str
[Required] The name of the Data Lake Gen2 filesystem.
is_default This property is required. 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_access_auth_identity str
Indicates which identity to use to authenticate service data access to customer's storage.
tags Mapping[str, str]
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. String
[Required] Storage account name.
credentials This property is required. Property Map | Property Map | Property Map | Property Map | Property Map
[Required] Account credentials.
filesystem This property is required. String
[Required] The name of the Data Lake Gen2 filesystem.
isDefault This property is required. 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.
serviceDataAccessAuthIdentity String
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String>
Tag dictionary. Tags can be added, removed, and updated.

AzureFileDatastore
, AzureFileDatastoreArgs

AccountName This property is required. string
[Required] Storage account name.
Credentials This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.NoneDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.SasDatastoreCredentials | Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentials
[Required] Account credentials.
FileShareName This property is required. 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.
ServiceDataAccessAuthIdentity string | Pulumi.AzureNative.MachineLearningServices.ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
Tags Dictionary<string, string>
Tag dictionary. Tags can be added, removed, and updated.
AccountName This property is required. string
[Required] Storage account name.
Credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
FileShareName This property is required. 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.
ServiceDataAccessAuthIdentity string | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
Tags map[string]string
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. String
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
fileShareName This property is required. 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.
serviceDataAccessAuthIdentity String | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String,String>
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. string
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
fileShareName This property is required. 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.
serviceDataAccessAuthIdentity string | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags {[key: string]: string}
Tag dictionary. Tags can be added, removed, and updated.
account_name This property is required. str
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials
[Required] Account credentials.
file_share_name This property is required. 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_access_auth_identity str | ServiceDataAccessAuthIdentity
Indicates which identity to use to authenticate service data access to customer's storage.
tags Mapping[str, str]
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. String
[Required] Storage account name.
credentials This property is required. Property Map | Property Map | Property Map | Property Map | Property Map
[Required] Account credentials.
fileShareName This property is required. 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.
serviceDataAccessAuthIdentity String | "None" | "WorkspaceSystemAssignedIdentity" | "WorkspaceUserAssignedIdentity"
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String>
Tag dictionary. Tags can be added, removed, and updated.

AzureFileDatastoreResponse
, AzureFileDatastoreResponseArgs

AccountName This property is required. string
[Required] Storage account name.
Credentials This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.NoneDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.SasDatastoreCredentialsResponse | Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
FileShareName This property is required. string
[Required] The name of the Azure file share that the datastore points to.
IsDefault This property is required. 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.
ServiceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
Tags Dictionary<string, string>
Tag dictionary. Tags can be added, removed, and updated.
AccountName This property is required. string
[Required] Storage account name.
Credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
FileShareName This property is required. string
[Required] The name of the Azure file share that the datastore points to.
IsDefault This property is required. 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.
ServiceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
Tags map[string]string
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. String
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
fileShareName This property is required. String
[Required] The name of the Azure file share that the datastore points to.
isDefault This property is required. 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.
serviceDataAccessAuthIdentity String
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String,String>
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. string
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
fileShareName This property is required. string
[Required] The name of the Azure file share that the datastore points to.
isDefault This property is required. 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.
serviceDataAccessAuthIdentity string
Indicates which identity to use to authenticate service data access to customer's storage.
tags {[key: string]: string}
Tag dictionary. Tags can be added, removed, and updated.
account_name This property is required. str
[Required] Storage account name.
credentials This property is required. AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse
[Required] Account credentials.
file_share_name This property is required. str
[Required] The name of the Azure file share that the datastore points to.
is_default This property is required. 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_access_auth_identity str
Indicates which identity to use to authenticate service data access to customer's storage.
tags Mapping[str, str]
Tag dictionary. Tags can be added, removed, and updated.
accountName This property is required. String
[Required] Storage account name.
credentials This property is required. Property Map | Property Map | Property Map | Property Map | Property Map
[Required] Account credentials.
fileShareName This property is required. String
[Required] The name of the Azure file share that the datastore points to.
isDefault This property is required. 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.
serviceDataAccessAuthIdentity String
Indicates which identity to use to authenticate service data access to customer's storage.
tags Map<String>
Tag dictionary. Tags can be added, removed, and updated.

CertificateDatastoreCredentials
, CertificateDatastoreCredentialsArgs

ClientId This property is required. string
[Required] Service principal client ID.
Secrets This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreSecrets
[Required] Service principal secrets.
TenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
Thumbprint This property is required. string
[Required] Thumbprint of the certificate used for authentication.
AuthorityUrl string
Authority URL used for authentication.
ResourceUrl string
Resource the service principal has access to.
ClientId This property is required. string
[Required] Service principal client ID.
Secrets This property is required. CertificateDatastoreSecrets
[Required] Service principal secrets.
TenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
Thumbprint This property is required. string
[Required] Thumbprint of the certificate used for authentication.
AuthorityUrl string
Authority URL used for authentication.
ResourceUrl string
Resource the service principal has access to.
clientId This property is required. String
[Required] Service principal client ID.
secrets This property is required. CertificateDatastoreSecrets
[Required] Service principal secrets.
tenantId This property is required. String
[Required] ID of the tenant to which the service principal belongs.
thumbprint This property is required. String
[Required] Thumbprint of the certificate used for authentication.
authorityUrl String
Authority URL used for authentication.
resourceUrl String
Resource the service principal has access to.
clientId This property is required. string
[Required] Service principal client ID.
secrets This property is required. CertificateDatastoreSecrets
[Required] Service principal secrets.
tenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
thumbprint This property is required. string
[Required] Thumbprint of the certificate used for authentication.
authorityUrl string
Authority URL used for authentication.
resourceUrl string
Resource the service principal has access to.
client_id This property is required. str
[Required] Service principal client ID.
secrets This property is required. CertificateDatastoreSecrets
[Required] Service principal secrets.
tenant_id This property is required. str
[Required] ID of the tenant to which the service principal belongs.
thumbprint This property is required. str
[Required] Thumbprint of the certificate used for authentication.
authority_url str
Authority URL used for authentication.
resource_url str
Resource the service principal has access to.
clientId This property is required. String
[Required] Service principal client ID.
secrets This property is required. Property Map
[Required] Service principal secrets.
tenantId This property is required. String
[Required] ID of the tenant to which the service principal belongs.
thumbprint This property is required. String
[Required] Thumbprint of the certificate used for authentication.
authorityUrl String
Authority URL used for authentication.
resourceUrl String
Resource the service principal has access to.

CertificateDatastoreCredentialsResponse
, CertificateDatastoreCredentialsResponseArgs

ClientId This property is required. string
[Required] Service principal client ID.
TenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
Thumbprint This property is required. string
[Required] Thumbprint of the certificate used for authentication.
AuthorityUrl string
Authority URL used for authentication.
ResourceUrl string
Resource the service principal has access to.
ClientId This property is required. string
[Required] Service principal client ID.
TenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
Thumbprint This property is required. string
[Required] Thumbprint of the certificate used for authentication.
AuthorityUrl string
Authority URL used for authentication.
ResourceUrl string
Resource the service principal has access to.
clientId This property is required. String
[Required] Service principal client ID.
tenantId This property is required. String
[Required] ID of the tenant to which the service principal belongs.
thumbprint This property is required. String
[Required] Thumbprint of the certificate used for authentication.
authorityUrl String
Authority URL used for authentication.
resourceUrl String
Resource the service principal has access to.
clientId This property is required. string
[Required] Service principal client ID.
tenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
thumbprint This property is required. string
[Required] Thumbprint of the certificate used for authentication.
authorityUrl string
Authority URL used for authentication.
resourceUrl string
Resource the service principal has access to.
client_id This property is required. str
[Required] Service principal client ID.
tenant_id This property is required. str
[Required] ID of the tenant to which the service principal belongs.
thumbprint This property is required. str
[Required] Thumbprint of the certificate used for authentication.
authority_url str
Authority URL used for authentication.
resource_url str
Resource the service principal has access to.
clientId This property is required. String
[Required] Service principal client ID.
tenantId This property is required. String
[Required] ID of the tenant to which the service principal belongs.
thumbprint This property is required. String
[Required] Thumbprint of the certificate used for authentication.
authorityUrl 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 This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.SasDatastoreSecrets
[Required] Storage container secrets.
Secrets This property is required. SasDatastoreSecrets
[Required] Storage container secrets.
secrets This property is required. SasDatastoreSecrets
[Required] Storage container secrets.
secrets This property is required. SasDatastoreSecrets
[Required] Storage container secrets.
secrets This property is required. SasDatastoreSecrets
[Required] Storage container secrets.
secrets This property is required. 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.
WorkspaceSystemAssignedIdentity
WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
WorkspaceUserAssignedIdentity
WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
ServiceDataAccessAuthIdentityNone
NoneDo not use any identity for service data access.
ServiceDataAccessAuthIdentityWorkspaceSystemAssignedIdentity
WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
ServiceDataAccessAuthIdentityWorkspaceUserAssignedIdentity
WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
None
NoneDo not use any identity for service data access.
WorkspaceSystemAssignedIdentity
WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
WorkspaceUserAssignedIdentity
WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
None
NoneDo not use any identity for service data access.
WorkspaceSystemAssignedIdentity
WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
WorkspaceUserAssignedIdentity
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.
"WorkspaceSystemAssignedIdentity"
WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
"WorkspaceUserAssignedIdentity"
WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.

ServicePrincipalDatastoreCredentials
, ServicePrincipalDatastoreCredentialsArgs

ClientId This property is required. string
[Required] Service principal client ID.
Secrets This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreSecrets
[Required] Service principal secrets.
TenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
AuthorityUrl string
Authority URL used for authentication.
ResourceUrl string
Resource the service principal has access to.
ClientId This property is required. string
[Required] Service principal client ID.
Secrets This property is required. ServicePrincipalDatastoreSecrets
[Required] Service principal secrets.
TenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
AuthorityUrl string
Authority URL used for authentication.
ResourceUrl string
Resource the service principal has access to.
clientId This property is required. String
[Required] Service principal client ID.
secrets This property is required. ServicePrincipalDatastoreSecrets
[Required] Service principal secrets.
tenantId This property is required. String
[Required] ID of the tenant to which the service principal belongs.
authorityUrl String
Authority URL used for authentication.
resourceUrl String
Resource the service principal has access to.
clientId This property is required. string
[Required] Service principal client ID.
secrets This property is required. ServicePrincipalDatastoreSecrets
[Required] Service principal secrets.
tenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
authorityUrl string
Authority URL used for authentication.
resourceUrl string
Resource the service principal has access to.
client_id This property is required. str
[Required] Service principal client ID.
secrets This property is required. ServicePrincipalDatastoreSecrets
[Required] Service principal secrets.
tenant_id This property is required. str
[Required] ID of the tenant to which the service principal belongs.
authority_url str
Authority URL used for authentication.
resource_url str
Resource the service principal has access to.
clientId This property is required. String
[Required] Service principal client ID.
secrets This property is required. Property Map
[Required] Service principal secrets.
tenantId This property is required. String
[Required] ID of the tenant to which the service principal belongs.
authorityUrl String
Authority URL used for authentication.
resourceUrl String
Resource the service principal has access to.

ServicePrincipalDatastoreCredentialsResponse
, ServicePrincipalDatastoreCredentialsResponseArgs

ClientId This property is required. string
[Required] Service principal client ID.
TenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
AuthorityUrl string
Authority URL used for authentication.
ResourceUrl string
Resource the service principal has access to.
ClientId This property is required. string
[Required] Service principal client ID.
TenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
AuthorityUrl string
Authority URL used for authentication.
ResourceUrl string
Resource the service principal has access to.
clientId This property is required. String
[Required] Service principal client ID.
tenantId This property is required. String
[Required] ID of the tenant to which the service principal belongs.
authorityUrl String
Authority URL used for authentication.
resourceUrl String
Resource the service principal has access to.
clientId This property is required. string
[Required] Service principal client ID.
tenantId This property is required. string
[Required] ID of the tenant to which the service principal belongs.
authorityUrl string
Authority URL used for authentication.
resourceUrl string
Resource the service principal has access to.
client_id This property is required. str
[Required] Service principal client ID.
tenant_id This property is required. str
[Required] ID of the tenant to which the service principal belongs.
authority_url str
Authority URL used for authentication.
resource_url str
Resource the service principal has access to.
clientId This property is required. String
[Required] Service principal client ID.
tenantId This property is required. String
[Required] ID of the tenant to which the service principal belongs.
authorityUrl 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.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

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

$ pulumi import azure-native:machinelearningservices:Datastore string /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0