1. Packages
  2. Azure Native
  3. API Docs
  4. machinelearningservices
  5. Datastore
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi

azure-native.machinelearningservices.Datastore

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi

    Azure Resource Manager resource envelope. Azure REST API version: 2023-04-01.

    Example Usage

    CreateOrUpdate datastore (Azure Data Lake Gen1 w/ ServicePrincipal).

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var datastore = new AzureNative.MachineLearningServices.Datastore("datastore", new()
        {
            DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureDataLakeGen1DatastoreArgs
            {
                Credentials = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentialsArgs
                {
                    AuthorityUrl = "string",
                    ClientId = "00000000-1111-2222-3333-444444444444",
                    CredentialsType = "ServicePrincipal",
                    ResourceUrl = "string",
                    Secrets = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreSecretsArgs
                    {
                        ClientSecret = "string",
                        SecretsType = "ServicePrincipal",
                    },
                    TenantId = "00000000-1111-2222-3333-444444444444",
                },
                DatastoreType = "AzureDataLakeGen1",
                Description = "string",
                StoreName = "string",
                Tags = 
                {
                    { "string", "string" },
                },
            },
            Name = "string",
            ResourceGroupName = "test-rg",
            SkipValidation = false,
            WorkspaceName = "my-aml-workspace",
        });
    
    });
    
    package main
    
    import (
    	"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.AzureDataLakeGen1Datastore{
    				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: "AzureDataLakeGen1",
    				Description:   "string",
    				StoreName:     "string",
    				Tags: map[string]interface{}{
    					"string": "string",
    				},
    			},
    			Name:              pulumi.String("string"),
    			ResourceGroupName: pulumi.String("test-rg"),
    			SkipValidation:    pulumi.Bool(false),
    			WorkspaceName:     pulumi.String("my-aml-workspace"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.machinelearningservices.Datastore;
    import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var datastore = new Datastore("datastore", DatastoreArgs.builder()        
                .datastoreProperties(Map.ofEntries(
                    Map.entry("credentials", Map.ofEntries(
                        Map.entry("authorityUrl", "string"),
                        Map.entry("clientId", "00000000-1111-2222-3333-444444444444"),
                        Map.entry("credentialsType", "ServicePrincipal"),
                        Map.entry("resourceUrl", "string"),
                        Map.entry("secrets", Map.ofEntries(
                            Map.entry("clientSecret", "string"),
                            Map.entry("secretsType", "ServicePrincipal")
                        )),
                        Map.entry("tenantId", "00000000-1111-2222-3333-444444444444")
                    )),
                    Map.entry("datastoreType", "AzureDataLakeGen1"),
                    Map.entry("description", "string"),
                    Map.entry("storeName", "string"),
                    Map.entry("tags", AzureBlobDatastoreArgs.builder()
                        .string("string")
                        .build())
                ))
                .name("string")
                .resourceGroupName("test-rg")
                .skipValidation(false)
                .workspaceName("my-aml-workspace")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    datastore = azure_native.machinelearningservices.Datastore("datastore",
        datastore_properties=azure_native.machinelearningservices.AzureDataLakeGen1DatastoreArgs(
            credentials=azure_native.machinelearningservices.ServicePrincipalDatastoreCredentialsArgs(
                authority_url="string",
                client_id="00000000-1111-2222-3333-444444444444",
                credentials_type="ServicePrincipal",
                resource_url="string",
                secrets=azure_native.machinelearningservices.ServicePrincipalDatastoreSecretsArgs(
                    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")
    
    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",
    });
    
    resources:
      datastore:
        type: azure-native:machinelearningservices:Datastore
        properties:
          datastoreProperties:
            credentials:
              authorityUrl: string
              clientId: 00000000-1111-2222-3333-444444444444
              credentialsType: ServicePrincipal
              resourceUrl: string
              secrets:
                clientSecret: string
                secretsType: ServicePrincipal
              tenantId: 00000000-1111-2222-3333-444444444444
            datastoreType: AzureDataLakeGen1
            description: string
            storeName: string
            tags:
              string: string
          name: string
          resourceGroupName: test-rg
          skipValidation: false
          workspaceName: my-aml-workspace
    

    CreateOrUpdate datastore (Azure Data Lake Gen2 w/ Service Principal).

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var datastore = new AzureNative.MachineLearningServices.Datastore("datastore", new()
        {
            DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureDataLakeGen2DatastoreArgs
            {
                AccountName = "string",
                Credentials = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentialsArgs
                {
                    AuthorityUrl = "string",
                    ClientId = "00000000-1111-2222-3333-444444444444",
                    CredentialsType = "ServicePrincipal",
                    ResourceUrl = "string",
                    Secrets = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreSecretsArgs
                    {
                        ClientSecret = "string",
                        SecretsType = "ServicePrincipal",
                    },
                    TenantId = "00000000-1111-2222-3333-444444444444",
                },
                DatastoreType = "AzureDataLakeGen2",
                Description = "string",
                Endpoint = "string",
                Filesystem = "string",
                Protocol = "string",
                Tags = 
                {
                    { "string", "string" },
                },
            },
            Name = "string",
            ResourceGroupName = "test-rg",
            SkipValidation = false,
            WorkspaceName = "my-aml-workspace",
        });
    
    });
    
    package main
    
    import (
    	"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.AzureDataLakeGen2Datastore{
    				AccountName: "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: "AzureDataLakeGen2",
    				Description:   "string",
    				Endpoint:      "string",
    				Filesystem:    "string",
    				Protocol:      "string",
    				Tags: map[string]interface{}{
    					"string": "string",
    				},
    			},
    			Name:              pulumi.String("string"),
    			ResourceGroupName: pulumi.String("test-rg"),
    			SkipValidation:    pulumi.Bool(false),
    			WorkspaceName:     pulumi.String("my-aml-workspace"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.machinelearningservices.Datastore;
    import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var datastore = new Datastore("datastore", DatastoreArgs.builder()        
                .datastoreProperties(Map.ofEntries(
                    Map.entry("accountName", "string"),
                    Map.entry("credentials", Map.ofEntries(
                        Map.entry("authorityUrl", "string"),
                        Map.entry("clientId", "00000000-1111-2222-3333-444444444444"),
                        Map.entry("credentialsType", "ServicePrincipal"),
                        Map.entry("resourceUrl", "string"),
                        Map.entry("secrets", Map.ofEntries(
                            Map.entry("clientSecret", "string"),
                            Map.entry("secretsType", "ServicePrincipal")
                        )),
                        Map.entry("tenantId", "00000000-1111-2222-3333-444444444444")
                    )),
                    Map.entry("datastoreType", "AzureDataLakeGen2"),
                    Map.entry("description", "string"),
                    Map.entry("endpoint", "string"),
                    Map.entry("filesystem", "string"),
                    Map.entry("protocol", "string"),
                    Map.entry("tags", AzureBlobDatastoreArgs.builder()
                        .string("string")
                        .build())
                ))
                .name("string")
                .resourceGroupName("test-rg")
                .skipValidation(false)
                .workspaceName("my-aml-workspace")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    datastore = azure_native.machinelearningservices.Datastore("datastore",
        datastore_properties=azure_native.machinelearningservices.AzureDataLakeGen2DatastoreArgs(
            account_name="string",
            credentials=azure_native.machinelearningservices.ServicePrincipalDatastoreCredentialsArgs(
                authority_url="string",
                client_id="00000000-1111-2222-3333-444444444444",
                credentials_type="ServicePrincipal",
                resource_url="string",
                secrets=azure_native.machinelearningservices.ServicePrincipalDatastoreSecretsArgs(
                    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")
    
    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",
    });
    
    resources:
      datastore:
        type: azure-native:machinelearningservices:Datastore
        properties:
          datastoreProperties:
            accountName: string
            credentials:
              authorityUrl: string
              clientId: 00000000-1111-2222-3333-444444444444
              credentialsType: ServicePrincipal
              resourceUrl: string
              secrets:
                clientSecret: string
                secretsType: ServicePrincipal
              tenantId: 00000000-1111-2222-3333-444444444444
            datastoreType: AzureDataLakeGen2
            description: string
            endpoint: string
            filesystem: string
            protocol: string
            tags:
              string: string
          name: string
          resourceGroupName: test-rg
          skipValidation: false
          workspaceName: my-aml-workspace
    

    CreateOrUpdate datastore (Azure File store w/ AccountKey).

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var datastore = new AzureNative.MachineLearningServices.Datastore("datastore", new()
        {
            DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureFileDatastoreArgs
            {
                AccountName = "string",
                Credentials = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsArgs
                {
                    CredentialsType = "AccountKey",
                    Secrets = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreSecretsArgs
                    {
                        Key = "string",
                        SecretsType = "AccountKey",
                    },
                },
                DatastoreType = "AzureFile",
                Description = "string",
                Endpoint = "string",
                FileShareName = "string",
                Protocol = "string",
                Tags = 
                {
                    { "string", "string" },
                },
            },
            Name = "string",
            ResourceGroupName = "test-rg",
            SkipValidation = false,
            WorkspaceName = "my-aml-workspace",
        });
    
    });
    
    package main
    
    import (
    	"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.AzureFileDatastore{
    				AccountName: "string",
    				Credentials: machinelearningservices.AccountKeyDatastoreCredentials{
    					CredentialsType: "AccountKey",
    					Secrets: machinelearningservices.AccountKeyDatastoreSecrets{
    						Key:         "string",
    						SecretsType: "AccountKey",
    					},
    				},
    				DatastoreType: "AzureFile",
    				Description:   "string",
    				Endpoint:      "string",
    				FileShareName: "string",
    				Protocol:      "string",
    				Tags: map[string]interface{}{
    					"string": "string",
    				},
    			},
    			Name:              pulumi.String("string"),
    			ResourceGroupName: pulumi.String("test-rg"),
    			SkipValidation:    pulumi.Bool(false),
    			WorkspaceName:     pulumi.String("my-aml-workspace"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.machinelearningservices.Datastore;
    import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var datastore = new Datastore("datastore", DatastoreArgs.builder()        
                .datastoreProperties(Map.ofEntries(
                    Map.entry("accountName", "string"),
                    Map.entry("credentials", Map.ofEntries(
                        Map.entry("credentialsType", "AccountKey"),
                        Map.entry("secrets", Map.ofEntries(
                            Map.entry("key", "string"),
                            Map.entry("secretsType", "AccountKey")
                        ))
                    )),
                    Map.entry("datastoreType", "AzureFile"),
                    Map.entry("description", "string"),
                    Map.entry("endpoint", "string"),
                    Map.entry("fileShareName", "string"),
                    Map.entry("protocol", "string"),
                    Map.entry("tags", AzureBlobDatastoreArgs.builder()
                        .string("string")
                        .build())
                ))
                .name("string")
                .resourceGroupName("test-rg")
                .skipValidation(false)
                .workspaceName("my-aml-workspace")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    datastore = azure_native.machinelearningservices.Datastore("datastore",
        datastore_properties=azure_native.machinelearningservices.AzureFileDatastoreArgs(
            account_name="string",
            credentials=azure_native.machinelearningservices.AccountKeyDatastoreCredentialsArgs(
                credentials_type="AccountKey",
                secrets=azure_native.machinelearningservices.AccountKeyDatastoreSecretsArgs(
                    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")
    
    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",
    });
    
    resources:
      datastore:
        type: azure-native:machinelearningservices:Datastore
        properties:
          datastoreProperties:
            accountName: string
            credentials:
              credentialsType: AccountKey
              secrets:
                key: string
                secretsType: AccountKey
            datastoreType: AzureFile
            description: string
            endpoint: string
            fileShareName: string
            protocol: string
            tags:
              string: string
          name: string
          resourceGroupName: test-rg
          skipValidation: false
          workspaceName: my-aml-workspace
    

    CreateOrUpdate datastore (AzureBlob w/ AccountKey).

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var datastore = new AzureNative.MachineLearningServices.Datastore("datastore", new()
        {
            DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureBlobDatastoreArgs
            {
                AccountName = "string",
                ContainerName = "string",
                Credentials = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsArgs
                {
                    CredentialsType = "AccountKey",
                    Secrets = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreSecretsArgs
                    {
                        Key = "string",
                        SecretsType = "AccountKey",
                    },
                },
                DatastoreType = "AzureBlob",
                Description = "string",
                Endpoint = "core.windows.net",
                Protocol = "https",
                Tags = 
                {
                    { "string", "string" },
                },
            },
            Name = "string",
            ResourceGroupName = "test-rg",
            SkipValidation = false,
            WorkspaceName = "my-aml-workspace",
        });
    
    });
    
    package main
    
    import (
    	"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.AzureBlobDatastore{
    				AccountName:   "string",
    				ContainerName: "string",
    				Credentials: machinelearningservices.AccountKeyDatastoreCredentials{
    					CredentialsType: "AccountKey",
    					Secrets: machinelearningservices.AccountKeyDatastoreSecrets{
    						Key:         "string",
    						SecretsType: "AccountKey",
    					},
    				},
    				DatastoreType: "AzureBlob",
    				Description:   "string",
    				Endpoint:      "core.windows.net",
    				Protocol:      "https",
    				Tags: map[string]interface{}{
    					"string": "string",
    				},
    			},
    			Name:              pulumi.String("string"),
    			ResourceGroupName: pulumi.String("test-rg"),
    			SkipValidation:    pulumi.Bool(false),
    			WorkspaceName:     pulumi.String("my-aml-workspace"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.machinelearningservices.Datastore;
    import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var datastore = new Datastore("datastore", DatastoreArgs.builder()        
                .datastoreProperties(Map.ofEntries(
                    Map.entry("accountName", "string"),
                    Map.entry("containerName", "string"),
                    Map.entry("credentials", Map.ofEntries(
                        Map.entry("credentialsType", "AccountKey"),
                        Map.entry("secrets", Map.ofEntries(
                            Map.entry("key", "string"),
                            Map.entry("secretsType", "AccountKey")
                        ))
                    )),
                    Map.entry("datastoreType", "AzureBlob"),
                    Map.entry("description", "string"),
                    Map.entry("endpoint", "core.windows.net"),
                    Map.entry("protocol", "https"),
                    Map.entry("tags", AzureBlobDatastoreArgs.builder()
                        .string("string")
                        .build())
                ))
                .name("string")
                .resourceGroupName("test-rg")
                .skipValidation(false)
                .workspaceName("my-aml-workspace")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    datastore = azure_native.machinelearningservices.Datastore("datastore",
        datastore_properties=azure_native.machinelearningservices.AzureBlobDatastoreArgs(
            account_name="string",
            container_name="string",
            credentials=azure_native.machinelearningservices.AccountKeyDatastoreCredentialsArgs(
                credentials_type="AccountKey",
                secrets=azure_native.machinelearningservices.AccountKeyDatastoreSecretsArgs(
                    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")
    
    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",
    });
    
    resources:
      datastore:
        type: azure-native:machinelearningservices:Datastore
        properties:
          datastoreProperties:
            accountName: string
            containerName: string
            credentials:
              credentialsType: AccountKey
              secrets:
                key: string
                secretsType: AccountKey
            datastoreType: AzureBlob
            description: string
            endpoint: core.windows.net
            protocol: https
            tags:
              string: string
          name: string
          resourceGroupName: test-rg
          skipValidation: false
          workspaceName: my-aml-workspace
    

    Create Datastore Resource

    new Datastore(name: string, args: DatastoreArgs, opts?: CustomResourceOptions);
    @overload
    def Datastore(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  datastore_properties: Optional[Union[AzureBlobDatastoreArgs, AzureDataLakeGen1DatastoreArgs, AzureDataLakeGen2DatastoreArgs, AzureFileDatastoreArgs]] = None,
                  name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  skip_validation: Optional[bool] = None,
                  workspace_name: Optional[str] = None)
    @overload
    def Datastore(resource_name: str,
                  args: DatastoreArgs,
                  opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args DatastoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DatastoreArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DatastoreArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatastoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatastoreArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The Datastore resource accepts the following input properties:

    DatastoreProperties AzureBlobDatastoreArgs | AzureDataLakeGen1DatastoreArgs | AzureDataLakeGen2DatastoreArgs | AzureFileDatastoreArgs

    [Required] Additional attributes of the entity.

    ResourceGroupName string

    The name of the resource group. The name is case insensitive.

    WorkspaceName string

    Name of Azure Machine Learning workspace.

    Name string

    Datastore name.

    SkipValidation bool

    Flag to skip validation.

    datastoreProperties AzureBlobDatastore | AzureDataLakeGen1Datastore | AzureDataLakeGen2Datastore | AzureFileDatastore

    [Required] Additional attributes of the entity.

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    workspaceName String

    Name of Azure Machine Learning workspace.

    name String

    Datastore name.

    skipValidation Boolean

    Flag to skip validation.

    datastoreProperties AzureBlobDatastore | AzureDataLakeGen1Datastore | AzureDataLakeGen2Datastore | AzureFileDatastore

    [Required] Additional attributes of the entity.

    resourceGroupName string

    The name of the resource group. The name is case insensitive.

    workspaceName string

    Name of Azure Machine Learning workspace.

    name string

    Datastore name.

    skipValidation boolean

    Flag to skip validation.

    datastore_properties AzureBlobDatastoreArgs | AzureDataLakeGen1DatastoreArgs | AzureDataLakeGen2DatastoreArgs | AzureFileDatastoreArgs

    [Required] Additional attributes of the entity.

    resource_group_name str

    The name of the resource group. The name is case insensitive.

    workspace_name str

    Name of Azure Machine Learning workspace.

    name str

    Datastore name.

    skip_validation bool

    Flag to skip validation.

    datastoreProperties Property Map | Property Map | Property Map | Property Map

    [Required] Additional attributes of the entity.

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    workspaceName String

    Name of Azure Machine Learning workspace.

    name String

    Datastore name.

    skipValidation Boolean

    Flag to skip validation.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    SystemData Pulumi.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 AccountKeyDatastoreSecrets

    [Required] Storage account secrets.

    secrets AccountKeyDatastoreSecrets

    [Required] Storage account secrets.

    secrets AccountKeyDatastoreSecrets

    [Required] Storage account secrets.

    secrets AccountKeyDatastoreSecrets

    [Required] Storage account secrets.

    secrets Property Map

    [Required] Storage account secrets.

    AccountKeyDatastoreCredentialsResponse, AccountKeyDatastoreCredentialsResponseArgs

    AccountKeyDatastoreSecrets, AccountKeyDatastoreSecretsArgs

    Key string

    Storage account key.

    Key string

    Storage account key.

    key String

    Storage account key.

    key string

    Storage account key.

    key str

    Storage account key.

    key String

    Storage account key.

    AzureBlobDatastore, AzureBlobDatastoreArgs

    Credentials Pulumi.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 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 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 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 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 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 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 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 AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    IsDefault bool

    Readonly property to indicate if datastore is the workspace default datastore

    AccountName string

    Storage account name.

    ContainerName string

    Storage account container name.

    Description string

    The asset description text.

    Endpoint string

    Azure cloud endpoint for the storage account.

    Properties map[string]string

    The asset property dictionary.

    Protocol string

    Protocol used to communicate with the storage account.

    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 AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    isDefault Boolean

    Readonly property to indicate if datastore is the workspace default datastore

    accountName String

    Storage account name.

    containerName String

    Storage account container name.

    description String

    The asset description text.

    endpoint String

    Azure cloud endpoint for the storage account.

    properties Map<String,String>

    The asset property dictionary.

    protocol String

    Protocol used to communicate with the storage account.

    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 AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    isDefault boolean

    Readonly property to indicate if datastore is the workspace default datastore

    accountName string

    Storage account name.

    containerName string

    Storage account container name.

    description string

    The asset description text.

    endpoint string

    Azure cloud endpoint for the storage account.

    properties {[key: string]: string}

    The asset property dictionary.

    protocol string

    Protocol used to communicate with the storage account.

    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 AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    is_default bool

    Readonly property to indicate if datastore is the workspace default datastore

    account_name str

    Storage account name.

    container_name str

    Storage account container name.

    description str

    The asset description text.

    endpoint str

    Azure cloud endpoint for the storage account.

    properties Mapping[str, str]

    The asset property dictionary.

    protocol str

    Protocol used to communicate with the storage account.

    service_data_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 Property Map | Property Map | Property Map | Property Map | Property Map

    [Required] Account credentials.

    isDefault Boolean

    Readonly property to indicate if datastore is the workspace default datastore

    accountName String

    Storage account name.

    containerName String

    Storage account container name.

    description String

    The asset description text.

    endpoint String

    Azure cloud endpoint for the storage account.

    properties Map<String>

    The asset property dictionary.

    protocol String

    Protocol used to communicate with the storage account.

    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 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 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 AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    StoreName string

    [Required] Azure Data Lake store name.

    Description string

    The asset description text.

    Properties map[string]string

    The asset property dictionary.

    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 AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    storeName String

    [Required] Azure Data Lake store name.

    description String

    The asset description text.

    properties Map<String,String>

    The asset property dictionary.

    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 AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    storeName string

    [Required] Azure Data Lake store name.

    description string

    The asset description text.

    properties {[key: string]: string}

    The asset property dictionary.

    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 AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    store_name str

    [Required] Azure Data Lake store name.

    description str

    The asset description text.

    properties Mapping[str, str]

    The asset property dictionary.

    service_data_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 Property Map | Property Map | Property Map | Property Map | Property Map

    [Required] Account credentials.

    storeName String

    [Required] Azure Data Lake store name.

    description String

    The asset description text.

    properties Map<String>

    The asset property dictionary.

    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 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 bool

    Readonly property to indicate if datastore is the workspace default datastore

    StoreName string

    [Required] Azure Data Lake store name.

    Description string

    The asset description text.

    Properties Dictionary<string, string>

    The asset property dictionary.

    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 AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    IsDefault bool

    Readonly property to indicate if datastore is the workspace default datastore

    StoreName string

    [Required] Azure Data Lake store name.

    Description string

    The asset description text.

    Properties map[string]string

    The asset property dictionary.

    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 AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    isDefault Boolean

    Readonly property to indicate if datastore is the workspace default datastore

    storeName String

    [Required] Azure Data Lake store name.

    description String

    The asset description text.

    properties Map<String,String>

    The asset property dictionary.

    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 AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    isDefault boolean

    Readonly property to indicate if datastore is the workspace default datastore

    storeName string

    [Required] Azure Data Lake store name.

    description string

    The asset description text.

    properties {[key: string]: string}

    The asset property dictionary.

    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 AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    is_default bool

    Readonly property to indicate if datastore is the workspace default datastore

    store_name str

    [Required] Azure Data Lake store name.

    description str

    The asset description text.

    properties Mapping[str, str]

    The asset property dictionary.

    service_data_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 Property Map | Property Map | Property Map | Property Map | Property Map

    [Required] Account credentials.

    isDefault Boolean

    Readonly property to indicate if datastore is the workspace default datastore

    storeName String

    [Required] Azure Data Lake store name.

    description String

    The asset description text.

    properties Map<String>

    The asset property dictionary.

    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 string

    [Required] Storage account name.

    Credentials 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 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 string

    [Required] Storage account name.

    Credentials AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    Filesystem string

    [Required] The name of the Data Lake Gen2 filesystem.

    Description string

    The asset description text.

    Endpoint string

    Azure cloud endpoint for the storage account.

    Properties map[string]string

    The asset property dictionary.

    Protocol string

    Protocol used to communicate with the storage account.

    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 String

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    filesystem String

    [Required] The name of the Data Lake Gen2 filesystem.

    description String

    The asset description text.

    endpoint String

    Azure cloud endpoint for the storage account.

    properties Map<String,String>

    The asset property dictionary.

    protocol String

    Protocol used to communicate with the storage account.

    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 string

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    filesystem string

    [Required] The name of the Data Lake Gen2 filesystem.

    description string

    The asset description text.

    endpoint string

    Azure cloud endpoint for the storage account.

    properties {[key: string]: string}

    The asset property dictionary.

    protocol string

    Protocol used to communicate with the storage account.

    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 str

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    filesystem str

    [Required] The name of the Data Lake Gen2 filesystem.

    description str

    The asset description text.

    endpoint str

    Azure cloud endpoint for the storage account.

    properties Mapping[str, str]

    The asset property dictionary.

    protocol str

    Protocol used to communicate with the storage account.

    service_data_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 String

    [Required] Storage account name.

    credentials Property Map | Property Map | Property Map | Property Map | Property Map

    [Required] Account credentials.

    filesystem String

    [Required] The name of the Data Lake Gen2 filesystem.

    description String

    The asset description text.

    endpoint String

    Azure cloud endpoint for the storage account.

    properties Map<String>

    The asset property dictionary.

    protocol String

    Protocol used to communicate with the storage account.

    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 string

    [Required] Storage account name.

    Credentials 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 string

    [Required] The name of the Data Lake Gen2 filesystem.

    IsDefault bool

    Readonly property to indicate if datastore is the workspace default datastore

    Description string

    The asset description text.

    Endpoint string

    Azure cloud endpoint for the storage account.

    Properties Dictionary<string, string>

    The asset property dictionary.

    Protocol string

    Protocol used to communicate with the storage account.

    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 string

    [Required] Storage account name.

    Credentials AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    Filesystem string

    [Required] The name of the Data Lake Gen2 filesystem.

    IsDefault bool

    Readonly property to indicate if datastore is the workspace default datastore

    Description string

    The asset description text.

    Endpoint string

    Azure cloud endpoint for the storage account.

    Properties map[string]string

    The asset property dictionary.

    Protocol string

    Protocol used to communicate with the storage account.

    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 String

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    filesystem String

    [Required] The name of the Data Lake Gen2 filesystem.

    isDefault Boolean

    Readonly property to indicate if datastore is the workspace default datastore

    description String

    The asset description text.

    endpoint String

    Azure cloud endpoint for the storage account.

    properties Map<String,String>

    The asset property dictionary.

    protocol String

    Protocol used to communicate with the storage account.

    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 string

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    filesystem string

    [Required] The name of the Data Lake Gen2 filesystem.

    isDefault boolean

    Readonly property to indicate if datastore is the workspace default datastore

    description string

    The asset description text.

    endpoint string

    Azure cloud endpoint for the storage account.

    properties {[key: string]: string}

    The asset property dictionary.

    protocol string

    Protocol used to communicate with the storage account.

    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 str

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    filesystem str

    [Required] The name of the Data Lake Gen2 filesystem.

    is_default bool

    Readonly property to indicate if datastore is the workspace default datastore

    description str

    The asset description text.

    endpoint str

    Azure cloud endpoint for the storage account.

    properties Mapping[str, str]

    The asset property dictionary.

    protocol str

    Protocol used to communicate with the storage account.

    service_data_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 String

    [Required] Storage account name.

    credentials Property Map | Property Map | Property Map | Property Map | Property Map

    [Required] Account credentials.

    filesystem String

    [Required] The name of the Data Lake Gen2 filesystem.

    isDefault Boolean

    Readonly property to indicate if datastore is the workspace default datastore

    description String

    The asset description text.

    endpoint String

    Azure cloud endpoint for the storage account.

    properties Map<String>

    The asset property dictionary.

    protocol String

    Protocol used to communicate with the storage account.

    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 string

    [Required] Storage account name.

    Credentials 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 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 string

    [Required] Storage account name.

    Credentials AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    FileShareName 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 String

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    fileShareName 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 string

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    fileShareName 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 str

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentials | CertificateDatastoreCredentials | NoneDatastoreCredentials | SasDatastoreCredentials | ServicePrincipalDatastoreCredentials

    [Required] Account credentials.

    file_share_name 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 String

    [Required] Storage account name.

    credentials Property Map | Property Map | Property Map | Property Map | Property Map

    [Required] Account credentials.

    fileShareName 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 string

    [Required] Storage account name.

    Credentials 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 string

    [Required] The name of the Azure file share that the datastore points to.

    IsDefault bool

    Readonly property to indicate if datastore is the workspace default datastore

    Description string

    The asset description text.

    Endpoint string

    Azure cloud endpoint for the storage account.

    Properties Dictionary<string, string>

    The asset property dictionary.

    Protocol string

    Protocol used to communicate with the storage account.

    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 string

    [Required] Storage account name.

    Credentials AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    FileShareName string

    [Required] The name of the Azure file share that the datastore points to.

    IsDefault bool

    Readonly property to indicate if datastore is the workspace default datastore

    Description string

    The asset description text.

    Endpoint string

    Azure cloud endpoint for the storage account.

    Properties map[string]string

    The asset property dictionary.

    Protocol string

    Protocol used to communicate with the storage account.

    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 String

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    fileShareName String

    [Required] The name of the Azure file share that the datastore points to.

    isDefault Boolean

    Readonly property to indicate if datastore is the workspace default datastore

    description String

    The asset description text.

    endpoint String

    Azure cloud endpoint for the storage account.

    properties Map<String,String>

    The asset property dictionary.

    protocol String

    Protocol used to communicate with the storage account.

    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 string

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    fileShareName string

    [Required] The name of the Azure file share that the datastore points to.

    isDefault boolean

    Readonly property to indicate if datastore is the workspace default datastore

    description string

    The asset description text.

    endpoint string

    Azure cloud endpoint for the storage account.

    properties {[key: string]: string}

    The asset property dictionary.

    protocol string

    Protocol used to communicate with the storage account.

    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 str

    [Required] Storage account name.

    credentials AccountKeyDatastoreCredentialsResponse | CertificateDatastoreCredentialsResponse | NoneDatastoreCredentialsResponse | SasDatastoreCredentialsResponse | ServicePrincipalDatastoreCredentialsResponse

    [Required] Account credentials.

    file_share_name str

    [Required] The name of the Azure file share that the datastore points to.

    is_default bool

    Readonly property to indicate if datastore is the workspace default datastore

    description str

    The asset description text.

    endpoint str

    Azure cloud endpoint for the storage account.

    properties Mapping[str, str]

    The asset property dictionary.

    protocol str

    Protocol used to communicate with the storage account.

    service_data_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 String

    [Required] Storage account name.

    credentials Property Map | Property Map | Property Map | Property Map | Property Map

    [Required] Account credentials.

    fileShareName String

    [Required] The name of the Azure file share that the datastore points to.

    isDefault Boolean

    Readonly property to indicate if datastore is the workspace default datastore

    description String

    The asset description text.

    endpoint String

    Azure cloud endpoint for the storage account.

    properties Map<String>

    The asset property dictionary.

    protocol String

    Protocol used to communicate with the storage account.

    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 string

    [Required] Service principal client ID.

    Secrets Pulumi.AzureNative.MachineLearningServices.Inputs.CertificateDatastoreSecrets

    [Required] Service principal secrets.

    TenantId string

    [Required] ID of the tenant to which the service principal belongs.

    Thumbprint string

    [Required] Thumbprint of the certificate used for authentication.

    AuthorityUrl string

    Authority URL used for authentication.

    ResourceUrl string

    Resource the service principal has access to.

    ClientId string

    [Required] Service principal client ID.

    Secrets CertificateDatastoreSecrets

    [Required] Service principal secrets.

    TenantId string

    [Required] ID of the tenant to which the service principal belongs.

    Thumbprint string

    [Required] Thumbprint of the certificate used for authentication.

    AuthorityUrl string

    Authority URL used for authentication.

    ResourceUrl string

    Resource the service principal has access to.

    clientId String

    [Required] Service principal client ID.

    secrets CertificateDatastoreSecrets

    [Required] Service principal secrets.

    tenantId String

    [Required] ID of the tenant to which the service principal belongs.

    thumbprint String

    [Required] Thumbprint of the certificate used for authentication.

    authorityUrl String

    Authority URL used for authentication.

    resourceUrl String

    Resource the service principal has access to.

    clientId string

    [Required] Service principal client ID.

    secrets CertificateDatastoreSecrets

    [Required] Service principal secrets.

    tenantId string

    [Required] ID of the tenant to which the service principal belongs.

    thumbprint string

    [Required] Thumbprint of the certificate used for authentication.

    authorityUrl string

    Authority URL used for authentication.

    resourceUrl string

    Resource the service principal has access to.

    client_id str

    [Required] Service principal client ID.

    secrets CertificateDatastoreSecrets

    [Required] Service principal secrets.

    tenant_id str

    [Required] ID of the tenant to which the service principal belongs.

    thumbprint str

    [Required] Thumbprint of the certificate used for authentication.

    authority_url str

    Authority URL used for authentication.

    resource_url str

    Resource the service principal has access to.

    clientId String

    [Required] Service principal client ID.

    secrets Property Map

    [Required] Service principal secrets.

    tenantId String

    [Required] ID of the tenant to which the service principal belongs.

    thumbprint String

    [Required] Thumbprint of the certificate used for authentication.

    authorityUrl String

    Authority URL used for authentication.

    resourceUrl String

    Resource the service principal has access to.

    CertificateDatastoreCredentialsResponse, CertificateDatastoreCredentialsResponseArgs

    ClientId string

    [Required] Service principal client ID.

    TenantId string

    [Required] ID of the tenant to which the service principal belongs.

    Thumbprint string

    [Required] Thumbprint of the certificate used for authentication.

    AuthorityUrl string

    Authority URL used for authentication.

    ResourceUrl string

    Resource the service principal has access to.

    ClientId string

    [Required] Service principal client ID.

    TenantId string

    [Required] ID of the tenant to which the service principal belongs.

    Thumbprint string

    [Required] Thumbprint of the certificate used for authentication.

    AuthorityUrl string

    Authority URL used for authentication.

    ResourceUrl string

    Resource the service principal has access to.

    clientId String

    [Required] Service principal client ID.

    tenantId String

    [Required] ID of the tenant to which the service principal belongs.

    thumbprint String

    [Required] Thumbprint of the certificate used for authentication.

    authorityUrl String

    Authority URL used for authentication.

    resourceUrl String

    Resource the service principal has access to.

    clientId string

    [Required] Service principal client ID.

    tenantId string

    [Required] ID of the tenant to which the service principal belongs.

    thumbprint string

    [Required] Thumbprint of the certificate used for authentication.

    authorityUrl string

    Authority URL used for authentication.

    resourceUrl string

    Resource the service principal has access to.

    client_id str

    [Required] Service principal client ID.

    tenant_id str

    [Required] ID of the tenant to which the service principal belongs.

    thumbprint str

    [Required] Thumbprint of the certificate used for authentication.

    authority_url str

    Authority URL used for authentication.

    resource_url str

    Resource the service principal has access to.

    clientId String

    [Required] Service principal client ID.

    tenantId String

    [Required] ID of the tenant to which the service principal belongs.

    thumbprint String

    [Required] Thumbprint of the certificate used for authentication.

    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 SasDatastoreSecrets

    [Required] Storage container secrets.

    secrets SasDatastoreSecrets

    [Required] Storage container secrets.

    secrets SasDatastoreSecrets

    [Required] Storage container secrets.

    secrets SasDatastoreSecrets

    [Required] Storage container secrets.

    secrets Property Map

    [Required] Storage container secrets.

    SasDatastoreCredentialsResponse, SasDatastoreCredentialsResponseArgs

    SasDatastoreSecrets, SasDatastoreSecretsArgs

    SasToken string

    Storage container SAS token.

    SasToken string

    Storage container SAS token.

    sasToken String

    Storage container SAS token.

    sasToken string

    Storage container SAS token.

    sas_token str

    Storage container SAS token.

    sasToken String

    Storage container SAS token.

    ServiceDataAccessAuthIdentity, ServiceDataAccessAuthIdentityArgs

    None
    None

    Do not use any identity for service data access.

    WorkspaceSystemAssignedIdentity
    WorkspaceSystemAssignedIdentity

    Use the system assigned managed identity of the Workspace to authenticate service data access.

    WorkspaceUserAssignedIdentity
    WorkspaceUserAssignedIdentity

    Use the user assigned managed identity of the Workspace to authenticate service data access.

    ServiceDataAccessAuthIdentityNone
    None

    Do not use any identity for service data access.

    ServiceDataAccessAuthIdentityWorkspaceSystemAssignedIdentity
    WorkspaceSystemAssignedIdentity

    Use the system assigned managed identity of the Workspace to authenticate service data access.

    ServiceDataAccessAuthIdentityWorkspaceUserAssignedIdentity
    WorkspaceUserAssignedIdentity

    Use the user assigned managed identity of the Workspace to authenticate service data access.

    None
    None

    Do not use any identity for service data access.

    WorkspaceSystemAssignedIdentity
    WorkspaceSystemAssignedIdentity

    Use the system assigned managed identity of the Workspace to authenticate service data access.

    WorkspaceUserAssignedIdentity
    WorkspaceUserAssignedIdentity

    Use the user assigned managed identity of the Workspace to authenticate service data access.

    None
    None

    Do not use any identity for service data access.

    WorkspaceSystemAssignedIdentity
    WorkspaceSystemAssignedIdentity

    Use the system assigned managed identity of the Workspace to authenticate service data access.

    WorkspaceUserAssignedIdentity
    WorkspaceUserAssignedIdentity

    Use the user assigned managed identity of the Workspace to authenticate service data access.

    NONE
    None

    Do not use any identity for service data access.

    WORKSPACE_SYSTEM_ASSIGNED_IDENTITY
    WorkspaceSystemAssignedIdentity

    Use the system assigned managed identity of the Workspace to authenticate service data access.

    WORKSPACE_USER_ASSIGNED_IDENTITY
    WorkspaceUserAssignedIdentity

    Use the user assigned managed identity of the Workspace to authenticate service data access.

    "None"
    None

    Do not use any identity for service data access.

    "WorkspaceSystemAssignedIdentity"
    WorkspaceSystemAssignedIdentity

    Use the system assigned managed identity of the Workspace to authenticate service data access.

    "WorkspaceUserAssignedIdentity"
    WorkspaceUserAssignedIdentity

    Use the user assigned managed identity of the Workspace to authenticate service data access.

    ServicePrincipalDatastoreCredentials, ServicePrincipalDatastoreCredentialsArgs

    ClientId string

    [Required] Service principal client ID.

    Secrets Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreSecrets

    [Required] Service principal secrets.

    TenantId 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 string

    [Required] Service principal client ID.

    Secrets ServicePrincipalDatastoreSecrets

    [Required] Service principal secrets.

    TenantId 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 String

    [Required] Service principal client ID.

    secrets ServicePrincipalDatastoreSecrets

    [Required] Service principal secrets.

    tenantId 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 string

    [Required] Service principal client ID.

    secrets ServicePrincipalDatastoreSecrets

    [Required] Service principal secrets.

    tenantId 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 str

    [Required] Service principal client ID.

    secrets ServicePrincipalDatastoreSecrets

    [Required] Service principal secrets.

    tenant_id 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 String

    [Required] Service principal client ID.

    secrets Property Map

    [Required] Service principal secrets.

    tenantId String

    [Required] ID of the tenant to which the service principal belongs.

    authorityUrl String

    Authority URL used for authentication.

    resourceUrl String

    Resource the service principal has access to.

    ServicePrincipalDatastoreCredentialsResponse, ServicePrincipalDatastoreCredentialsResponseArgs

    ClientId string

    [Required] Service principal client ID.

    TenantId string

    [Required] ID of the tenant to which the service principal belongs.

    AuthorityUrl string

    Authority URL used for authentication.

    ResourceUrl string

    Resource the service principal has access to.

    ClientId string

    [Required] Service principal client ID.

    TenantId string

    [Required] ID of the tenant to which the service principal belongs.

    AuthorityUrl string

    Authority URL used for authentication.

    ResourceUrl string

    Resource the service principal has access to.

    clientId String

    [Required] Service principal client ID.

    tenantId String

    [Required] ID of the tenant to which the service principal belongs.

    authorityUrl String

    Authority URL used for authentication.

    resourceUrl String

    Resource the service principal has access to.

    clientId string

    [Required] Service principal client ID.

    tenantId string

    [Required] ID of the tenant to which the service principal belongs.

    authorityUrl string

    Authority URL used for authentication.

    resourceUrl string

    Resource the service principal has access to.

    client_id str

    [Required] Service principal client ID.

    tenant_id str

    [Required] ID of the tenant to which the service principal belongs.

    authority_url str

    Authority URL used for authentication.

    resource_url str

    Resource the service principal has access to.

    clientId String

    [Required] Service principal client ID.

    tenantId String

    [Required] ID of the tenant to which the service principal belongs.

    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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi