azure-native.machinelearningservices.OnlineDeployment
Explore with Pulumi AI
API Version: 2021-03-01-preview.
Example Usage
CreateOrUpdate K8S Online Deployment.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var onlineDeployment = new AzureNative.MachineLearningServices.OnlineDeployment("onlineDeployment", new()
{
DeploymentName = "testDeployment",
EndpointName = "testEndpoint",
Identity = new AzureNative.MachineLearningServices.Inputs.ResourceIdentityArgs
{
Type = "UserAssigned",
UserAssignedIdentities =
{
{ "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity", new AzureNative.MachineLearningServices.Inputs.UserAssignedIdentityMetaArgs
{
ClientId = "string",
PrincipalId = "string",
} },
},
},
Kind = "string",
Location = "string",
Properties = new AzureNative.MachineLearningServices.Inputs.K8sOnlineDeploymentArgs
{
AppInsightsEnabled = true,
CodeConfiguration = new AzureNative.MachineLearningServices.Inputs.CodeConfigurationArgs
{
CodeId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1",
ScoringScript = "string",
},
ContainerResourceRequirements = new AzureNative.MachineLearningServices.Inputs.ContainerResourceRequirementsArgs
{
Cpu = 4,
CpuLimit = 4,
MemoryInGB = 64,
MemoryInGBLimit = 64,
},
Description = "string",
EndpointComputeType = "K8S",
EnvironmentId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123",
LivenessProbe = new AzureNative.MachineLearningServices.Inputs.ProbeSettingsArgs
{
FailureThreshold = 50,
InitialDelay = "PT1M",
Period = "PT1M",
SuccessThreshold = 50,
Timeout = "PT1M",
},
Model = new AzureNative.MachineLearningServices.Inputs.IdAssetReferenceArgs
{
AssetId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123",
ReferenceType = "Id",
},
Properties =
{
{ "additionalProp1", "string" },
{ "additionalProp2", "string" },
{ "additionalProp3", "string" },
},
RequestSettings = new AzureNative.MachineLearningServices.Inputs.OnlineRequestSettingsArgs
{
MaxConcurrentRequestsPerInstance = 5,
MaxQueueWait = "PT1M",
RequestTimeout = "PT1M",
},
ScaleSettings = new AzureNative.MachineLearningServices.Inputs.AutoScaleSettingsArgs
{
PollingInterval = "PT1M",
ScaleType = "Auto",
TargetUtilizationPercentage = 50,
},
},
ResourceGroupName = "testrg123",
Tags =
{
{ "additionalProp1", "string" },
{ "additionalProp2", "string" },
{ "additionalProp3", "string" },
},
WorkspaceName = "workspace123",
});
});
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.NewOnlineDeployment(ctx, "onlineDeployment", &machinelearningservices.OnlineDeploymentArgs{
DeploymentName: pulumi.String("testDeployment"),
EndpointName: pulumi.String("testEndpoint"),
Identity: machinelearningservices.ResourceIdentityResponse{
Type: pulumi.String("UserAssigned"),
UserAssignedIdentities: machinelearningservices.UserAssignedIdentityMetaMap{
"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity": &machinelearningservices.UserAssignedIdentityMetaArgs{
ClientId: pulumi.String("string"),
PrincipalId: pulumi.String("string"),
},
},
},
Kind: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: machinelearningservices.K8sOnlineDeployment{
AppInsightsEnabled: true,
CodeConfiguration: machinelearningservices.CodeConfiguration{
CodeId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1",
ScoringScript: "string",
},
ContainerResourceRequirements: machinelearningservices.ContainerResourceRequirements{
Cpu: 4,
CpuLimit: 4,
MemoryInGB: 64,
MemoryInGBLimit: 64,
},
Description: "string",
EndpointComputeType: "K8S",
EnvironmentId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123",
LivenessProbe: machinelearningservices.ProbeSettings{
FailureThreshold: 50,
InitialDelay: "PT1M",
Period: "PT1M",
SuccessThreshold: 50,
Timeout: "PT1M",
},
Model: machinelearningservices.IdAssetReference{
AssetId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123",
ReferenceType: "Id",
},
Properties: map[string]interface{}{
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string",
},
RequestSettings: machinelearningservices.OnlineRequestSettings{
MaxConcurrentRequestsPerInstance: 5,
MaxQueueWait: "PT1M",
RequestTimeout: "PT1M",
},
ScaleSettings: machinelearningservices.AutoScaleSettings{
PollingInterval: "PT1M",
ScaleType: "Auto",
TargetUtilizationPercentage: 50,
},
},
ResourceGroupName: pulumi.String("testrg123"),
Tags: pulumi.StringMap{
"additionalProp1": pulumi.String("string"),
"additionalProp2": pulumi.String("string"),
"additionalProp3": pulumi.String("string"),
},
WorkspaceName: pulumi.String("workspace123"),
})
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.OnlineDeployment;
import com.pulumi.azurenative.machinelearningservices.OnlineDeploymentArgs;
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 onlineDeployment = new OnlineDeployment("onlineDeployment", OnlineDeploymentArgs.builder()
.deploymentName("testDeployment")
.endpointName("testEndpoint")
.identity(Map.ofEntries(
Map.entry("type", "UserAssigned"),
Map.entry("userAssignedIdentities", Map.of("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity", Map.ofEntries(
Map.entry("clientId", "string"),
Map.entry("principalId", "string")
)))
))
.kind("string")
.location("string")
.properties(Map.ofEntries(
Map.entry("appInsightsEnabled", true),
Map.entry("codeConfiguration", Map.ofEntries(
Map.entry("codeId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1"),
Map.entry("scoringScript", "string")
)),
Map.entry("containerResourceRequirements", Map.ofEntries(
Map.entry("cpu", 4),
Map.entry("cpuLimit", 4),
Map.entry("memoryInGB", 64),
Map.entry("memoryInGBLimit", 64)
)),
Map.entry("description", "string"),
Map.entry("endpointComputeType", "K8S"),
Map.entry("environmentId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123"),
Map.entry("livenessProbe", Map.ofEntries(
Map.entry("failureThreshold", 50),
Map.entry("initialDelay", "PT1M"),
Map.entry("period", "PT1M"),
Map.entry("successThreshold", 50),
Map.entry("timeout", "PT1M")
)),
Map.entry("model", Map.ofEntries(
Map.entry("assetId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123"),
Map.entry("referenceType", "Id")
)),
Map.entry("properties", K8sOnlineDeploymentArgs.builder()
.additionalProp1("string")
.additionalProp2("string")
.additionalProp3("string")
.build()),
Map.entry("requestSettings", Map.ofEntries(
Map.entry("maxConcurrentRequestsPerInstance", 5),
Map.entry("maxQueueWait", "PT1M"),
Map.entry("requestTimeout", "PT1M")
)),
Map.entry("scaleSettings", Map.ofEntries(
Map.entry("pollingInterval", "PT1M"),
Map.entry("scaleType", "Auto"),
Map.entry("targetUtilizationPercentage", 50)
))
))
.resourceGroupName("testrg123")
.tags(Map.ofEntries(
Map.entry("additionalProp1", "string"),
Map.entry("additionalProp2", "string"),
Map.entry("additionalProp3", "string")
))
.workspaceName("workspace123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
online_deployment = azure_native.machinelearningservices.OnlineDeployment("onlineDeployment",
deployment_name="testDeployment",
endpoint_name="testEndpoint",
identity=azure_native.machinelearningservices.ResourceIdentityResponseArgs(
type="UserAssigned",
user_assigned_identities={
"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity": azure_native.machinelearningservices.UserAssignedIdentityMetaArgs(
client_id="string",
principal_id="string",
),
},
),
kind="string",
location="string",
properties=azure_native.machinelearningservices.K8sOnlineDeploymentArgs(
app_insights_enabled=True,
code_configuration=azure_native.machinelearningservices.CodeConfigurationArgs(
code_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1",
scoring_script="string",
),
container_resource_requirements=azure_native.machinelearningservices.ContainerResourceRequirementsArgs(
cpu=4,
cpu_limit=4,
memory_in_gb=64,
memory_in_gb_limit=64,
),
description="string",
endpoint_compute_type="K8S",
environment_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123",
liveness_probe=azure_native.machinelearningservices.ProbeSettingsArgs(
failure_threshold=50,
initial_delay="PT1M",
period="PT1M",
success_threshold=50,
timeout="PT1M",
),
model=azure_native.machinelearningservices.IdAssetReferenceArgs(
asset_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123",
reference_type="Id",
),
properties={
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string",
},
request_settings=azure_native.machinelearningservices.OnlineRequestSettingsArgs(
max_concurrent_requests_per_instance=5,
max_queue_wait="PT1M",
request_timeout="PT1M",
),
scale_settings=azure_native.machinelearningservices.AutoScaleSettingsArgs(
polling_interval="PT1M",
scale_type="Auto",
target_utilization_percentage=50,
),
),
resource_group_name="testrg123",
tags={
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string",
},
workspace_name="workspace123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const onlineDeployment = new azure_native.machinelearningservices.OnlineDeployment("onlineDeployment", {
deploymentName: "testDeployment",
endpointName: "testEndpoint",
identity: {
type: "UserAssigned",
userAssignedIdentities: {
"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity": {
clientId: "string",
principalId: "string",
},
},
},
kind: "string",
location: "string",
properties: {
appInsightsEnabled: true,
codeConfiguration: {
codeId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1",
scoringScript: "string",
},
containerResourceRequirements: {
cpu: 4,
cpuLimit: 4,
memoryInGB: 64,
memoryInGBLimit: 64,
},
description: "string",
endpointComputeType: "K8S",
environmentId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123",
livenessProbe: {
failureThreshold: 50,
initialDelay: "PT1M",
period: "PT1M",
successThreshold: 50,
timeout: "PT1M",
},
model: {
assetId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123",
referenceType: "Id",
},
properties: {
additionalProp1: "string",
additionalProp2: "string",
additionalProp3: "string",
},
requestSettings: {
maxConcurrentRequestsPerInstance: 5,
maxQueueWait: "PT1M",
requestTimeout: "PT1M",
},
scaleSettings: {
pollingInterval: "PT1M",
scaleType: "Auto",
targetUtilizationPercentage: 50,
},
},
resourceGroupName: "testrg123",
tags: {
additionalProp1: "string",
additionalProp2: "string",
additionalProp3: "string",
},
workspaceName: "workspace123",
});
resources:
onlineDeployment:
type: azure-native:machinelearningservices:OnlineDeployment
properties:
deploymentName: testDeployment
endpointName: testEndpoint
identity:
type: UserAssigned
userAssignedIdentities:
? /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity
: clientId: string
principalId: string
kind: string
location: string
properties:
appInsightsEnabled: true
codeConfiguration:
codeId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1
scoringScript: string
containerResourceRequirements:
cpu: 4
cpuLimit: 4
memoryInGB: 64
memoryInGBLimit: 64
description: string
endpointComputeType: K8S
environmentId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123
livenessProbe:
failureThreshold: 50
initialDelay: PT1M
period: PT1M
successThreshold: 50
timeout: PT1M
model:
assetId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123
referenceType: Id
properties:
additionalProp1: string
additionalProp2: string
additionalProp3: string
requestSettings:
maxConcurrentRequestsPerInstance: 5
maxQueueWait: PT1M
requestTimeout: PT1M
scaleSettings:
pollingInterval: PT1M
scaleType: Auto
targetUtilizationPercentage: 50
resourceGroupName: testrg123
tags:
additionalProp1: string
additionalProp2: string
additionalProp3: string
workspaceName: workspace123
CreateOrUpdate Managed Online Deployment.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var onlineDeployment = new AzureNative.MachineLearningServices.OnlineDeployment("onlineDeployment", new()
{
DeploymentName = "testDeployment",
EndpointName = "testEndpoint",
Identity = new AzureNative.MachineLearningServices.Inputs.ResourceIdentityArgs
{
Type = "UserAssigned",
UserAssignedIdentities =
{
{ "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity", new AzureNative.MachineLearningServices.Inputs.UserAssignedIdentityMetaArgs
{
ClientId = "string",
PrincipalId = "string",
} },
},
},
Kind = "string",
Location = "string",
Properties = new AzureNative.MachineLearningServices.Inputs.ManagedOnlineDeploymentArgs
{
AppInsightsEnabled = true,
CodeConfiguration = new AzureNative.MachineLearningServices.Inputs.CodeConfigurationArgs
{
CodeId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1",
ScoringScript = "string",
},
Description = "string",
EndpointComputeType = "Managed",
EnvironmentId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123",
LivenessProbe = new AzureNative.MachineLearningServices.Inputs.ProbeSettingsArgs
{
FailureThreshold = 50,
InitialDelay = "PT1M",
Period = "PT1M",
SuccessThreshold = 50,
Timeout = "PT1M",
},
Model = new AzureNative.MachineLearningServices.Inputs.IdAssetReferenceArgs
{
AssetId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123",
ReferenceType = "Id",
},
Properties =
{
{ "additionalProp1", "string" },
{ "additionalProp2", "string" },
{ "additionalProp3", "string" },
},
RequestSettings = new AzureNative.MachineLearningServices.Inputs.OnlineRequestSettingsArgs
{
MaxConcurrentRequestsPerInstance = 5,
MaxQueueWait = "PT1M",
RequestTimeout = "PT1M",
},
ScaleSettings = new AzureNative.MachineLearningServices.Inputs.AutoScaleSettingsArgs
{
PollingInterval = "PT1M",
ScaleType = "Auto",
TargetUtilizationPercentage = 50,
},
},
ResourceGroupName = "testrg123",
Tags =
{
{ "additionalProp1", "string" },
{ "additionalProp2", "string" },
{ "additionalProp3", "string" },
},
WorkspaceName = "workspace123",
});
});
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.NewOnlineDeployment(ctx, "onlineDeployment", &machinelearningservices.OnlineDeploymentArgs{
DeploymentName: pulumi.String("testDeployment"),
EndpointName: pulumi.String("testEndpoint"),
Identity: machinelearningservices.ResourceIdentityResponse{
Type: pulumi.String("UserAssigned"),
UserAssignedIdentities: machinelearningservices.UserAssignedIdentityMetaMap{
"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity": &machinelearningservices.UserAssignedIdentityMetaArgs{
ClientId: pulumi.String("string"),
PrincipalId: pulumi.String("string"),
},
},
},
Kind: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: machinelearningservices.ManagedOnlineDeployment{
AppInsightsEnabled: true,
CodeConfiguration: machinelearningservices.CodeConfiguration{
CodeId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1",
ScoringScript: "string",
},
Description: "string",
EndpointComputeType: "Managed",
EnvironmentId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123",
LivenessProbe: machinelearningservices.ProbeSettings{
FailureThreshold: 50,
InitialDelay: "PT1M",
Period: "PT1M",
SuccessThreshold: 50,
Timeout: "PT1M",
},
Model: machinelearningservices.IdAssetReference{
AssetId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123",
ReferenceType: "Id",
},
Properties: map[string]interface{}{
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string",
},
RequestSettings: machinelearningservices.OnlineRequestSettings{
MaxConcurrentRequestsPerInstance: 5,
MaxQueueWait: "PT1M",
RequestTimeout: "PT1M",
},
ScaleSettings: machinelearningservices.AutoScaleSettings{
PollingInterval: "PT1M",
ScaleType: "Auto",
TargetUtilizationPercentage: 50,
},
},
ResourceGroupName: pulumi.String("testrg123"),
Tags: pulumi.StringMap{
"additionalProp1": pulumi.String("string"),
"additionalProp2": pulumi.String("string"),
"additionalProp3": pulumi.String("string"),
},
WorkspaceName: pulumi.String("workspace123"),
})
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.OnlineDeployment;
import com.pulumi.azurenative.machinelearningservices.OnlineDeploymentArgs;
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 onlineDeployment = new OnlineDeployment("onlineDeployment", OnlineDeploymentArgs.builder()
.deploymentName("testDeployment")
.endpointName("testEndpoint")
.identity(Map.ofEntries(
Map.entry("type", "UserAssigned"),
Map.entry("userAssignedIdentities", Map.of("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity", Map.ofEntries(
Map.entry("clientId", "string"),
Map.entry("principalId", "string")
)))
))
.kind("string")
.location("string")
.properties(Map.ofEntries(
Map.entry("appInsightsEnabled", true),
Map.entry("codeConfiguration", Map.ofEntries(
Map.entry("codeId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1"),
Map.entry("scoringScript", "string")
)),
Map.entry("description", "string"),
Map.entry("endpointComputeType", "Managed"),
Map.entry("environmentId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123"),
Map.entry("livenessProbe", Map.ofEntries(
Map.entry("failureThreshold", 50),
Map.entry("initialDelay", "PT1M"),
Map.entry("period", "PT1M"),
Map.entry("successThreshold", 50),
Map.entry("timeout", "PT1M")
)),
Map.entry("model", Map.ofEntries(
Map.entry("assetId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123"),
Map.entry("referenceType", "Id")
)),
Map.entry("properties", K8sOnlineDeploymentArgs.builder()
.additionalProp1("string")
.additionalProp2("string")
.additionalProp3("string")
.build()),
Map.entry("requestSettings", Map.ofEntries(
Map.entry("maxConcurrentRequestsPerInstance", 5),
Map.entry("maxQueueWait", "PT1M"),
Map.entry("requestTimeout", "PT1M")
)),
Map.entry("scaleSettings", Map.ofEntries(
Map.entry("pollingInterval", "PT1M"),
Map.entry("scaleType", "Auto"),
Map.entry("targetUtilizationPercentage", 50)
))
))
.resourceGroupName("testrg123")
.tags(Map.ofEntries(
Map.entry("additionalProp1", "string"),
Map.entry("additionalProp2", "string"),
Map.entry("additionalProp3", "string")
))
.workspaceName("workspace123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
online_deployment = azure_native.machinelearningservices.OnlineDeployment("onlineDeployment",
deployment_name="testDeployment",
endpoint_name="testEndpoint",
identity=azure_native.machinelearningservices.ResourceIdentityResponseArgs(
type="UserAssigned",
user_assigned_identities={
"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity": azure_native.machinelearningservices.UserAssignedIdentityMetaArgs(
client_id="string",
principal_id="string",
),
},
),
kind="string",
location="string",
properties=azure_native.machinelearningservices.ManagedOnlineDeploymentArgs(
app_insights_enabled=True,
code_configuration=azure_native.machinelearningservices.CodeConfigurationArgs(
code_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1",
scoring_script="string",
),
description="string",
endpoint_compute_type="Managed",
environment_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123",
liveness_probe=azure_native.machinelearningservices.ProbeSettingsArgs(
failure_threshold=50,
initial_delay="PT1M",
period="PT1M",
success_threshold=50,
timeout="PT1M",
),
model=azure_native.machinelearningservices.IdAssetReferenceArgs(
asset_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123",
reference_type="Id",
),
properties={
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string",
},
request_settings=azure_native.machinelearningservices.OnlineRequestSettingsArgs(
max_concurrent_requests_per_instance=5,
max_queue_wait="PT1M",
request_timeout="PT1M",
),
scale_settings=azure_native.machinelearningservices.AutoScaleSettingsArgs(
polling_interval="PT1M",
scale_type="Auto",
target_utilization_percentage=50,
),
),
resource_group_name="testrg123",
tags={
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string",
},
workspace_name="workspace123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const onlineDeployment = new azure_native.machinelearningservices.OnlineDeployment("onlineDeployment", {
deploymentName: "testDeployment",
endpointName: "testEndpoint",
identity: {
type: "UserAssigned",
userAssignedIdentities: {
"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity": {
clientId: "string",
principalId: "string",
},
},
},
kind: "string",
location: "string",
properties: {
appInsightsEnabled: true,
codeConfiguration: {
codeId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1",
scoringScript: "string",
},
description: "string",
endpointComputeType: "Managed",
environmentId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123",
livenessProbe: {
failureThreshold: 50,
initialDelay: "PT1M",
period: "PT1M",
successThreshold: 50,
timeout: "PT1M",
},
model: {
assetId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123",
referenceType: "Id",
},
properties: {
additionalProp1: "string",
additionalProp2: "string",
additionalProp3: "string",
},
requestSettings: {
maxConcurrentRequestsPerInstance: 5,
maxQueueWait: "PT1M",
requestTimeout: "PT1M",
},
scaleSettings: {
pollingInterval: "PT1M",
scaleType: "Auto",
targetUtilizationPercentage: 50,
},
},
resourceGroupName: "testrg123",
tags: {
additionalProp1: "string",
additionalProp2: "string",
additionalProp3: "string",
},
workspaceName: "workspace123",
});
resources:
onlineDeployment:
type: azure-native:machinelearningservices:OnlineDeployment
properties:
deploymentName: testDeployment
endpointName: testEndpoint
identity:
type: UserAssigned
userAssignedIdentities:
? /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myuseridentity
: clientId: string
principalId: string
kind: string
location: string
properties:
appInsightsEnabled: true
codeConfiguration:
codeId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/codes/code123/versions/1
scoringScript: string
description: string
endpointComputeType: Managed
environmentId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/environments/env123
livenessProbe:
failureThreshold: 50
initialDelay: PT1M
period: PT1M
successThreshold: 50
timeout: PT1M
model:
assetId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/resourceGroup-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/models/model123
referenceType: Id
properties:
additionalProp1: string
additionalProp2: string
additionalProp3: string
requestSettings:
maxConcurrentRequestsPerInstance: 5
maxQueueWait: PT1M
requestTimeout: PT1M
scaleSettings:
pollingInterval: PT1M
scaleType: Auto
targetUtilizationPercentage: 50
resourceGroupName: testrg123
tags:
additionalProp1: string
additionalProp2: string
additionalProp3: string
workspaceName: workspace123
Create OnlineDeployment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OnlineDeployment(name: string, args: OnlineDeploymentArgs, opts?: CustomResourceOptions);
@overload
def OnlineDeployment(resource_name: str,
args: OnlineDeploymentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OnlineDeployment(resource_name: str,
opts: Optional[ResourceOptions] = None,
endpoint_name: Optional[str] = None,
properties: Optional[Union[K8sOnlineDeploymentArgs, ManagedOnlineDeploymentArgs]] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
deployment_name: Optional[str] = None,
identity: Optional[ResourceIdentityArgs] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewOnlineDeployment(ctx *Context, name string, args OnlineDeploymentArgs, opts ...ResourceOption) (*OnlineDeployment, error)
public OnlineDeployment(string name, OnlineDeploymentArgs args, CustomResourceOptions? opts = null)
public OnlineDeployment(String name, OnlineDeploymentArgs args)
public OnlineDeployment(String name, OnlineDeploymentArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:OnlineDeployment
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 OnlineDeploymentArgs
- 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 OnlineDeploymentArgs
- 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 OnlineDeploymentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OnlineDeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OnlineDeploymentArgs
- 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 onlineDeploymentResource = new AzureNative.Machinelearningservices.OnlineDeployment("onlineDeploymentResource", new()
{
EndpointName = "string",
Properties =
{
{ "endpointComputeType", "K8S" },
{ "appInsightsEnabled", false },
{ "codeConfiguration",
{
{ "scoringScript", "string" },
{ "codeId", "string" },
} },
{ "containerResourceRequirements",
{
{ "cpu", 0 },
{ "cpuLimit", 0 },
{ "fpga", 0 },
{ "gpu", 0 },
{ "memoryInGB", 0 },
{ "memoryInGBLimit", 0 },
} },
{ "description", "string" },
{ "environmentId", "string" },
{ "environmentVariables",
{
{ "string", "string" },
} },
{ "livenessProbe",
{
{ "failureThreshold", 0 },
{ "initialDelay", "string" },
{ "period", "string" },
{ "successThreshold", 0 },
{ "timeout", "string" },
} },
{ "model",
{
{ "referenceType", "DataPath" },
{ "datastoreId", "string" },
{ "path", "string" },
} },
{ "properties",
{
{ "string", "string" },
} },
{ "requestSettings",
{
{ "maxConcurrentRequestsPerInstance", 0 },
{ "maxQueueWait", "string" },
{ "requestTimeout", "string" },
} },
{ "scaleSettings",
{
{ "scaleType", "Auto" },
{ "maxInstances", 0 },
{ "minInstances", 0 },
{ "pollingInterval", "string" },
{ "targetUtilizationPercentage", 0 },
} },
},
ResourceGroupName = "string",
WorkspaceName = "string",
DeploymentName = "string",
Identity =
{
{ "type", "string" },
{ "userAssignedIdentities",
{
{ "string",
{
{ "clientId", "string" },
{ "principalId", "string" },
} },
} },
},
Kind = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := machinelearningservices.NewOnlineDeployment(ctx, "onlineDeploymentResource", &machinelearningservices.OnlineDeploymentArgs{
EndpointName: "string",
Properties: map[string]interface{}{
"endpointComputeType": "K8S",
"appInsightsEnabled": false,
"codeConfiguration": map[string]interface{}{
"scoringScript": "string",
"codeId": "string",
},
"containerResourceRequirements": map[string]interface{}{
"cpu": 0,
"cpuLimit": 0,
"fpga": 0,
"gpu": 0,
"memoryInGB": 0,
"memoryInGBLimit": 0,
},
"description": "string",
"environmentId": "string",
"environmentVariables": map[string]interface{}{
"string": "string",
},
"livenessProbe": map[string]interface{}{
"failureThreshold": 0,
"initialDelay": "string",
"period": "string",
"successThreshold": 0,
"timeout": "string",
},
"model": map[string]interface{}{
"referenceType": "DataPath",
"datastoreId": "string",
"path": "string",
},
"properties": map[string]interface{}{
"string": "string",
},
"requestSettings": map[string]interface{}{
"maxConcurrentRequestsPerInstance": 0,
"maxQueueWait": "string",
"requestTimeout": "string",
},
"scaleSettings": map[string]interface{}{
"scaleType": "Auto",
"maxInstances": 0,
"minInstances": 0,
"pollingInterval": "string",
"targetUtilizationPercentage": 0,
},
},
ResourceGroupName: "string",
WorkspaceName: "string",
DeploymentName: "string",
Identity: map[string]interface{}{
"type": "string",
"userAssignedIdentities": map[string]interface{}{
"string": map[string]interface{}{
"clientId": "string",
"principalId": "string",
},
},
},
Kind: "string",
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var onlineDeploymentResource = new OnlineDeployment("onlineDeploymentResource", OnlineDeploymentArgs.builder()
.endpointName("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.workspaceName("string")
.deploymentName("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.kind("string")
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
online_deployment_resource = azure_native.machinelearningservices.OnlineDeployment("onlineDeploymentResource",
endpoint_name=string,
properties={
endpointComputeType: K8S,
appInsightsEnabled: False,
codeConfiguration: {
scoringScript: string,
codeId: string,
},
containerResourceRequirements: {
cpu: 0,
cpuLimit: 0,
fpga: 0,
gpu: 0,
memoryInGB: 0,
memoryInGBLimit: 0,
},
description: string,
environmentId: string,
environmentVariables: {
string: string,
},
livenessProbe: {
failureThreshold: 0,
initialDelay: string,
period: string,
successThreshold: 0,
timeout: string,
},
model: {
referenceType: DataPath,
datastoreId: string,
path: string,
},
properties: {
string: string,
},
requestSettings: {
maxConcurrentRequestsPerInstance: 0,
maxQueueWait: string,
requestTimeout: string,
},
scaleSettings: {
scaleType: Auto,
maxInstances: 0,
minInstances: 0,
pollingInterval: string,
targetUtilizationPercentage: 0,
},
},
resource_group_name=string,
workspace_name=string,
deployment_name=string,
identity={
type: string,
userAssignedIdentities: {
string: {
clientId: string,
principalId: string,
},
},
},
kind=string,
location=string,
tags={
string: string,
})
const onlineDeploymentResource = new azure_native.machinelearningservices.OnlineDeployment("onlineDeploymentResource", {
endpointName: "string",
properties: {
endpointComputeType: "K8S",
appInsightsEnabled: false,
codeConfiguration: {
scoringScript: "string",
codeId: "string",
},
containerResourceRequirements: {
cpu: 0,
cpuLimit: 0,
fpga: 0,
gpu: 0,
memoryInGB: 0,
memoryInGBLimit: 0,
},
description: "string",
environmentId: "string",
environmentVariables: {
string: "string",
},
livenessProbe: {
failureThreshold: 0,
initialDelay: "string",
period: "string",
successThreshold: 0,
timeout: "string",
},
model: {
referenceType: "DataPath",
datastoreId: "string",
path: "string",
},
properties: {
string: "string",
},
requestSettings: {
maxConcurrentRequestsPerInstance: 0,
maxQueueWait: "string",
requestTimeout: "string",
},
scaleSettings: {
scaleType: "Auto",
maxInstances: 0,
minInstances: 0,
pollingInterval: "string",
targetUtilizationPercentage: 0,
},
},
resourceGroupName: "string",
workspaceName: "string",
deploymentName: "string",
identity: {
type: "string",
userAssignedIdentities: {
string: {
clientId: "string",
principalId: "string",
},
},
},
kind: "string",
location: "string",
tags: {
string: "string",
},
});
type: azure-native:machinelearningservices:OnlineDeployment
properties:
deploymentName: string
endpointName: string
identity:
type: string
userAssignedIdentities:
string:
clientId: string
principalId: string
kind: string
location: string
properties:
appInsightsEnabled: false
codeConfiguration:
codeId: string
scoringScript: string
containerResourceRequirements:
cpu: 0
cpuLimit: 0
fpga: 0
gpu: 0
memoryInGB: 0
memoryInGBLimit: 0
description: string
endpointComputeType: K8S
environmentId: string
environmentVariables:
string: string
livenessProbe:
failureThreshold: 0
initialDelay: string
period: string
successThreshold: 0
timeout: string
model:
datastoreId: string
path: string
referenceType: DataPath
properties:
string: string
requestSettings:
maxConcurrentRequestsPerInstance: 0
maxQueueWait: string
requestTimeout: string
scaleSettings:
maxInstances: 0
minInstances: 0
pollingInterval: string
scaleType: Auto
targetUtilizationPercentage: 0
resourceGroupName: string
tags:
string: string
workspaceName: string
OnlineDeployment 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 OnlineDeployment resource accepts the following input properties:
- Endpoint
Name string - Inference endpoint name.
- Properties
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. K8s Online Deployment Azure Native. Machine Learning Services. Inputs. Managed Online Deployment - [Required] Additional attributes of the entity.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Deployment
Name string - Inference Endpoint Deployment name.
- Identity
Pulumi.
Azure Native. Machine Learning Services. Inputs. Resource Identity - Service identity associated with a resource.
- Kind string
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Endpoint
Name string - Inference endpoint name.
- Properties
K8s
Online | ManagedDeployment Args Online Deployment Args - [Required] Additional attributes of the entity.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Deployment
Name string - Inference Endpoint Deployment name.
- Identity
Resource
Identity Args - Service identity associated with a resource.
- Kind string
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- endpoint
Name String - Inference endpoint name.
- properties
K8s
Online | ManagedDeployment Online Deployment - [Required] Additional attributes of the entity.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Name of Azure Machine Learning workspace.
- deployment
Name String - Inference Endpoint Deployment name.
- identity
Resource
Identity - Service identity associated with a resource.
- kind String
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- endpoint
Name string - Inference endpoint name.
- properties
K8s
Online | ManagedDeployment Online Deployment - [Required] Additional attributes of the entity.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- workspace
Name string - Name of Azure Machine Learning workspace.
- deployment
Name string - Inference Endpoint Deployment name.
- identity
Resource
Identity - Service identity associated with a resource.
- kind string
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- endpoint_
name str - Inference endpoint name.
- properties
K8s
Online | ManagedDeployment Args Online Deployment Args - [Required] Additional attributes of the entity.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- workspace_
name str - Name of Azure Machine Learning workspace.
- deployment_
name str - Inference Endpoint Deployment name.
- identity
Resource
Identity Args - Service identity associated with a resource.
- kind str
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- endpoint
Name String - Inference endpoint name.
- properties Property Map | Property Map
- [Required] Additional attributes of the entity.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Name of Azure Machine Learning workspace.
- deployment
Name String - Inference Endpoint Deployment name.
- identity Property Map
- Service identity associated with a resource.
- kind String
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type.
- location String
- The geo-location where the resource lives
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the OnlineDeployment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response - System data associated with resource provider
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - System data associated with resource provider
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - System data associated with resource provider
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - System data associated with resource provider
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - System data associated with resource provider
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - System data associated with resource provider
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AutoScaleSettings, AutoScaleSettingsArgs
- Max
Instances int - Maximum number of instances for this deployment.
- Min
Instances int - Minimum number of instances for this deployment.
- Polling
Interval string - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- Target
Utilization intPercentage - Target CPU usage for the autoscaler.
- Max
Instances int - Maximum number of instances for this deployment.
- Min
Instances int - Minimum number of instances for this deployment.
- Polling
Interval string - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- Target
Utilization intPercentage - Target CPU usage for the autoscaler.
- max
Instances Integer - Maximum number of instances for this deployment.
- min
Instances Integer - Minimum number of instances for this deployment.
- polling
Interval String - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- target
Utilization IntegerPercentage - Target CPU usage for the autoscaler.
- max
Instances number - Maximum number of instances for this deployment.
- min
Instances number - Minimum number of instances for this deployment.
- polling
Interval string - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- target
Utilization numberPercentage - Target CPU usage for the autoscaler.
- max_
instances int - Maximum number of instances for this deployment.
- min_
instances int - Minimum number of instances for this deployment.
- polling_
interval str - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- target_
utilization_ intpercentage - Target CPU usage for the autoscaler.
- max
Instances Number - Maximum number of instances for this deployment.
- min
Instances Number - Minimum number of instances for this deployment.
- polling
Interval String - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- target
Utilization NumberPercentage - Target CPU usage for the autoscaler.
AutoScaleSettingsResponse, AutoScaleSettingsResponseArgs
- Max
Instances int - Maximum number of instances for this deployment.
- Min
Instances int - Minimum number of instances for this deployment.
- Polling
Interval string - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- Target
Utilization intPercentage - Target CPU usage for the autoscaler.
- Max
Instances int - Maximum number of instances for this deployment.
- Min
Instances int - Minimum number of instances for this deployment.
- Polling
Interval string - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- Target
Utilization intPercentage - Target CPU usage for the autoscaler.
- max
Instances Integer - Maximum number of instances for this deployment.
- min
Instances Integer - Minimum number of instances for this deployment.
- polling
Interval String - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- target
Utilization IntegerPercentage - Target CPU usage for the autoscaler.
- max
Instances number - Maximum number of instances for this deployment.
- min
Instances number - Minimum number of instances for this deployment.
- polling
Interval string - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- target
Utilization numberPercentage - Target CPU usage for the autoscaler.
- max_
instances int - Maximum number of instances for this deployment.
- min_
instances int - Minimum number of instances for this deployment.
- polling_
interval str - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- target_
utilization_ intpercentage - Target CPU usage for the autoscaler.
- max
Instances Number - Maximum number of instances for this deployment.
- min
Instances Number - Minimum number of instances for this deployment.
- polling
Interval String - The polling interval in ISO 8691 format. Only supports duration with precision as low as Seconds.
- target
Utilization NumberPercentage - Target CPU usage for the autoscaler.
CodeConfiguration, CodeConfigurationArgs
- Scoring
Script string - [Required] The script to execute on startup. eg. "score.py"
- Code
Id string - ARM resource ID of the code asset.
- Scoring
Script string - [Required] The script to execute on startup. eg. "score.py"
- Code
Id string - ARM resource ID of the code asset.
- scoring
Script String - [Required] The script to execute on startup. eg. "score.py"
- code
Id String - ARM resource ID of the code asset.
- scoring
Script string - [Required] The script to execute on startup. eg. "score.py"
- code
Id string - ARM resource ID of the code asset.
- scoring_
script str - [Required] The script to execute on startup. eg. "score.py"
- code_
id str - ARM resource ID of the code asset.
- scoring
Script String - [Required] The script to execute on startup. eg. "score.py"
- code
Id String - ARM resource ID of the code asset.
CodeConfigurationResponse, CodeConfigurationResponseArgs
- Scoring
Script string - [Required] The script to execute on startup. eg. "score.py"
- Code
Id string - ARM resource ID of the code asset.
- Scoring
Script string - [Required] The script to execute on startup. eg. "score.py"
- Code
Id string - ARM resource ID of the code asset.
- scoring
Script String - [Required] The script to execute on startup. eg. "score.py"
- code
Id String - ARM resource ID of the code asset.
- scoring
Script string - [Required] The script to execute on startup. eg. "score.py"
- code
Id string - ARM resource ID of the code asset.
- scoring_
script str - [Required] The script to execute on startup. eg. "score.py"
- code_
id str - ARM resource ID of the code asset.
- scoring
Script String - [Required] The script to execute on startup. eg. "score.py"
- code
Id String - ARM resource ID of the code asset.
ContainerResourceRequirements, ContainerResourceRequirementsArgs
- Cpu double
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Cpu
Limit double - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Fpga int
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- Gpu int
- The number of GPU cores in the container.
- Memory
In doubleGB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Memory
In doubleGBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Cpu float64
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Cpu
Limit float64 - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Fpga int
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- Gpu int
- The number of GPU cores in the container.
- Memory
In float64GB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Memory
In float64GBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu Double
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu
Limit Double - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- fpga Integer
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- gpu Integer
- The number of GPU cores in the container.
- memory
In DoubleGB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- memory
In DoubleGBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu number
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu
Limit number - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- fpga number
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- gpu number
- The number of GPU cores in the container.
- memory
In numberGB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- memory
In numberGBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu float
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu_
limit float - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- fpga int
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- gpu int
- The number of GPU cores in the container.
- memory_
in_ floatgb - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- memory_
in_ floatgb_ limit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu Number
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu
Limit Number - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- fpga Number
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- gpu Number
- The number of GPU cores in the container.
- memory
In NumberGB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- memory
In NumberGBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
ContainerResourceRequirementsResponse, ContainerResourceRequirementsResponseArgs
- Cpu double
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Cpu
Limit double - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Fpga int
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- Gpu int
- The number of GPU cores in the container.
- Memory
In doubleGB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Memory
In doubleGBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Cpu float64
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Cpu
Limit float64 - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Fpga int
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- Gpu int
- The number of GPU cores in the container.
- Memory
In float64GB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- Memory
In float64GBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu Double
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu
Limit Double - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- fpga Integer
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- gpu Integer
- The number of GPU cores in the container.
- memory
In DoubleGB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- memory
In DoubleGBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu number
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu
Limit number - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- fpga number
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- gpu number
- The number of GPU cores in the container.
- memory
In numberGB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- memory
In numberGBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu float
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu_
limit float - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- fpga int
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- gpu int
- The number of GPU cores in the container.
- memory_
in_ floatgb - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- memory_
in_ floatgb_ limit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu Number
- The minimum amount of CPU cores to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- cpu
Limit Number - The maximum amount of CPU cores allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- fpga Number
- The number of FPGA PCIE devices exposed to the container. Must be multiple of 2.
- gpu Number
- The number of GPU cores in the container.
- memory
In NumberGB - The minimum amount of memory (in GB) to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
- memory
In NumberGBLimit - The maximum amount of memory (in GB) allowed to be used by the container. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
DataPathAssetReference, DataPathAssetReferenceArgs
- Datastore
Id string - ARM resource ID of the datastore where the asset is located.
- Path string
- The path of the file/directory in the datastore.
- Datastore
Id string - ARM resource ID of the datastore where the asset is located.
- Path string
- The path of the file/directory in the datastore.
- datastore
Id String - ARM resource ID of the datastore where the asset is located.
- path String
- The path of the file/directory in the datastore.
- datastore
Id string - ARM resource ID of the datastore where the asset is located.
- path string
- The path of the file/directory in the datastore.
- datastore_
id str - ARM resource ID of the datastore where the asset is located.
- path str
- The path of the file/directory in the datastore.
- datastore
Id String - ARM resource ID of the datastore where the asset is located.
- path String
- The path of the file/directory in the datastore.
DataPathAssetReferenceResponse, DataPathAssetReferenceResponseArgs
- Datastore
Id string - ARM resource ID of the datastore where the asset is located.
- Path string
- The path of the file/directory in the datastore.
- Datastore
Id string - ARM resource ID of the datastore where the asset is located.
- Path string
- The path of the file/directory in the datastore.
- datastore
Id String - ARM resource ID of the datastore where the asset is located.
- path String
- The path of the file/directory in the datastore.
- datastore
Id string - ARM resource ID of the datastore where the asset is located.
- path string
- The path of the file/directory in the datastore.
- datastore_
id str - ARM resource ID of the datastore where the asset is located.
- path str
- The path of the file/directory in the datastore.
- datastore
Id String - ARM resource ID of the datastore where the asset is located.
- path String
- The path of the file/directory in the datastore.
IdAssetReference, IdAssetReferenceArgs
- Asset
Id string - [Required] ARM resource ID of the asset.
- Asset
Id string - [Required] ARM resource ID of the asset.
- asset
Id String - [Required] ARM resource ID of the asset.
- asset
Id string - [Required] ARM resource ID of the asset.
- asset_
id str - [Required] ARM resource ID of the asset.
- asset
Id String - [Required] ARM resource ID of the asset.
IdAssetReferenceResponse, IdAssetReferenceResponseArgs
- Asset
Id string - [Required] ARM resource ID of the asset.
- Asset
Id string - [Required] ARM resource ID of the asset.
- asset
Id String - [Required] ARM resource ID of the asset.
- asset
Id string - [Required] ARM resource ID of the asset.
- asset_
id str - [Required] ARM resource ID of the asset.
- asset
Id String - [Required] ARM resource ID of the asset.
K8sOnlineDeployment, K8sOnlineDeploymentArgs
- App
Insights boolEnabled - If true, enables Application Insights logging.
- Code
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. Code Configuration - Code configuration for the endpoint deployment.
- Container
Resource Pulumi.Requirements Azure Native. Machine Learning Services. Inputs. Container Resource Requirements - Resource requirements for each container instance within an online deployment.
- Description string
- Description of the endpoint deployment.
- Environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- Environment
Variables Dictionary<string, string> - Environment variables configuration for the deployment.
- Liveness
Probe Pulumi.Azure Native. Machine Learning Services. Inputs. Probe Settings - Deployment container liveness/readiness probe configuration.
- Model
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Data Path Asset Reference Azure | Pulumi.Native. Machine Learning Services. Inputs. Id Asset Reference Azure Native. Machine Learning Services. Inputs. Output Path Asset Reference - Reference to the model asset for the endpoint deployment.
- Properties Dictionary<string, string>
- Property dictionary. Properties can be added, but not removed or altered.
- Request
Settings Pulumi.Azure Native. Machine Learning Services. Inputs. Online Request Settings - Online deployment scoring requests configuration.
- Scale
Settings Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Auto Scale Settings Azure Native. Machine Learning Services. Inputs. Manual Scale Settings - Online deployment scaling configuration.
- App
Insights boolEnabled - If true, enables Application Insights logging.
- Code
Configuration CodeConfiguration - Code configuration for the endpoint deployment.
- Container
Resource ContainerRequirements Resource Requirements - Resource requirements for each container instance within an online deployment.
- Description string
- Description of the endpoint deployment.
- Environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- Environment
Variables map[string]string - Environment variables configuration for the deployment.
- Liveness
Probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- Model
Data
Path | IdAsset Reference Asset | OutputReference Path Asset Reference - Reference to the model asset for the endpoint deployment.
- Properties map[string]string
- Property dictionary. Properties can be added, but not removed or altered.
- Request
Settings OnlineRequest Settings - Online deployment scoring requests configuration.
- Scale
Settings AutoScale | ManualSettings Scale Settings - Online deployment scaling configuration.
- app
Insights BooleanEnabled - If true, enables Application Insights logging.
- code
Configuration CodeConfiguration - Code configuration for the endpoint deployment.
- container
Resource ContainerRequirements Resource Requirements - Resource requirements for each container instance within an online deployment.
- description String
- Description of the endpoint deployment.
- environment
Id String - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables Map<String,String> - Environment variables configuration for the deployment.
- liveness
Probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Asset | OutputReference Path Asset Reference - Reference to the model asset for the endpoint deployment.
- properties Map<String,String>
- Property dictionary. Properties can be added, but not removed or altered.
- request
Settings OnlineRequest Settings - Online deployment scoring requests configuration.
- scale
Settings AutoScale | ManualSettings Scale Settings - Online deployment scaling configuration.
- app
Insights booleanEnabled - If true, enables Application Insights logging.
- code
Configuration CodeConfiguration - Code configuration for the endpoint deployment.
- container
Resource ContainerRequirements Resource Requirements - Resource requirements for each container instance within an online deployment.
- description string
- Description of the endpoint deployment.
- environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables {[key: string]: string} - Environment variables configuration for the deployment.
- liveness
Probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Asset | OutputReference Path Asset Reference - Reference to the model asset for the endpoint deployment.
- properties {[key: string]: string}
- Property dictionary. Properties can be added, but not removed or altered.
- request
Settings OnlineRequest Settings - Online deployment scoring requests configuration.
- scale
Settings AutoScale | ManualSettings Scale Settings - Online deployment scaling configuration.
- app_
insights_ boolenabled - If true, enables Application Insights logging.
- code_
configuration CodeConfiguration - Code configuration for the endpoint deployment.
- container_
resource_ Containerrequirements Resource Requirements - Resource requirements for each container instance within an online deployment.
- description str
- Description of the endpoint deployment.
- environment_
id str - ARM resource ID of the environment specification for the endpoint deployment.
- environment_
variables Mapping[str, str] - Environment variables configuration for the deployment.
- liveness_
probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Asset | OutputReference Path Asset Reference - Reference to the model asset for the endpoint deployment.
- properties Mapping[str, str]
- Property dictionary. Properties can be added, but not removed or altered.
- request_
settings OnlineRequest Settings - Online deployment scoring requests configuration.
- scale_
settings AutoScale | ManualSettings Scale Settings - Online deployment scaling configuration.
- app
Insights BooleanEnabled - If true, enables Application Insights logging.
- code
Configuration Property Map - Code configuration for the endpoint deployment.
- container
Resource Property MapRequirements - Resource requirements for each container instance within an online deployment.
- description String
- Description of the endpoint deployment.
- environment
Id String - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables Map<String> - Environment variables configuration for the deployment.
- liveness
Probe Property Map - Deployment container liveness/readiness probe configuration.
- model Property Map | Property Map | Property Map
- Reference to the model asset for the endpoint deployment.
- properties Map<String>
- Property dictionary. Properties can be added, but not removed or altered.
- request
Settings Property Map - Online deployment scoring requests configuration.
- scale
Settings Property Map | Property Map - Online deployment scaling configuration.
K8sOnlineDeploymentResponse, K8sOnlineDeploymentResponseArgs
- Provisioning
State string - Provisioning state for the endpoint deployment.
- App
Insights boolEnabled - If true, enables Application Insights logging.
- Code
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. Code Configuration Response - Code configuration for the endpoint deployment.
- Container
Resource Pulumi.Requirements Azure Native. Machine Learning Services. Inputs. Container Resource Requirements Response - Resource requirements for each container instance within an online deployment.
- Description string
- Description of the endpoint deployment.
- Environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- Environment
Variables Dictionary<string, string> - Environment variables configuration for the deployment.
- Liveness
Probe Pulumi.Azure Native. Machine Learning Services. Inputs. Probe Settings Response - Deployment container liveness/readiness probe configuration.
- Model
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Data Path Asset Reference Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Id Asset Reference Response Azure Native. Machine Learning Services. Inputs. Output Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- Properties Dictionary<string, string>
- Property dictionary. Properties can be added, but not removed or altered.
- Request
Settings Pulumi.Azure Native. Machine Learning Services. Inputs. Online Request Settings Response - Online deployment scoring requests configuration.
- Scale
Settings Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Auto Scale Settings Response Azure Native. Machine Learning Services. Inputs. Manual Scale Settings Response - Online deployment scaling configuration.
- Provisioning
State string - Provisioning state for the endpoint deployment.
- App
Insights boolEnabled - If true, enables Application Insights logging.
- Code
Configuration CodeConfiguration Response - Code configuration for the endpoint deployment.
- Container
Resource ContainerRequirements Resource Requirements Response - Resource requirements for each container instance within an online deployment.
- Description string
- Description of the endpoint deployment.
- Environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- Environment
Variables map[string]string - Environment variables configuration for the deployment.
- Liveness
Probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- Model
Data
Path | IdAsset Reference Response Asset | OutputReference Response Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- Properties map[string]string
- Property dictionary. Properties can be added, but not removed or altered.
- Request
Settings OnlineRequest Settings Response - Online deployment scoring requests configuration.
- Scale
Settings AutoScale | ManualSettings Response Scale Settings Response - Online deployment scaling configuration.
- provisioning
State String - Provisioning state for the endpoint deployment.
- app
Insights BooleanEnabled - If true, enables Application Insights logging.
- code
Configuration CodeConfiguration Response - Code configuration for the endpoint deployment.
- container
Resource ContainerRequirements Resource Requirements Response - Resource requirements for each container instance within an online deployment.
- description String
- Description of the endpoint deployment.
- environment
Id String - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables Map<String,String> - Environment variables configuration for the deployment.
- liveness
Probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Response Asset | OutputReference Response Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- properties Map<String,String>
- Property dictionary. Properties can be added, but not removed or altered.
- request
Settings OnlineRequest Settings Response - Online deployment scoring requests configuration.
- scale
Settings AutoScale | ManualSettings Response Scale Settings Response - Online deployment scaling configuration.
- provisioning
State string - Provisioning state for the endpoint deployment.
- app
Insights booleanEnabled - If true, enables Application Insights logging.
- code
Configuration CodeConfiguration Response - Code configuration for the endpoint deployment.
- container
Resource ContainerRequirements Resource Requirements Response - Resource requirements for each container instance within an online deployment.
- description string
- Description of the endpoint deployment.
- environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables {[key: string]: string} - Environment variables configuration for the deployment.
- liveness
Probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Response Asset | OutputReference Response Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- properties {[key: string]: string}
- Property dictionary. Properties can be added, but not removed or altered.
- request
Settings OnlineRequest Settings Response - Online deployment scoring requests configuration.
- scale
Settings AutoScale | ManualSettings Response Scale Settings Response - Online deployment scaling configuration.
- provisioning_
state str - Provisioning state for the endpoint deployment.
- app_
insights_ boolenabled - If true, enables Application Insights logging.
- code_
configuration CodeConfiguration Response - Code configuration for the endpoint deployment.
- container_
resource_ Containerrequirements Resource Requirements Response - Resource requirements for each container instance within an online deployment.
- description str
- Description of the endpoint deployment.
- environment_
id str - ARM resource ID of the environment specification for the endpoint deployment.
- environment_
variables Mapping[str, str] - Environment variables configuration for the deployment.
- liveness_
probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Response Asset | OutputReference Response Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- properties Mapping[str, str]
- Property dictionary. Properties can be added, but not removed or altered.
- request_
settings OnlineRequest Settings Response - Online deployment scoring requests configuration.
- scale_
settings AutoScale | ManualSettings Response Scale Settings Response - Online deployment scaling configuration.
- provisioning
State String - Provisioning state for the endpoint deployment.
- app
Insights BooleanEnabled - If true, enables Application Insights logging.
- code
Configuration Property Map - Code configuration for the endpoint deployment.
- container
Resource Property MapRequirements - Resource requirements for each container instance within an online deployment.
- description String
- Description of the endpoint deployment.
- environment
Id String - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables Map<String> - Environment variables configuration for the deployment.
- liveness
Probe Property Map - Deployment container liveness/readiness probe configuration.
- model Property Map | Property Map | Property Map
- Reference to the model asset for the endpoint deployment.
- properties Map<String>
- Property dictionary. Properties can be added, but not removed or altered.
- request
Settings Property Map - Online deployment scoring requests configuration.
- scale
Settings Property Map | Property Map - Online deployment scaling configuration.
ManagedOnlineDeployment, ManagedOnlineDeploymentArgs
- App
Insights boolEnabled - If true, enables Application Insights logging.
- Code
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. Code Configuration - Code configuration for the endpoint deployment.
- Description string
- Description of the endpoint deployment.
- Environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- Environment
Variables Dictionary<string, string> - Environment variables configuration for the deployment.
- Instance
Type string - Compute instance type.
- Liveness
Probe Pulumi.Azure Native. Machine Learning Services. Inputs. Probe Settings - Deployment container liveness/readiness probe configuration.
- Model
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Data Path Asset Reference Azure | Pulumi.Native. Machine Learning Services. Inputs. Id Asset Reference Azure Native. Machine Learning Services. Inputs. Output Path Asset Reference - Reference to the model asset for the endpoint deployment.
- Properties Dictionary<string, string>
- Property dictionary. Properties can be added, but not removed or altered.
- Readiness
Probe Pulumi.Azure Native. Machine Learning Services. Inputs. Probe Settings - Deployment container liveness/readiness probe configuration.
- Request
Settings Pulumi.Azure Native. Machine Learning Services. Inputs. Online Request Settings - Online deployment scoring requests configuration.
- Scale
Settings Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Auto Scale Settings Azure Native. Machine Learning Services. Inputs. Manual Scale Settings - Online deployment scaling configuration.
- App
Insights boolEnabled - If true, enables Application Insights logging.
- Code
Configuration CodeConfiguration - Code configuration for the endpoint deployment.
- Description string
- Description of the endpoint deployment.
- Environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- Environment
Variables map[string]string - Environment variables configuration for the deployment.
- Instance
Type string - Compute instance type.
- Liveness
Probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- Model
Data
Path | IdAsset Reference Asset | OutputReference Path Asset Reference - Reference to the model asset for the endpoint deployment.
- Properties map[string]string
- Property dictionary. Properties can be added, but not removed or altered.
- Readiness
Probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- Request
Settings OnlineRequest Settings - Online deployment scoring requests configuration.
- Scale
Settings AutoScale | ManualSettings Scale Settings - Online deployment scaling configuration.
- app
Insights BooleanEnabled - If true, enables Application Insights logging.
- code
Configuration CodeConfiguration - Code configuration for the endpoint deployment.
- description String
- Description of the endpoint deployment.
- environment
Id String - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables Map<String,String> - Environment variables configuration for the deployment.
- instance
Type String - Compute instance type.
- liveness
Probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Asset | OutputReference Path Asset Reference - Reference to the model asset for the endpoint deployment.
- properties Map<String,String>
- Property dictionary. Properties can be added, but not removed or altered.
- readiness
Probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- request
Settings OnlineRequest Settings - Online deployment scoring requests configuration.
- scale
Settings AutoScale | ManualSettings Scale Settings - Online deployment scaling configuration.
- app
Insights booleanEnabled - If true, enables Application Insights logging.
- code
Configuration CodeConfiguration - Code configuration for the endpoint deployment.
- description string
- Description of the endpoint deployment.
- environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables {[key: string]: string} - Environment variables configuration for the deployment.
- instance
Type string - Compute instance type.
- liveness
Probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Asset | OutputReference Path Asset Reference - Reference to the model asset for the endpoint deployment.
- properties {[key: string]: string}
- Property dictionary. Properties can be added, but not removed or altered.
- readiness
Probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- request
Settings OnlineRequest Settings - Online deployment scoring requests configuration.
- scale
Settings AutoScale | ManualSettings Scale Settings - Online deployment scaling configuration.
- app_
insights_ boolenabled - If true, enables Application Insights logging.
- code_
configuration CodeConfiguration - Code configuration for the endpoint deployment.
- description str
- Description of the endpoint deployment.
- environment_
id str - ARM resource ID of the environment specification for the endpoint deployment.
- environment_
variables Mapping[str, str] - Environment variables configuration for the deployment.
- instance_
type str - Compute instance type.
- liveness_
probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Asset | OutputReference Path Asset Reference - Reference to the model asset for the endpoint deployment.
- properties Mapping[str, str]
- Property dictionary. Properties can be added, but not removed or altered.
- readiness_
probe ProbeSettings - Deployment container liveness/readiness probe configuration.
- request_
settings OnlineRequest Settings - Online deployment scoring requests configuration.
- scale_
settings AutoScale | ManualSettings Scale Settings - Online deployment scaling configuration.
- app
Insights BooleanEnabled - If true, enables Application Insights logging.
- code
Configuration Property Map - Code configuration for the endpoint deployment.
- description String
- Description of the endpoint deployment.
- environment
Id String - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables Map<String> - Environment variables configuration for the deployment.
- instance
Type String - Compute instance type.
- liveness
Probe Property Map - Deployment container liveness/readiness probe configuration.
- model Property Map | Property Map | Property Map
- Reference to the model asset for the endpoint deployment.
- properties Map<String>
- Property dictionary. Properties can be added, but not removed or altered.
- readiness
Probe Property Map - Deployment container liveness/readiness probe configuration.
- request
Settings Property Map - Online deployment scoring requests configuration.
- scale
Settings Property Map | Property Map - Online deployment scaling configuration.
ManagedOnlineDeploymentResponse, ManagedOnlineDeploymentResponseArgs
- Provisioning
State string - Provisioning state for the endpoint deployment.
- App
Insights boolEnabled - If true, enables Application Insights logging.
- Code
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. Code Configuration Response - Code configuration for the endpoint deployment.
- Description string
- Description of the endpoint deployment.
- Environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- Environment
Variables Dictionary<string, string> - Environment variables configuration for the deployment.
- Instance
Type string - Compute instance type.
- Liveness
Probe Pulumi.Azure Native. Machine Learning Services. Inputs. Probe Settings Response - Deployment container liveness/readiness probe configuration.
- Model
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Data Path Asset Reference Response Azure | Pulumi.Native. Machine Learning Services. Inputs. Id Asset Reference Response Azure Native. Machine Learning Services. Inputs. Output Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- Properties Dictionary<string, string>
- Property dictionary. Properties can be added, but not removed or altered.
- Readiness
Probe Pulumi.Azure Native. Machine Learning Services. Inputs. Probe Settings Response - Deployment container liveness/readiness probe configuration.
- Request
Settings Pulumi.Azure Native. Machine Learning Services. Inputs. Online Request Settings Response - Online deployment scoring requests configuration.
- Scale
Settings Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Auto Scale Settings Response Azure Native. Machine Learning Services. Inputs. Manual Scale Settings Response - Online deployment scaling configuration.
- Provisioning
State string - Provisioning state for the endpoint deployment.
- App
Insights boolEnabled - If true, enables Application Insights logging.
- Code
Configuration CodeConfiguration Response - Code configuration for the endpoint deployment.
- Description string
- Description of the endpoint deployment.
- Environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- Environment
Variables map[string]string - Environment variables configuration for the deployment.
- Instance
Type string - Compute instance type.
- Liveness
Probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- Model
Data
Path | IdAsset Reference Response Asset | OutputReference Response Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- Properties map[string]string
- Property dictionary. Properties can be added, but not removed or altered.
- Readiness
Probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- Request
Settings OnlineRequest Settings Response - Online deployment scoring requests configuration.
- Scale
Settings AutoScale | ManualSettings Response Scale Settings Response - Online deployment scaling configuration.
- provisioning
State String - Provisioning state for the endpoint deployment.
- app
Insights BooleanEnabled - If true, enables Application Insights logging.
- code
Configuration CodeConfiguration Response - Code configuration for the endpoint deployment.
- description String
- Description of the endpoint deployment.
- environment
Id String - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables Map<String,String> - Environment variables configuration for the deployment.
- instance
Type String - Compute instance type.
- liveness
Probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Response Asset | OutputReference Response Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- properties Map<String,String>
- Property dictionary. Properties can be added, but not removed or altered.
- readiness
Probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- request
Settings OnlineRequest Settings Response - Online deployment scoring requests configuration.
- scale
Settings AutoScale | ManualSettings Response Scale Settings Response - Online deployment scaling configuration.
- provisioning
State string - Provisioning state for the endpoint deployment.
- app
Insights booleanEnabled - If true, enables Application Insights logging.
- code
Configuration CodeConfiguration Response - Code configuration for the endpoint deployment.
- description string
- Description of the endpoint deployment.
- environment
Id string - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables {[key: string]: string} - Environment variables configuration for the deployment.
- instance
Type string - Compute instance type.
- liveness
Probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Response Asset | OutputReference Response Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- properties {[key: string]: string}
- Property dictionary. Properties can be added, but not removed or altered.
- readiness
Probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- request
Settings OnlineRequest Settings Response - Online deployment scoring requests configuration.
- scale
Settings AutoScale | ManualSettings Response Scale Settings Response - Online deployment scaling configuration.
- provisioning_
state str - Provisioning state for the endpoint deployment.
- app_
insights_ boolenabled - If true, enables Application Insights logging.
- code_
configuration CodeConfiguration Response - Code configuration for the endpoint deployment.
- description str
- Description of the endpoint deployment.
- environment_
id str - ARM resource ID of the environment specification for the endpoint deployment.
- environment_
variables Mapping[str, str] - Environment variables configuration for the deployment.
- instance_
type str - Compute instance type.
- liveness_
probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- model
Data
Path | IdAsset Reference Response Asset | OutputReference Response Path Asset Reference Response - Reference to the model asset for the endpoint deployment.
- properties Mapping[str, str]
- Property dictionary. Properties can be added, but not removed or altered.
- readiness_
probe ProbeSettings Response - Deployment container liveness/readiness probe configuration.
- request_
settings OnlineRequest Settings Response - Online deployment scoring requests configuration.
- scale_
settings AutoScale | ManualSettings Response Scale Settings Response - Online deployment scaling configuration.
- provisioning
State String - Provisioning state for the endpoint deployment.
- app
Insights BooleanEnabled - If true, enables Application Insights logging.
- code
Configuration Property Map - Code configuration for the endpoint deployment.
- description String
- Description of the endpoint deployment.
- environment
Id String - ARM resource ID of the environment specification for the endpoint deployment.
- environment
Variables Map<String> - Environment variables configuration for the deployment.
- instance
Type String - Compute instance type.
- liveness
Probe Property Map - Deployment container liveness/readiness probe configuration.
- model Property Map | Property Map | Property Map
- Reference to the model asset for the endpoint deployment.
- properties Map<String>
- Property dictionary. Properties can be added, but not removed or altered.
- readiness
Probe Property Map - Deployment container liveness/readiness probe configuration.
- request
Settings Property Map - Online deployment scoring requests configuration.
- scale
Settings Property Map | Property Map - Online deployment scaling configuration.
ManualScaleSettings, ManualScaleSettingsArgs
- Instance
Count int - Fixed number of instances for this deployment.
- Max
Instances int - Maximum number of instances for this deployment.
- Min
Instances int - Minimum number of instances for this deployment.
- Instance
Count int - Fixed number of instances for this deployment.
- Max
Instances int - Maximum number of instances for this deployment.
- Min
Instances int - Minimum number of instances for this deployment.
- instance
Count Integer - Fixed number of instances for this deployment.
- max
Instances Integer - Maximum number of instances for this deployment.
- min
Instances Integer - Minimum number of instances for this deployment.
- instance
Count number - Fixed number of instances for this deployment.
- max
Instances number - Maximum number of instances for this deployment.
- min
Instances number - Minimum number of instances for this deployment.
- instance_
count int - Fixed number of instances for this deployment.
- max_
instances int - Maximum number of instances for this deployment.
- min_
instances int - Minimum number of instances for this deployment.
- instance
Count Number - Fixed number of instances for this deployment.
- max
Instances Number - Maximum number of instances for this deployment.
- min
Instances Number - Minimum number of instances for this deployment.
ManualScaleSettingsResponse, ManualScaleSettingsResponseArgs
- Instance
Count int - Fixed number of instances for this deployment.
- Max
Instances int - Maximum number of instances for this deployment.
- Min
Instances int - Minimum number of instances for this deployment.
- Instance
Count int - Fixed number of instances for this deployment.
- Max
Instances int - Maximum number of instances for this deployment.
- Min
Instances int - Minimum number of instances for this deployment.
- instance
Count Integer - Fixed number of instances for this deployment.
- max
Instances Integer - Maximum number of instances for this deployment.
- min
Instances Integer - Minimum number of instances for this deployment.
- instance
Count number - Fixed number of instances for this deployment.
- max
Instances number - Maximum number of instances for this deployment.
- min
Instances number - Minimum number of instances for this deployment.
- instance_
count int - Fixed number of instances for this deployment.
- max_
instances int - Maximum number of instances for this deployment.
- min_
instances int - Minimum number of instances for this deployment.
- instance
Count Number - Fixed number of instances for this deployment.
- max
Instances Number - Maximum number of instances for this deployment.
- min
Instances Number - Minimum number of instances for this deployment.
OnlineRequestSettings, OnlineRequestSettingsArgs
- Max
Concurrent intRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- Max
Queue stringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- Request
Timeout string - The request timeout in ISO 8601 format. Supports millisecond precision.
- Max
Concurrent intRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- Max
Queue stringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- Request
Timeout string - The request timeout in ISO 8601 format. Supports millisecond precision.
- max
Concurrent IntegerRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- max
Queue StringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- request
Timeout String - The request timeout in ISO 8601 format. Supports millisecond precision.
- max
Concurrent numberRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- max
Queue stringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- request
Timeout string - The request timeout in ISO 8601 format. Supports millisecond precision.
- max_
concurrent_ intrequests_ per_ instance - The number of requests allowed to queue at once for this deployment.
- max_
queue_ strwait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- request_
timeout str - The request timeout in ISO 8601 format. Supports millisecond precision.
- max
Concurrent NumberRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- max
Queue StringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- request
Timeout String - The request timeout in ISO 8601 format. Supports millisecond precision.
OnlineRequestSettingsResponse, OnlineRequestSettingsResponseArgs
- Max
Concurrent intRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- Max
Queue stringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- Request
Timeout string - The request timeout in ISO 8601 format. Supports millisecond precision.
- Max
Concurrent intRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- Max
Queue stringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- Request
Timeout string - The request timeout in ISO 8601 format. Supports millisecond precision.
- max
Concurrent IntegerRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- max
Queue StringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- request
Timeout String - The request timeout in ISO 8601 format. Supports millisecond precision.
- max
Concurrent numberRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- max
Queue stringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- request
Timeout string - The request timeout in ISO 8601 format. Supports millisecond precision.
- max_
concurrent_ intrequests_ per_ instance - The number of requests allowed to queue at once for this deployment.
- max_
queue_ strwait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- request_
timeout str - The request timeout in ISO 8601 format. Supports millisecond precision.
- max
Concurrent NumberRequests Per Instance - The number of requests allowed to queue at once for this deployment.
- max
Queue StringWait - The maximum queue wait time in ISO 8601 format. Supports millisecond precision.
- request
Timeout String - The request timeout in ISO 8601 format. Supports millisecond precision.
OutputPathAssetReference, OutputPathAssetReferenceArgs
OutputPathAssetReferenceResponse, OutputPathAssetReferenceResponseArgs
ProbeSettings, ProbeSettingsArgs
- Failure
Threshold int - The number of failures to allow before returning an unhealthy status.
- Initial
Delay string - The delay before the first probe in ISO 8601 format.
- Period string
- The length of time between probes in ISO 8601 format.
- Success
Threshold int - The number of successful probes before returning a healthy status.
- Timeout string
- The probe timeout in ISO 8601 format.
- Failure
Threshold int - The number of failures to allow before returning an unhealthy status.
- Initial
Delay string - The delay before the first probe in ISO 8601 format.
- Period string
- The length of time between probes in ISO 8601 format.
- Success
Threshold int - The number of successful probes before returning a healthy status.
- Timeout string
- The probe timeout in ISO 8601 format.
- failure
Threshold Integer - The number of failures to allow before returning an unhealthy status.
- initial
Delay String - The delay before the first probe in ISO 8601 format.
- period String
- The length of time between probes in ISO 8601 format.
- success
Threshold Integer - The number of successful probes before returning a healthy status.
- timeout String
- The probe timeout in ISO 8601 format.
- failure
Threshold number - The number of failures to allow before returning an unhealthy status.
- initial
Delay string - The delay before the first probe in ISO 8601 format.
- period string
- The length of time between probes in ISO 8601 format.
- success
Threshold number - The number of successful probes before returning a healthy status.
- timeout string
- The probe timeout in ISO 8601 format.
- failure_
threshold int - The number of failures to allow before returning an unhealthy status.
- initial_
delay str - The delay before the first probe in ISO 8601 format.
- period str
- The length of time between probes in ISO 8601 format.
- success_
threshold int - The number of successful probes before returning a healthy status.
- timeout str
- The probe timeout in ISO 8601 format.
- failure
Threshold Number - The number of failures to allow before returning an unhealthy status.
- initial
Delay String - The delay before the first probe in ISO 8601 format.
- period String
- The length of time between probes in ISO 8601 format.
- success
Threshold Number - The number of successful probes before returning a healthy status.
- timeout String
- The probe timeout in ISO 8601 format.
ProbeSettingsResponse, ProbeSettingsResponseArgs
- Failure
Threshold int - The number of failures to allow before returning an unhealthy status.
- Initial
Delay string - The delay before the first probe in ISO 8601 format.
- Period string
- The length of time between probes in ISO 8601 format.
- Success
Threshold int - The number of successful probes before returning a healthy status.
- Timeout string
- The probe timeout in ISO 8601 format.
- Failure
Threshold int - The number of failures to allow before returning an unhealthy status.
- Initial
Delay string - The delay before the first probe in ISO 8601 format.
- Period string
- The length of time between probes in ISO 8601 format.
- Success
Threshold int - The number of successful probes before returning a healthy status.
- Timeout string
- The probe timeout in ISO 8601 format.
- failure
Threshold Integer - The number of failures to allow before returning an unhealthy status.
- initial
Delay String - The delay before the first probe in ISO 8601 format.
- period String
- The length of time between probes in ISO 8601 format.
- success
Threshold Integer - The number of successful probes before returning a healthy status.
- timeout String
- The probe timeout in ISO 8601 format.
- failure
Threshold number - The number of failures to allow before returning an unhealthy status.
- initial
Delay string - The delay before the first probe in ISO 8601 format.
- period string
- The length of time between probes in ISO 8601 format.
- success
Threshold number - The number of successful probes before returning a healthy status.
- timeout string
- The probe timeout in ISO 8601 format.
- failure_
threshold int - The number of failures to allow before returning an unhealthy status.
- initial_
delay str - The delay before the first probe in ISO 8601 format.
- period str
- The length of time between probes in ISO 8601 format.
- success_
threshold int - The number of successful probes before returning a healthy status.
- timeout str
- The probe timeout in ISO 8601 format.
- failure
Threshold Number - The number of failures to allow before returning an unhealthy status.
- initial
Delay String - The delay before the first probe in ISO 8601 format.
- period String
- The length of time between probes in ISO 8601 format.
- success
Threshold Number - The number of successful probes before returning a healthy status.
- timeout String
- The probe timeout in ISO 8601 format.
ResourceIdentity, ResourceIdentityArgs
- Type
string | Pulumi.
Azure Native. Machine Learning Services. Resource Identity Assignment - Defines values for a ResourceIdentity's type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Machine Learning Services. Inputs. User Assigned Identity Meta> - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- Type
string | Resource
Identity Assignment - Defines values for a ResourceIdentity's type.
- User
Assigned map[string]UserIdentities Assigned Identity Meta - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- type
String | Resource
Identity Assignment - Defines values for a ResourceIdentity's type.
- user
Assigned Map<String,UserIdentities Assigned Identity Meta> - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- type
string | Resource
Identity Assignment - Defines values for a ResourceIdentity's type.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Meta} - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- type
str | Resource
Identity Assignment - Defines values for a ResourceIdentity's type.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Meta] - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- type
String | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" | "None" - Defines values for a ResourceIdentity's type.
- user
Assigned Map<Property Map>Identities - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
ResourceIdentityAssignment, ResourceIdentityAssignmentArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- Resource
Identity Assignment System Assigned - SystemAssigned
- Resource
Identity Assignment User Assigned - UserAssigned
- Resource
Identity Assignment_System Assigned_User Assigned - SystemAssigned,UserAssigned
- Resource
Identity Assignment None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
- "None"
- None
ResourceIdentityResponse, ResourceIdentityResponseArgs
- Principal
Id string - Client ID that is used when authenticating.
- Tenant
Id string - AAD Tenant where this identity lives.
- Type string
- Defines values for a ResourceIdentity's type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Machine Learning Services. Inputs. User Assigned Identity Meta Response> - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- Principal
Id string - Client ID that is used when authenticating.
- Tenant
Id string - AAD Tenant where this identity lives.
- Type string
- Defines values for a ResourceIdentity's type.
- User
Assigned map[string]UserIdentities Assigned Identity Meta Response - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- principal
Id String - Client ID that is used when authenticating.
- tenant
Id String - AAD Tenant where this identity lives.
- type String
- Defines values for a ResourceIdentity's type.
- user
Assigned Map<String,UserIdentities Assigned Identity Meta Response> - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- principal
Id string - Client ID that is used when authenticating.
- tenant
Id string - AAD Tenant where this identity lives.
- type string
- Defines values for a ResourceIdentity's type.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Meta Response} - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- principal_
id str - Client ID that is used when authenticating.
- tenant_
id str - AAD Tenant where this identity lives.
- type str
- Defines values for a ResourceIdentity's type.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Meta Response] - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
- principal
Id String - Client ID that is used when authenticating.
- tenant
Id String - AAD Tenant where this identity lives.
- type String
- Defines values for a ResourceIdentity's type.
- user
Assigned Map<Property Map>Identities - Dictionary of the user assigned identities, key is ARM resource ID of the UAI.
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
UserAssignedIdentityMeta, UserAssignedIdentityMetaArgs
- Client
Id string - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- Principal
Id string - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- Client
Id string - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- Principal
Id string - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- client
Id String - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- principal
Id String - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- client
Id string - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- principal
Id string - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- client_
id str - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- principal_
id str - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- client
Id String - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- principal
Id String - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
UserAssignedIdentityMetaResponse, UserAssignedIdentityMetaResponseArgs
- Client
Id string - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- Principal
Id string - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- Client
Id string - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- Principal
Id string - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- client
Id String - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- principal
Id String - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- client
Id string - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- principal
Id string - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- client_
id str - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- principal_
id str - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
- client
Id String - Aka application ID, a unique identifier generated by Azure AD that is tied to an application and service principal during its initial provisioning.
- principal
Id String - The object ID of the service principal object for your managed identity that is used to grant role-based access to an Azure resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:machinelearningservices:OnlineDeployment testDeployment /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/testworkspace/onlineEndpoints/testEndpoint/deployments/testDeployment
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