azure-native.machinelearningservices.MachineLearningCompute
Explore with Pulumi AI
Machine Learning compute object wrapped into ARM resource envelope. API Version: 2021-01-01.
Example Usage
Create AKS Compute
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machineLearningCompute = new AzureNative.MachineLearningServices.MachineLearningCompute("machineLearningCompute", new()
{
ComputeName = "compute123",
Location = "eastus",
Properties = new AzureNative.MachineLearningServices.Inputs.AKSArgs
{
ComputeType = "AKS",
},
ResourceGroupName = "testrg123",
WorkspaceName = "workspaces123",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewMachineLearningCompute(ctx, "machineLearningCompute", &machinelearningservices.MachineLearningComputeArgs{
ComputeName: pulumi.String("compute123"),
Location: pulumi.String("eastus"),
Properties: machinelearningservices.AKS{
ComputeType: "AKS",
},
ResourceGroupName: pulumi.String("testrg123"),
WorkspaceName: pulumi.String("workspaces123"),
})
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.MachineLearningCompute;
import com.pulumi.azurenative.machinelearningservices.MachineLearningComputeArgs;
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 machineLearningCompute = new MachineLearningCompute("machineLearningCompute", MachineLearningComputeArgs.builder()
.computeName("compute123")
.location("eastus")
.properties(Map.of("computeType", "AKS"))
.resourceGroupName("testrg123")
.workspaceName("workspaces123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
machine_learning_compute = azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute",
compute_name="compute123",
location="eastus",
properties=azure_native.machinelearningservices.AKSArgs(
compute_type="AKS",
),
resource_group_name="testrg123",
workspace_name="workspaces123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machineLearningCompute = new azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute", {
computeName: "compute123",
location: "eastus",
properties: {
computeType: "AKS",
},
resourceGroupName: "testrg123",
workspaceName: "workspaces123",
});
resources:
machineLearningCompute:
type: azure-native:machinelearningservices:MachineLearningCompute
properties:
computeName: compute123
location: eastus
properties:
computeType: AKS
resourceGroupName: testrg123
workspaceName: workspaces123
Create a AML Compute
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machineLearningCompute = new AzureNative.MachineLearningServices.MachineLearningCompute("machineLearningCompute", new()
{
ComputeName = "compute123",
Location = "eastus",
Properties = new AzureNative.MachineLearningServices.Inputs.AmlComputeArgs
{
ComputeType = "AmlCompute",
Properties = new AzureNative.MachineLearningServices.Inputs.AmlComputePropertiesArgs
{
EnableNodePublicIp = true,
IsolatedNetwork = false,
OsType = "Windows",
RemoteLoginPortPublicAccess = "NotSpecified",
ScaleSettings = new AzureNative.MachineLearningServices.Inputs.ScaleSettingsArgs
{
MaxNodeCount = 1,
MinNodeCount = 0,
NodeIdleTimeBeforeScaleDown = "PT5M",
},
VirtualMachineImage = new AzureNative.MachineLearningServices.Inputs.VirtualMachineImageArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/myImageGallery/images/myImageDefinition/versions/0.0.1",
},
VmPriority = "Dedicated",
VmSize = "STANDARD_NC6",
},
},
ResourceGroupName = "testrg123",
WorkspaceName = "workspaces123",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewMachineLearningCompute(ctx, "machineLearningCompute", &machinelearningservices.MachineLearningComputeArgs{
ComputeName: pulumi.String("compute123"),
Location: pulumi.String("eastus"),
Properties: machinelearningservices.AmlCompute{
ComputeType: "AmlCompute",
Properties: machinelearningservices.AmlComputeProperties{
EnableNodePublicIp: true,
IsolatedNetwork: false,
OsType: "Windows",
RemoteLoginPortPublicAccess: "NotSpecified",
ScaleSettings: machinelearningservices.ScaleSettings{
MaxNodeCount: 1,
MinNodeCount: 0,
NodeIdleTimeBeforeScaleDown: "PT5M",
},
VirtualMachineImage: machinelearningservices.VirtualMachineImage{
Id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/myImageGallery/images/myImageDefinition/versions/0.0.1",
},
VmPriority: "Dedicated",
VmSize: "STANDARD_NC6",
},
},
ResourceGroupName: pulumi.String("testrg123"),
WorkspaceName: pulumi.String("workspaces123"),
})
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.MachineLearningCompute;
import com.pulumi.azurenative.machinelearningservices.MachineLearningComputeArgs;
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 machineLearningCompute = new MachineLearningCompute("machineLearningCompute", MachineLearningComputeArgs.builder()
.computeName("compute123")
.location("eastus")
.properties(Map.ofEntries(
Map.entry("computeType", "AmlCompute"),
Map.entry("properties", Map.ofEntries(
Map.entry("enableNodePublicIp", true),
Map.entry("isolatedNetwork", false),
Map.entry("osType", "Windows"),
Map.entry("remoteLoginPortPublicAccess", "NotSpecified"),
Map.entry("scaleSettings", Map.ofEntries(
Map.entry("maxNodeCount", 1),
Map.entry("minNodeCount", 0),
Map.entry("nodeIdleTimeBeforeScaleDown", "PT5M")
)),
Map.entry("virtualMachineImage", Map.of("id", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/myImageGallery/images/myImageDefinition/versions/0.0.1")),
Map.entry("vmPriority", "Dedicated"),
Map.entry("vmSize", "STANDARD_NC6")
))
))
.resourceGroupName("testrg123")
.workspaceName("workspaces123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
machine_learning_compute = azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute",
compute_name="compute123",
location="eastus",
properties=azure_native.machinelearningservices.AmlComputeArgs(
compute_type="AmlCompute",
properties=azure_native.machinelearningservices.AmlComputePropertiesArgs(
enable_node_public_ip=True,
isolated_network=False,
os_type="Windows",
remote_login_port_public_access="NotSpecified",
scale_settings=azure_native.machinelearningservices.ScaleSettingsArgs(
max_node_count=1,
min_node_count=0,
node_idle_time_before_scale_down="PT5M",
),
virtual_machine_image=azure_native.machinelearningservices.VirtualMachineImageArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/myImageGallery/images/myImageDefinition/versions/0.0.1",
),
vm_priority="Dedicated",
vm_size="STANDARD_NC6",
),
),
resource_group_name="testrg123",
workspace_name="workspaces123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machineLearningCompute = new azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute", {
computeName: "compute123",
location: "eastus",
properties: {
computeType: "AmlCompute",
properties: {
enableNodePublicIp: true,
isolatedNetwork: false,
osType: "Windows",
remoteLoginPortPublicAccess: "NotSpecified",
scaleSettings: {
maxNodeCount: 1,
minNodeCount: 0,
nodeIdleTimeBeforeScaleDown: "PT5M",
},
virtualMachineImage: {
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/myImageGallery/images/myImageDefinition/versions/0.0.1",
},
vmPriority: "Dedicated",
vmSize: "STANDARD_NC6",
},
},
resourceGroupName: "testrg123",
workspaceName: "workspaces123",
});
resources:
machineLearningCompute:
type: azure-native:machinelearningservices:MachineLearningCompute
properties:
computeName: compute123
location: eastus
properties:
computeType: AmlCompute
properties:
enableNodePublicIp: true
isolatedNetwork: false
osType: Windows
remoteLoginPortPublicAccess: NotSpecified
scaleSettings:
maxNodeCount: 1
minNodeCount: 0
nodeIdleTimeBeforeScaleDown: PT5M
virtualMachineImage:
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/myImageGallery/images/myImageDefinition/versions/0.0.1
vmPriority: Dedicated
vmSize: STANDARD_NC6
resourceGroupName: testrg123
workspaceName: workspaces123
Create a DataFactory Compute
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machineLearningCompute = new AzureNative.MachineLearningServices.MachineLearningCompute("machineLearningCompute", new()
{
ComputeName = "compute123",
Location = "eastus",
Properties = new AzureNative.MachineLearningServices.Inputs.DataFactoryArgs
{
ComputeType = "DataFactory",
},
ResourceGroupName = "testrg123",
WorkspaceName = "workspaces123",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewMachineLearningCompute(ctx, "machineLearningCompute", &machinelearningservices.MachineLearningComputeArgs{
ComputeName: pulumi.String("compute123"),
Location: pulumi.String("eastus"),
Properties: machinelearningservices.DataFactory{
ComputeType: "DataFactory",
},
ResourceGroupName: pulumi.String("testrg123"),
WorkspaceName: pulumi.String("workspaces123"),
})
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.MachineLearningCompute;
import com.pulumi.azurenative.machinelearningservices.MachineLearningComputeArgs;
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 machineLearningCompute = new MachineLearningCompute("machineLearningCompute", MachineLearningComputeArgs.builder()
.computeName("compute123")
.location("eastus")
.properties(Map.of("computeType", "DataFactory"))
.resourceGroupName("testrg123")
.workspaceName("workspaces123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
machine_learning_compute = azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute",
compute_name="compute123",
location="eastus",
properties=azure_native.machinelearningservices.DataFactoryArgs(
compute_type="DataFactory",
),
resource_group_name="testrg123",
workspace_name="workspaces123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machineLearningCompute = new azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute", {
computeName: "compute123",
location: "eastus",
properties: {
computeType: "DataFactory",
},
resourceGroupName: "testrg123",
workspaceName: "workspaces123",
});
resources:
machineLearningCompute:
type: azure-native:machinelearningservices:MachineLearningCompute
properties:
computeName: compute123
location: eastus
properties:
computeType: DataFactory
resourceGroupName: testrg123
workspaceName: workspaces123
Create an ComputeInstance Compute
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machineLearningCompute = new AzureNative.MachineLearningServices.MachineLearningCompute("machineLearningCompute", new()
{
ComputeName = "compute123",
Location = "eastus",
Properties = new AzureNative.MachineLearningServices.Inputs.ComputeInstanceArgs
{
ComputeType = "ComputeInstance",
Properties = new AzureNative.MachineLearningServices.Inputs.ComputeInstancePropertiesArgs
{
ApplicationSharingPolicy = "Personal",
ComputeInstanceAuthorizationType = "personal",
PersonalComputeInstanceSettings = new AzureNative.MachineLearningServices.Inputs.PersonalComputeInstanceSettingsArgs
{
AssignedUser = new AzureNative.MachineLearningServices.Inputs.AssignedUserArgs
{
ObjectId = "00000000-0000-0000-0000-000000000000",
TenantId = "00000000-0000-0000-0000-000000000000",
},
},
SshSettings = new AzureNative.MachineLearningServices.Inputs.ComputeInstanceSshSettingsArgs
{
SshPublicAccess = "Disabled",
},
Subnet = "test-subnet-resource-id",
VmSize = "STANDARD_NC6",
},
},
ResourceGroupName = "testrg123",
WorkspaceName = "workspaces123",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewMachineLearningCompute(ctx, "machineLearningCompute", &machinelearningservices.MachineLearningComputeArgs{
ComputeName: pulumi.String("compute123"),
Location: pulumi.String("eastus"),
Properties: machinelearningservices.ComputeInstance{
ComputeType: "ComputeInstance",
Properties: machinelearningservices.ComputeInstanceProperties{
ApplicationSharingPolicy: "Personal",
ComputeInstanceAuthorizationType: "personal",
PersonalComputeInstanceSettings: machinelearningservices.PersonalComputeInstanceSettings{
AssignedUser: machinelearningservices.AssignedUser{
ObjectId: "00000000-0000-0000-0000-000000000000",
TenantId: "00000000-0000-0000-0000-000000000000",
},
},
SshSettings: machinelearningservices.ComputeInstanceSshSettings{
SshPublicAccess: "Disabled",
},
Subnet: "test-subnet-resource-id",
VmSize: "STANDARD_NC6",
},
},
ResourceGroupName: pulumi.String("testrg123"),
WorkspaceName: pulumi.String("workspaces123"),
})
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.MachineLearningCompute;
import com.pulumi.azurenative.machinelearningservices.MachineLearningComputeArgs;
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 machineLearningCompute = new MachineLearningCompute("machineLearningCompute", MachineLearningComputeArgs.builder()
.computeName("compute123")
.location("eastus")
.properties(Map.ofEntries(
Map.entry("computeType", "ComputeInstance"),
Map.entry("properties", Map.ofEntries(
Map.entry("applicationSharingPolicy", "Personal"),
Map.entry("computeInstanceAuthorizationType", "personal"),
Map.entry("personalComputeInstanceSettings", Map.of("assignedUser", Map.ofEntries(
Map.entry("objectId", "00000000-0000-0000-0000-000000000000"),
Map.entry("tenantId", "00000000-0000-0000-0000-000000000000")
))),
Map.entry("sshSettings", Map.of("sshPublicAccess", "Disabled")),
Map.entry("subnet", "test-subnet-resource-id"),
Map.entry("vmSize", "STANDARD_NC6")
))
))
.resourceGroupName("testrg123")
.workspaceName("workspaces123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
machine_learning_compute = azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute",
compute_name="compute123",
location="eastus",
properties=azure_native.machinelearningservices.ComputeInstanceArgs(
compute_type="ComputeInstance",
properties=azure_native.machinelearningservices.ComputeInstancePropertiesArgs(
application_sharing_policy="Personal",
compute_instance_authorization_type="personal",
personal_compute_instance_settings=azure_native.machinelearningservices.PersonalComputeInstanceSettingsArgs(
assigned_user=azure_native.machinelearningservices.AssignedUserArgs(
object_id="00000000-0000-0000-0000-000000000000",
tenant_id="00000000-0000-0000-0000-000000000000",
),
),
ssh_settings=azure_native.machinelearningservices.ComputeInstanceSshSettingsArgs(
ssh_public_access="Disabled",
),
subnet="test-subnet-resource-id",
vm_size="STANDARD_NC6",
),
),
resource_group_name="testrg123",
workspace_name="workspaces123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machineLearningCompute = new azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute", {
computeName: "compute123",
location: "eastus",
properties: {
computeType: "ComputeInstance",
properties: {
applicationSharingPolicy: "Personal",
computeInstanceAuthorizationType: "personal",
personalComputeInstanceSettings: {
assignedUser: {
objectId: "00000000-0000-0000-0000-000000000000",
tenantId: "00000000-0000-0000-0000-000000000000",
},
},
sshSettings: {
sshPublicAccess: "Disabled",
},
subnet: "test-subnet-resource-id",
vmSize: "STANDARD_NC6",
},
},
resourceGroupName: "testrg123",
workspaceName: "workspaces123",
});
resources:
machineLearningCompute:
type: azure-native:machinelearningservices:MachineLearningCompute
properties:
computeName: compute123
location: eastus
properties:
computeType: ComputeInstance
properties:
applicationSharingPolicy: Personal
computeInstanceAuthorizationType: personal
personalComputeInstanceSettings:
assignedUser:
objectId: 00000000-0000-0000-0000-000000000000
tenantId: 00000000-0000-0000-0000-000000000000
sshSettings:
sshPublicAccess: Disabled
subnet: test-subnet-resource-id
vmSize: STANDARD_NC6
resourceGroupName: testrg123
workspaceName: workspaces123
Create an ComputeInstance Compute with minimal inputs
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machineLearningCompute = new AzureNative.MachineLearningServices.MachineLearningCompute("machineLearningCompute", new()
{
ComputeName = "compute123",
Location = "eastus",
Properties = new AzureNative.MachineLearningServices.Inputs.ComputeInstanceArgs
{
ComputeType = "ComputeInstance",
Properties = new AzureNative.MachineLearningServices.Inputs.ComputeInstancePropertiesArgs
{
VmSize = "STANDARD_NC6",
},
},
ResourceGroupName = "testrg123",
WorkspaceName = "workspaces123",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewMachineLearningCompute(ctx, "machineLearningCompute", &machinelearningservices.MachineLearningComputeArgs{
ComputeName: pulumi.String("compute123"),
Location: pulumi.String("eastus"),
Properties: machinelearningservices.ComputeInstance{
ComputeType: "ComputeInstance",
Properties: machinelearningservices.ComputeInstanceProperties{
VmSize: "STANDARD_NC6",
},
},
ResourceGroupName: pulumi.String("testrg123"),
WorkspaceName: pulumi.String("workspaces123"),
})
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.MachineLearningCompute;
import com.pulumi.azurenative.machinelearningservices.MachineLearningComputeArgs;
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 machineLearningCompute = new MachineLearningCompute("machineLearningCompute", MachineLearningComputeArgs.builder()
.computeName("compute123")
.location("eastus")
.properties(Map.ofEntries(
Map.entry("computeType", "ComputeInstance"),
Map.entry("properties", Map.of("vmSize", "STANDARD_NC6"))
))
.resourceGroupName("testrg123")
.workspaceName("workspaces123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
machine_learning_compute = azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute",
compute_name="compute123",
location="eastus",
properties=azure_native.machinelearningservices.ComputeInstanceArgs(
compute_type="ComputeInstance",
properties=azure_native.machinelearningservices.ComputeInstancePropertiesArgs(
vm_size="STANDARD_NC6",
),
),
resource_group_name="testrg123",
workspace_name="workspaces123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machineLearningCompute = new azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute", {
computeName: "compute123",
location: "eastus",
properties: {
computeType: "ComputeInstance",
properties: {
vmSize: "STANDARD_NC6",
},
},
resourceGroupName: "testrg123",
workspaceName: "workspaces123",
});
resources:
machineLearningCompute:
type: azure-native:machinelearningservices:MachineLearningCompute
properties:
computeName: compute123
location: eastus
properties:
computeType: ComputeInstance
properties:
vmSize: STANDARD_NC6
resourceGroupName: testrg123
workspaceName: workspaces123
Update a AKS Compute
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machineLearningCompute = new AzureNative.MachineLearningServices.MachineLearningCompute("machineLearningCompute", new()
{
ComputeName = "compute123",
Location = "eastus",
Properties = new AzureNative.MachineLearningServices.Inputs.AKSArgs
{
ComputeType = "AKS",
Description = "some compute",
Properties = new AzureNative.MachineLearningServices.Inputs.AKSPropertiesArgs
{
AgentCount = 4,
},
ResourceId = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2",
},
ResourceGroupName = "testrg123",
WorkspaceName = "workspaces123",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewMachineLearningCompute(ctx, "machineLearningCompute", &machinelearningservices.MachineLearningComputeArgs{
ComputeName: pulumi.String("compute123"),
Location: pulumi.String("eastus"),
Properties: machinelearningservices.AKS{
ComputeType: "AKS",
Description: "some compute",
Properties: machinelearningservices.AKSProperties{
AgentCount: 4,
},
ResourceId: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2",
},
ResourceGroupName: pulumi.String("testrg123"),
WorkspaceName: pulumi.String("workspaces123"),
})
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.MachineLearningCompute;
import com.pulumi.azurenative.machinelearningservices.MachineLearningComputeArgs;
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 machineLearningCompute = new MachineLearningCompute("machineLearningCompute", MachineLearningComputeArgs.builder()
.computeName("compute123")
.location("eastus")
.properties(Map.ofEntries(
Map.entry("computeType", "AKS"),
Map.entry("description", "some compute"),
Map.entry("properties", Map.of("agentCount", 4)),
Map.entry("resourceId", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2")
))
.resourceGroupName("testrg123")
.workspaceName("workspaces123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
machine_learning_compute = azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute",
compute_name="compute123",
location="eastus",
properties=azure_native.machinelearningservices.AKSArgs(
compute_type="AKS",
description="some compute",
properties=azure_native.machinelearningservices.AKSPropertiesArgs(
agent_count=4,
),
resource_id="/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2",
),
resource_group_name="testrg123",
workspace_name="workspaces123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machineLearningCompute = new azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute", {
computeName: "compute123",
location: "eastus",
properties: {
computeType: "AKS",
description: "some compute",
properties: {
agentCount: 4,
},
resourceId: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2",
},
resourceGroupName: "testrg123",
workspaceName: "workspaces123",
});
resources:
machineLearningCompute:
type: azure-native:machinelearningservices:MachineLearningCompute
properties:
computeName: compute123
location: eastus
properties:
computeType: AKS
description: some compute
properties:
agentCount: 4
resourceId: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourcegroups/testrg123/providers/Microsoft.ContainerService/managedClusters/compute123-56826-c9b00420020b2
resourceGroupName: testrg123
workspaceName: workspaces123
Update a AML Compute
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machineLearningCompute = new AzureNative.MachineLearningServices.MachineLearningCompute("machineLearningCompute", new()
{
ComputeName = "compute123",
Location = "eastus",
Properties = new AzureNative.MachineLearningServices.Inputs.AmlComputeArgs
{
ComputeType = "AmlCompute",
Description = "some compute",
Properties = new AzureNative.MachineLearningServices.Inputs.AmlComputePropertiesArgs
{
ScaleSettings = new AzureNative.MachineLearningServices.Inputs.ScaleSettingsArgs
{
MaxNodeCount = 4,
MinNodeCount = 4,
NodeIdleTimeBeforeScaleDown = "PT5M",
},
},
},
ResourceGroupName = "testrg123",
WorkspaceName = "workspaces123",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewMachineLearningCompute(ctx, "machineLearningCompute", &machinelearningservices.MachineLearningComputeArgs{
ComputeName: pulumi.String("compute123"),
Location: pulumi.String("eastus"),
Properties: machinelearningservices.AmlCompute{
ComputeType: "AmlCompute",
Description: "some compute",
Properties: machinelearningservices.AmlComputeProperties{
ScaleSettings: machinelearningservices.ScaleSettings{
MaxNodeCount: 4,
MinNodeCount: 4,
NodeIdleTimeBeforeScaleDown: "PT5M",
},
},
},
ResourceGroupName: pulumi.String("testrg123"),
WorkspaceName: pulumi.String("workspaces123"),
})
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.MachineLearningCompute;
import com.pulumi.azurenative.machinelearningservices.MachineLearningComputeArgs;
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 machineLearningCompute = new MachineLearningCompute("machineLearningCompute", MachineLearningComputeArgs.builder()
.computeName("compute123")
.location("eastus")
.properties(Map.ofEntries(
Map.entry("computeType", "AmlCompute"),
Map.entry("description", "some compute"),
Map.entry("properties", Map.of("scaleSettings", Map.ofEntries(
Map.entry("maxNodeCount", 4),
Map.entry("minNodeCount", 4),
Map.entry("nodeIdleTimeBeforeScaleDown", "PT5M")
)))
))
.resourceGroupName("testrg123")
.workspaceName("workspaces123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
machine_learning_compute = azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute",
compute_name="compute123",
location="eastus",
properties=azure_native.machinelearningservices.AmlComputeArgs(
compute_type="AmlCompute",
description="some compute",
properties=azure_native.machinelearningservices.AmlComputePropertiesArgs(
scale_settings=azure_native.machinelearningservices.ScaleSettingsArgs(
max_node_count=4,
min_node_count=4,
node_idle_time_before_scale_down="PT5M",
),
),
),
resource_group_name="testrg123",
workspace_name="workspaces123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machineLearningCompute = new azure_native.machinelearningservices.MachineLearningCompute("machineLearningCompute", {
computeName: "compute123",
location: "eastus",
properties: {
computeType: "AmlCompute",
description: "some compute",
properties: {
scaleSettings: {
maxNodeCount: 4,
minNodeCount: 4,
nodeIdleTimeBeforeScaleDown: "PT5M",
},
},
},
resourceGroupName: "testrg123",
workspaceName: "workspaces123",
});
resources:
machineLearningCompute:
type: azure-native:machinelearningservices:MachineLearningCompute
properties:
computeName: compute123
location: eastus
properties:
computeType: AmlCompute
description: some compute
properties:
scaleSettings:
maxNodeCount: 4
minNodeCount: 4
nodeIdleTimeBeforeScaleDown: PT5M
resourceGroupName: testrg123
workspaceName: workspaces123
Create MachineLearningCompute Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MachineLearningCompute(name: string, args: MachineLearningComputeArgs, opts?: CustomResourceOptions);
@overload
def MachineLearningCompute(resource_name: str,
args: MachineLearningComputeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MachineLearningCompute(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
compute_name: Optional[str] = None,
identity: Optional[IdentityArgs] = None,
location: Optional[str] = None,
properties: Optional[Union[AKSArgs, AmlComputeArgs, ComputeInstanceArgs, DataFactoryArgs, DataLakeAnalyticsArgs, DatabricksArgs, HDInsightArgs, VirtualMachineArgs]] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewMachineLearningCompute(ctx *Context, name string, args MachineLearningComputeArgs, opts ...ResourceOption) (*MachineLearningCompute, error)
public MachineLearningCompute(string name, MachineLearningComputeArgs args, CustomResourceOptions? opts = null)
public MachineLearningCompute(String name, MachineLearningComputeArgs args)
public MachineLearningCompute(String name, MachineLearningComputeArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:MachineLearningCompute
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 MachineLearningComputeArgs
- 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 MachineLearningComputeArgs
- 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 MachineLearningComputeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MachineLearningComputeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MachineLearningComputeArgs
- 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 machineLearningComputeResource = new AzureNative.Machinelearningservices.MachineLearningCompute("machineLearningComputeResource", new()
{
ResourceGroupName = "string",
WorkspaceName = "string",
ComputeName = "string",
Identity =
{
{ "type", "SystemAssigned" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
Location = "string",
Properties =
{
{ "computeType", "AKS" },
{ "computeLocation", "string" },
{ "description", "string" },
{ "properties",
{
{ "agentCount", 0 },
{ "agentVmSize", "string" },
{ "aksNetworkingConfiguration",
{
{ "dnsServiceIP", "string" },
{ "dockerBridgeCidr", "string" },
{ "serviceCidr", "string" },
{ "subnetId", "string" },
} },
{ "clusterFqdn", "string" },
{ "clusterPurpose", "string" },
{ "sslConfiguration",
{
{ "cert", "string" },
{ "cname", "string" },
{ "key", "string" },
{ "status", "string" },
} },
} },
{ "resourceId", "string" },
},
Sku =
{
{ "name", "string" },
{ "tier", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := machinelearningservices.NewMachineLearningCompute(ctx, "machineLearningComputeResource", &machinelearningservices.MachineLearningComputeArgs{
ResourceGroupName: "string",
WorkspaceName: "string",
ComputeName: "string",
Identity: map[string]interface{}{
"type": "SystemAssigned",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
Location: "string",
Properties: map[string]interface{}{
"computeType": "AKS",
"computeLocation": "string",
"description": "string",
"properties": map[string]interface{}{
"agentCount": 0,
"agentVmSize": "string",
"aksNetworkingConfiguration": map[string]interface{}{
"dnsServiceIP": "string",
"dockerBridgeCidr": "string",
"serviceCidr": "string",
"subnetId": "string",
},
"clusterFqdn": "string",
"clusterPurpose": "string",
"sslConfiguration": map[string]interface{}{
"cert": "string",
"cname": "string",
"key": "string",
"status": "string",
},
},
"resourceId": "string",
},
Sku: map[string]interface{}{
"name": "string",
"tier": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var machineLearningComputeResource = new MachineLearningCompute("machineLearningComputeResource", MachineLearningComputeArgs.builder()
.resourceGroupName("string")
.workspaceName("string")
.computeName("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
machine_learning_compute_resource = azure_native.machinelearningservices.MachineLearningCompute("machineLearningComputeResource",
resource_group_name=string,
workspace_name=string,
compute_name=string,
identity={
type: SystemAssigned,
userAssignedIdentities: {
string: any,
},
},
location=string,
properties={
computeType: AKS,
computeLocation: string,
description: string,
properties: {
agentCount: 0,
agentVmSize: string,
aksNetworkingConfiguration: {
dnsServiceIP: string,
dockerBridgeCidr: string,
serviceCidr: string,
subnetId: string,
},
clusterFqdn: string,
clusterPurpose: string,
sslConfiguration: {
cert: string,
cname: string,
key: string,
status: string,
},
},
resourceId: string,
},
sku={
name: string,
tier: string,
},
tags={
string: string,
})
const machineLearningComputeResource = new azure_native.machinelearningservices.MachineLearningCompute("machineLearningComputeResource", {
resourceGroupName: "string",
workspaceName: "string",
computeName: "string",
identity: {
type: "SystemAssigned",
userAssignedIdentities: {
string: "any",
},
},
location: "string",
properties: {
computeType: "AKS",
computeLocation: "string",
description: "string",
properties: {
agentCount: 0,
agentVmSize: "string",
aksNetworkingConfiguration: {
dnsServiceIP: "string",
dockerBridgeCidr: "string",
serviceCidr: "string",
subnetId: "string",
},
clusterFqdn: "string",
clusterPurpose: "string",
sslConfiguration: {
cert: "string",
cname: "string",
key: "string",
status: "string",
},
},
resourceId: "string",
},
sku: {
name: "string",
tier: "string",
},
tags: {
string: "string",
},
});
type: azure-native:machinelearningservices:MachineLearningCompute
properties:
computeName: string
identity:
type: SystemAssigned
userAssignedIdentities:
string: any
location: string
properties:
computeLocation: string
computeType: AKS
description: string
properties:
agentCount: 0
agentVmSize: string
aksNetworkingConfiguration:
dnsServiceIP: string
dockerBridgeCidr: string
serviceCidr: string
subnetId: string
clusterFqdn: string
clusterPurpose: string
sslConfiguration:
cert: string
cname: string
key: string
status: string
resourceId: string
resourceGroupName: string
sku:
name: string
tier: string
tags:
string: string
workspaceName: string
MachineLearningCompute 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 MachineLearningCompute resource accepts the following input properties:
- Resource
Group stringName - Name of the resource group in which workspace is located.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Compute
Name string - Name of the Azure Machine Learning compute.
- Identity
Pulumi.
Azure Native. Machine Learning Services. Inputs. Identity - The identity of the resource.
- Location string
- Specifies the location of the resource.
- Properties
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. AKS Azure | Pulumi.Native. Machine Learning Services. Inputs. Aml Compute Azure | Pulumi.Native. Machine Learning Services. Inputs. Compute Instance Azure | Pulumi.Native. Machine Learning Services. Inputs. Data Factory Azure | Pulumi.Native. Machine Learning Services. Inputs. Data Lake Analytics Azure | Pulumi.Native. Machine Learning Services. Inputs. Databricks Azure | Pulumi.Native. Machine Learning Services. Inputs. HDInsight Azure Native. Machine Learning Services. Inputs. Virtual Machine - Compute properties
- Sku
Pulumi.
Azure Native. Machine Learning Services. Inputs. Sku - The sku of the workspace.
- Dictionary<string, string>
- Contains resource tags defined as key/value pairs.
- Resource
Group stringName - Name of the resource group in which workspace is located.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Compute
Name string - Name of the Azure Machine Learning compute.
- Identity
Identity
Args - The identity of the resource.
- Location string
- Specifies the location of the resource.
- Properties
AKSArgs | Aml
Compute | ComputeArgs Instance | DataArgs Factory | DataArgs Lake | DatabricksAnalytics Args Args | HDInsightArgs | VirtualMachine Args - Compute properties
- Sku
Sku
Args - The sku of the workspace.
- map[string]string
- Contains resource tags defined as key/value pairs.
- resource
Group StringName - Name of the resource group in which workspace is located.
- workspace
Name String - Name of Azure Machine Learning workspace.
- compute
Name String - Name of the Azure Machine Learning compute.
- identity Identity
- The identity of the resource.
- location String
- Specifies the location of the resource.
- properties
AKS | Aml
Compute | ComputeInstance | DataFactory | DataLake | Databricks | HDInsight | VirtualAnalytics Machine - Compute properties
- sku Sku
- The sku of the workspace.
- Map<String,String>
- Contains resource tags defined as key/value pairs.
- resource
Group stringName - Name of the resource group in which workspace is located.
- workspace
Name string - Name of Azure Machine Learning workspace.
- compute
Name string - Name of the Azure Machine Learning compute.
- identity Identity
- The identity of the resource.
- location string
- Specifies the location of the resource.
- properties
AKS | Aml
Compute | ComputeInstance | DataFactory | DataLake | Databricks | HDInsight | VirtualAnalytics Machine - Compute properties
- sku Sku
- The sku of the workspace.
- {[key: string]: string}
- Contains resource tags defined as key/value pairs.
- resource_
group_ strname - Name of the resource group in which workspace is located.
- workspace_
name str - Name of Azure Machine Learning workspace.
- compute_
name str - Name of the Azure Machine Learning compute.
- identity
Identity
Args - The identity of the resource.
- location str
- Specifies the location of the resource.
- properties
AKSArgs | Aml
Compute | ComputeArgs Instance | DataArgs Factory | DataArgs Lake | DatabricksAnalytics Args Args | HDInsightArgs | VirtualMachine Args - Compute properties
- sku
Sku
Args - The sku of the workspace.
- Mapping[str, str]
- Contains resource tags defined as key/value pairs.
- resource
Group StringName - Name of the resource group in which workspace is located.
- workspace
Name String - Name of Azure Machine Learning workspace.
- compute
Name String - Name of the Azure Machine Learning compute.
- identity Property Map
- The identity of the resource.
- location String
- Specifies the location of the resource.
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- Compute properties
- sku Property Map
- The sku of the workspace.
- Map<String>
- Contains resource tags defined as key/value pairs.
Outputs
All input properties are implicitly available as output properties. Additionally, the MachineLearningCompute resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the resource.
- System
Data Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response - Read only system data
- Type string
- Specifies the type of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the resource.
- System
Data SystemData Response - Read only system data
- Type string
- Specifies the type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the resource.
- system
Data SystemData Response - Read only system data
- type String
- Specifies the type of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Specifies the name of the resource.
- system
Data SystemData Response - Read only system data
- type string
- Specifies the type of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Specifies the name of the resource.
- system_
data SystemData Response - Read only system data
- type str
- Specifies the type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the resource.
- system
Data Property Map - Read only system data
- type String
- Specifies the type of the resource.
Supporting Types
AKS, AKSArgs
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. AKSProperties - AKS properties
- Resource
Id string - ARM resource id of the underlying compute
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties AKSProperties
- AKS properties
- Resource
Id string - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties AKSProperties
- AKS properties
- resource
Id String - ARM resource id of the underlying compute
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties AKSProperties
- AKS properties
- resource
Id string - ARM resource id of the underlying compute
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties AKSProperties
- AKS properties
- resource_
id str - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- AKS properties
- resource
Id String - ARM resource id of the underlying compute
AKSProperties, AKSPropertiesArgs
- Agent
Count int - Number of agents
- Agent
Vm stringSize - Agent virtual machine size
- Aks
Networking Pulumi.Configuration Azure Native. Machine Learning Services. Inputs. Aks Networking Configuration - AKS networking configuration for vnet
- Cluster
Fqdn string - Cluster full qualified domain name
- Cluster
Purpose string | Pulumi.Azure Native. Machine Learning Services. Cluster Purpose - Intended usage of the cluster
- Ssl
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. Ssl Configuration - SSL configuration
- Agent
Count int - Number of agents
- Agent
Vm stringSize - Agent virtual machine size
- Aks
Networking AksConfiguration Networking Configuration - AKS networking configuration for vnet
- Cluster
Fqdn string - Cluster full qualified domain name
- Cluster
Purpose string | ClusterPurpose - Intended usage of the cluster
- Ssl
Configuration SslConfiguration - SSL configuration
- agent
Count Integer - Number of agents
- agent
Vm StringSize - Agent virtual machine size
- aks
Networking AksConfiguration Networking Configuration - AKS networking configuration for vnet
- cluster
Fqdn String - Cluster full qualified domain name
- cluster
Purpose String | ClusterPurpose - Intended usage of the cluster
- ssl
Configuration SslConfiguration - SSL configuration
- agent
Count number - Number of agents
- agent
Vm stringSize - Agent virtual machine size
- aks
Networking AksConfiguration Networking Configuration - AKS networking configuration for vnet
- cluster
Fqdn string - Cluster full qualified domain name
- cluster
Purpose string | ClusterPurpose - Intended usage of the cluster
- ssl
Configuration SslConfiguration - SSL configuration
- agent_
count int - Number of agents
- agent_
vm_ strsize - Agent virtual machine size
- aks_
networking_ Aksconfiguration Networking Configuration - AKS networking configuration for vnet
- cluster_
fqdn str - Cluster full qualified domain name
- cluster_
purpose str | ClusterPurpose - Intended usage of the cluster
- ssl_
configuration SslConfiguration - SSL configuration
- agent
Count Number - Number of agents
- agent
Vm StringSize - Agent virtual machine size
- aks
Networking Property MapConfiguration - AKS networking configuration for vnet
- cluster
Fqdn String - Cluster full qualified domain name
- cluster
Purpose String | "FastProd" | "Dense Prod" | "Dev Test" - Intended usage of the cluster
- ssl
Configuration Property Map - SSL configuration
AKSResponse, AKSResponseArgs
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors List<Pulumi.Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. AKSResponse Properties - AKS properties
- Resource
Id string - ARM resource id of the underlying compute
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors []MachineLearning Service Error Response - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
AKSResponse
Properties - AKS properties
- Resource
Id string - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<MachineLearning Service Error Response> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
AKSResponse
Properties - AKS properties
- resource
Id String - ARM resource id of the underlying compute
- is
Attached booleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors MachineLearning Service Error Response[] - Errors during provisioning
- provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
AKSResponse
Properties - AKS properties
- resource
Id string - ARM resource id of the underlying compute
- is_
attached_ boolcompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning_
errors Sequence[MachineLearning Service Error Response] - Errors during provisioning
- provisioning_
state str - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
AKSResponse
Properties - AKS properties
- resource_
id str - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<Property Map> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- AKS properties
- resource
Id String - ARM resource id of the underlying compute
AKSResponseProperties, AKSResponsePropertiesArgs
- System
Services List<Pulumi.Azure Native. Machine Learning Services. Inputs. System Service Response> - System services
- Agent
Count int - Number of agents
- Agent
Vm stringSize - Agent virtual machine size
- Aks
Networking Pulumi.Configuration Azure Native. Machine Learning Services. Inputs. Aks Networking Configuration Response - AKS networking configuration for vnet
- Cluster
Fqdn string - Cluster full qualified domain name
- Cluster
Purpose string - Intended usage of the cluster
- Ssl
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. Ssl Configuration Response - SSL configuration
- System
Services []SystemService Response - System services
- Agent
Count int - Number of agents
- Agent
Vm stringSize - Agent virtual machine size
- Aks
Networking AksConfiguration Networking Configuration Response - AKS networking configuration for vnet
- Cluster
Fqdn string - Cluster full qualified domain name
- Cluster
Purpose string - Intended usage of the cluster
- Ssl
Configuration SslConfiguration Response - SSL configuration
- system
Services List<SystemService Response> - System services
- agent
Count Integer - Number of agents
- agent
Vm StringSize - Agent virtual machine size
- aks
Networking AksConfiguration Networking Configuration Response - AKS networking configuration for vnet
- cluster
Fqdn String - Cluster full qualified domain name
- cluster
Purpose String - Intended usage of the cluster
- ssl
Configuration SslConfiguration Response - SSL configuration
- system
Services SystemService Response[] - System services
- agent
Count number - Number of agents
- agent
Vm stringSize - Agent virtual machine size
- aks
Networking AksConfiguration Networking Configuration Response - AKS networking configuration for vnet
- cluster
Fqdn string - Cluster full qualified domain name
- cluster
Purpose string - Intended usage of the cluster
- ssl
Configuration SslConfiguration Response - SSL configuration
- system_
services Sequence[SystemService Response] - System services
- agent_
count int - Number of agents
- agent_
vm_ strsize - Agent virtual machine size
- aks_
networking_ Aksconfiguration Networking Configuration Response - AKS networking configuration for vnet
- cluster_
fqdn str - Cluster full qualified domain name
- cluster_
purpose str - Intended usage of the cluster
- ssl_
configuration SslConfiguration Response - SSL configuration
- system
Services List<Property Map> - System services
- agent
Count Number - Number of agents
- agent
Vm StringSize - Agent virtual machine size
- aks
Networking Property MapConfiguration - AKS networking configuration for vnet
- cluster
Fqdn String - Cluster full qualified domain name
- cluster
Purpose String - Intended usage of the cluster
- ssl
Configuration Property Map - SSL configuration
AksNetworkingConfiguration, AksNetworkingConfigurationArgs
- Dns
Service stringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- Docker
Bridge stringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- Service
Cidr string - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- Subnet
Id string - Virtual network subnet resource ID the compute nodes belong to
- Dns
Service stringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- Docker
Bridge stringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- Service
Cidr string - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- Subnet
Id string - Virtual network subnet resource ID the compute nodes belong to
- dns
Service StringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- docker
Bridge StringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- service
Cidr String - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- subnet
Id String - Virtual network subnet resource ID the compute nodes belong to
- dns
Service stringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- docker
Bridge stringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- service
Cidr string - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- subnet
Id string - Virtual network subnet resource ID the compute nodes belong to
- dns_
service_ strip - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- docker_
bridge_ strcidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- service_
cidr str - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- subnet_
id str - Virtual network subnet resource ID the compute nodes belong to
- dns
Service StringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- docker
Bridge StringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- service
Cidr String - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- subnet
Id String - Virtual network subnet resource ID the compute nodes belong to
AksNetworkingConfigurationResponse, AksNetworkingConfigurationResponseArgs
- Dns
Service stringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- Docker
Bridge stringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- Service
Cidr string - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- Subnet
Id string - Virtual network subnet resource ID the compute nodes belong to
- Dns
Service stringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- Docker
Bridge stringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- Service
Cidr string - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- Subnet
Id string - Virtual network subnet resource ID the compute nodes belong to
- dns
Service StringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- docker
Bridge StringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- service
Cidr String - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- subnet
Id String - Virtual network subnet resource ID the compute nodes belong to
- dns
Service stringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- docker
Bridge stringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- service
Cidr string - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- subnet
Id string - Virtual network subnet resource ID the compute nodes belong to
- dns_
service_ strip - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- docker_
bridge_ strcidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- service_
cidr str - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- subnet_
id str - Virtual network subnet resource ID the compute nodes belong to
- dns
Service StringIP - An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
- docker
Bridge StringCidr - A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
- service
Cidr String - A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
- subnet
Id String - Virtual network subnet resource ID the compute nodes belong to
AmlCompute, AmlComputeArgs
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Aml Compute Properties - AML Compute properties
- Resource
Id string - ARM resource id of the underlying compute
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Aml
Compute Properties - AML Compute properties
- Resource
Id string - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Aml
Compute Properties - AML Compute properties
- resource
Id String - ARM resource id of the underlying compute
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Aml
Compute Properties - AML Compute properties
- resource
Id string - ARM resource id of the underlying compute
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Aml
Compute Properties - AML Compute properties
- resource_
id str - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- AML Compute properties
- resource
Id String - ARM resource id of the underlying compute
AmlComputeProperties, AmlComputePropertiesArgs
- Enable
Node boolPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- Isolated
Network bool - Network is isolated or not
- Os
Type string | Pulumi.Azure Native. Machine Learning Services. Os Type - Compute OS Type
- Remote
Login string | Pulumi.Port Public Access Azure Native. Machine Learning Services. Remote Login Port Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- Scale
Settings Pulumi.Azure Native. Machine Learning Services. Inputs. Scale Settings - Scale settings for AML Compute
- Subnet
Pulumi.
Azure Native. Machine Learning Services. Inputs. Resource Id - Virtual network subnet resource ID the compute nodes belong to.
- User
Account Pulumi.Credentials Azure Native. Machine Learning Services. Inputs. User Account Credentials - Credentials for an administrator user account that will be created on each compute node.
- Virtual
Machine Pulumi.Image Azure Native. Machine Learning Services. Inputs. Virtual Machine Image - Virtual Machine image for AML Compute - windows only
- Vm
Priority string | Pulumi.Azure Native. Machine Learning Services. Vm Priority - Virtual Machine priority
- Vm
Size string - Virtual Machine Size
- Enable
Node boolPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- Isolated
Network bool - Network is isolated or not
- Os
Type string | OsType - Compute OS Type
- Remote
Login string | RemotePort Public Access Login Port Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- Scale
Settings ScaleSettings - Scale settings for AML Compute
- Subnet
Resource
Id - Virtual network subnet resource ID the compute nodes belong to.
- User
Account UserCredentials Account Credentials - Credentials for an administrator user account that will be created on each compute node.
- Virtual
Machine VirtualImage Machine Image - Virtual Machine image for AML Compute - windows only
- Vm
Priority string | VmPriority - Virtual Machine priority
- Vm
Size string - Virtual Machine Size
- enable
Node BooleanPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- isolated
Network Boolean - Network is isolated or not
- os
Type String | OsType - Compute OS Type
- remote
Login String | RemotePort Public Access Login Port Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- scale
Settings ScaleSettings - Scale settings for AML Compute
- subnet
Resource
Id - Virtual network subnet resource ID the compute nodes belong to.
- user
Account UserCredentials Account Credentials - Credentials for an administrator user account that will be created on each compute node.
- virtual
Machine VirtualImage Machine Image - Virtual Machine image for AML Compute - windows only
- vm
Priority String | VmPriority - Virtual Machine priority
- vm
Size String - Virtual Machine Size
- enable
Node booleanPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- isolated
Network boolean - Network is isolated or not
- os
Type string | OsType - Compute OS Type
- remote
Login string | RemotePort Public Access Login Port Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- scale
Settings ScaleSettings - Scale settings for AML Compute
- subnet
Resource
Id - Virtual network subnet resource ID the compute nodes belong to.
- user
Account UserCredentials Account Credentials - Credentials for an administrator user account that will be created on each compute node.
- virtual
Machine VirtualImage Machine Image - Virtual Machine image for AML Compute - windows only
- vm
Priority string | VmPriority - Virtual Machine priority
- vm
Size string - Virtual Machine Size
- enable_
node_ boolpublic_ ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- isolated_
network bool - Network is isolated or not
- os_
type str | OsType - Compute OS Type
- remote_
login_ str | Remoteport_ public_ access Login Port Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- scale_
settings ScaleSettings - Scale settings for AML Compute
- subnet
Resource
Id - Virtual network subnet resource ID the compute nodes belong to.
- user_
account_ Usercredentials Account Credentials - Credentials for an administrator user account that will be created on each compute node.
- virtual_
machine_ Virtualimage Machine Image - Virtual Machine image for AML Compute - windows only
- vm_
priority str | VmPriority - Virtual Machine priority
- vm_
size str - Virtual Machine Size
- enable
Node BooleanPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- isolated
Network Boolean - Network is isolated or not
- os
Type String | "Linux" | "Windows" - Compute OS Type
- remote
Login String | "Enabled" | "Disabled" | "NotPort Public Access Specified" - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- scale
Settings Property Map - Scale settings for AML Compute
- subnet Property Map
- Virtual network subnet resource ID the compute nodes belong to.
- user
Account Property MapCredentials - Credentials for an administrator user account that will be created on each compute node.
- virtual
Machine Property MapImage - Virtual Machine image for AML Compute - windows only
- vm
Priority String | "Dedicated" | "LowPriority" - Virtual Machine priority
- vm
Size String - Virtual Machine Size
AmlComputeResponse, AmlComputeResponseArgs
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors List<Pulumi.Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Aml Compute Response Properties - AML Compute properties
- Resource
Id string - ARM resource id of the underlying compute
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors []MachineLearning Service Error Response - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Aml
Compute Response Properties - AML Compute properties
- Resource
Id string - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<MachineLearning Service Error Response> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Aml
Compute Response Properties - AML Compute properties
- resource
Id String - ARM resource id of the underlying compute
- is
Attached booleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors MachineLearning Service Error Response[] - Errors during provisioning
- provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Aml
Compute Response Properties - AML Compute properties
- resource
Id string - ARM resource id of the underlying compute
- is_
attached_ boolcompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning_
errors Sequence[MachineLearning Service Error Response] - Errors during provisioning
- provisioning_
state str - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Aml
Compute Response Properties - AML Compute properties
- resource_
id str - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<Property Map> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- AML Compute properties
- resource
Id String - ARM resource id of the underlying compute
AmlComputeResponseProperties, AmlComputeResponsePropertiesArgs
- Allocation
State string - Allocation state of the compute. Possible values are: steady - Indicates that the compute is not resizing. There are no changes to the number of compute nodes in the compute in progress. A compute enters this state when it is created and when no operations are being performed on the compute to change the number of compute nodes. resizing - Indicates that the compute is resizing; that is, compute nodes are being added to or removed from the compute.
- Allocation
State stringTransition Time - The time at which the compute entered its current allocation state.
- Current
Node intCount - The number of compute nodes currently assigned to the compute.
- Errors
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Collection of errors encountered by various compute nodes during node setup.
- Node
State Pulumi.Counts Azure Native. Machine Learning Services. Inputs. Node State Counts Response - Counts of various node states on the compute.
- Target
Node intCount - The target number of compute nodes for the compute. If the allocationState is resizing, this property denotes the target node count for the ongoing resize operation. If the allocationState is steady, this property denotes the target node count for the previous resize operation.
- Enable
Node boolPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- Isolated
Network bool - Network is isolated or not
- Os
Type string - Compute OS Type
- Remote
Login stringPort Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- Scale
Settings Pulumi.Azure Native. Machine Learning Services. Inputs. Scale Settings Response - Scale settings for AML Compute
- Subnet
Pulumi.
Azure Native. Machine Learning Services. Inputs. Resource Id Response - Virtual network subnet resource ID the compute nodes belong to.
- User
Account Pulumi.Credentials Azure Native. Machine Learning Services. Inputs. User Account Credentials Response - Credentials for an administrator user account that will be created on each compute node.
- Virtual
Machine Pulumi.Image Azure Native. Machine Learning Services. Inputs. Virtual Machine Image Response - Virtual Machine image for AML Compute - windows only
- Vm
Priority string - Virtual Machine priority
- Vm
Size string - Virtual Machine Size
- Allocation
State string - Allocation state of the compute. Possible values are: steady - Indicates that the compute is not resizing. There are no changes to the number of compute nodes in the compute in progress. A compute enters this state when it is created and when no operations are being performed on the compute to change the number of compute nodes. resizing - Indicates that the compute is resizing; that is, compute nodes are being added to or removed from the compute.
- Allocation
State stringTransition Time - The time at which the compute entered its current allocation state.
- Current
Node intCount - The number of compute nodes currently assigned to the compute.
- Errors
[]Machine
Learning Service Error Response - Collection of errors encountered by various compute nodes during node setup.
- Node
State NodeCounts State Counts Response - Counts of various node states on the compute.
- Target
Node intCount - The target number of compute nodes for the compute. If the allocationState is resizing, this property denotes the target node count for the ongoing resize operation. If the allocationState is steady, this property denotes the target node count for the previous resize operation.
- Enable
Node boolPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- Isolated
Network bool - Network is isolated or not
- Os
Type string - Compute OS Type
- Remote
Login stringPort Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- Scale
Settings ScaleSettings Response - Scale settings for AML Compute
- Subnet
Resource
Id Response - Virtual network subnet resource ID the compute nodes belong to.
- User
Account UserCredentials Account Credentials Response - Credentials for an administrator user account that will be created on each compute node.
- Virtual
Machine VirtualImage Machine Image Response - Virtual Machine image for AML Compute - windows only
- Vm
Priority string - Virtual Machine priority
- Vm
Size string - Virtual Machine Size
- allocation
State String - Allocation state of the compute. Possible values are: steady - Indicates that the compute is not resizing. There are no changes to the number of compute nodes in the compute in progress. A compute enters this state when it is created and when no operations are being performed on the compute to change the number of compute nodes. resizing - Indicates that the compute is resizing; that is, compute nodes are being added to or removed from the compute.
- allocation
State StringTransition Time - The time at which the compute entered its current allocation state.
- current
Node IntegerCount - The number of compute nodes currently assigned to the compute.
- errors
List<Machine
Learning Service Error Response> - Collection of errors encountered by various compute nodes during node setup.
- node
State NodeCounts State Counts Response - Counts of various node states on the compute.
- target
Node IntegerCount - The target number of compute nodes for the compute. If the allocationState is resizing, this property denotes the target node count for the ongoing resize operation. If the allocationState is steady, this property denotes the target node count for the previous resize operation.
- enable
Node BooleanPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- isolated
Network Boolean - Network is isolated or not
- os
Type String - Compute OS Type
- remote
Login StringPort Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- scale
Settings ScaleSettings Response - Scale settings for AML Compute
- subnet
Resource
Id Response - Virtual network subnet resource ID the compute nodes belong to.
- user
Account UserCredentials Account Credentials Response - Credentials for an administrator user account that will be created on each compute node.
- virtual
Machine VirtualImage Machine Image Response - Virtual Machine image for AML Compute - windows only
- vm
Priority String - Virtual Machine priority
- vm
Size String - Virtual Machine Size
- allocation
State string - Allocation state of the compute. Possible values are: steady - Indicates that the compute is not resizing. There are no changes to the number of compute nodes in the compute in progress. A compute enters this state when it is created and when no operations are being performed on the compute to change the number of compute nodes. resizing - Indicates that the compute is resizing; that is, compute nodes are being added to or removed from the compute.
- allocation
State stringTransition Time - The time at which the compute entered its current allocation state.
- current
Node numberCount - The number of compute nodes currently assigned to the compute.
- errors
Machine
Learning Service Error Response[] - Collection of errors encountered by various compute nodes during node setup.
- node
State NodeCounts State Counts Response - Counts of various node states on the compute.
- target
Node numberCount - The target number of compute nodes for the compute. If the allocationState is resizing, this property denotes the target node count for the ongoing resize operation. If the allocationState is steady, this property denotes the target node count for the previous resize operation.
- enable
Node booleanPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- isolated
Network boolean - Network is isolated or not
- os
Type string - Compute OS Type
- remote
Login stringPort Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- scale
Settings ScaleSettings Response - Scale settings for AML Compute
- subnet
Resource
Id Response - Virtual network subnet resource ID the compute nodes belong to.
- user
Account UserCredentials Account Credentials Response - Credentials for an administrator user account that will be created on each compute node.
- virtual
Machine VirtualImage Machine Image Response - Virtual Machine image for AML Compute - windows only
- vm
Priority string - Virtual Machine priority
- vm
Size string - Virtual Machine Size
- allocation_
state str - Allocation state of the compute. Possible values are: steady - Indicates that the compute is not resizing. There are no changes to the number of compute nodes in the compute in progress. A compute enters this state when it is created and when no operations are being performed on the compute to change the number of compute nodes. resizing - Indicates that the compute is resizing; that is, compute nodes are being added to or removed from the compute.
- allocation_
state_ strtransition_ time - The time at which the compute entered its current allocation state.
- current_
node_ intcount - The number of compute nodes currently assigned to the compute.
- errors
Sequence[Machine
Learning Service Error Response] - Collection of errors encountered by various compute nodes during node setup.
- node_
state_ Nodecounts State Counts Response - Counts of various node states on the compute.
- target_
node_ intcount - The target number of compute nodes for the compute. If the allocationState is resizing, this property denotes the target node count for the ongoing resize operation. If the allocationState is steady, this property denotes the target node count for the previous resize operation.
- enable_
node_ boolpublic_ ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- isolated_
network bool - Network is isolated or not
- os_
type str - Compute OS Type
- remote_
login_ strport_ public_ access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- scale_
settings ScaleSettings Response - Scale settings for AML Compute
- subnet
Resource
Id Response - Virtual network subnet resource ID the compute nodes belong to.
- user_
account_ Usercredentials Account Credentials Response - Credentials for an administrator user account that will be created on each compute node.
- virtual_
machine_ Virtualimage Machine Image Response - Virtual Machine image for AML Compute - windows only
- vm_
priority str - Virtual Machine priority
- vm_
size str - Virtual Machine Size
- allocation
State String - Allocation state of the compute. Possible values are: steady - Indicates that the compute is not resizing. There are no changes to the number of compute nodes in the compute in progress. A compute enters this state when it is created and when no operations are being performed on the compute to change the number of compute nodes. resizing - Indicates that the compute is resizing; that is, compute nodes are being added to or removed from the compute.
- allocation
State StringTransition Time - The time at which the compute entered its current allocation state.
- current
Node NumberCount - The number of compute nodes currently assigned to the compute.
- errors List<Property Map>
- Collection of errors encountered by various compute nodes during node setup.
- node
State Property MapCounts - Counts of various node states on the compute.
- target
Node NumberCount - The target number of compute nodes for the compute. If the allocationState is resizing, this property denotes the target node count for the ongoing resize operation. If the allocationState is steady, this property denotes the target node count for the previous resize operation.
- enable
Node BooleanPublic Ip - Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs.
- isolated
Network Boolean - Network is isolated or not
- os
Type String - Compute OS Type
- remote
Login StringPort Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled.
- scale
Settings Property Map - Scale settings for AML Compute
- subnet Property Map
- Virtual network subnet resource ID the compute nodes belong to.
- user
Account Property MapCredentials - Credentials for an administrator user account that will be created on each compute node.
- virtual
Machine Property MapImage - Virtual Machine image for AML Compute - windows only
- vm
Priority String - Virtual Machine priority
- vm
Size String - Virtual Machine Size
ApplicationSharingPolicy, ApplicationSharingPolicyArgs
- Personal
- Personal
- Shared
- Shared
- Application
Sharing Policy Personal - Personal
- Application
Sharing Policy Shared - Shared
- Personal
- Personal
- Shared
- Shared
- Personal
- Personal
- Shared
- Shared
- PERSONAL
- Personal
- SHARED
- Shared
- "Personal"
- Personal
- "Shared"
- Shared
AssignedUser, AssignedUserArgs
AssignedUserResponse, AssignedUserResponseArgs
ClusterPurpose, ClusterPurposeArgs
- Fast
Prod - FastProd
- Dense
Prod - DenseProd
- Dev
Test - DevTest
- Cluster
Purpose Fast Prod - FastProd
- Cluster
Purpose Dense Prod - DenseProd
- Cluster
Purpose Dev Test - DevTest
- Fast
Prod - FastProd
- Dense
Prod - DenseProd
- Dev
Test - DevTest
- Fast
Prod - FastProd
- Dense
Prod - DenseProd
- Dev
Test - DevTest
- FAST_PROD
- FastProd
- DENSE_PROD
- DenseProd
- DEV_TEST
- DevTest
- "Fast
Prod" - FastProd
- "Dense
Prod" - DenseProd
- "Dev
Test" - DevTest
ComputeInstance, ComputeInstanceArgs
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Compute Instance Properties - Compute Instance properties
- Resource
Id string - ARM resource id of the underlying compute
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Compute
Instance Properties - Compute Instance properties
- Resource
Id string - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Compute
Instance Properties - Compute Instance properties
- resource
Id String - ARM resource id of the underlying compute
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Compute
Instance Properties - Compute Instance properties
- resource
Id string - ARM resource id of the underlying compute
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Compute
Instance Properties - Compute Instance properties
- resource_
id str - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- Compute Instance properties
- resource
Id String - ARM resource id of the underlying compute
ComputeInstanceApplicationResponse, ComputeInstanceApplicationResponseArgs
- Display
Name string - Name of the ComputeInstance application.
- Endpoint
Uri string - Application' endpoint URI.
- Display
Name string - Name of the ComputeInstance application.
- Endpoint
Uri string - Application' endpoint URI.
- display
Name String - Name of the ComputeInstance application.
- endpoint
Uri String - Application' endpoint URI.
- display
Name string - Name of the ComputeInstance application.
- endpoint
Uri string - Application' endpoint URI.
- display_
name str - Name of the ComputeInstance application.
- endpoint_
uri str - Application' endpoint URI.
- display
Name String - Name of the ComputeInstance application.
- endpoint
Uri String - Application' endpoint URI.
ComputeInstanceAuthorizationType, ComputeInstanceAuthorizationTypeArgs
- Personal
- personal
- Compute
Instance Authorization Type Personal - personal
- Personal
- personal
- Personal
- personal
- PERSONAL
- personal
- "personal"
- personal
ComputeInstanceConnectivityEndpointsResponse, ComputeInstanceConnectivityEndpointsResponseArgs
- Private
Ip stringAddress - Private IP Address of this ComputeInstance (local to the VNET in which the compute instance is deployed).
- Public
Ip stringAddress - Public IP Address of this ComputeInstance.
- Private
Ip stringAddress - Private IP Address of this ComputeInstance (local to the VNET in which the compute instance is deployed).
- Public
Ip stringAddress - Public IP Address of this ComputeInstance.
- private
Ip StringAddress - Private IP Address of this ComputeInstance (local to the VNET in which the compute instance is deployed).
- public
Ip StringAddress - Public IP Address of this ComputeInstance.
- private
Ip stringAddress - Private IP Address of this ComputeInstance (local to the VNET in which the compute instance is deployed).
- public
Ip stringAddress - Public IP Address of this ComputeInstance.
- private_
ip_ straddress - Private IP Address of this ComputeInstance (local to the VNET in which the compute instance is deployed).
- public_
ip_ straddress - Public IP Address of this ComputeInstance.
- private
Ip StringAddress - Private IP Address of this ComputeInstance (local to the VNET in which the compute instance is deployed).
- public
Ip StringAddress - Public IP Address of this ComputeInstance.
ComputeInstanceCreatedByResponse, ComputeInstanceCreatedByResponseArgs
- user_
id str - Uniquely identifies the user within his/her organization.
- user_
name str - Name of the user.
- user_
org_ strid - Uniquely identifies user' Azure Active Directory organization.
ComputeInstanceLastOperationResponse, ComputeInstanceLastOperationResponseArgs
- Operation
Name string - Name of the last operation.
- Operation
Status string - Operation status.
- Operation
Time string - Time of the last operation.
- Operation
Name string - Name of the last operation.
- Operation
Status string - Operation status.
- Operation
Time string - Time of the last operation.
- operation
Name String - Name of the last operation.
- operation
Status String - Operation status.
- operation
Time String - Time of the last operation.
- operation
Name string - Name of the last operation.
- operation
Status string - Operation status.
- operation
Time string - Time of the last operation.
- operation_
name str - Name of the last operation.
- operation_
status str - Operation status.
- operation_
time str - Time of the last operation.
- operation
Name String - Name of the last operation.
- operation
Status String - Operation status.
- operation
Time String - Time of the last operation.
ComputeInstanceProperties, ComputeInstancePropertiesArgs
- Application
Sharing string | Pulumi.Policy Azure Native. Machine Learning Services. Application Sharing Policy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- string | Pulumi.
Azure Native. Machine Learning Services. Compute Instance Authorization Type - The Compute Instance Authorization type. Available values are personal (default).
- Personal
Compute Pulumi.Instance Settings Azure Native. Machine Learning Services. Inputs. Personal Compute Instance Settings - Settings for a personal compute instance.
- Setup
Scripts Pulumi.Azure Native. Machine Learning Services. Inputs. Setup Scripts - Details of customized scripts to execute for setting up the cluster.
- Ssh
Settings Pulumi.Azure Native. Machine Learning Services. Inputs. Compute Instance Ssh Settings - Specifies policy and settings for SSH access.
- Subnet
Pulumi.
Azure Native. Machine Learning Services. Inputs. Resource Id - Virtual network subnet resource ID the compute nodes belong to.
- Vm
Size string - Virtual Machine Size
- Application
Sharing string | ApplicationPolicy Sharing Policy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- string | Compute
Instance Authorization Type - The Compute Instance Authorization type. Available values are personal (default).
- Personal
Compute PersonalInstance Settings Compute Instance Settings - Settings for a personal compute instance.
- Setup
Scripts SetupScripts - Details of customized scripts to execute for setting up the cluster.
- Ssh
Settings ComputeInstance Ssh Settings - Specifies policy and settings for SSH access.
- Subnet
Resource
Id - Virtual network subnet resource ID the compute nodes belong to.
- Vm
Size string - Virtual Machine Size
- application
Sharing String | ApplicationPolicy Sharing Policy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- String | Compute
Instance Authorization Type - The Compute Instance Authorization type. Available values are personal (default).
- personal
Compute PersonalInstance Settings Compute Instance Settings - Settings for a personal compute instance.
- setup
Scripts SetupScripts - Details of customized scripts to execute for setting up the cluster.
- ssh
Settings ComputeInstance Ssh Settings - Specifies policy and settings for SSH access.
- subnet
Resource
Id - Virtual network subnet resource ID the compute nodes belong to.
- vm
Size String - Virtual Machine Size
- application
Sharing string | ApplicationPolicy Sharing Policy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- string | Compute
Instance Authorization Type - The Compute Instance Authorization type. Available values are personal (default).
- personal
Compute PersonalInstance Settings Compute Instance Settings - Settings for a personal compute instance.
- setup
Scripts SetupScripts - Details of customized scripts to execute for setting up the cluster.
- ssh
Settings ComputeInstance Ssh Settings - Specifies policy and settings for SSH access.
- subnet
Resource
Id - Virtual network subnet resource ID the compute nodes belong to.
- vm
Size string - Virtual Machine Size
- application_
sharing_ str | Applicationpolicy Sharing Policy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- str | Compute
Instance Authorization Type - The Compute Instance Authorization type. Available values are personal (default).
- personal_
compute_ Personalinstance_ settings Compute Instance Settings - Settings for a personal compute instance.
- setup_
scripts SetupScripts - Details of customized scripts to execute for setting up the cluster.
- ssh_
settings ComputeInstance Ssh Settings - Specifies policy and settings for SSH access.
- subnet
Resource
Id - Virtual network subnet resource ID the compute nodes belong to.
- vm_
size str - Virtual Machine Size
- application
Sharing String | "Personal" | "Shared"Policy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- String | "personal"
- The Compute Instance Authorization type. Available values are personal (default).
- personal
Compute Property MapInstance Settings - Settings for a personal compute instance.
- setup
Scripts Property Map - Details of customized scripts to execute for setting up the cluster.
- ssh
Settings Property Map - Specifies policy and settings for SSH access.
- subnet Property Map
- Virtual network subnet resource ID the compute nodes belong to.
- vm
Size String - Virtual Machine Size
ComputeInstanceResponse, ComputeInstanceResponseArgs
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors List<Pulumi.Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Compute Instance Response Properties - Compute Instance properties
- Resource
Id string - ARM resource id of the underlying compute
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors []MachineLearning Service Error Response - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Compute
Instance Response Properties - Compute Instance properties
- Resource
Id string - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<MachineLearning Service Error Response> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Compute
Instance Response Properties - Compute Instance properties
- resource
Id String - ARM resource id of the underlying compute
- is
Attached booleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors MachineLearning Service Error Response[] - Errors during provisioning
- provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Compute
Instance Response Properties - Compute Instance properties
- resource
Id string - ARM resource id of the underlying compute
- is_
attached_ boolcompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning_
errors Sequence[MachineLearning Service Error Response] - Errors during provisioning
- provisioning_
state str - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Compute
Instance Response Properties - Compute Instance properties
- resource_
id str - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<Property Map> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- Compute Instance properties
- resource
Id String - ARM resource id of the underlying compute
ComputeInstanceResponseProperties, ComputeInstanceResponsePropertiesArgs
- Applications
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Compute Instance Application Response> - Describes available applications and their endpoints on this ComputeInstance.
- Connectivity
Endpoints Pulumi.Azure Native. Machine Learning Services. Inputs. Compute Instance Connectivity Endpoints Response - Describes all connectivity endpoints available for this ComputeInstance.
- Created
By Pulumi.Azure Native. Machine Learning Services. Inputs. Compute Instance Created By Response - Describes information on user who created this ComputeInstance.
- Errors
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Collection of errors encountered on this ComputeInstance.
- Last
Operation Pulumi.Azure Native. Machine Learning Services. Inputs. Compute Instance Last Operation Response - The last operation on ComputeInstance.
- State string
- The current state of this ComputeInstance.
- Application
Sharing stringPolicy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- string
- The Compute Instance Authorization type. Available values are personal (default).
- Personal
Compute Pulumi.Instance Settings Azure Native. Machine Learning Services. Inputs. Personal Compute Instance Settings Response - Settings for a personal compute instance.
- Setup
Scripts Pulumi.Azure Native. Machine Learning Services. Inputs. Setup Scripts Response - Details of customized scripts to execute for setting up the cluster.
- Ssh
Settings Pulumi.Azure Native. Machine Learning Services. Inputs. Compute Instance Ssh Settings Response - Specifies policy and settings for SSH access.
- Subnet
Pulumi.
Azure Native. Machine Learning Services. Inputs. Resource Id Response - Virtual network subnet resource ID the compute nodes belong to.
- Vm
Size string - Virtual Machine Size
- Applications
[]Compute
Instance Application Response - Describes available applications and their endpoints on this ComputeInstance.
- Connectivity
Endpoints ComputeInstance Connectivity Endpoints Response - Describes all connectivity endpoints available for this ComputeInstance.
- Created
By ComputeInstance Created By Response - Describes information on user who created this ComputeInstance.
- Errors
[]Machine
Learning Service Error Response - Collection of errors encountered on this ComputeInstance.
- Last
Operation ComputeInstance Last Operation Response - The last operation on ComputeInstance.
- State string
- The current state of this ComputeInstance.
- Application
Sharing stringPolicy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- string
- The Compute Instance Authorization type. Available values are personal (default).
- Personal
Compute PersonalInstance Settings Compute Instance Settings Response - Settings for a personal compute instance.
- Setup
Scripts SetupScripts Response - Details of customized scripts to execute for setting up the cluster.
- Ssh
Settings ComputeInstance Ssh Settings Response - Specifies policy and settings for SSH access.
- Subnet
Resource
Id Response - Virtual network subnet resource ID the compute nodes belong to.
- Vm
Size string - Virtual Machine Size
- applications
List<Compute
Instance Application Response> - Describes available applications and their endpoints on this ComputeInstance.
- connectivity
Endpoints ComputeInstance Connectivity Endpoints Response - Describes all connectivity endpoints available for this ComputeInstance.
- created
By ComputeInstance Created By Response - Describes information on user who created this ComputeInstance.
- errors
List<Machine
Learning Service Error Response> - Collection of errors encountered on this ComputeInstance.
- last
Operation ComputeInstance Last Operation Response - The last operation on ComputeInstance.
- state String
- The current state of this ComputeInstance.
- application
Sharing StringPolicy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- String
- The Compute Instance Authorization type. Available values are personal (default).
- personal
Compute PersonalInstance Settings Compute Instance Settings Response - Settings for a personal compute instance.
- setup
Scripts SetupScripts Response - Details of customized scripts to execute for setting up the cluster.
- ssh
Settings ComputeInstance Ssh Settings Response - Specifies policy and settings for SSH access.
- subnet
Resource
Id Response - Virtual network subnet resource ID the compute nodes belong to.
- vm
Size String - Virtual Machine Size
- applications
Compute
Instance Application Response[] - Describes available applications and their endpoints on this ComputeInstance.
- connectivity
Endpoints ComputeInstance Connectivity Endpoints Response - Describes all connectivity endpoints available for this ComputeInstance.
- created
By ComputeInstance Created By Response - Describes information on user who created this ComputeInstance.
- errors
Machine
Learning Service Error Response[] - Collection of errors encountered on this ComputeInstance.
- last
Operation ComputeInstance Last Operation Response - The last operation on ComputeInstance.
- state string
- The current state of this ComputeInstance.
- application
Sharing stringPolicy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- string
- The Compute Instance Authorization type. Available values are personal (default).
- personal
Compute PersonalInstance Settings Compute Instance Settings Response - Settings for a personal compute instance.
- setup
Scripts SetupScripts Response - Details of customized scripts to execute for setting up the cluster.
- ssh
Settings ComputeInstance Ssh Settings Response - Specifies policy and settings for SSH access.
- subnet
Resource
Id Response - Virtual network subnet resource ID the compute nodes belong to.
- vm
Size string - Virtual Machine Size
- applications
Sequence[Compute
Instance Application Response] - Describes available applications and their endpoints on this ComputeInstance.
- connectivity_
endpoints ComputeInstance Connectivity Endpoints Response - Describes all connectivity endpoints available for this ComputeInstance.
- created_
by ComputeInstance Created By Response - Describes information on user who created this ComputeInstance.
- errors
Sequence[Machine
Learning Service Error Response] - Collection of errors encountered on this ComputeInstance.
- last_
operation ComputeInstance Last Operation Response - The last operation on ComputeInstance.
- state str
- The current state of this ComputeInstance.
- application_
sharing_ strpolicy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- str
- The Compute Instance Authorization type. Available values are personal (default).
- personal_
compute_ Personalinstance_ settings Compute Instance Settings Response - Settings for a personal compute instance.
- setup_
scripts SetupScripts Response - Details of customized scripts to execute for setting up the cluster.
- ssh_
settings ComputeInstance Ssh Settings Response - Specifies policy and settings for SSH access.
- subnet
Resource
Id Response - Virtual network subnet resource ID the compute nodes belong to.
- vm_
size str - Virtual Machine Size
- applications List<Property Map>
- Describes available applications and their endpoints on this ComputeInstance.
- connectivity
Endpoints Property Map - Describes all connectivity endpoints available for this ComputeInstance.
- created
By Property Map - Describes information on user who created this ComputeInstance.
- errors List<Property Map>
- Collection of errors encountered on this ComputeInstance.
- last
Operation Property Map - The last operation on ComputeInstance.
- state String
- The current state of this ComputeInstance.
- application
Sharing StringPolicy - Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the creator can access applications on this compute instance. When Shared, any workspace user can access applications on this instance depending on his/her assigned role.
- String
- The Compute Instance Authorization type. Available values are personal (default).
- personal
Compute Property MapInstance Settings - Settings for a personal compute instance.
- setup
Scripts Property Map - Details of customized scripts to execute for setting up the cluster.
- ssh
Settings Property Map - Specifies policy and settings for SSH access.
- subnet Property Map
- Virtual network subnet resource ID the compute nodes belong to.
- vm
Size String - Virtual Machine Size
ComputeInstanceSshSettings, ComputeInstanceSshSettingsArgs
- Admin
Public stringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- Ssh
Public string | Pulumi.Access Azure Native. Machine Learning Services. Ssh Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- Admin
Public stringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- Ssh
Public string | SshAccess Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- admin
Public StringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- ssh
Public String | SshAccess Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- admin
Public stringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- ssh
Public string | SshAccess Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- admin_
public_ strkey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- ssh_
public_ str | Sshaccess Public Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- admin
Public StringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- ssh
Public String | "Enabled" | "Disabled"Access - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
ComputeInstanceSshSettingsResponse, ComputeInstanceSshSettingsResponseArgs
- Admin
User stringName - Describes the admin user name.
- Ssh
Port int - Describes the port for connecting through SSH.
- Admin
Public stringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- Ssh
Public stringAccess - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- Admin
User stringName - Describes the admin user name.
- Ssh
Port int - Describes the port for connecting through SSH.
- Admin
Public stringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- Ssh
Public stringAccess - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- admin
User StringName - Describes the admin user name.
- ssh
Port Integer - Describes the port for connecting through SSH.
- admin
Public StringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- ssh
Public StringAccess - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- admin
User stringName - Describes the admin user name.
- ssh
Port number - Describes the port for connecting through SSH.
- admin
Public stringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- ssh
Public stringAccess - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- admin_
user_ strname - Describes the admin user name.
- ssh_
port int - Describes the port for connecting through SSH.
- admin_
public_ strkey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- ssh_
public_ straccess - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
- admin
User StringName - Describes the admin user name.
- ssh
Port Number - Describes the port for connecting through SSH.
- admin
Public StringKey - Specifies the SSH rsa public key file as a string. Use "ssh-keygen -t rsa -b 2048" to generate your SSH key pairs.
- ssh
Public StringAccess - State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable.
DataFactory, DataFactoryArgs
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Resource
Id string - ARM resource id of the underlying compute
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Resource
Id string - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- resource
Id String - ARM resource id of the underlying compute
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- resource
Id string - ARM resource id of the underlying compute
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- resource_
id str - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- resource
Id String - ARM resource id of the underlying compute
DataFactoryResponse, DataFactoryResponseArgs
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors List<Pulumi.Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Resource
Id string - ARM resource id of the underlying compute
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors []MachineLearning Service Error Response - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Resource
Id string - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<MachineLearning Service Error Response> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- resource
Id String - ARM resource id of the underlying compute
- is
Attached booleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors MachineLearning Service Error Response[] - Errors during provisioning
- provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- resource
Id string - ARM resource id of the underlying compute
- is_
attached_ boolcompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning_
errors Sequence[MachineLearning Service Error Response] - Errors during provisioning
- provisioning_
state str - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- resource_
id str - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<Property Map> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- resource
Id String - ARM resource id of the underlying compute
DataLakeAnalytics, DataLakeAnalyticsArgs
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Data Lake Analytics Properties - Resource
Id string - ARM resource id of the underlying compute
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Data
Lake Analytics Properties - Resource
Id string - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Data
Lake Analytics Properties - resource
Id String - ARM resource id of the underlying compute
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Data
Lake Analytics Properties - resource
Id string - ARM resource id of the underlying compute
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Data
Lake Analytics Properties - resource_
id str - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- resource
Id String - ARM resource id of the underlying compute
DataLakeAnalyticsProperties, DataLakeAnalyticsPropertiesArgs
- Data
Lake stringStore Account Name - DataLake Store Account Name
- Data
Lake stringStore Account Name - DataLake Store Account Name
- data
Lake StringStore Account Name - DataLake Store Account Name
- data
Lake stringStore Account Name - DataLake Store Account Name
- data_
lake_ strstore_ account_ name - DataLake Store Account Name
- data
Lake StringStore Account Name - DataLake Store Account Name
DataLakeAnalyticsResponse, DataLakeAnalyticsResponseArgs
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors List<Pulumi.Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Data Lake Analytics Response Properties - Resource
Id string - ARM resource id of the underlying compute
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors []MachineLearning Service Error Response - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Data
Lake Analytics Response Properties - Resource
Id string - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<MachineLearning Service Error Response> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Data
Lake Analytics Response Properties - resource
Id String - ARM resource id of the underlying compute
- is
Attached booleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors MachineLearning Service Error Response[] - Errors during provisioning
- provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Data
Lake Analytics Response Properties - resource
Id string - ARM resource id of the underlying compute
- is_
attached_ boolcompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning_
errors Sequence[MachineLearning Service Error Response] - Errors during provisioning
- provisioning_
state str - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Data
Lake Analytics Response Properties - resource_
id str - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<Property Map> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- resource
Id String - ARM resource id of the underlying compute
DataLakeAnalyticsResponseProperties, DataLakeAnalyticsResponsePropertiesArgs
- Data
Lake stringStore Account Name - DataLake Store Account Name
- Data
Lake stringStore Account Name - DataLake Store Account Name
- data
Lake StringStore Account Name - DataLake Store Account Name
- data
Lake stringStore Account Name - DataLake Store Account Name
- data_
lake_ strstore_ account_ name - DataLake Store Account Name
- data
Lake StringStore Account Name - DataLake Store Account Name
Databricks, DatabricksArgs
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Databricks Properties - Resource
Id string - ARM resource id of the underlying compute
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Databricks
Properties - Resource
Id string - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Databricks
Properties - resource
Id String - ARM resource id of the underlying compute
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Databricks
Properties - resource
Id string - ARM resource id of the underlying compute
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Databricks
Properties - resource_
id str - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- resource
Id String - ARM resource id of the underlying compute
DatabricksProperties, DatabricksPropertiesArgs
- Databricks
Access stringToken - Databricks access token
- Workspace
Url string - Workspace Url
- Databricks
Access stringToken - Databricks access token
- Workspace
Url string - Workspace Url
- databricks
Access StringToken - Databricks access token
- workspace
Url String - Workspace Url
- databricks
Access stringToken - Databricks access token
- workspace
Url string - Workspace Url
- databricks_
access_ strtoken - Databricks access token
- workspace_
url str - Workspace Url
- databricks
Access StringToken - Databricks access token
- workspace
Url String - Workspace Url
DatabricksResponse, DatabricksResponseArgs
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors List<Pulumi.Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Databricks Response Properties - Resource
Id string - ARM resource id of the underlying compute
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors []MachineLearning Service Error Response - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Databricks
Response Properties - Resource
Id string - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<MachineLearning Service Error Response> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Databricks
Response Properties - resource
Id String - ARM resource id of the underlying compute
- is
Attached booleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors MachineLearning Service Error Response[] - Errors during provisioning
- provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Databricks
Response Properties - resource
Id string - ARM resource id of the underlying compute
- is_
attached_ boolcompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning_
errors Sequence[MachineLearning Service Error Response] - Errors during provisioning
- provisioning_
state str - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Databricks
Response Properties - resource_
id str - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<Property Map> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- resource
Id String - ARM resource id of the underlying compute
DatabricksResponseProperties, DatabricksResponsePropertiesArgs
- Databricks
Access stringToken - Databricks access token
- Workspace
Url string - Workspace Url
- Databricks
Access stringToken - Databricks access token
- Workspace
Url string - Workspace Url
- databricks
Access StringToken - Databricks access token
- workspace
Url String - Workspace Url
- databricks
Access stringToken - Databricks access token
- workspace
Url string - Workspace Url
- databricks_
access_ strtoken - Databricks access token
- workspace_
url str - Workspace Url
- databricks
Access StringToken - Databricks access token
- workspace
Url String - Workspace Url
ErrorDetailResponse, ErrorDetailResponseArgs
ErrorResponseResponse, ErrorResponseResponseArgs
- Code string
- Error code.
- Details
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Error Detail Response> - An array of error detail objects.
- Message string
- Error message.
- Code string
- Error code.
- Details
[]Error
Detail Response - An array of error detail objects.
- Message string
- Error message.
- code String
- Error code.
- details
List<Error
Detail Response> - An array of error detail objects.
- message String
- Error message.
- code string
- Error code.
- details
Error
Detail Response[] - An array of error detail objects.
- message string
- Error message.
- code str
- Error code.
- details
Sequence[Error
Detail Response] - An array of error detail objects.
- message str
- Error message.
- code String
- Error code.
- details List<Property Map>
- An array of error detail objects.
- message String
- Error message.
HDInsight, HDInsightArgs
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. HDInsight Properties - Resource
Id string - ARM resource id of the underlying compute
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
HDInsight
Properties - Resource
Id string - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
HDInsight
Properties - resource
Id String - ARM resource id of the underlying compute
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
HDInsight
Properties - resource
Id string - ARM resource id of the underlying compute
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
HDInsight
Properties - resource_
id str - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- resource
Id String - ARM resource id of the underlying compute
HDInsightProperties, HDInsightPropertiesArgs
- Address string
- Public IP address of the master node of the cluster.
- Administrator
Account Pulumi.Azure Native. Machine Learning Services. Inputs. Virtual Machine Ssh Credentials - Admin credentials for master node of the cluster
- Ssh
Port int - Port open for ssh connections on the master node of the cluster.
- Address string
- Public IP address of the master node of the cluster.
- Administrator
Account VirtualMachine Ssh Credentials - Admin credentials for master node of the cluster
- Ssh
Port int - Port open for ssh connections on the master node of the cluster.
- address String
- Public IP address of the master node of the cluster.
- administrator
Account VirtualMachine Ssh Credentials - Admin credentials for master node of the cluster
- ssh
Port Integer - Port open for ssh connections on the master node of the cluster.
- address string
- Public IP address of the master node of the cluster.
- administrator
Account VirtualMachine Ssh Credentials - Admin credentials for master node of the cluster
- ssh
Port number - Port open for ssh connections on the master node of the cluster.
- address str
- Public IP address of the master node of the cluster.
- administrator_
account VirtualMachine Ssh Credentials - Admin credentials for master node of the cluster
- ssh_
port int - Port open for ssh connections on the master node of the cluster.
- address String
- Public IP address of the master node of the cluster.
- administrator
Account Property Map - Admin credentials for master node of the cluster
- ssh
Port Number - Port open for ssh connections on the master node of the cluster.
HDInsightResponse, HDInsightResponseArgs
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors List<Pulumi.Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. HDInsight Response Properties - Resource
Id string - ARM resource id of the underlying compute
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors []MachineLearning Service Error Response - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
HDInsight
Response Properties - Resource
Id string - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<MachineLearning Service Error Response> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
HDInsight
Response Properties - resource
Id String - ARM resource id of the underlying compute
- is
Attached booleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors MachineLearning Service Error Response[] - Errors during provisioning
- provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
HDInsight
Response Properties - resource
Id string - ARM resource id of the underlying compute
- is_
attached_ boolcompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning_
errors Sequence[MachineLearning Service Error Response] - Errors during provisioning
- provisioning_
state str - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
HDInsight
Response Properties - resource_
id str - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<Property Map> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- resource
Id String - ARM resource id of the underlying compute
HDInsightResponseProperties, HDInsightResponsePropertiesArgs
- Address string
- Public IP address of the master node of the cluster.
- Administrator
Account Pulumi.Azure Native. Machine Learning Services. Inputs. Virtual Machine Ssh Credentials Response - Admin credentials for master node of the cluster
- Ssh
Port int - Port open for ssh connections on the master node of the cluster.
- Address string
- Public IP address of the master node of the cluster.
- Administrator
Account VirtualMachine Ssh Credentials Response - Admin credentials for master node of the cluster
- Ssh
Port int - Port open for ssh connections on the master node of the cluster.
- address String
- Public IP address of the master node of the cluster.
- administrator
Account VirtualMachine Ssh Credentials Response - Admin credentials for master node of the cluster
- ssh
Port Integer - Port open for ssh connections on the master node of the cluster.
- address string
- Public IP address of the master node of the cluster.
- administrator
Account VirtualMachine Ssh Credentials Response - Admin credentials for master node of the cluster
- ssh
Port number - Port open for ssh connections on the master node of the cluster.
- address str
- Public IP address of the master node of the cluster.
- administrator_
account VirtualMachine Ssh Credentials Response - Admin credentials for master node of the cluster
- ssh_
port int - Port open for ssh connections on the master node of the cluster.
- address String
- Public IP address of the master node of the cluster.
- administrator
Account Property Map - Admin credentials for master node of the cluster
- ssh
Port Number - Port open for ssh connections on the master node of the cluster.
Identity, IdentityArgs
- Type
Pulumi.
Azure Native. Machine Learning Services. Resource Identity Type - The identity type.
- User
Assigned Dictionary<string, object>Identities - The user assigned identities associated with the resource.
- Type
Resource
Identity Type - The identity type.
- User
Assigned map[string]interface{}Identities - The user assigned identities associated with the resource.
- type
Resource
Identity Type - The identity type.
- user
Assigned Map<String,Object>Identities - The user assigned identities associated with the resource.
- type
Resource
Identity Type - The identity type.
- user
Assigned {[key: string]: any}Identities - The user assigned identities associated with the resource.
- type
Resource
Identity Type - The identity type.
- user_
assigned_ Mapping[str, Any]identities - The user assigned identities associated with the resource.
- type
"System
Assigned" | "System Assigned,User Assigned" | "User Assigned" | "None" - The identity type.
- user
Assigned Map<Any>Identities - The user assigned identities associated with the resource.
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Machine Learning Services. Inputs. User Assigned Identity Response> - The user assigned identities associated with the resource.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned map[string]UserIdentities Assigned Identity Response - The user assigned identities associated with the resource.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The user assigned identities associated with the resource.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The user assigned identities associated with the resource.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The identity type.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The user assigned identities associated with the resource.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - The user assigned identities associated with the resource.
MachineLearningServiceErrorResponse, MachineLearningServiceErrorResponseArgs
- Error
Pulumi.
Azure Native. Machine Learning Services. Inputs. Error Response Response - The error response.
- Error
Error
Response Response - The error response.
- error
Error
Response Response - The error response.
- error
Error
Response Response - The error response.
- error
Error
Response Response - The error response.
- error Property Map
- The error response.
NodeStateCountsResponse, NodeStateCountsResponseArgs
- Idle
Node intCount - Number of compute nodes in idle state.
- Leaving
Node intCount - Number of compute nodes which are leaving the amlCompute.
- Preempted
Node intCount - Number of compute nodes which are in preempted state.
- Preparing
Node intCount - Number of compute nodes which are being prepared.
- Running
Node intCount - Number of compute nodes which are running jobs.
- Unusable
Node intCount - Number of compute nodes which are in unusable state.
- Idle
Node intCount - Number of compute nodes in idle state.
- Leaving
Node intCount - Number of compute nodes which are leaving the amlCompute.
- Preempted
Node intCount - Number of compute nodes which are in preempted state.
- Preparing
Node intCount - Number of compute nodes which are being prepared.
- Running
Node intCount - Number of compute nodes which are running jobs.
- Unusable
Node intCount - Number of compute nodes which are in unusable state.
- idle
Node IntegerCount - Number of compute nodes in idle state.
- leaving
Node IntegerCount - Number of compute nodes which are leaving the amlCompute.
- preempted
Node IntegerCount - Number of compute nodes which are in preempted state.
- preparing
Node IntegerCount - Number of compute nodes which are being prepared.
- running
Node IntegerCount - Number of compute nodes which are running jobs.
- unusable
Node IntegerCount - Number of compute nodes which are in unusable state.
- idle
Node numberCount - Number of compute nodes in idle state.
- leaving
Node numberCount - Number of compute nodes which are leaving the amlCompute.
- preempted
Node numberCount - Number of compute nodes which are in preempted state.
- preparing
Node numberCount - Number of compute nodes which are being prepared.
- running
Node numberCount - Number of compute nodes which are running jobs.
- unusable
Node numberCount - Number of compute nodes which are in unusable state.
- idle_
node_ intcount - Number of compute nodes in idle state.
- leaving_
node_ intcount - Number of compute nodes which are leaving the amlCompute.
- preempted_
node_ intcount - Number of compute nodes which are in preempted state.
- preparing_
node_ intcount - Number of compute nodes which are being prepared.
- running_
node_ intcount - Number of compute nodes which are running jobs.
- unusable_
node_ intcount - Number of compute nodes which are in unusable state.
- idle
Node NumberCount - Number of compute nodes in idle state.
- leaving
Node NumberCount - Number of compute nodes which are leaving the amlCompute.
- preempted
Node NumberCount - Number of compute nodes which are in preempted state.
- preparing
Node NumberCount - Number of compute nodes which are being prepared.
- running
Node NumberCount - Number of compute nodes which are running jobs.
- unusable
Node NumberCount - Number of compute nodes which are in unusable state.
OsType, OsTypeArgs
- Linux
- Linux
- Windows
- Windows
- Os
Type Linux - Linux
- Os
Type Windows - Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- LINUX
- Linux
- WINDOWS
- Windows
- "Linux"
- Linux
- "Windows"
- Windows
PersonalComputeInstanceSettings, PersonalComputeInstanceSettingsArgs
- Assigned
User Pulumi.Azure Native. Machine Learning Services. Inputs. Assigned User - A user explicitly assigned to a personal compute instance.
- Assigned
User AssignedUser - A user explicitly assigned to a personal compute instance.
- assigned
User AssignedUser - A user explicitly assigned to a personal compute instance.
- assigned
User AssignedUser - A user explicitly assigned to a personal compute instance.
- assigned_
user AssignedUser - A user explicitly assigned to a personal compute instance.
- assigned
User Property Map - A user explicitly assigned to a personal compute instance.
PersonalComputeInstanceSettingsResponse, PersonalComputeInstanceSettingsResponseArgs
- Assigned
User Pulumi.Azure Native. Machine Learning Services. Inputs. Assigned User Response - A user explicitly assigned to a personal compute instance.
- Assigned
User AssignedUser Response - A user explicitly assigned to a personal compute instance.
- assigned
User AssignedUser Response - A user explicitly assigned to a personal compute instance.
- assigned
User AssignedUser Response - A user explicitly assigned to a personal compute instance.
- assigned_
user AssignedUser Response - A user explicitly assigned to a personal compute instance.
- assigned
User Property Map - A user explicitly assigned to a personal compute instance.
RemoteLoginPortPublicAccess, RemoteLoginPortPublicAccessArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Not
Specified - NotSpecified
- Remote
Login Port Public Access Enabled - Enabled
- Remote
Login Port Public Access Disabled - Disabled
- Remote
Login Port Public Access Not Specified - NotSpecified
- Enabled
- Enabled
- Disabled
- Disabled
- Not
Specified - NotSpecified
- Enabled
- Enabled
- Disabled
- Disabled
- Not
Specified - NotSpecified
- ENABLED
- Enabled
- DISABLED
- Disabled
- NOT_SPECIFIED
- NotSpecified
- "Enabled"
- Enabled
- "Disabled"
- Disabled
- "Not
Specified" - NotSpecified
ResourceId, ResourceIdArgs
- Id string
- The ID of the resource
- Id string
- The ID of the resource
- id String
- The ID of the resource
- id string
- The ID of the resource
- id str
- The ID of the resource
- id String
- The ID of the resource
ResourceIdResponse, ResourceIdResponseArgs
- Id string
- The ID of the resource
- Id string
- The ID of the resource
- id String
- The ID of the resource
- id string
- The ID of the resource
- id str
- The ID of the resource
- id String
- The ID of the resource
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- User
Assigned - UserAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- User
Assigned - UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- User
Assigned - UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- USER_ASSIGNED
- UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
- "User
Assigned" - UserAssigned
- "None"
- None
ScaleSettings, ScaleSettingsArgs
- Max
Node intCount - Max number of nodes to use
- Min
Node intCount - Min number of nodes to use
- Node
Idle stringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- Max
Node intCount - Max number of nodes to use
- Min
Node intCount - Min number of nodes to use
- Node
Idle stringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- max
Node IntegerCount - Max number of nodes to use
- min
Node IntegerCount - Min number of nodes to use
- node
Idle StringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- max
Node numberCount - Max number of nodes to use
- min
Node numberCount - Min number of nodes to use
- node
Idle stringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- max_
node_ intcount - Max number of nodes to use
- min_
node_ intcount - Min number of nodes to use
- node_
idle_ strtime_ before_ scale_ down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- max
Node NumberCount - Max number of nodes to use
- min
Node NumberCount - Min number of nodes to use
- node
Idle StringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
ScaleSettingsResponse, ScaleSettingsResponseArgs
- Max
Node intCount - Max number of nodes to use
- Min
Node intCount - Min number of nodes to use
- Node
Idle stringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- Max
Node intCount - Max number of nodes to use
- Min
Node intCount - Min number of nodes to use
- Node
Idle stringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- max
Node IntegerCount - Max number of nodes to use
- min
Node IntegerCount - Min number of nodes to use
- node
Idle StringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- max
Node numberCount - Max number of nodes to use
- min
Node numberCount - Min number of nodes to use
- node
Idle stringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- max_
node_ intcount - Max number of nodes to use
- min_
node_ intcount - Min number of nodes to use
- node_
idle_ strtime_ before_ scale_ down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
- max
Node NumberCount - Max number of nodes to use
- min
Node NumberCount - Min number of nodes to use
- node
Idle StringTime Before Scale Down - Node Idle Time before scaling down amlCompute. This string needs to be in the RFC Format.
ScriptReference, ScriptReferenceArgs
- Script
Arguments string - Optional command line arguments passed to the script to run.
- Script
Data string - The location of scripts in the mounted volume.
- Script
Source string - The storage source of the script: inline, workspace.
- Timeout string
- Optional time period passed to timeout command.
- Script
Arguments string - Optional command line arguments passed to the script to run.
- Script
Data string - The location of scripts in the mounted volume.
- Script
Source string - The storage source of the script: inline, workspace.
- Timeout string
- Optional time period passed to timeout command.
- script
Arguments String - Optional command line arguments passed to the script to run.
- script
Data String - The location of scripts in the mounted volume.
- script
Source String - The storage source of the script: inline, workspace.
- timeout String
- Optional time period passed to timeout command.
- script
Arguments string - Optional command line arguments passed to the script to run.
- script
Data string - The location of scripts in the mounted volume.
- script
Source string - The storage source of the script: inline, workspace.
- timeout string
- Optional time period passed to timeout command.
- script_
arguments str - Optional command line arguments passed to the script to run.
- script_
data str - The location of scripts in the mounted volume.
- script_
source str - The storage source of the script: inline, workspace.
- timeout str
- Optional time period passed to timeout command.
- script
Arguments String - Optional command line arguments passed to the script to run.
- script
Data String - The location of scripts in the mounted volume.
- script
Source String - The storage source of the script: inline, workspace.
- timeout String
- Optional time period passed to timeout command.
ScriptReferenceResponse, ScriptReferenceResponseArgs
- Script
Arguments string - Optional command line arguments passed to the script to run.
- Script
Data string - The location of scripts in the mounted volume.
- Script
Source string - The storage source of the script: inline, workspace.
- Timeout string
- Optional time period passed to timeout command.
- Script
Arguments string - Optional command line arguments passed to the script to run.
- Script
Data string - The location of scripts in the mounted volume.
- Script
Source string - The storage source of the script: inline, workspace.
- Timeout string
- Optional time period passed to timeout command.
- script
Arguments String - Optional command line arguments passed to the script to run.
- script
Data String - The location of scripts in the mounted volume.
- script
Source String - The storage source of the script: inline, workspace.
- timeout String
- Optional time period passed to timeout command.
- script
Arguments string - Optional command line arguments passed to the script to run.
- script
Data string - The location of scripts in the mounted volume.
- script
Source string - The storage source of the script: inline, workspace.
- timeout string
- Optional time period passed to timeout command.
- script_
arguments str - Optional command line arguments passed to the script to run.
- script_
data str - The location of scripts in the mounted volume.
- script_
source str - The storage source of the script: inline, workspace.
- timeout str
- Optional time period passed to timeout command.
- script
Arguments String - Optional command line arguments passed to the script to run.
- script
Data String - The location of scripts in the mounted volume.
- script
Source String - The storage source of the script: inline, workspace.
- timeout String
- Optional time period passed to timeout command.
ScriptsToExecute, ScriptsToExecuteArgs
- Creation
Script Pulumi.Azure Native. Machine Learning Services. Inputs. Script Reference - Script that's run only once during provision of the compute.
- Startup
Script Pulumi.Azure Native. Machine Learning Services. Inputs. Script Reference - Script that's run every time the machine starts.
- Creation
Script ScriptReference - Script that's run only once during provision of the compute.
- Startup
Script ScriptReference - Script that's run every time the machine starts.
- creation
Script ScriptReference - Script that's run only once during provision of the compute.
- startup
Script ScriptReference - Script that's run every time the machine starts.
- creation
Script ScriptReference - Script that's run only once during provision of the compute.
- startup
Script ScriptReference - Script that's run every time the machine starts.
- creation_
script ScriptReference - Script that's run only once during provision of the compute.
- startup_
script ScriptReference - Script that's run every time the machine starts.
- creation
Script Property Map - Script that's run only once during provision of the compute.
- startup
Script Property Map - Script that's run every time the machine starts.
ScriptsToExecuteResponse, ScriptsToExecuteResponseArgs
- Creation
Script Pulumi.Azure Native. Machine Learning Services. Inputs. Script Reference Response - Script that's run only once during provision of the compute.
- Startup
Script Pulumi.Azure Native. Machine Learning Services. Inputs. Script Reference Response - Script that's run every time the machine starts.
- Creation
Script ScriptReference Response - Script that's run only once during provision of the compute.
- Startup
Script ScriptReference Response - Script that's run every time the machine starts.
- creation
Script ScriptReference Response - Script that's run only once during provision of the compute.
- startup
Script ScriptReference Response - Script that's run every time the machine starts.
- creation
Script ScriptReference Response - Script that's run only once during provision of the compute.
- startup
Script ScriptReference Response - Script that's run every time the machine starts.
- creation_
script ScriptReference Response - Script that's run only once during provision of the compute.
- startup_
script ScriptReference Response - Script that's run every time the machine starts.
- creation
Script Property Map - Script that's run only once during provision of the compute.
- startup
Script Property Map - Script that's run every time the machine starts.
SetupScripts, SetupScriptsArgs
- Scripts
Pulumi.
Azure Native. Machine Learning Services. Inputs. Scripts To Execute - Customized setup scripts
- Scripts
Scripts
To Execute - Customized setup scripts
- scripts
Scripts
To Execute - Customized setup scripts
- scripts
Scripts
To Execute - Customized setup scripts
- scripts
Scripts
To Execute - Customized setup scripts
- scripts Property Map
- Customized setup scripts
SetupScriptsResponse, SetupScriptsResponseArgs
- Scripts
Pulumi.
Azure Native. Machine Learning Services. Inputs. Scripts To Execute Response - Customized setup scripts
- Scripts
Scripts
To Execute Response - Customized setup scripts
- scripts
Scripts
To Execute Response - Customized setup scripts
- scripts
Scripts
To Execute Response - Customized setup scripts
- scripts
Scripts
To Execute Response - Customized setup scripts
- scripts Property Map
- Customized setup scripts
Sku, SkuArgs
SkuResponse, SkuResponseArgs
SshPublicAccess, SshPublicAccessArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Ssh
Public Access Enabled - Enabled
- Ssh
Public Access Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
SslConfiguration, SslConfigurationArgs
SslConfigurationResponse, SslConfigurationResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for 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 - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
SystemServiceResponse, SystemServiceResponseArgs
- Public
Ip stringAddress - Public IP address
- System
Service stringType - The type of this system service.
- Version string
- The version for this type.
- Public
Ip stringAddress - Public IP address
- System
Service stringType - The type of this system service.
- Version string
- The version for this type.
- public
Ip StringAddress - Public IP address
- system
Service StringType - The type of this system service.
- version String
- The version for this type.
- public
Ip stringAddress - Public IP address
- system
Service stringType - The type of this system service.
- version string
- The version for this type.
- public_
ip_ straddress - Public IP address
- system_
service_ strtype - The type of this system service.
- version str
- The version for this type.
- public
Ip StringAddress - Public IP address
- system
Service StringType - The type of this system service.
- version String
- The version for this type.
UserAccountCredentials, UserAccountCredentialsArgs
- Admin
User stringName - Name of the administrator user account which can be used to SSH to nodes.
- Admin
User stringPassword - Password of the administrator user account.
- Admin
User stringSsh Public Key - SSH public key of the administrator user account.
- Admin
User stringName - Name of the administrator user account which can be used to SSH to nodes.
- Admin
User stringPassword - Password of the administrator user account.
- Admin
User stringSsh Public Key - SSH public key of the administrator user account.
- admin
User StringName - Name of the administrator user account which can be used to SSH to nodes.
- admin
User StringPassword - Password of the administrator user account.
- admin
User StringSsh Public Key - SSH public key of the administrator user account.
- admin
User stringName - Name of the administrator user account which can be used to SSH to nodes.
- admin
User stringPassword - Password of the administrator user account.
- admin
User stringSsh Public Key - SSH public key of the administrator user account.
- admin_
user_ strname - Name of the administrator user account which can be used to SSH to nodes.
- admin_
user_ strpassword - Password of the administrator user account.
- admin_
user_ strssh_ public_ key - SSH public key of the administrator user account.
- admin
User StringName - Name of the administrator user account which can be used to SSH to nodes.
- admin
User StringPassword - Password of the administrator user account.
- admin
User StringSsh Public Key - SSH public key of the administrator user account.
UserAccountCredentialsResponse, UserAccountCredentialsResponseArgs
- Admin
User stringName - Name of the administrator user account which can be used to SSH to nodes.
- Admin
User stringPassword - Password of the administrator user account.
- Admin
User stringSsh Public Key - SSH public key of the administrator user account.
- Admin
User stringName - Name of the administrator user account which can be used to SSH to nodes.
- Admin
User stringPassword - Password of the administrator user account.
- Admin
User stringSsh Public Key - SSH public key of the administrator user account.
- admin
User StringName - Name of the administrator user account which can be used to SSH to nodes.
- admin
User StringPassword - Password of the administrator user account.
- admin
User StringSsh Public Key - SSH public key of the administrator user account.
- admin
User stringName - Name of the administrator user account which can be used to SSH to nodes.
- admin
User stringPassword - Password of the administrator user account.
- admin
User stringSsh Public Key - SSH public key of the administrator user account.
- admin_
user_ strname - Name of the administrator user account which can be used to SSH to nodes.
- admin_
user_ strpassword - Password of the administrator user account.
- admin_
user_ strssh_ public_ key - SSH public key of the administrator user account.
- admin
User StringName - Name of the administrator user account which can be used to SSH to nodes.
- admin
User StringPassword - Password of the administrator user account.
- admin
User StringSsh Public Key - SSH public key of the administrator user account.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The clientId(aka appId) of the user assigned identity.
- Principal
Id string - The principal ID of the user assigned identity.
- Tenant
Id string - The tenant ID of the user assigned identity.
- Client
Id string - The clientId(aka appId) of the user assigned identity.
- Principal
Id string - The principal ID of the user assigned identity.
- Tenant
Id string - The tenant ID of the user assigned identity.
- client
Id String - The clientId(aka appId) of the user assigned identity.
- principal
Id String - The principal ID of the user assigned identity.
- tenant
Id String - The tenant ID of the user assigned identity.
- client
Id string - The clientId(aka appId) of the user assigned identity.
- principal
Id string - The principal ID of the user assigned identity.
- tenant
Id string - The tenant ID of the user assigned identity.
- client_
id str - The clientId(aka appId) of the user assigned identity.
- principal_
id str - The principal ID of the user assigned identity.
- tenant_
id str - The tenant ID of the user assigned identity.
- client
Id String - The clientId(aka appId) of the user assigned identity.
- principal
Id String - The principal ID of the user assigned identity.
- tenant
Id String - The tenant ID of the user assigned identity.
VirtualMachine, VirtualMachineArgs
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Virtual Machine Properties - Resource
Id string - ARM resource id of the underlying compute
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Virtual
Machine Properties - Resource
Id string - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Virtual
Machine Properties - resource
Id String - ARM resource id of the underlying compute
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Virtual
Machine Properties - resource
Id string - ARM resource id of the underlying compute
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Virtual
Machine Properties - resource_
id str - ARM resource id of the underlying compute
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- resource
Id String - ARM resource id of the underlying compute
VirtualMachineImage, VirtualMachineImageArgs
- Id string
- Virtual Machine image path
- Id string
- Virtual Machine image path
- id String
- Virtual Machine image path
- id string
- Virtual Machine image path
- id str
- Virtual Machine image path
- id String
- Virtual Machine image path
VirtualMachineImageResponse, VirtualMachineImageResponseArgs
- Id string
- Virtual Machine image path
- Id string
- Virtual Machine image path
- id String
- Virtual Machine image path
- id string
- Virtual Machine image path
- id str
- Virtual Machine image path
- id String
- Virtual Machine image path
VirtualMachineProperties, VirtualMachinePropertiesArgs
- Address string
- Public IP address of the virtual machine.
- Administrator
Account Pulumi.Azure Native. Machine Learning Services. Inputs. Virtual Machine Ssh Credentials - Admin credentials for virtual machine
- Ssh
Port int - Port open for ssh connections.
- Virtual
Machine stringSize - Virtual Machine size
- Address string
- Public IP address of the virtual machine.
- Administrator
Account VirtualMachine Ssh Credentials - Admin credentials for virtual machine
- Ssh
Port int - Port open for ssh connections.
- Virtual
Machine stringSize - Virtual Machine size
- address String
- Public IP address of the virtual machine.
- administrator
Account VirtualMachine Ssh Credentials - Admin credentials for virtual machine
- ssh
Port Integer - Port open for ssh connections.
- virtual
Machine StringSize - Virtual Machine size
- address string
- Public IP address of the virtual machine.
- administrator
Account VirtualMachine Ssh Credentials - Admin credentials for virtual machine
- ssh
Port number - Port open for ssh connections.
- virtual
Machine stringSize - Virtual Machine size
- address str
- Public IP address of the virtual machine.
- administrator_
account VirtualMachine Ssh Credentials - Admin credentials for virtual machine
- ssh_
port int - Port open for ssh connections.
- virtual_
machine_ strsize - Virtual Machine size
- address String
- Public IP address of the virtual machine.
- administrator
Account Property Map - Admin credentials for virtual machine
- ssh
Port Number - Port open for ssh connections.
- virtual
Machine StringSize - Virtual Machine size
VirtualMachineResponse, VirtualMachineResponseArgs
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors List<Pulumi.Azure Native. Machine Learning Services. Inputs. Machine Learning Service Error Response> - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Pulumi.
Azure Native. Machine Learning Services. Inputs. Virtual Machine Response Properties - Resource
Id string - ARM resource id of the underlying compute
- Is
Attached boolCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- Provisioning
Errors []MachineLearning Service Error Response - Errors during provisioning
- Provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- Compute
Location string - Location for the underlying compute
- Description string
- The description of the Machine Learning compute.
- Properties
Virtual
Machine Response Properties - Resource
Id string - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<MachineLearning Service Error Response> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties
Virtual
Machine Response Properties - resource
Id String - ARM resource id of the underlying compute
- is
Attached booleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors MachineLearning Service Error Response[] - Errors during provisioning
- provisioning
State string - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location string - Location for the underlying compute
- description string
- The description of the Machine Learning compute.
- properties
Virtual
Machine Response Properties - resource
Id string - ARM resource id of the underlying compute
- is_
attached_ boolcompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning_
errors Sequence[MachineLearning Service Error Response] - Errors during provisioning
- provisioning_
state str - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute_
location str - Location for the underlying compute
- description str
- The description of the Machine Learning compute.
- properties
Virtual
Machine Response Properties - resource_
id str - ARM resource id of the underlying compute
- is
Attached BooleanCompute - Indicating whether the compute was provisioned by user and brought from outside if true, or machine learning service provisioned it if false.
- provisioning
Errors List<Property Map> - Errors during provisioning
- provisioning
State String - The provision state of the cluster. Valid values are Unknown, Updating, Provisioning, Succeeded, and Failed.
- compute
Location String - Location for the underlying compute
- description String
- The description of the Machine Learning compute.
- properties Property Map
- resource
Id String - ARM resource id of the underlying compute
VirtualMachineResponseProperties, VirtualMachineResponsePropertiesArgs
- Address string
- Public IP address of the virtual machine.
- Administrator
Account Pulumi.Azure Native. Machine Learning Services. Inputs. Virtual Machine Ssh Credentials Response - Admin credentials for virtual machine
- Ssh
Port int - Port open for ssh connections.
- Virtual
Machine stringSize - Virtual Machine size
- Address string
- Public IP address of the virtual machine.
- Administrator
Account VirtualMachine Ssh Credentials Response - Admin credentials for virtual machine
- Ssh
Port int - Port open for ssh connections.
- Virtual
Machine stringSize - Virtual Machine size
- address String
- Public IP address of the virtual machine.
- administrator
Account VirtualMachine Ssh Credentials Response - Admin credentials for virtual machine
- ssh
Port Integer - Port open for ssh connections.
- virtual
Machine StringSize - Virtual Machine size
- address string
- Public IP address of the virtual machine.
- administrator
Account VirtualMachine Ssh Credentials Response - Admin credentials for virtual machine
- ssh
Port number - Port open for ssh connections.
- virtual
Machine stringSize - Virtual Machine size
- address str
- Public IP address of the virtual machine.
- administrator_
account VirtualMachine Ssh Credentials Response - Admin credentials for virtual machine
- ssh_
port int - Port open for ssh connections.
- virtual_
machine_ strsize - Virtual Machine size
- address String
- Public IP address of the virtual machine.
- administrator
Account Property Map - Admin credentials for virtual machine
- ssh
Port Number - Port open for ssh connections.
- virtual
Machine StringSize - Virtual Machine size
VirtualMachineSshCredentials, VirtualMachineSshCredentialsArgs
- Password string
- Password of admin account
- Private
Key stringData - Private key data
- Public
Key stringData - Public key data
- Username string
- Username of admin account
- Password string
- Password of admin account
- Private
Key stringData - Private key data
- Public
Key stringData - Public key data
- Username string
- Username of admin account
- password String
- Password of admin account
- private
Key StringData - Private key data
- public
Key StringData - Public key data
- username String
- Username of admin account
- password string
- Password of admin account
- private
Key stringData - Private key data
- public
Key stringData - Public key data
- username string
- Username of admin account
- password str
- Password of admin account
- private_
key_ strdata - Private key data
- public_
key_ strdata - Public key data
- username str
- Username of admin account
- password String
- Password of admin account
- private
Key StringData - Private key data
- public
Key StringData - Public key data
- username String
- Username of admin account
VirtualMachineSshCredentialsResponse, VirtualMachineSshCredentialsResponseArgs
- Password string
- Password of admin account
- Private
Key stringData - Private key data
- Public
Key stringData - Public key data
- Username string
- Username of admin account
- Password string
- Password of admin account
- Private
Key stringData - Private key data
- Public
Key stringData - Public key data
- Username string
- Username of admin account
- password String
- Password of admin account
- private
Key StringData - Private key data
- public
Key StringData - Public key data
- username String
- Username of admin account
- password string
- Password of admin account
- private
Key stringData - Private key data
- public
Key stringData - Public key data
- username string
- Username of admin account
- password str
- Password of admin account
- private_
key_ strdata - Private key data
- public_
key_ strdata - Public key data
- username str
- Username of admin account
- password String
- Password of admin account
- private
Key StringData - Private key data
- public
Key StringData - Public key data
- username String
- Username of admin account
VmPriority, VmPriorityArgs
- Dedicated
- Dedicated
- Low
Priority - LowPriority
- Vm
Priority Dedicated - Dedicated
- Vm
Priority Low Priority - LowPriority
- Dedicated
- Dedicated
- Low
Priority - LowPriority
- Dedicated
- Dedicated
- Low
Priority - LowPriority
- DEDICATED
- Dedicated
- LOW_PRIORITY
- LowPriority
- "Dedicated"
- Dedicated
- "Low
Priority" - LowPriority
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:machinelearningservices:MachineLearningCompute compute123 /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/computes/compute123
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0