azure-native.machinelearningservices.Datastore
Explore with Pulumi AI
Azure Resource Manager resource envelope. Azure REST API version: 2023-04-01.
Other available API versions: 2021-03-01-preview, 2022-02-01-preview, 2023-04-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-10-01, 2024-01-01-preview, 2024-04-01, 2024-04-01-preview.
Example Usage
CreateOrUpdate datastore (Azure Data Lake Gen1 w/ ServicePrincipal).
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var datastore = new AzureNative.MachineLearningServices.Datastore("datastore", new()
{
DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureDataLakeGen1DatastoreArgs
{
Credentials = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreCredentialsArgs
{
AuthorityUrl = "string",
ClientId = "00000000-1111-2222-3333-444444444444",
CredentialsType = "ServicePrincipal",
ResourceUrl = "string",
Secrets = new AzureNative.MachineLearningServices.Inputs.ServicePrincipalDatastoreSecretsArgs
{
ClientSecret = "string",
SecretsType = "ServicePrincipal",
},
TenantId = "00000000-1111-2222-3333-444444444444",
},
DatastoreType = "AzureDataLakeGen1",
Description = "string",
StoreName = "string",
Tags =
{
{ "string", "string" },
},
},
Name = "string",
ResourceGroupName = "test-rg",
SkipValidation = false,
WorkspaceName = "my-aml-workspace",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewDatastore(ctx, "datastore", &machinelearningservices.DatastoreArgs{
DatastoreProperties: &machinelearningservices.AzureDataLakeGen1DatastoreArgs{
Credentials: machinelearningservices.ServicePrincipalDatastoreCredentials{
AuthorityUrl: "string",
ClientId: "00000000-1111-2222-3333-444444444444",
CredentialsType: "ServicePrincipal",
ResourceUrl: "string",
Secrets: machinelearningservices.ServicePrincipalDatastoreSecrets{
ClientSecret: "string",
SecretsType: "ServicePrincipal",
},
TenantId: "00000000-1111-2222-3333-444444444444",
},
DatastoreType: pulumi.String("AzureDataLakeGen1"),
Description: pulumi.String("string"),
StoreName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Name: pulumi.String("string"),
ResourceGroupName: pulumi.String("test-rg"),
SkipValidation: pulumi.Bool(false),
WorkspaceName: pulumi.String("my-aml-workspace"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.Datastore;
import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var datastore = new Datastore("datastore", DatastoreArgs.builder()
.datastoreProperties(AzureDataLakeGen1DatastoreArgs.builder()
.credentials(ServicePrincipalDatastoreCredentialsArgs.builder()
.authorityUrl("string")
.clientId("00000000-1111-2222-3333-444444444444")
.credentialsType("ServicePrincipal")
.resourceUrl("string")
.secrets(ServicePrincipalDatastoreSecretsArgs.builder()
.clientSecret("string")
.secretsType("ServicePrincipal")
.build())
.tenantId("00000000-1111-2222-3333-444444444444")
.build())
.datastoreType("AzureDataLakeGen1")
.description("string")
.storeName("string")
.tags(Map.of("string", "string"))
.build())
.name("string")
.resourceGroupName("test-rg")
.skipValidation(false)
.workspaceName("my-aml-workspace")
.build());
}
}
import 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 (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewDatastore(ctx, "datastore", &machinelearningservices.DatastoreArgs{
DatastoreProperties: &machinelearningservices.AzureDataLakeGen2DatastoreArgs{
AccountName: pulumi.String("string"),
Credentials: machinelearningservices.ServicePrincipalDatastoreCredentials{
AuthorityUrl: "string",
ClientId: "00000000-1111-2222-3333-444444444444",
CredentialsType: "ServicePrincipal",
ResourceUrl: "string",
Secrets: machinelearningservices.ServicePrincipalDatastoreSecrets{
ClientSecret: "string",
SecretsType: "ServicePrincipal",
},
TenantId: "00000000-1111-2222-3333-444444444444",
},
DatastoreType: pulumi.String("AzureDataLakeGen2"),
Description: pulumi.String("string"),
Endpoint: pulumi.String("string"),
Filesystem: pulumi.String("string"),
Protocol: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Name: pulumi.String("string"),
ResourceGroupName: pulumi.String("test-rg"),
SkipValidation: pulumi.Bool(false),
WorkspaceName: pulumi.String("my-aml-workspace"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.Datastore;
import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var datastore = new Datastore("datastore", DatastoreArgs.builder()
.datastoreProperties(AzureDataLakeGen2DatastoreArgs.builder()
.accountName("string")
.credentials(ServicePrincipalDatastoreCredentialsArgs.builder()
.authorityUrl("string")
.clientId("00000000-1111-2222-3333-444444444444")
.credentialsType("ServicePrincipal")
.resourceUrl("string")
.secrets(ServicePrincipalDatastoreSecretsArgs.builder()
.clientSecret("string")
.secretsType("ServicePrincipal")
.build())
.tenantId("00000000-1111-2222-3333-444444444444")
.build())
.datastoreType("AzureDataLakeGen2")
.description("string")
.endpoint("string")
.filesystem("string")
.protocol("string")
.tags(Map.of("string", "string"))
.build())
.name("string")
.resourceGroupName("test-rg")
.skipValidation(false)
.workspaceName("my-aml-workspace")
.build());
}
}
import 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 (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewDatastore(ctx, "datastore", &machinelearningservices.DatastoreArgs{
DatastoreProperties: &machinelearningservices.AzureFileDatastoreArgs{
AccountName: pulumi.String("string"),
Credentials: machinelearningservices.AccountKeyDatastoreCredentials{
CredentialsType: "AccountKey",
Secrets: machinelearningservices.AccountKeyDatastoreSecrets{
Key: "string",
SecretsType: "AccountKey",
},
},
DatastoreType: pulumi.String("AzureFile"),
Description: pulumi.String("string"),
Endpoint: pulumi.String("string"),
FileShareName: pulumi.String("string"),
Protocol: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Name: pulumi.String("string"),
ResourceGroupName: pulumi.String("test-rg"),
SkipValidation: pulumi.Bool(false),
WorkspaceName: pulumi.String("my-aml-workspace"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.Datastore;
import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var datastore = new Datastore("datastore", DatastoreArgs.builder()
.datastoreProperties(AzureFileDatastoreArgs.builder()
.accountName("string")
.credentials(AccountKeyDatastoreCredentialsArgs.builder()
.credentialsType("AccountKey")
.secrets(AccountKeyDatastoreSecretsArgs.builder()
.key("string")
.secretsType("AccountKey")
.build())
.build())
.datastoreType("AzureFile")
.description("string")
.endpoint("string")
.fileShareName("string")
.protocol("string")
.tags(Map.of("string", "string"))
.build())
.name("string")
.resourceGroupName("test-rg")
.skipValidation(false)
.workspaceName("my-aml-workspace")
.build());
}
}
import 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 (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewDatastore(ctx, "datastore", &machinelearningservices.DatastoreArgs{
DatastoreProperties: &machinelearningservices.AzureBlobDatastoreArgs{
AccountName: pulumi.String("string"),
ContainerName: pulumi.String("string"),
Credentials: machinelearningservices.AccountKeyDatastoreCredentials{
CredentialsType: "AccountKey",
Secrets: machinelearningservices.AccountKeyDatastoreSecrets{
Key: "string",
SecretsType: "AccountKey",
},
},
DatastoreType: pulumi.String("AzureBlob"),
Description: pulumi.String("string"),
Endpoint: pulumi.String("core.windows.net"),
Protocol: pulumi.String("https"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Name: pulumi.String("string"),
ResourceGroupName: pulumi.String("test-rg"),
SkipValidation: pulumi.Bool(false),
WorkspaceName: pulumi.String("my-aml-workspace"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.Datastore;
import com.pulumi.azurenative.machinelearningservices.DatastoreArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var datastore = new Datastore("datastore", DatastoreArgs.builder()
.datastoreProperties(AzureBlobDatastoreArgs.builder()
.accountName("string")
.containerName("string")
.credentials(AccountKeyDatastoreCredentialsArgs.builder()
.credentialsType("AccountKey")
.secrets(AccountKeyDatastoreSecretsArgs.builder()
.key("string")
.secretsType("AccountKey")
.build())
.build())
.datastoreType("AzureBlob")
.description("string")
.endpoint("core.windows.net")
.protocol("https")
.tags(Map.of("string", "string"))
.build())
.name("string")
.resourceGroupName("test-rg")
.skipValidation(false)
.workspaceName("my-aml-workspace")
.build());
}
}
import 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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Datastore(name: string, args: DatastoreArgs, opts?: CustomResourceOptions);
@overload
def Datastore(resource_name: str,
args: DatastoreArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Datastore(resource_name: str,
opts: Optional[ResourceOptions] = None,
datastore_properties: Optional[Union[AzureBlobDatastoreArgs, AzureDataLakeGen1DatastoreArgs, AzureDataLakeGen2DatastoreArgs, AzureFileDatastoreArgs]] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
name: Optional[str] = None,
skip_validation: Optional[bool] = None)
func NewDatastore(ctx *Context, name string, args DatastoreArgs, opts ...ResourceOption) (*Datastore, error)
public Datastore(string name, DatastoreArgs args, CustomResourceOptions? opts = null)
public Datastore(String name, DatastoreArgs args)
public Datastore(String name, DatastoreArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:Datastore
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DatastoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DatastoreArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DatastoreArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatastoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DatastoreArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampledatastoreResourceResourceFromMachinelearningservices = new AzureNative.MachineLearningServices.Datastore("exampledatastoreResourceResourceFromMachinelearningservices", new()
{
DatastoreProperties = new AzureNative.MachineLearningServices.Inputs.AzureBlobDatastoreArgs
{
Credentials = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreCredentialsArgs
{
CredentialsType = "AccountKey",
Secrets = new AzureNative.MachineLearningServices.Inputs.AccountKeyDatastoreSecretsArgs
{
SecretsType = "AccountKey",
Key = "string",
},
},
DatastoreType = "AzureBlob",
AccountName = "string",
ContainerName = "string",
Description = "string",
Endpoint = "string",
Properties =
{
{ "string", "string" },
},
Protocol = "string",
ServiceDataAccessAuthIdentity = "string",
Tags =
{
{ "string", "string" },
},
},
ResourceGroupName = "string",
WorkspaceName = "string",
Name = "string",
SkipValidation = false,
});
example, err := machinelearningservices.NewDatastore(ctx, "exampledatastoreResourceResourceFromMachinelearningservices", &machinelearningservices.DatastoreArgs{
DatastoreProperties: &machinelearningservices.AzureBlobDatastoreArgs{
Credentials: machinelearningservices.AccountKeyDatastoreCredentials{
CredentialsType: "AccountKey",
Secrets: machinelearningservices.AccountKeyDatastoreSecrets{
SecretsType: "AccountKey",
Key: "string",
},
},
DatastoreType: pulumi.String("AzureBlob"),
AccountName: pulumi.String("string"),
ContainerName: pulumi.String("string"),
Description: pulumi.String("string"),
Endpoint: pulumi.String("string"),
Properties: pulumi.StringMap{
"string": pulumi.String("string"),
},
Protocol: pulumi.String("string"),
ServiceDataAccessAuthIdentity: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
ResourceGroupName: pulumi.String("string"),
WorkspaceName: pulumi.String("string"),
Name: pulumi.String("string"),
SkipValidation: pulumi.Bool(false),
})
var exampledatastoreResourceResourceFromMachinelearningservices = new Datastore("exampledatastoreResourceResourceFromMachinelearningservices", DatastoreArgs.builder()
.datastoreProperties(AzureBlobDatastoreArgs.builder()
.credentials(AccountKeyDatastoreCredentialsArgs.builder()
.credentialsType("AccountKey")
.secrets(AccountKeyDatastoreSecretsArgs.builder()
.secretsType("AccountKey")
.key("string")
.build())
.build())
.datastoreType("AzureBlob")
.accountName("string")
.containerName("string")
.description("string")
.endpoint("string")
.properties(Map.of("string", "string"))
.protocol("string")
.serviceDataAccessAuthIdentity("string")
.tags(Map.of("string", "string"))
.build())
.resourceGroupName("string")
.workspaceName("string")
.name("string")
.skipValidation(false)
.build());
exampledatastore_resource_resource_from_machinelearningservices = azure_native.machinelearningservices.Datastore("exampledatastoreResourceResourceFromMachinelearningservices",
datastore_properties=azure_native.machinelearningservices.AzureBlobDatastoreArgs(
credentials=azure_native.machinelearningservices.AccountKeyDatastoreCredentialsArgs(
credentials_type="AccountKey",
secrets=azure_native.machinelearningservices.AccountKeyDatastoreSecretsArgs(
secrets_type="AccountKey",
key="string",
),
),
datastore_type="AzureBlob",
account_name="string",
container_name="string",
description="string",
endpoint="string",
properties={
"string": "string",
},
protocol="string",
service_data_access_auth_identity="string",
tags={
"string": "string",
},
),
resource_group_name="string",
workspace_name="string",
name="string",
skip_validation=False)
const exampledatastoreResourceResourceFromMachinelearningservices = new azure_native.machinelearningservices.Datastore("exampledatastoreResourceResourceFromMachinelearningservices", {
datastoreProperties: {
credentials: {
credentialsType: "AccountKey",
secrets: {
secretsType: "AccountKey",
key: "string",
},
},
datastoreType: "AzureBlob",
accountName: "string",
containerName: "string",
description: "string",
endpoint: "string",
properties: {
string: "string",
},
protocol: "string",
serviceDataAccessAuthIdentity: "string",
tags: {
string: "string",
},
},
resourceGroupName: "string",
workspaceName: "string",
name: "string",
skipValidation: false,
});
type: azure-native:machinelearningservices:Datastore
properties:
datastoreProperties:
accountName: string
containerName: string
credentials:
credentialsType: AccountKey
secrets:
key: string
secretsType: AccountKey
datastoreType: AzureBlob
description: string
endpoint: string
properties:
string: string
protocol: string
serviceDataAccessAuthIdentity: string
tags:
string: string
name: string
resourceGroupName: string
skipValidation: false
workspaceName: string
Datastore Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Datastore resource accepts the following input properties:
- Datastore
Properties Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Azure Blob Datastore Azure | Pulumi.Native. Machine Learning Services. Inputs. Azure Data Lake Gen1Datastore Azure | Pulumi.Native. Machine Learning Services. Inputs. Azure Data Lake Gen2Datastore Azure Native. Machine Learning Services. Inputs. Azure File Datastore - [Required] Additional attributes of the entity.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Name string
- Datastore name.
- Skip
Validation bool - Flag to skip validation.
- Datastore
Properties AzureBlob | AzureDatastore Args Data | AzureLake Gen1Datastore Args Data | AzureLake Gen2Datastore Args File Datastore Args - [Required] Additional attributes of the entity.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Name string
- Datastore name.
- Skip
Validation bool - Flag to skip validation.
- datastore
Properties AzureBlob | AzureDatastore Data | AzureLake Gen1Datastore Data | AzureLake Gen2Datastore File Datastore - [Required] Additional attributes of the entity.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Name of Azure Machine Learning workspace.
- name String
- Datastore name.
- skip
Validation Boolean - Flag to skip validation.
- datastore
Properties AzureBlob | AzureDatastore Data | AzureLake Gen1Datastore Data | AzureLake Gen2Datastore File Datastore - [Required] Additional attributes of the entity.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- workspace
Name string - Name of Azure Machine Learning workspace.
- name string
- Datastore name.
- skip
Validation boolean - Flag to skip validation.
- datastore_
properties AzureBlob | AzureDatastore Args Data | AzureLake Gen1Datastore Args Data | AzureLake Gen2Datastore Args File Datastore Args - [Required] Additional attributes of the entity.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- workspace_
name str - Name of Azure Machine Learning workspace.
- name str
- Datastore name.
- skip_
validation bool - Flag to skip validation.
- datastore
Properties Property Map | Property Map | Property Map | Property Map - [Required] Additional attributes of the entity.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Name of Azure Machine Learning workspace.
- name String
- Datastore name.
- skip
Validation 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.
- System
Data Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AccountKeyDatastoreCredentials, AccountKeyDatastoreCredentialsArgs
- Secrets
Pulumi.
Azure Native. Machine Learning Services. Inputs. Account Key Datastore Secrets - [Required] Storage account secrets.
- Secrets
Account
Key Datastore Secrets - [Required] Storage account secrets.
- secrets
Account
Key Datastore Secrets - [Required] Storage account secrets.
- secrets
Account
Key Datastore Secrets - [Required] Storage account secrets.
- secrets
Account
Key Datastore Secrets - [Required] Storage account secrets.
- secrets Property Map
- [Required] Storage account secrets.
AccountKeyDatastoreCredentialsResponse, AccountKeyDatastoreCredentialsResponseArgs
AccountKeyDatastoreSecrets, AccountKeyDatastoreSecretsArgs
- Key string
- Storage account key.
- Key string
- Storage account key.
- key String
- Storage account key.
- key string
- Storage account key.
- key str
- Storage account key.
- key String
- Storage account key.
AzureBlobDatastore, AzureBlobDatastoreArgs
- Credentials
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials - [Required] Account credentials.
- Account
Name string - Storage account name.
- Container
Name 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.
- Service
Data string | Pulumi.Access Auth Identity Azure Native. Machine Learning Services. Service Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- Account
Name string - Storage account name.
- Container
Name 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.
- Service
Data string | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- account
Name String - Storage account name.
- container
Name 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.
- service
Data String | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- account
Name string - Storage account name.
- container
Name 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.
- service
Data string | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- account_
name str - Storage account name.
- container_
name str - Storage account container name.
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_
data_ str | Serviceaccess_ auth_ identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- account
Name String - Storage account name.
- container
Name 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.
- service
Data String | "None" | "WorkspaceAccess Auth Identity System Assigned Identity" | "Workspace User Assigned Identity" - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureBlobDatastoreResponse, AzureBlobDatastoreResponseArgs
- Credentials
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Response Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials Response - [Required] Account credentials.
- Is
Default bool - Readonly property to indicate if datastore is the workspace default datastore
- Account
Name string - Storage account name.
- Container
Name 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.
- Service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- Is
Default bool - Readonly property to indicate if datastore is the workspace default datastore
- Account
Name string - Storage account name.
- Container
Name 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.
- Service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- is
Default Boolean - Readonly property to indicate if datastore is the workspace default datastore
- account
Name String - Storage account name.
- container
Name 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.
- service
Data StringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- is
Default boolean - Readonly property to indicate if datastore is the workspace default datastore
- account
Name string - Storage account name.
- container
Name 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.
- service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- is_
default bool - Readonly property to indicate if datastore is the workspace default datastore
- account_
name str - Storage account name.
- container_
name str - Storage account container name.
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_
data_ straccess_ auth_ identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- is
Default Boolean - Readonly property to indicate if datastore is the workspace default datastore
- account
Name String - Storage account name.
- container
Name 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.
- service
Data StringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureDataLakeGen1Datastore, AzureDataLakeGen1DatastoreArgs
- Credentials
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials - [Required] Account credentials.
- Store
Name string - [Required] Azure Data Lake store name.
- Description string
- The asset description text.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Service
Data string | Pulumi.Access Auth Identity Azure Native. Machine Learning Services. Service Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- Store
Name string - [Required] Azure Data Lake store name.
- Description string
- The asset description text.
- Properties map[string]string
- The asset property dictionary.
- Service
Data string | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- store
Name String - [Required] Azure Data Lake store name.
- description String
- The asset description text.
- properties Map<String,String>
- The asset property dictionary.
- service
Data String | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- store
Name string - [Required] Azure Data Lake store name.
- description string
- The asset description text.
- properties {[key: string]: string}
- The asset property dictionary.
- service
Data string | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- store_
name str - [Required] Azure Data Lake store name.
- description str
- The asset description text.
- properties Mapping[str, str]
- The asset property dictionary.
- service_
data_ str | Serviceaccess_ auth_ identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- store
Name String - [Required] Azure Data Lake store name.
- description String
- The asset description text.
- properties Map<String>
- The asset property dictionary.
- service
Data String | "None" | "WorkspaceAccess Auth Identity System Assigned Identity" | "Workspace User Assigned Identity" - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureDataLakeGen1DatastoreResponse, AzureDataLakeGen1DatastoreResponseArgs
- Credentials
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Response Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials Response - [Required] Account credentials.
- Is
Default bool - Readonly property to indicate if datastore is the workspace default datastore
- Store
Name string - [Required] Azure Data Lake store name.
- Description string
- The asset description text.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- Is
Default bool - Readonly property to indicate if datastore is the workspace default datastore
- Store
Name string - [Required] Azure Data Lake store name.
- Description string
- The asset description text.
- Properties map[string]string
- The asset property dictionary.
- Service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- is
Default Boolean - Readonly property to indicate if datastore is the workspace default datastore
- store
Name String - [Required] Azure Data Lake store name.
- description String
- The asset description text.
- properties Map<String,String>
- The asset property dictionary.
- service
Data StringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- is
Default boolean - Readonly property to indicate if datastore is the workspace default datastore
- store
Name string - [Required] Azure Data Lake store name.
- description string
- The asset description text.
- properties {[key: string]: string}
- The asset property dictionary.
- service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- is_
default bool - Readonly property to indicate if datastore is the workspace default datastore
- store_
name str - [Required] Azure Data Lake store name.
- description str
- The asset description text.
- properties Mapping[str, str]
- The asset property dictionary.
- service_
data_ straccess_ auth_ identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- is
Default Boolean - Readonly property to indicate if datastore is the workspace default datastore
- store
Name String - [Required] Azure Data Lake store name.
- description String
- The asset description text.
- properties Map<String>
- The asset property dictionary.
- service
Data StringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureDataLakeGen2Datastore, AzureDataLakeGen2DatastoreArgs
- Account
Name string - [Required] Storage account name.
- Credentials
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials - [Required] Account credentials.
- Filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- Service
Data string | Pulumi.Access Auth Identity Azure Native. Machine Learning Services. Service Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Account
Name string - [Required] Storage account name.
- Credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- Filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties map[string]string
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- Service
Data string | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name String - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- filesystem String
- [Required] The name of the Data Lake Gen2 filesystem.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String,String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- service
Data String | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name string - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- description string
- The asset description text.
- endpoint string
- Azure cloud endpoint for the storage account.
- properties {[key: string]: string}
- The asset property dictionary.
- protocol string
- Protocol used to communicate with the storage account.
- service
Data string | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- account_
name str - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- filesystem str
- [Required] The name of the Data Lake Gen2 filesystem.
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_
data_ str | Serviceaccess_ auth_ identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name 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.
- service
Data String | "None" | "WorkspaceAccess Auth Identity System Assigned Identity" | "Workspace User Assigned Identity" - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureDataLakeGen2DatastoreResponse, AzureDataLakeGen2DatastoreResponseArgs
- Account
Name string - [Required] Storage account name.
- Credentials
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Response Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials Response - [Required] Account credentials.
- Filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- Is
Default 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.
- Service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Account
Name string - [Required] Storage account name.
- Credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- Filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- Is
Default 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.
- Service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name String - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- filesystem String
- [Required] The name of the Data Lake Gen2 filesystem.
- is
Default 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.
- service
Data StringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name string - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- filesystem string
- [Required] The name of the Data Lake Gen2 filesystem.
- is
Default 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.
- service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- account_
name str - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- filesystem str
- [Required] The name of the Data Lake Gen2 filesystem.
- is_
default bool - Readonly property to indicate if datastore is the workspace default datastore
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_
data_ straccess_ auth_ identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name 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.
- is
Default 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.
- service
Data StringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureFileDatastore, AzureFileDatastoreArgs
- Account
Name string - [Required] Storage account name.
- Credentials
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials - [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties Dictionary<string, string>
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- Service
Data string | Pulumi.Access Auth Identity Azure Native. Machine Learning Services. Service Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Account
Name string - [Required] Storage account name.
- Credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- Description string
- The asset description text.
- Endpoint string
- Azure cloud endpoint for the storage account.
- Properties map[string]string
- The asset property dictionary.
- Protocol string
- Protocol used to communicate with the storage account.
- Service
Data string | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name String - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- String
- [Required] The name of the Azure file share that the datastore points to.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String,String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- service
Data String | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name string - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- description string
- The asset description text.
- endpoint string
- Azure cloud endpoint for the storage account.
- properties {[key: string]: string}
- The asset property dictionary.
- protocol string
- Protocol used to communicate with the storage account.
- service
Data string | ServiceAccess Auth Identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- account_
name str - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Datastore | NoneCredentials Datastore | SasCredentials Datastore | ServiceCredentials Principal Datastore Credentials - [Required] Account credentials.
- str
- [Required] The name of the Azure file share that the datastore points to.
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_
data_ str | Serviceaccess_ auth_ identity Data Access Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name String - [Required] Storage account name.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- String
- [Required] The name of the Azure file share that the datastore points to.
- description String
- The asset description text.
- endpoint String
- Azure cloud endpoint for the storage account.
- properties Map<String>
- The asset property dictionary.
- protocol String
- Protocol used to communicate with the storage account.
- service
Data String | "None" | "WorkspaceAccess Auth Identity System Assigned Identity" | "Workspace User Assigned Identity" - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
AzureFileDatastoreResponse, AzureFileDatastoreResponseArgs
- Account
Name string - [Required] Storage account name.
- Credentials
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Certificate Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. None Datastore Credentials Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Sas Datastore Credentials Response Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Credentials Response - [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- Is
Default 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.
- Service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Dictionary<string, string>
- Tag dictionary. Tags can be added, removed, and updated.
- Account
Name string - [Required] Storage account name.
- Credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- Is
Default 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.
- Service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- map[string]string
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name String - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- String
- [Required] The name of the Azure file share that the datastore points to.
- is
Default 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.
- service
Data StringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String,String>
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name string - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- string
- [Required] The name of the Azure file share that the datastore points to.
- is
Default 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.
- service
Data stringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- {[key: string]: string}
- Tag dictionary. Tags can be added, removed, and updated.
- account_
name str - [Required] Storage account name.
- credentials
Account
Key | CertificateDatastore Credentials Response Datastore | NoneCredentials Response Datastore | SasCredentials Response Datastore | ServiceCredentials Response Principal Datastore Credentials Response - [Required] Account credentials.
- str
- [Required] The name of the Azure file share that the datastore points to.
- is_
default bool - Readonly property to indicate if datastore is the workspace default datastore
- description str
- The asset description text.
- endpoint str
- Azure cloud endpoint for the storage account.
- properties Mapping[str, str]
- The asset property dictionary.
- protocol str
- Protocol used to communicate with the storage account.
- service_
data_ straccess_ auth_ identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Mapping[str, str]
- Tag dictionary. Tags can be added, removed, and updated.
- account
Name String - [Required] Storage account name.
- credentials Property Map | Property Map | Property Map | Property Map | Property Map
- [Required] Account credentials.
- String
- [Required] The name of the Azure file share that the datastore points to.
- is
Default 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.
- service
Data StringAccess Auth Identity - Indicates which identity to use to authenticate service data access to customer's storage.
- Map<String>
- Tag dictionary. Tags can be added, removed, and updated.
CertificateDatastoreCredentials, CertificateDatastoreCredentialsArgs
- Client
Id string - [Required] Service principal client ID.
- Secrets
Pulumi.
Azure Native. Machine Learning Services. Inputs. Certificate Datastore Secrets - [Required] Service principal secrets.
- Tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- Thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- Resource
Url string - Resource the service principal has access to.
- Client
Id string - [Required] Service principal client ID.
- Secrets
Certificate
Datastore Secrets - [Required] Service principal secrets.
- Tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- Thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- Resource
Url string - Resource the service principal has access to.
- client
Id String - [Required] Service principal client ID.
- secrets
Certificate
Datastore Secrets - [Required] Service principal secrets.
- tenant
Id String - [Required] ID of the tenant to which the service principal belongs.
- thumbprint String
- [Required] Thumbprint of the certificate used for authentication.
- String
- Authority URL used for authentication.
- resource
Url String - Resource the service principal has access to.
- client
Id string - [Required] Service principal client ID.
- secrets
Certificate
Datastore Secrets - [Required] Service principal secrets.
- tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- resource
Url string - Resource the service principal has access to.
- client_
id str - [Required] Service principal client ID.
- secrets
Certificate
Datastore Secrets - [Required] Service principal secrets.
- tenant_
id str - [Required] ID of the tenant to which the service principal belongs.
- thumbprint str
- [Required] Thumbprint of the certificate used for authentication.
- str
- Authority URL used for authentication.
- resource_
url str - Resource the service principal has access to.
- client
Id String - [Required] Service principal client ID.
- secrets Property Map
- [Required] Service principal secrets.
- tenant
Id String - [Required] ID of the tenant to which the service principal belongs.
- thumbprint String
- [Required] Thumbprint of the certificate used for authentication.
- String
- Authority URL used for authentication.
- resource
Url String - Resource the service principal has access to.
CertificateDatastoreCredentialsResponse, CertificateDatastoreCredentialsResponseArgs
- Client
Id string - [Required] Service principal client ID.
- Tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- Thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- Resource
Url string - Resource the service principal has access to.
- Client
Id string - [Required] Service principal client ID.
- Tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- Thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- Resource
Url string - Resource the service principal has access to.
- client
Id String - [Required] Service principal client ID.
- tenant
Id String - [Required] ID of the tenant to which the service principal belongs.
- thumbprint String
- [Required] Thumbprint of the certificate used for authentication.
- String
- Authority URL used for authentication.
- resource
Url String - Resource the service principal has access to.
- client
Id string - [Required] Service principal client ID.
- tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- thumbprint string
- [Required] Thumbprint of the certificate used for authentication.
- string
- Authority URL used for authentication.
- resource
Url string - Resource the service principal has access to.
- client_
id str - [Required] Service principal client ID.
- tenant_
id str - [Required] ID of the tenant to which the service principal belongs.
- thumbprint str
- [Required] Thumbprint of the certificate used for authentication.
- str
- Authority URL used for authentication.
- resource_
url str - Resource the service principal has access to.
- client
Id String - [Required] Service principal client ID.
- tenant
Id String - [Required] ID of the tenant to which the service principal belongs.
- thumbprint String
- [Required] Thumbprint of the certificate used for authentication.
- String
- Authority URL used for authentication.
- resource
Url String - Resource the service principal has access to.
CertificateDatastoreSecrets, CertificateDatastoreSecretsArgs
- Certificate string
- Service principal certificate.
- Certificate string
- Service principal certificate.
- certificate String
- Service principal certificate.
- certificate string
- Service principal certificate.
- certificate str
- Service principal certificate.
- certificate String
- Service principal certificate.
NoneDatastoreCredentials, NoneDatastoreCredentialsArgs
NoneDatastoreCredentialsResponse, NoneDatastoreCredentialsResponseArgs
SasDatastoreCredentials, SasDatastoreCredentialsArgs
- Secrets
Pulumi.
Azure Native. Machine Learning Services. Inputs. Sas Datastore Secrets - [Required] Storage container secrets.
- Secrets
Sas
Datastore Secrets - [Required] Storage container secrets.
- secrets
Sas
Datastore Secrets - [Required] Storage container secrets.
- secrets
Sas
Datastore Secrets - [Required] Storage container secrets.
- secrets
Sas
Datastore Secrets - [Required] Storage container secrets.
- secrets Property Map
- [Required] Storage container secrets.
SasDatastoreCredentialsResponse, SasDatastoreCredentialsResponseArgs
SasDatastoreSecrets, SasDatastoreSecretsArgs
- Sas
Token string - Storage container SAS token.
- Sas
Token string - Storage container SAS token.
- sas
Token String - Storage container SAS token.
- sas
Token string - Storage container SAS token.
- sas_
token str - Storage container SAS token.
- sas
Token String - Storage container SAS token.
ServiceDataAccessAuthIdentity, ServiceDataAccessAuthIdentityArgs
- None
- NoneDo not use any identity for service data access.
- Workspace
System Assigned Identity - WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- Workspace
User Assigned Identity - WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- Service
Data Access Auth Identity None - NoneDo not use any identity for service data access.
- Service
Data Access Auth Identity Workspace System Assigned Identity - WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- Service
Data Access Auth Identity Workspace User Assigned Identity - WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- None
- NoneDo not use any identity for service data access.
- Workspace
System Assigned Identity - WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- Workspace
User Assigned Identity - WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- None
- NoneDo not use any identity for service data access.
- Workspace
System Assigned Identity - WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- Workspace
User Assigned Identity - WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- NONE
- NoneDo not use any identity for service data access.
- WORKSPACE_SYSTEM_ASSIGNED_IDENTITY
- WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- WORKSPACE_USER_ASSIGNED_IDENTITY
- WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
- "None"
- NoneDo not use any identity for service data access.
- "Workspace
System Assigned Identity" - WorkspaceSystemAssignedIdentityUse the system assigned managed identity of the Workspace to authenticate service data access.
- "Workspace
User Assigned Identity" - WorkspaceUserAssignedIdentityUse the user assigned managed identity of the Workspace to authenticate service data access.
ServicePrincipalDatastoreCredentials, ServicePrincipalDatastoreCredentialsArgs
- Client
Id string - [Required] Service principal client ID.
- Secrets
Pulumi.
Azure Native. Machine Learning Services. Inputs. Service Principal Datastore Secrets - [Required] Service principal secrets.
- Tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- Resource
Url string - Resource the service principal has access to.
- Client
Id string - [Required] Service principal client ID.
- Secrets
Service
Principal Datastore Secrets - [Required] Service principal secrets.
- Tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- Resource
Url string - Resource the service principal has access to.
- client
Id String - [Required] Service principal client ID.
- secrets
Service
Principal Datastore Secrets - [Required] Service principal secrets.
- tenant
Id String - [Required] ID of the tenant to which the service principal belongs.
- String
- Authority URL used for authentication.
- resource
Url String - Resource the service principal has access to.
- client
Id string - [Required] Service principal client ID.
- secrets
Service
Principal Datastore Secrets - [Required] Service principal secrets.
- tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- resource
Url string - Resource the service principal has access to.
- client_
id str - [Required] Service principal client ID.
- secrets
Service
Principal Datastore Secrets - [Required] Service principal secrets.
- tenant_
id str - [Required] ID of the tenant to which the service principal belongs.
- str
- Authority URL used for authentication.
- resource_
url str - Resource the service principal has access to.
- client
Id String - [Required] Service principal client ID.
- secrets Property Map
- [Required] Service principal secrets.
- tenant
Id String - [Required] ID of the tenant to which the service principal belongs.
- String
- Authority URL used for authentication.
- resource
Url String - Resource the service principal has access to.
ServicePrincipalDatastoreCredentialsResponse, ServicePrincipalDatastoreCredentialsResponseArgs
- Client
Id string - [Required] Service principal client ID.
- Tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- Resource
Url string - Resource the service principal has access to.
- Client
Id string - [Required] Service principal client ID.
- Tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- Resource
Url string - Resource the service principal has access to.
- client
Id String - [Required] Service principal client ID.
- tenant
Id String - [Required] ID of the tenant to which the service principal belongs.
- String
- Authority URL used for authentication.
- resource
Url String - Resource the service principal has access to.
- client
Id string - [Required] Service principal client ID.
- tenant
Id string - [Required] ID of the tenant to which the service principal belongs.
- string
- Authority URL used for authentication.
- resource
Url string - Resource the service principal has access to.
- client_
id str - [Required] Service principal client ID.
- tenant_
id str - [Required] ID of the tenant to which the service principal belongs.
- str
- Authority URL used for authentication.
- resource_
url str - Resource the service principal has access to.
- client
Id String - [Required] Service principal client ID.
- tenant
Id String - [Required] ID of the tenant to which the service principal belongs.
- String
- Authority URL used for authentication.
- resource
Url String - Resource the service principal has access to.
ServicePrincipalDatastoreSecrets, ServicePrincipalDatastoreSecretsArgs
- Client
Secret string - Service principal secret.
- Client
Secret string - Service principal secret.
- client
Secret String - Service principal secret.
- client
Secret string - Service principal secret.
- client_
secret str - Service principal secret.
- client
Secret String - Service principal secret.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:machinelearningservices:Datastore string /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0