azure-native.machinelearningservices.ACIService
Explore with Pulumi AI
Machine Learning service object wrapped into ARM resource envelope. API Version: 2021-01-01.
Example Usage
Create Or Update service
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var aciService = new AzureNative.MachineLearningServices.ACIService("aciService", new()
{
AppInsightsEnabled = true,
AuthEnabled = true,
ComputeType = "ACI",
ContainerResourceRequirements = new AzureNative.MachineLearningServices.Inputs.ContainerResourceRequirementsArgs
{
Cpu = 1,
MemoryInGB = 1,
},
EnvironmentImageRequest = new AzureNative.MachineLearningServices.Inputs.CreateServiceRequestEnvironmentImageRequestArgs
{
Assets = new[]
{
new AzureNative.MachineLearningServices.Inputs.ImageAssetArgs
{
MimeType = "application/x-python",
Unpack = false,
Url = "aml://storage/azureml/score.py",
},
},
DriverProgram = "score.py",
Environment = new AzureNative.MachineLearningServices.Inputs.EnvironmentImageRequestEnvironmentArgs
{
Docker = new AzureNative.MachineLearningServices.Inputs.ModelEnvironmentDefinitionDockerArgs
{
BaseImage = "mcr.microsoft.com/azureml/base:openmpi3.1.2-ubuntu16.04",
BaseImageRegistry = null,
},
EnvironmentVariables =
{
{ "EXAMPLE_ENV_VAR", "EXAMPLE_VALUE" },
},
Name = "AzureML-Scikit-learn-0.20.3",
Python = new AzureNative.MachineLearningServices.Inputs.ModelEnvironmentDefinitionPythonArgs
{
CondaDependencies =
{
{ "channels", new[]
{
"conda-forge",
} },
{ "dependencies", new[]
{
"python=3.6.2",
{
{ "pip", new[]
{
"azureml-core==1.0.69",
"azureml-defaults==1.0.69",
"azureml-telemetry==1.0.69",
"azureml-train-restclients-hyperdrive==1.0.69",
"azureml-train-core==1.0.69",
"scikit-learn==0.20.3",
"scipy==1.2.1",
"numpy==1.16.2",
"joblib==0.13.2",
} },
},
} },
{ "name", "azureml_ae1acbe6e1e6aabbad900b53c491a17c" },
},
InterpreterPath = "python",
UserManagedDependencies = false,
},
Spark = new AzureNative.MachineLearningServices.Inputs.ModelEnvironmentDefinitionSparkArgs
{
Packages = new[] {},
PrecachePackages = true,
Repositories = new[] {},
},
Version = "3",
},
Models = new[]
{
new AzureNative.MachineLearningServices.Inputs.ModelArgs
{
MimeType = "application/x-python",
Name = "sklearn_regression_model.pkl",
Url = "aml://storage/azureml/sklearn_regression_model.pkl",
},
},
},
Location = "eastus2",
ResourceGroupName = "testrg123",
ServiceName = "service456",
WorkspaceName = "workspaces123",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewACIService(ctx, "aciService", &machinelearningservices.ACIServiceArgs{
AppInsightsEnabled: pulumi.Bool(true),
AuthEnabled: pulumi.Bool(true),
ComputeType: pulumi.String("ACI"),
ContainerResourceRequirements: &machinelearningservices.ContainerResourceRequirementsArgs{
Cpu: pulumi.Float64(1),
MemoryInGB: pulumi.Float64(1),
},
EnvironmentImageRequest: &machinelearningservices.CreateServiceRequestEnvironmentImageRequestArgs{
Assets: machinelearningservices.ImageAssetArray{
&machinelearningservices.ImageAssetArgs{
MimeType: pulumi.String("application/x-python"),
Unpack: pulumi.Bool(false),
Url: pulumi.String("aml://storage/azureml/score.py"),
},
},
DriverProgram: pulumi.String("score.py"),
Environment: &machinelearningservices.EnvironmentImageRequestEnvironmentArgs{
Docker: &machinelearningservices.ModelEnvironmentDefinitionDockerArgs{
BaseImage: pulumi.String("mcr.microsoft.com/azureml/base:openmpi3.1.2-ubuntu16.04"),
BaseImageRegistry: nil,
},
EnvironmentVariables: pulumi.StringMap{
"EXAMPLE_ENV_VAR": pulumi.String("EXAMPLE_VALUE"),
},
Name: pulumi.String("AzureML-Scikit-learn-0.20.3"),
Python: &machinelearningservices.ModelEnvironmentDefinitionPythonArgs{
CondaDependencies: pulumi.Any{
Channels: []string{
"conda-forge",
},
Dependencies: []interface{}{
"python=3.6.2",
map[string]interface{}{
"pip": []string{
"azureml-core==1.0.69",
"azureml-defaults==1.0.69",
"azureml-telemetry==1.0.69",
"azureml-train-restclients-hyperdrive==1.0.69",
"azureml-train-core==1.0.69",
"scikit-learn==0.20.3",
"scipy==1.2.1",
"numpy==1.16.2",
"joblib==0.13.2",
},
},
},
Name: "azureml_ae1acbe6e1e6aabbad900b53c491a17c",
},
InterpreterPath: pulumi.String("python"),
UserManagedDependencies: pulumi.Bool(false),
},
Spark: &machinelearningservices.ModelEnvironmentDefinitionSparkArgs{
Packages: machinelearningservices.SparkMavenPackageArray{},
PrecachePackages: pulumi.Bool(true),
Repositories: pulumi.StringArray{},
},
Version: pulumi.String("3"),
},
Models: machinelearningservices.ModelArray{
&machinelearningservices.ModelArgs{
MimeType: pulumi.String("application/x-python"),
Name: pulumi.String("sklearn_regression_model.pkl"),
Url: pulumi.String("aml://storage/azureml/sklearn_regression_model.pkl"),
},
},
},
Location: pulumi.String("eastus2"),
ResourceGroupName: pulumi.String("testrg123"),
ServiceName: pulumi.String("service456"),
WorkspaceName: pulumi.String("workspaces123"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.ACIService;
import com.pulumi.azurenative.machinelearningservices.ACIServiceArgs;
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 aciService = new ACIService("aciService", ACIServiceArgs.builder()
.appInsightsEnabled(true)
.authEnabled(true)
.computeType("ACI")
.containerResourceRequirements(Map.ofEntries(
Map.entry("cpu", 1),
Map.entry("memoryInGB", 1)
))
.environmentImageRequest(Map.ofEntries(
Map.entry("assets", Map.ofEntries(
Map.entry("mimeType", "application/x-python"),
Map.entry("unpack", false),
Map.entry("url", "aml://storage/azureml/score.py")
)),
Map.entry("driverProgram", "score.py"),
Map.entry("environment", Map.ofEntries(
Map.entry("docker", Map.ofEntries(
Map.entry("baseImage", "mcr.microsoft.com/azureml/base:openmpi3.1.2-ubuntu16.04"),
Map.entry("baseImageRegistry", )
)),
Map.entry("environmentVariables", Map.of("EXAMPLE_ENV_VAR", "EXAMPLE_VALUE")),
Map.entry("name", "AzureML-Scikit-learn-0.20.3"),
Map.entry("python", Map.ofEntries(
Map.entry("condaDependencies", Map.ofEntries(
Map.entry("channels", "conda-forge"),
Map.entry("dependencies",
"python=3.6.2",
CreateServiceRequestEnvironmentImageRequestArgs.builder()
.pip(
"azureml-core==1.0.69",
"azureml-defaults==1.0.69",
"azureml-telemetry==1.0.69",
"azureml-train-restclients-hyperdrive==1.0.69",
"azureml-train-core==1.0.69",
"scikit-learn==0.20.3",
"scipy==1.2.1",
"numpy==1.16.2",
"joblib==0.13.2")
.build()),
Map.entry("name", "azureml_ae1acbe6e1e6aabbad900b53c491a17c")
)),
Map.entry("interpreterPath", "python"),
Map.entry("userManagedDependencies", false)
)),
Map.entry("spark", Map.ofEntries(
Map.entry("packages", ),
Map.entry("precachePackages", true),
Map.entry("repositories", )
)),
Map.entry("version", "3")
)),
Map.entry("models", Map.ofEntries(
Map.entry("mimeType", "application/x-python"),
Map.entry("name", "sklearn_regression_model.pkl"),
Map.entry("url", "aml://storage/azureml/sklearn_regression_model.pkl")
))
))
.location("eastus2")
.resourceGroupName("testrg123")
.serviceName("service456")
.workspaceName("workspaces123")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
aci_service = azure_native.machinelearningservices.ACIService("aciService",
app_insights_enabled=True,
auth_enabled=True,
compute_type="ACI",
container_resource_requirements=azure_native.machinelearningservices.ContainerResourceRequirementsArgs(
cpu=1,
memory_in_gb=1,
),
environment_image_request=azure_native.machinelearningservices.CreateServiceRequestEnvironmentImageRequestArgs(
assets=[azure_native.machinelearningservices.ImageAssetArgs(
mime_type="application/x-python",
unpack=False,
url="aml://storage/azureml/score.py",
)],
driver_program="score.py",
environment=azure_native.machinelearningservices.EnvironmentImageRequestEnvironmentArgs(
docker=azure_native.machinelearningservices.ModelEnvironmentDefinitionDockerArgs(
base_image="mcr.microsoft.com/azureml/base:openmpi3.1.2-ubuntu16.04",
base_image_registry=azure_native.machinelearningservices.ModelDockerSectionBaseImageRegistryArgs(),
),
environment_variables={
"EXAMPLE_ENV_VAR": "EXAMPLE_VALUE",
},
name="AzureML-Scikit-learn-0.20.3",
python=azure_native.machinelearningservices.ModelEnvironmentDefinitionPythonArgs(
conda_dependencies={
"channels": ["conda-forge"],
"dependencies": [
"python=3.6.2",
{
"pip": [
"azureml-core==1.0.69",
"azureml-defaults==1.0.69",
"azureml-telemetry==1.0.69",
"azureml-train-restclients-hyperdrive==1.0.69",
"azureml-train-core==1.0.69",
"scikit-learn==0.20.3",
"scipy==1.2.1",
"numpy==1.16.2",
"joblib==0.13.2",
],
},
],
"name": "azureml_ae1acbe6e1e6aabbad900b53c491a17c",
},
interpreter_path="python",
user_managed_dependencies=False,
),
spark=azure_native.machinelearningservices.ModelEnvironmentDefinitionSparkArgs(
packages=[],
precache_packages=True,
repositories=[],
),
version="3",
),
models=[azure_native.machinelearningservices.ModelArgs(
mime_type="application/x-python",
name="sklearn_regression_model.pkl",
url="aml://storage/azureml/sklearn_regression_model.pkl",
)],
),
location="eastus2",
resource_group_name="testrg123",
service_name="service456",
workspace_name="workspaces123")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const aciService = new azure_native.machinelearningservices.ACIService("aciService", {
appInsightsEnabled: true,
authEnabled: true,
computeType: "ACI",
containerResourceRequirements: {
cpu: 1,
memoryInGB: 1,
},
environmentImageRequest: {
assets: [{
mimeType: "application/x-python",
unpack: false,
url: "aml://storage/azureml/score.py",
}],
driverProgram: "score.py",
environment: {
docker: {
baseImage: "mcr.microsoft.com/azureml/base:openmpi3.1.2-ubuntu16.04",
baseImageRegistry: {},
},
environmentVariables: {
EXAMPLE_ENV_VAR: "EXAMPLE_VALUE",
},
name: "AzureML-Scikit-learn-0.20.3",
python: {
condaDependencies: {
channels: ["conda-forge"],
dependencies: [
"python=3.6.2",
{
pip: [
"azureml-core==1.0.69",
"azureml-defaults==1.0.69",
"azureml-telemetry==1.0.69",
"azureml-train-restclients-hyperdrive==1.0.69",
"azureml-train-core==1.0.69",
"scikit-learn==0.20.3",
"scipy==1.2.1",
"numpy==1.16.2",
"joblib==0.13.2",
],
},
],
name: "azureml_ae1acbe6e1e6aabbad900b53c491a17c",
},
interpreterPath: "python",
userManagedDependencies: false,
},
spark: {
packages: [],
precachePackages: true,
repositories: [],
},
version: "3",
},
models: [{
mimeType: "application/x-python",
name: "sklearn_regression_model.pkl",
url: "aml://storage/azureml/sklearn_regression_model.pkl",
}],
},
location: "eastus2",
resourceGroupName: "testrg123",
serviceName: "service456",
workspaceName: "workspaces123",
});
resources:
aciService:
type: azure-native:machinelearningservices:ACIService
properties:
appInsightsEnabled: true
authEnabled: true
computeType: ACI
containerResourceRequirements:
cpu: 1
memoryInGB: 1
environmentImageRequest:
assets:
- mimeType: application/x-python
unpack: false
url: aml://storage/azureml/score.py
driverProgram: score.py
environment:
docker:
baseImage: mcr.microsoft.com/azureml/base:openmpi3.1.2-ubuntu16.04
baseImageRegistry: {}
environmentVariables:
EXAMPLE_ENV_VAR: EXAMPLE_VALUE
name: AzureML-Scikit-learn-0.20.3
python:
condaDependencies:
channels:
- conda-forge
dependencies:
- python=3.6.2
- pip:
- azureml-core==1.0.69
- azureml-defaults==1.0.69
- azureml-telemetry==1.0.69
- azureml-train-restclients-hyperdrive==1.0.69
- azureml-train-core==1.0.69
- scikit-learn==0.20.3
- scipy==1.2.1
- numpy==1.16.2
- joblib==0.13.2
name: azureml_ae1acbe6e1e6aabbad900b53c491a17c
interpreterPath: python
userManagedDependencies: false
spark:
packages: []
precachePackages: true
repositories: []
version: '3'
models:
- mimeType: application/x-python
name: sklearn_regression_model.pkl
url: aml://storage/azureml/sklearn_regression_model.pkl
location: eastus2
resourceGroupName: testrg123
serviceName: service456
workspaceName: workspaces123
Create ACIService Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ACIService(name: string, args: ACIServiceArgs, opts?: CustomResourceOptions);
@overload
def ACIService(resource_name: str,
args: ACIServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ACIService(resource_name: str,
opts: Optional[ResourceOptions] = None,
workspace_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
keys: Optional[CreateServiceRequestKeysArgs] = None,
location: Optional[str] = None,
data_collection: Optional[ACIServiceCreateRequestDataCollectionArgs] = None,
description: Optional[str] = None,
dns_name_label: Optional[str] = None,
encryption_properties: Optional[ACIServiceCreateRequestEncryptionPropertiesArgs] = None,
environment_image_request: Optional[CreateServiceRequestEnvironmentImageRequestArgs] = None,
app_insights_enabled: Optional[bool] = None,
kv_tags: Optional[Mapping[str, str]] = None,
container_resource_requirements: Optional[ContainerResourceRequirementsArgs] = None,
properties: Optional[Mapping[str, str]] = None,
cname: Optional[str] = None,
service_name: Optional[str] = None,
ssl_certificate: Optional[str] = None,
ssl_enabled: Optional[bool] = None,
ssl_key: Optional[str] = None,
vnet_configuration: Optional[ACIServiceCreateRequestVnetConfigurationArgs] = None,
auth_enabled: Optional[bool] = None)
func NewACIService(ctx *Context, name string, args ACIServiceArgs, opts ...ResourceOption) (*ACIService, error)
public ACIService(string name, ACIServiceArgs args, CustomResourceOptions? opts = null)
public ACIService(String name, ACIServiceArgs args)
public ACIService(String name, ACIServiceArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:ACIService
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 ACIServiceArgs
- 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 ACIServiceArgs
- 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 ACIServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ACIServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ACIServiceArgs
- 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 aciserviceResource = new AzureNative.Machinelearningservices.ACIService("aciserviceResource", new()
{
ComputeType = "string",
WorkspaceName = "string",
ResourceGroupName = "string",
Keys =
{
{ "primaryKey", "string" },
{ "secondaryKey", "string" },
},
Location = "string",
DataCollection =
{
{ "eventHubEnabled", false },
{ "storageEnabled", false },
},
Description = "string",
DnsNameLabel = "string",
EncryptionProperties =
{
{ "keyName", "string" },
{ "keyVersion", "string" },
{ "vaultBaseUrl", "string" },
},
EnvironmentImageRequest =
{
{ "assets", new[]
{
{
{ "id", "string" },
{ "mimeType", "string" },
{ "unpack", false },
{ "url", "string" },
},
} },
{ "driverProgram", "string" },
{ "environment",
{
{ "docker",
{
{ "baseDockerfile", "string" },
{ "baseImage", "string" },
{ "baseImageRegistry",
{
{ "address", "string" },
{ "password", "string" },
{ "username", "string" },
} },
} },
{ "environmentVariables",
{
{ "string", "string" },
} },
{ "inferencingStackVersion", "string" },
{ "name", "string" },
{ "python",
{
{ "baseCondaEnvironment", "string" },
{ "condaDependencies", "any" },
{ "interpreterPath", "string" },
{ "userManagedDependencies", false },
} },
{ "r",
{
{ "bioConductorPackages", new[]
{
"string",
} },
{ "cranPackages", new[]
{
{
{ "name", "string" },
{ "repository", "string" },
},
} },
{ "customUrlPackages", new[]
{
"string",
} },
{ "gitHubPackages", new[]
{
{
{ "authToken", "string" },
{ "repository", "string" },
},
} },
{ "rVersion", "string" },
{ "rscriptPath", "string" },
{ "snapshotDate", "string" },
{ "userManaged", false },
} },
{ "spark",
{
{ "packages", new[]
{
{
{ "artifact", "string" },
{ "group", "string" },
{ "version", "string" },
},
} },
{ "precachePackages", false },
{ "repositories", new[]
{
"string",
} },
} },
{ "version", "string" },
} },
{ "environmentReference",
{
{ "name", "string" },
{ "version", "string" },
} },
{ "modelIds", new[]
{
"string",
} },
{ "models", new[]
{
{
{ "mimeType", "string" },
{ "url", "string" },
{ "name", "string" },
{ "modifiedTime", "string" },
{ "parentModelId", "string" },
{ "framework", "string" },
{ "frameworkVersion", "string" },
{ "id", "string" },
{ "kvTags",
{
{ "string", "string" },
} },
{ "description", "string" },
{ "createdTime", "string" },
{ "derivedModelIds", new[]
{
"string",
} },
{ "experimentName", "string" },
{ "properties",
{
{ "string", "string" },
} },
{ "resourceRequirements",
{
{ "cpu", 0 },
{ "cpuLimit", 0 },
{ "fpga", 0 },
{ "gpu", 0 },
{ "memoryInGB", 0 },
{ "memoryInGBLimit", 0 },
} },
{ "runId", "string" },
{ "sampleInputData", "string" },
{ "sampleOutputData", "string" },
{ "unpack", false },
{ "datasets", new[]
{
{
{ "id", "string" },
{ "name", "string" },
},
} },
{ "version", 0 },
},
} },
},
AppInsightsEnabled = false,
KvTags =
{
{ "string", "string" },
},
ContainerResourceRequirements =
{
{ "cpu", 0 },
{ "cpuLimit", 0 },
{ "fpga", 0 },
{ "gpu", 0 },
{ "memoryInGB", 0 },
{ "memoryInGBLimit", 0 },
},
Properties =
{
{ "string", "string" },
},
Cname = "string",
ServiceName = "string",
SslCertificate = "string",
SslEnabled = false,
SslKey = "string",
VnetConfiguration =
{
{ "subnetName", "string" },
{ "vnetName", "string" },
},
AuthEnabled = false,
});
example, err := machinelearningservices.NewACIService(ctx, "aciserviceResource", &machinelearningservices.ACIServiceArgs{
ComputeType: "string",
WorkspaceName: "string",
ResourceGroupName: "string",
Keys: map[string]interface{}{
"primaryKey": "string",
"secondaryKey": "string",
},
Location: "string",
DataCollection: map[string]interface{}{
"eventHubEnabled": false,
"storageEnabled": false,
},
Description: "string",
DnsNameLabel: "string",
EncryptionProperties: map[string]interface{}{
"keyName": "string",
"keyVersion": "string",
"vaultBaseUrl": "string",
},
EnvironmentImageRequest: map[string]interface{}{
"assets": []map[string]interface{}{
map[string]interface{}{
"id": "string",
"mimeType": "string",
"unpack": false,
"url": "string",
},
},
"driverProgram": "string",
"environment": map[string]interface{}{
"docker": map[string]interface{}{
"baseDockerfile": "string",
"baseImage": "string",
"baseImageRegistry": map[string]interface{}{
"address": "string",
"password": "string",
"username": "string",
},
},
"environmentVariables": map[string]interface{}{
"string": "string",
},
"inferencingStackVersion": "string",
"name": "string",
"python": map[string]interface{}{
"baseCondaEnvironment": "string",
"condaDependencies": "any",
"interpreterPath": "string",
"userManagedDependencies": false,
},
"r": map[string]interface{}{
"bioConductorPackages": []string{
"string",
},
"cranPackages": []map[string]interface{}{
map[string]interface{}{
"name": "string",
"repository": "string",
},
},
"customUrlPackages": []string{
"string",
},
"gitHubPackages": []map[string]interface{}{
map[string]interface{}{
"authToken": "string",
"repository": "string",
},
},
"rVersion": "string",
"rscriptPath": "string",
"snapshotDate": "string",
"userManaged": false,
},
"spark": map[string]interface{}{
"packages": []map[string]interface{}{
map[string]interface{}{
"artifact": "string",
"group": "string",
"version": "string",
},
},
"precachePackages": false,
"repositories": []string{
"string",
},
},
"version": "string",
},
"environmentReference": map[string]interface{}{
"name": "string",
"version": "string",
},
"modelIds": []string{
"string",
},
"models": []map[string]interface{}{
map[string]interface{}{
"mimeType": "string",
"url": "string",
"name": "string",
"modifiedTime": "string",
"parentModelId": "string",
"framework": "string",
"frameworkVersion": "string",
"id": "string",
"kvTags": map[string]interface{}{
"string": "string",
},
"description": "string",
"createdTime": "string",
"derivedModelIds": []string{
"string",
},
"experimentName": "string",
"properties": map[string]interface{}{
"string": "string",
},
"resourceRequirements": map[string]interface{}{
"cpu": 0,
"cpuLimit": 0,
"fpga": 0,
"gpu": 0,
"memoryInGB": 0,
"memoryInGBLimit": 0,
},
"runId": "string",
"sampleInputData": "string",
"sampleOutputData": "string",
"unpack": false,
"datasets": []map[string]interface{}{
map[string]interface{}{
"id": "string",
"name": "string",
},
},
"version": 0,
},
},
},
AppInsightsEnabled: false,
KvTags: map[string]interface{}{
"string": "string",
},
ContainerResourceRequirements: map[string]interface{}{
"cpu": 0,
"cpuLimit": 0,
"fpga": 0,
"gpu": 0,
"memoryInGB": 0,
"memoryInGBLimit": 0,
},
Properties: map[string]interface{}{
"string": "string",
},
Cname: "string",
ServiceName: "string",
SslCertificate: "string",
SslEnabled: false,
SslKey: "string",
VnetConfiguration: map[string]interface{}{
"subnetName": "string",
"vnetName": "string",
},
AuthEnabled: false,
})
var aciserviceResource = new ACIService("aciserviceResource", ACIServiceArgs.builder()
.computeType("string")
.workspaceName("string")
.resourceGroupName("string")
.keys(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.dataCollection(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.description("string")
.dnsNameLabel("string")
.encryptionProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.environmentImageRequest(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.appInsightsEnabled(false)
.kvTags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.containerResourceRequirements(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.cname("string")
.serviceName("string")
.sslCertificate("string")
.sslEnabled(false)
.sslKey("string")
.vnetConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.authEnabled(false)
.build());
aciservice_resource = azure_native.machinelearningservices.ACIService("aciserviceResource",
compute_type=string,
workspace_name=string,
resource_group_name=string,
keys={
primaryKey: string,
secondaryKey: string,
},
location=string,
data_collection={
eventHubEnabled: False,
storageEnabled: False,
},
description=string,
dns_name_label=string,
encryption_properties={
keyName: string,
keyVersion: string,
vaultBaseUrl: string,
},
environment_image_request={
assets: [{
id: string,
mimeType: string,
unpack: False,
url: string,
}],
driverProgram: string,
environment: {
docker: {
baseDockerfile: string,
baseImage: string,
baseImageRegistry: {
address: string,
password: string,
username: string,
},
},
environmentVariables: {
string: string,
},
inferencingStackVersion: string,
name: string,
python: {
baseCondaEnvironment: string,
condaDependencies: any,
interpreterPath: string,
userManagedDependencies: False,
},
r: {
bioConductorPackages: [string],
cranPackages: [{
name: string,
repository: string,
}],
customUrlPackages: [string],
gitHubPackages: [{
authToken: string,
repository: string,
}],
rVersion: string,
rscriptPath: string,
snapshotDate: string,
userManaged: False,
},
spark: {
packages: [{
artifact: string,
group: string,
version: string,
}],
precachePackages: False,
repositories: [string],
},
version: string,
},
environmentReference: {
name: string,
version: string,
},
modelIds: [string],
models: [{
mimeType: string,
url: string,
name: string,
modifiedTime: string,
parentModelId: string,
framework: string,
frameworkVersion: string,
id: string,
kvTags: {
string: string,
},
description: string,
createdTime: string,
derivedModelIds: [string],
experimentName: string,
properties: {
string: string,
},
resourceRequirements: {
cpu: 0,
cpuLimit: 0,
fpga: 0,
gpu: 0,
memoryInGB: 0,
memoryInGBLimit: 0,
},
runId: string,
sampleInputData: string,
sampleOutputData: string,
unpack: False,
datasets: [{
id: string,
name: string,
}],
version: 0,
}],
},
app_insights_enabled=False,
kv_tags={
string: string,
},
container_resource_requirements={
cpu: 0,
cpuLimit: 0,
fpga: 0,
gpu: 0,
memoryInGB: 0,
memoryInGBLimit: 0,
},
properties={
string: string,
},
cname=string,
service_name=string,
ssl_certificate=string,
ssl_enabled=False,
ssl_key=string,
vnet_configuration={
subnetName: string,
vnetName: string,
},
auth_enabled=False)
const aciserviceResource = new azure_native.machinelearningservices.ACIService("aciserviceResource", {
computeType: "string",
workspaceName: "string",
resourceGroupName: "string",
keys: {
primaryKey: "string",
secondaryKey: "string",
},
location: "string",
dataCollection: {
eventHubEnabled: false,
storageEnabled: false,
},
description: "string",
dnsNameLabel: "string",
encryptionProperties: {
keyName: "string",
keyVersion: "string",
vaultBaseUrl: "string",
},
environmentImageRequest: {
assets: [{
id: "string",
mimeType: "string",
unpack: false,
url: "string",
}],
driverProgram: "string",
environment: {
docker: {
baseDockerfile: "string",
baseImage: "string",
baseImageRegistry: {
address: "string",
password: "string",
username: "string",
},
},
environmentVariables: {
string: "string",
},
inferencingStackVersion: "string",
name: "string",
python: {
baseCondaEnvironment: "string",
condaDependencies: "any",
interpreterPath: "string",
userManagedDependencies: false,
},
r: {
bioConductorPackages: ["string"],
cranPackages: [{
name: "string",
repository: "string",
}],
customUrlPackages: ["string"],
gitHubPackages: [{
authToken: "string",
repository: "string",
}],
rVersion: "string",
rscriptPath: "string",
snapshotDate: "string",
userManaged: false,
},
spark: {
packages: [{
artifact: "string",
group: "string",
version: "string",
}],
precachePackages: false,
repositories: ["string"],
},
version: "string",
},
environmentReference: {
name: "string",
version: "string",
},
modelIds: ["string"],
models: [{
mimeType: "string",
url: "string",
name: "string",
modifiedTime: "string",
parentModelId: "string",
framework: "string",
frameworkVersion: "string",
id: "string",
kvTags: {
string: "string",
},
description: "string",
createdTime: "string",
derivedModelIds: ["string"],
experimentName: "string",
properties: {
string: "string",
},
resourceRequirements: {
cpu: 0,
cpuLimit: 0,
fpga: 0,
gpu: 0,
memoryInGB: 0,
memoryInGBLimit: 0,
},
runId: "string",
sampleInputData: "string",
sampleOutputData: "string",
unpack: false,
datasets: [{
id: "string",
name: "string",
}],
version: 0,
}],
},
appInsightsEnabled: false,
kvTags: {
string: "string",
},
containerResourceRequirements: {
cpu: 0,
cpuLimit: 0,
fpga: 0,
gpu: 0,
memoryInGB: 0,
memoryInGBLimit: 0,
},
properties: {
string: "string",
},
cname: "string",
serviceName: "string",
sslCertificate: "string",
sslEnabled: false,
sslKey: "string",
vnetConfiguration: {
subnetName: "string",
vnetName: "string",
},
authEnabled: false,
});
type: azure-native:machinelearningservices:ACIService
properties:
appInsightsEnabled: false
authEnabled: false
cname: string
computeType: string
containerResourceRequirements:
cpu: 0
cpuLimit: 0
fpga: 0
gpu: 0
memoryInGB: 0
memoryInGBLimit: 0
dataCollection:
eventHubEnabled: false
storageEnabled: false
description: string
dnsNameLabel: string
encryptionProperties:
keyName: string
keyVersion: string
vaultBaseUrl: string
environmentImageRequest:
assets:
- id: string
mimeType: string
unpack: false
url: string
driverProgram: string
environment:
docker:
baseDockerfile: string
baseImage: string
baseImageRegistry:
address: string
password: string
username: string
environmentVariables:
string: string
inferencingStackVersion: string
name: string
python:
baseCondaEnvironment: string
condaDependencies: any
interpreterPath: string
userManagedDependencies: false
r:
bioConductorPackages:
- string
cranPackages:
- name: string
repository: string
customUrlPackages:
- string
gitHubPackages:
- authToken: string
repository: string
rVersion: string
rscriptPath: string
snapshotDate: string
userManaged: false
spark:
packages:
- artifact: string
group: string
version: string
precachePackages: false
repositories:
- string
version: string
environmentReference:
name: string
version: string
modelIds:
- string
models:
- createdTime: string
datasets:
- id: string
name: string
derivedModelIds:
- string
description: string
experimentName: string
framework: string
frameworkVersion: string
id: string
kvTags:
string: string
mimeType: string
modifiedTime: string
name: string
parentModelId: string
properties:
string: string
resourceRequirements:
cpu: 0
cpuLimit: 0
fpga: 0
gpu: 0
memoryInGB: 0
memoryInGBLimit: 0
runId: string
sampleInputData: string
sampleOutputData: string
unpack: false
url: string
version: 0
keys:
primaryKey: string
secondaryKey: string
kvTags:
string: string
location: string
properties:
string: string
resourceGroupName: string
serviceName: string
sslCertificate: string
sslEnabled: false
sslKey: string
vnetConfiguration:
subnetName: string
vnetName: string
workspaceName: string
ACIService 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 ACIService resource accepts the following input properties:
- Resource
Group stringName - Name of the resource group in which workspace is located.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- App
Insights boolEnabled - Whether or not Application Insights is enabled.
- Auth
Enabled bool - Whether or not authentication is enabled on the service.
- Cname string
- The CName for the service.
- Container
Resource Pulumi.Requirements Azure Native. Machine Learning Services. Inputs. Container Resource Requirements - The container resource requirements.
- Data
Collection Pulumi.Azure Native. Machine Learning Services. Inputs. ACIService Create Request Data Collection - Details of the data collection options specified.
- Description string
- The description of the service.
- Dns
Name stringLabel - The Dns label for the service.
- Encryption
Properties Pulumi.Azure Native. Machine Learning Services. Inputs. ACIService Create Request Encryption Properties - The encryption properties.
- Environment
Image Pulumi.Request Azure Native. Machine Learning Services. Inputs. Create Service Request Environment Image Request - The Environment, models and assets needed for inferencing.
- Keys
Pulumi.
Azure Native. Machine Learning Services. Inputs. Create Service Request Keys - The authentication keys.
- Dictionary<string, string>
- The service tag dictionary. Tags are mutable.
- Location string
- The name of the Azure location/region.
- Properties Dictionary<string, string>
- The service properties dictionary. Properties are immutable.
- Service
Name string - Name of the Azure Machine Learning service.
- Ssl
Certificate string - The public SSL certificate in PEM format to use if SSL is enabled.
- Ssl
Enabled bool - Whether or not SSL is enabled.
- Ssl
Key string - The public SSL key in PEM format for the certificate.
- Vnet
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. ACIService Create Request Vnet Configuration - The virtual network configuration.
- Resource
Group stringName - Name of the resource group in which workspace is located.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- App
Insights boolEnabled - Whether or not Application Insights is enabled.
- Auth
Enabled bool - Whether or not authentication is enabled on the service.
- Cname string
- The CName for the service.
- Container
Resource ContainerRequirements Resource Requirements Args - The container resource requirements.
- Data
Collection ACIServiceCreate Request Data Collection Args - Details of the data collection options specified.
- Description string
- The description of the service.
- Dns
Name stringLabel - The Dns label for the service.
- Encryption
Properties ACIServiceCreate Request Encryption Properties Args - The encryption properties.
- Environment
Image CreateRequest Service Request Environment Image Request Args - The Environment, models and assets needed for inferencing.
- Keys
Create
Service Request Keys Args - The authentication keys.
- map[string]string
- The service tag dictionary. Tags are mutable.
- Location string
- The name of the Azure location/region.
- Properties map[string]string
- The service properties dictionary. Properties are immutable.
- Service
Name string - Name of the Azure Machine Learning service.
- Ssl
Certificate string - The public SSL certificate in PEM format to use if SSL is enabled.
- Ssl
Enabled bool - Whether or not SSL is enabled.
- Ssl
Key string - The public SSL key in PEM format for the certificate.
- Vnet
Configuration ACIServiceCreate Request Vnet Configuration Args - The virtual network configuration.
- resource
Group StringName - Name of the resource group in which workspace is located.
- workspace
Name String - Name of Azure Machine Learning workspace.
- app
Insights BooleanEnabled - Whether or not Application Insights is enabled.
- auth
Enabled Boolean - Whether or not authentication is enabled on the service.
- cname String
- The CName for the service.
- container
Resource ContainerRequirements Resource Requirements - The container resource requirements.
- data
Collection ACIServiceCreate Request Data Collection - Details of the data collection options specified.
- description String
- The description of the service.
- dns
Name StringLabel - The Dns label for the service.
- encryption
Properties ACIServiceCreate Request Encryption Properties - The encryption properties.
- environment
Image CreateRequest Service Request Environment Image Request - The Environment, models and assets needed for inferencing.
- keys
Create
Service Request Keys - The authentication keys.
- Map<String,String>
- The service tag dictionary. Tags are mutable.
- location String
- The name of the Azure location/region.
- properties Map<String,String>
- The service properties dictionary. Properties are immutable.
- service
Name String - Name of the Azure Machine Learning service.
- ssl
Certificate String - The public SSL certificate in PEM format to use if SSL is enabled.
- ssl
Enabled Boolean - Whether or not SSL is enabled.
- ssl
Key String - The public SSL key in PEM format for the certificate.
- vnet
Configuration ACIServiceCreate Request Vnet Configuration - The virtual network configuration.
- resource
Group stringName - Name of the resource group in which workspace is located.
- workspace
Name string - Name of Azure Machine Learning workspace.
- app
Insights booleanEnabled - Whether or not Application Insights is enabled.
- auth
Enabled boolean - Whether or not authentication is enabled on the service.
- cname string
- The CName for the service.
- container
Resource ContainerRequirements Resource Requirements - The container resource requirements.
- data
Collection ACIServiceCreate Request Data Collection - Details of the data collection options specified.
- description string
- The description of the service.
- dns
Name stringLabel - The Dns label for the service.
- encryption
Properties ACIServiceCreate Request Encryption Properties - The encryption properties.
- environment
Image CreateRequest Service Request Environment Image Request - The Environment, models and assets needed for inferencing.
- keys
Create
Service Request Keys - The authentication keys.
- {[key: string]: string}
- The service tag dictionary. Tags are mutable.
- location string
- The name of the Azure location/region.
- properties {[key: string]: string}
- The service properties dictionary. Properties are immutable.
- service
Name string - Name of the Azure Machine Learning service.
- ssl
Certificate string - The public SSL certificate in PEM format to use if SSL is enabled.
- ssl
Enabled boolean - Whether or not SSL is enabled.
- ssl
Key string - The public SSL key in PEM format for the certificate.
- vnet
Configuration ACIServiceCreate Request Vnet Configuration - The virtual network configuration.
- resource_
group_ strname - Name of the resource group in which workspace is located.
- workspace_
name str - Name of Azure Machine Learning workspace.
- app_
insights_ boolenabled - Whether or not Application Insights is enabled.
- auth_
enabled bool - Whether or not authentication is enabled on the service.
- cname str
- The CName for the service.
- container_
resource_ Containerrequirements Resource Requirements Args - The container resource requirements.
- data_
collection ACIServiceCreate Request Data Collection Args - Details of the data collection options specified.
- description str
- The description of the service.
- dns_
name_ strlabel - The Dns label for the service.
- encryption_
properties ACIServiceCreate Request Encryption Properties Args - The encryption properties.
- environment_
image_ Createrequest Service Request Environment Image Request Args - The Environment, models and assets needed for inferencing.
- keys
Create
Service Request Keys Args - The authentication keys.
- Mapping[str, str]
- The service tag dictionary. Tags are mutable.
- location str
- The name of the Azure location/region.
- properties Mapping[str, str]
- The service properties dictionary. Properties are immutable.
- service_
name str - Name of the Azure Machine Learning service.
- ssl_
certificate str - The public SSL certificate in PEM format to use if SSL is enabled.
- ssl_
enabled bool - Whether or not SSL is enabled.
- ssl_
key str - The public SSL key in PEM format for the certificate.
- vnet_
configuration ACIServiceCreate Request Vnet Configuration Args - The virtual network configuration.
- resource
Group StringName - Name of the resource group in which workspace is located.
- workspace
Name String - Name of Azure Machine Learning workspace.
- app
Insights BooleanEnabled - Whether or not Application Insights is enabled.
- auth
Enabled Boolean - Whether or not authentication is enabled on the service.
- cname String
- The CName for the service.
- container
Resource Property MapRequirements - The container resource requirements.
- data
Collection Property Map - Details of the data collection options specified.
- description String
- The description of the service.
- dns
Name StringLabel - The Dns label for the service.
- encryption
Properties Property Map - The encryption properties.
- environment
Image Property MapRequest - The Environment, models and assets needed for inferencing.
- keys Property Map
- The authentication keys.
- Map<String>
- The service tag dictionary. Tags are mutable.
- location String
- The name of the Azure location/region.
- properties Map<String>
- The service properties dictionary. Properties are immutable.
- service
Name String - Name of the Azure Machine Learning service.
- ssl
Certificate String - The public SSL certificate in PEM format to use if SSL is enabled.
- ssl
Enabled Boolean - Whether or not SSL is enabled.
- ssl
Key String - The public SSL key in PEM format for the certificate.
- vnet
Configuration Property Map - The virtual network configuration.
Outputs
All input properties are implicitly available as output properties. Additionally, the ACIService resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the resource.
- System
Data Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response - Read only system data
- Type string
- Specifies the type of the resource.
- Identity
Pulumi.
Azure Native. Machine Learning Services. Outputs. Identity Response - The identity of the resource.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Outputs. Sku Response - The sku of the workspace.
- Dictionary<string, string>
- Contains resource tags defined as key/value pairs.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the resource.
- System
Data SystemData Response - Read only system data
- Type string
- Specifies the type of the resource.
- Identity
Identity
Response - The identity of the resource.
- Sku
Sku
Response - The sku of the workspace.
- map[string]string
- Contains resource tags defined as key/value pairs.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the resource.
- system
Data SystemData Response - Read only system data
- type String
- Specifies the type of the resource.
- identity
Identity
Response - The identity of the resource.
- sku
Sku
Response - The sku of the workspace.
- Map<String,String>
- Contains resource tags defined as key/value pairs.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Specifies the name of the resource.
- system
Data SystemData Response - Read only system data
- type string
- Specifies the type of the resource.
- identity
Identity
Response - The identity of the resource.
- sku
Sku
Response - The sku of the workspace.
- {[key: string]: string}
- Contains resource tags defined as key/value pairs.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Specifies the name of the resource.
- system_
data SystemData Response - Read only system data
- type str
- Specifies the type of the resource.
- identity
Identity
Response - The identity of the resource.
- sku
Sku
Response - The sku of the workspace.
- Mapping[str, str]
- Contains resource tags defined as key/value pairs.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the resource.
- system
Data Property Map - Read only system data
- type String
- Specifies the type of the resource.
- identity Property Map
- The identity of the resource.
- sku Property Map
- The sku of the workspace.
- Map<String>
- Contains resource tags defined as key/value pairs.
Supporting Types
ACIServiceCreateRequestDataCollection, ACIServiceCreateRequestDataCollectionArgs
- Event
Hub boolEnabled - Option for enabling/disabling Event Hub.
- Storage
Enabled bool - Option for enabling/disabling storage.
- Event
Hub boolEnabled - Option for enabling/disabling Event Hub.
- Storage
Enabled bool - Option for enabling/disabling storage.
- event
Hub BooleanEnabled - Option for enabling/disabling Event Hub.
- storage
Enabled Boolean - Option for enabling/disabling storage.
- event
Hub booleanEnabled - Option for enabling/disabling Event Hub.
- storage
Enabled boolean - Option for enabling/disabling storage.
- event_
hub_ boolenabled - Option for enabling/disabling Event Hub.
- storage_
enabled bool - Option for enabling/disabling storage.
- event
Hub BooleanEnabled - Option for enabling/disabling Event Hub.
- storage
Enabled Boolean - Option for enabling/disabling storage.
ACIServiceCreateRequestEncryptionProperties, ACIServiceCreateRequestEncryptionPropertiesArgs
- Key
Name string - Encryption Key name
- Key
Version string - Encryption Key Version
- Vault
Base stringUrl - vault base Url
- Key
Name string - Encryption Key name
- Key
Version string - Encryption Key Version
- Vault
Base stringUrl - vault base Url
- key
Name String - Encryption Key name
- key
Version String - Encryption Key Version
- vault
Base StringUrl - vault base Url
- key
Name string - Encryption Key name
- key
Version string - Encryption Key Version
- vault
Base stringUrl - vault base Url
- key_
name str - Encryption Key name
- key_
version str - Encryption Key Version
- vault_
base_ strurl - vault base Url
- key
Name String - Encryption Key name
- key
Version String - Encryption Key Version
- vault
Base StringUrl - vault base Url
ACIServiceCreateRequestVnetConfiguration, ACIServiceCreateRequestVnetConfigurationArgs
- Subnet
Name string - The name of the virtual network subnet.
- Vnet
Name string - The name of the virtual network.
- Subnet
Name string - The name of the virtual network subnet.
- Vnet
Name string - The name of the virtual network.
- subnet
Name String - The name of the virtual network subnet.
- vnet
Name String - The name of the virtual network.
- subnet
Name string - The name of the virtual network subnet.
- vnet
Name string - The name of the virtual network.
- subnet_
name str - The name of the virtual network subnet.
- vnet_
name str - The name of the virtual network.
- subnet
Name String - The name of the virtual network subnet.
- vnet
Name String - The name of the virtual network.
ACIServiceResponseResponse, ACIServiceResponseResponseArgs
- Error
Pulumi.
Azure Native. Machine Learning Services. Inputs. Service Response Base Response Error - The error details.
- Model
Config Dictionary<string, object>Map - Details on the models and configurations.
- Scoring
Uri string - The Uri for sending scoring requests.
- State string
- The current state of the service.
- Swagger
Uri string - The Uri for sending swagger requests.
- App
Insights boolEnabled - Whether or not Application Insights is enabled.
- Auth
Enabled bool - Whether or not authentication is enabled on the service.
- Cname string
- The CName for the service.
- Container
Resource Pulumi.Requirements Azure Native. Machine Learning Services. Inputs. Container Resource Requirements Response - The container resource requirements.
- Data
Collection Pulumi.Azure Native. Machine Learning Services. Inputs. ACIService Response Response Data Collection - Details of the data collection options specified.
- Deployment
Type string - The deployment type for the service.
- Description string
- The service description.
- Encryption
Properties Pulumi.Azure Native. Machine Learning Services. Inputs. ACIService Response Response Encryption Properties - The encryption properties.
- Environment
Image Pulumi.Request Azure Native. Machine Learning Services. Inputs. ACIService Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- Dictionary<string, string>
- The service tag dictionary. Tags are mutable.
- Location string
- The name of the Azure location/region.
- Models
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Response> - The list of models.
- Properties Dictionary<string, string>
- The service property dictionary. Properties are immutable.
- Public
Fqdn string - The public Fqdn for the service.
- Public
Ip string - The public IP address for the service.
- Ssl
Certificate string - The public SSL certificate in PEM format to use if SSL is enabled.
- Ssl
Enabled bool - Whether or not SSL is enabled.
- Ssl
Key string - The public SSL key in PEM format for the certificate.
- Vnet
Configuration Pulumi.Azure Native. Machine Learning Services. Inputs. ACIService Response Response Vnet Configuration - The virtual network configuration.
- Error
Service
Response Base Response Error - The error details.
- Model
Config map[string]interface{}Map - Details on the models and configurations.
- Scoring
Uri string - The Uri for sending scoring requests.
- State string
- The current state of the service.
- Swagger
Uri string - The Uri for sending swagger requests.
- App
Insights boolEnabled - Whether or not Application Insights is enabled.
- Auth
Enabled bool - Whether or not authentication is enabled on the service.
- Cname string
- The CName for the service.
- Container
Resource ContainerRequirements Resource Requirements Response - The container resource requirements.
- Data
Collection ACIServiceResponse Response Data Collection - Details of the data collection options specified.
- Deployment
Type string - The deployment type for the service.
- Description string
- The service description.
- Encryption
Properties ACIServiceResponse Response Encryption Properties - The encryption properties.
- Environment
Image ACIServiceRequest Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- map[string]string
- The service tag dictionary. Tags are mutable.
- Location string
- The name of the Azure location/region.
- Models
[]Model
Response - The list of models.
- Properties map[string]string
- The service property dictionary. Properties are immutable.
- Public
Fqdn string - The public Fqdn for the service.
- Public
Ip string - The public IP address for the service.
- Ssl
Certificate string - The public SSL certificate in PEM format to use if SSL is enabled.
- Ssl
Enabled bool - Whether or not SSL is enabled.
- Ssl
Key string - The public SSL key in PEM format for the certificate.
- Vnet
Configuration ACIServiceResponse Response Vnet Configuration - The virtual network configuration.
- error
Service
Response Base Response Error - The error details.
- model
Config Map<String,Object>Map - Details on the models and configurations.
- scoring
Uri String - The Uri for sending scoring requests.
- state String
- The current state of the service.
- swagger
Uri String - The Uri for sending swagger requests.
- app
Insights BooleanEnabled - Whether or not Application Insights is enabled.
- auth
Enabled Boolean - Whether or not authentication is enabled on the service.
- cname String
- The CName for the service.
- container
Resource ContainerRequirements Resource Requirements Response - The container resource requirements.
- data
Collection ACIServiceResponse Response Data Collection - Details of the data collection options specified.
- deployment
Type String - The deployment type for the service.
- description String
- The service description.
- encryption
Properties ACIServiceResponse Response Encryption Properties - The encryption properties.
- environment
Image ACIServiceRequest Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- Map<String,String>
- The service tag dictionary. Tags are mutable.
- location String
- The name of the Azure location/region.
- models
List<Model
Response> - The list of models.
- properties Map<String,String>
- The service property dictionary. Properties are immutable.
- public
Fqdn String - The public Fqdn for the service.
- public
Ip String - The public IP address for the service.
- ssl
Certificate String - The public SSL certificate in PEM format to use if SSL is enabled.
- ssl
Enabled Boolean - Whether or not SSL is enabled.
- ssl
Key String - The public SSL key in PEM format for the certificate.
- vnet
Configuration ACIServiceResponse Response Vnet Configuration - The virtual network configuration.
- error
Service
Response Base Response Error - The error details.
- model
Config {[key: string]: any}Map - Details on the models and configurations.
- scoring
Uri string - The Uri for sending scoring requests.
- state string
- The current state of the service.
- swagger
Uri string - The Uri for sending swagger requests.
- app
Insights booleanEnabled - Whether or not Application Insights is enabled.
- auth
Enabled boolean - Whether or not authentication is enabled on the service.
- cname string
- The CName for the service.
- container
Resource ContainerRequirements Resource Requirements Response - The container resource requirements.
- data
Collection ACIServiceResponse Response Data Collection - Details of the data collection options specified.
- deployment
Type string - The deployment type for the service.
- description string
- The service description.
- encryption
Properties ACIServiceResponse Response Encryption Properties - The encryption properties.
- environment
Image ACIServiceRequest Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- {[key: string]: string}
- The service tag dictionary. Tags are mutable.
- location string
- The name of the Azure location/region.
- models
Model
Response[] - The list of models.
- properties {[key: string]: string}
- The service property dictionary. Properties are immutable.
- public
Fqdn string - The public Fqdn for the service.
- public
Ip string - The public IP address for the service.
- ssl
Certificate string - The public SSL certificate in PEM format to use if SSL is enabled.
- ssl
Enabled boolean - Whether or not SSL is enabled.
- ssl
Key string - The public SSL key in PEM format for the certificate.
- vnet
Configuration ACIServiceResponse Response Vnet Configuration - The virtual network configuration.
- error
Service
Response Base Response Error - The error details.
- model_
config_ Mapping[str, Any]map - Details on the models and configurations.
- scoring_
uri str - The Uri for sending scoring requests.
- state str
- The current state of the service.
- swagger_
uri str - The Uri for sending swagger requests.
- app_
insights_ boolenabled - Whether or not Application Insights is enabled.
- auth_
enabled bool - Whether or not authentication is enabled on the service.
- cname str
- The CName for the service.
- container_
resource_ Containerrequirements Resource Requirements Response - The container resource requirements.
- data_
collection ACIServiceResponse Response Data Collection - Details of the data collection options specified.
- deployment_
type str - The deployment type for the service.
- description str
- The service description.
- encryption_
properties ACIServiceResponse Response Encryption Properties - The encryption properties.
- environment_
image_ ACIServicerequest Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- Mapping[str, str]
- The service tag dictionary. Tags are mutable.
- location str
- The name of the Azure location/region.
- models
Sequence[Model
Response] - The list of models.
- properties Mapping[str, str]
- The service property dictionary. Properties are immutable.
- public_
fqdn str - The public Fqdn for the service.
- public_
ip str - The public IP address for the service.
- ssl_
certificate str - The public SSL certificate in PEM format to use if SSL is enabled.
- ssl_
enabled bool - Whether or not SSL is enabled.
- ssl_
key str - The public SSL key in PEM format for the certificate.
- vnet_
configuration ACIServiceResponse Response Vnet Configuration - The virtual network configuration.
- error Property Map
- The error details.
- model
Config Map<Any>Map - Details on the models and configurations.
- scoring
Uri String - The Uri for sending scoring requests.
- state String
- The current state of the service.
- swagger
Uri String - The Uri for sending swagger requests.
- app
Insights BooleanEnabled - Whether or not Application Insights is enabled.
- auth
Enabled Boolean - Whether or not authentication is enabled on the service.
- cname String
- The CName for the service.
- container
Resource Property MapRequirements - The container resource requirements.
- data
Collection Property Map - Details of the data collection options specified.
- deployment
Type String - The deployment type for the service.
- description String
- The service description.
- encryption
Properties Property Map - The encryption properties.
- environment
Image Property MapRequest - The Environment, models and assets used for inferencing.
- Map<String>
- The service tag dictionary. Tags are mutable.
- location String
- The name of the Azure location/region.
- models List<Property Map>
- The list of models.
- properties Map<String>
- The service property dictionary. Properties are immutable.
- public
Fqdn String - The public Fqdn for the service.
- public
Ip String - The public IP address for the service.
- ssl
Certificate String - The public SSL certificate in PEM format to use if SSL is enabled.
- ssl
Enabled Boolean - Whether or not SSL is enabled.
- ssl
Key String - The public SSL key in PEM format for the certificate.
- vnet
Configuration Property Map - The virtual network configuration.
ACIServiceResponseResponseDataCollection, ACIServiceResponseResponseDataCollectionArgs
- Event
Hub boolEnabled - Option for enabling/disabling Event Hub.
- Storage
Enabled bool - Option for enabling/disabling storage.
- Event
Hub boolEnabled - Option for enabling/disabling Event Hub.
- Storage
Enabled bool - Option for enabling/disabling storage.
- event
Hub BooleanEnabled - Option for enabling/disabling Event Hub.
- storage
Enabled Boolean - Option for enabling/disabling storage.
- event
Hub booleanEnabled - Option for enabling/disabling Event Hub.
- storage
Enabled boolean - Option for enabling/disabling storage.
- event_
hub_ boolenabled - Option for enabling/disabling Event Hub.
- storage_
enabled bool - Option for enabling/disabling storage.
- event
Hub BooleanEnabled - Option for enabling/disabling Event Hub.
- storage
Enabled Boolean - Option for enabling/disabling storage.
ACIServiceResponseResponseEncryptionProperties, ACIServiceResponseResponseEncryptionPropertiesArgs
- Key
Name string - Encryption Key name
- Key
Version string - Encryption Key Version
- Vault
Base stringUrl - vault base Url
- Key
Name string - Encryption Key name
- Key
Version string - Encryption Key Version
- Vault
Base stringUrl - vault base Url
- key
Name String - Encryption Key name
- key
Version String - Encryption Key Version
- vault
Base StringUrl - vault base Url
- key
Name string - Encryption Key name
- key
Version string - Encryption Key Version
- vault
Base stringUrl - vault base Url
- key_
name str - Encryption Key name
- key_
version str - Encryption Key Version
- vault_
base_ strurl - vault base Url
- key
Name String - Encryption Key name
- key
Version String - Encryption Key Version
- vault
Base StringUrl - vault base Url
ACIServiceResponseResponseEnvironmentImageRequest, ACIServiceResponseResponseEnvironmentImageRequestArgs
- Assets
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Image Asset Response> - The list of assets.
- Driver
Program string - The name of the driver file.
- Environment
Pulumi.
Azure Native. Machine Learning Services. Inputs. Environment Image Response Response Environment - The details of the AZURE ML environment.
- Environment
Reference Pulumi.Azure Native. Machine Learning Services. Inputs. Environment Image Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- Model
Ids List<string> - The list of model Ids.
- Models
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Response> - The list of models.
- Assets
[]Image
Asset Response - The list of assets.
- Driver
Program string - The name of the driver file.
- Environment
Environment
Image Response Response Environment - The details of the AZURE ML environment.
- Environment
Reference EnvironmentImage Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- Model
Ids []string - The list of model Ids.
- Models
[]Model
Response - The list of models.
- assets
List<Image
Asset Response> - The list of assets.
- driver
Program String - The name of the driver file.
- environment
Environment
Image Response Response Environment - The details of the AZURE ML environment.
- environment
Reference EnvironmentImage Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- model
Ids List<String> - The list of model Ids.
- models
List<Model
Response> - The list of models.
- assets
Image
Asset Response[] - The list of assets.
- driver
Program string - The name of the driver file.
- environment
Environment
Image Response Response Environment - The details of the AZURE ML environment.
- environment
Reference EnvironmentImage Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- model
Ids string[] - The list of model Ids.
- models
Model
Response[] - The list of models.
- assets
Sequence[Image
Asset Response] - The list of assets.
- driver_
program str - The name of the driver file.
- environment
Environment
Image Response Response Environment - The details of the AZURE ML environment.
- environment_
reference EnvironmentImage Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- model_
ids Sequence[str] - The list of model Ids.
- models
Sequence[Model
Response] - The list of models.
- assets List<Property Map>
- The list of assets.
- driver
Program String - The name of the driver file.
- environment Property Map
- The details of the AZURE ML environment.
- environment
Reference Property Map - The unique identifying details of the AZURE ML environment.
- model
Ids List<String> - The list of model Ids.
- models List<Property Map>
- The list of models.
ACIServiceResponseResponseVnetConfiguration, ACIServiceResponseResponseVnetConfigurationArgs
- Subnet
Name string - The name of the virtual network subnet.
- Vnet
Name string - The name of the virtual network.
- Subnet
Name string - The name of the virtual network subnet.
- Vnet
Name string - The name of the virtual network.
- subnet
Name String - The name of the virtual network subnet.
- vnet
Name String - The name of the virtual network.
- subnet
Name string - The name of the virtual network subnet.
- vnet
Name string - The name of the virtual network.
- subnet_
name str - The name of the virtual network subnet.
- vnet_
name str - The name of the virtual network.
- subnet
Name String - The name of the virtual network subnet.
- vnet
Name String - The name of the virtual network.
AKSReplicaStatusResponseError, AKSReplicaStatusResponseErrorArgs
- Error
Pulumi.
Azure Native. Machine Learning Services. Inputs. Error Response Response - The error response.
- Error
Error
Response Response - The error response.
- error
Error
Response Response - The error response.
- error
Error
Response Response - The error response.
- error
Error
Response Response - The error response.
- error Property Map
- The error response.
AKSServiceResponseResponse, AKSServiceResponseResponseArgs
- Deployment
Status Pulumi.Azure Native. Machine Learning Services. Inputs. AKSService Response Response Deployment Status - The deployment status.
- Error
Pulumi.
Azure Native. Machine Learning Services. Inputs. Service Response Base Response Error - The error details.
- Model
Config Dictionary<string, object>Map - Details on the models and configurations.
- Scoring
Uri string - The Uri for sending scoring requests.
- State string
- The current state of the service.
- Swagger
Uri string - The Uri for sending swagger requests.
- Aad
Auth boolEnabled - Whether or not AAD authentication is enabled.
- App
Insights boolEnabled - Whether or not Application Insights is enabled.
- Auth
Enabled bool - Whether or not authentication is enabled.
- Auto
Scaler Pulumi.Azure Native. Machine Learning Services. Inputs. AKSService Response Response Auto Scaler - The auto scaler properties.
- Compute
Name string - The name of the compute resource.
- Container
Resource Pulumi.Requirements Azure Native. Machine Learning Services. Inputs. Container Resource Requirements Response - The container resource requirements.
- Data
Collection Pulumi.Azure Native. Machine Learning Services. Inputs. AKSService Response Response Data Collection - Details of the data collection options specified.
- Deployment
Type string - The deployment type for the service.
- Description string
- The service description.
- Environment
Image Pulumi.Request Azure Native. Machine Learning Services. Inputs. AKSService Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- Is
Default bool - Is this the default variant.
- Dictionary<string, string>
- The service tag dictionary. Tags are mutable.
- Liveness
Probe Pulumi.Requirements Azure Native. Machine Learning Services. Inputs. AKSService Response Response Liveness Probe Requirements - The liveness probe requirements.
- Max
Concurrent intRequests Per Container - The maximum number of concurrent requests per container.
- Max
Queue intWait Ms - Maximum time a request will wait in the queue (in milliseconds). After this time, the service will return 503 (Service Unavailable)
- Models
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Response> - The list of models.
- Namespace string
- The Kubernetes namespace of the deployment.
- Num
Replicas int - The number of replicas on the cluster.
- Properties Dictionary<string, string>
- The service property dictionary. Properties are immutable.
- Scoring
Timeout intMs - The scoring timeout in milliseconds.
- Traffic
Percentile double - The amount of traffic variant receives.
- Type string
- The type of the variant.
- Deployment
Status AKSServiceResponse Response Deployment Status - The deployment status.
- Error
Service
Response Base Response Error - The error details.
- Model
Config map[string]interface{}Map - Details on the models and configurations.
- Scoring
Uri string - The Uri for sending scoring requests.
- State string
- The current state of the service.
- Swagger
Uri string - The Uri for sending swagger requests.
- Aad
Auth boolEnabled - Whether or not AAD authentication is enabled.
- App
Insights boolEnabled - Whether or not Application Insights is enabled.
- Auth
Enabled bool - Whether or not authentication is enabled.
- Auto
Scaler AKSServiceResponse Response Auto Scaler - The auto scaler properties.
- Compute
Name string - The name of the compute resource.
- Container
Resource ContainerRequirements Resource Requirements Response - The container resource requirements.
- Data
Collection AKSServiceResponse Response Data Collection - Details of the data collection options specified.
- Deployment
Type string - The deployment type for the service.
- Description string
- The service description.
- Environment
Image AKSServiceRequest Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- Is
Default bool - Is this the default variant.
- map[string]string
- The service tag dictionary. Tags are mutable.
- Liveness
Probe AKSServiceRequirements Response Response Liveness Probe Requirements - The liveness probe requirements.
- Max
Concurrent intRequests Per Container - The maximum number of concurrent requests per container.
- Max
Queue intWait Ms - Maximum time a request will wait in the queue (in milliseconds). After this time, the service will return 503 (Service Unavailable)
- Models
[]Model
Response - The list of models.
- Namespace string
- The Kubernetes namespace of the deployment.
- Num
Replicas int - The number of replicas on the cluster.
- Properties map[string]string
- The service property dictionary. Properties are immutable.
- Scoring
Timeout intMs - The scoring timeout in milliseconds.
- Traffic
Percentile float64 - The amount of traffic variant receives.
- Type string
- The type of the variant.
- deployment
Status AKSServiceResponse Response Deployment Status - The deployment status.
- error
Service
Response Base Response Error - The error details.
- model
Config Map<String,Object>Map - Details on the models and configurations.
- scoring
Uri String - The Uri for sending scoring requests.
- state String
- The current state of the service.
- swagger
Uri String - The Uri for sending swagger requests.
- aad
Auth BooleanEnabled - Whether or not AAD authentication is enabled.
- app
Insights BooleanEnabled - Whether or not Application Insights is enabled.
- auth
Enabled Boolean - Whether or not authentication is enabled.
- auto
Scaler AKSServiceResponse Response Auto Scaler - The auto scaler properties.
- compute
Name String - The name of the compute resource.
- container
Resource ContainerRequirements Resource Requirements Response - The container resource requirements.
- data
Collection AKSServiceResponse Response Data Collection - Details of the data collection options specified.
- deployment
Type String - The deployment type for the service.
- description String
- The service description.
- environment
Image AKSServiceRequest Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- is
Default Boolean - Is this the default variant.
- Map<String,String>
- The service tag dictionary. Tags are mutable.
- liveness
Probe AKSServiceRequirements Response Response Liveness Probe Requirements - The liveness probe requirements.
- max
Concurrent IntegerRequests Per Container - The maximum number of concurrent requests per container.
- max
Queue IntegerWait Ms - Maximum time a request will wait in the queue (in milliseconds). After this time, the service will return 503 (Service Unavailable)
- models
List<Model
Response> - The list of models.
- namespace String
- The Kubernetes namespace of the deployment.
- num
Replicas Integer - The number of replicas on the cluster.
- properties Map<String,String>
- The service property dictionary. Properties are immutable.
- scoring
Timeout IntegerMs - The scoring timeout in milliseconds.
- traffic
Percentile Double - The amount of traffic variant receives.
- type String
- The type of the variant.
- deployment
Status AKSServiceResponse Response Deployment Status - The deployment status.
- error
Service
Response Base Response Error - The error details.
- model
Config {[key: string]: any}Map - Details on the models and configurations.
- scoring
Uri string - The Uri for sending scoring requests.
- state string
- The current state of the service.
- swagger
Uri string - The Uri for sending swagger requests.
- aad
Auth booleanEnabled - Whether or not AAD authentication is enabled.
- app
Insights booleanEnabled - Whether or not Application Insights is enabled.
- auth
Enabled boolean - Whether or not authentication is enabled.
- auto
Scaler AKSServiceResponse Response Auto Scaler - The auto scaler properties.
- compute
Name string - The name of the compute resource.
- container
Resource ContainerRequirements Resource Requirements Response - The container resource requirements.
- data
Collection AKSServiceResponse Response Data Collection - Details of the data collection options specified.
- deployment
Type string - The deployment type for the service.
- description string
- The service description.
- environment
Image AKSServiceRequest Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- is
Default boolean - Is this the default variant.
- {[key: string]: string}
- The service tag dictionary. Tags are mutable.
- liveness
Probe AKSServiceRequirements Response Response Liveness Probe Requirements - The liveness probe requirements.
- max
Concurrent numberRequests Per Container - The maximum number of concurrent requests per container.
- max
Queue numberWait Ms - Maximum time a request will wait in the queue (in milliseconds). After this time, the service will return 503 (Service Unavailable)
- models
Model
Response[] - The list of models.
- namespace string
- The Kubernetes namespace of the deployment.
- num
Replicas number - The number of replicas on the cluster.
- properties {[key: string]: string}
- The service property dictionary. Properties are immutable.
- scoring
Timeout numberMs - The scoring timeout in milliseconds.
- traffic
Percentile number - The amount of traffic variant receives.
- type string
- The type of the variant.
- deployment_
status AKSServiceResponse Response Deployment Status - The deployment status.
- error
Service
Response Base Response Error - The error details.
- model_
config_ Mapping[str, Any]map - Details on the models and configurations.
- scoring_
uri str - The Uri for sending scoring requests.
- state str
- The current state of the service.
- swagger_
uri str - The Uri for sending swagger requests.
- aad_
auth_ boolenabled - Whether or not AAD authentication is enabled.
- app_
insights_ boolenabled - Whether or not Application Insights is enabled.
- auth_
enabled bool - Whether or not authentication is enabled.
- auto_
scaler AKSServiceResponse Response Auto Scaler - The auto scaler properties.
- compute_
name str - The name of the compute resource.
- container_
resource_ Containerrequirements Resource Requirements Response - The container resource requirements.
- data_
collection AKSServiceResponse Response Data Collection - Details of the data collection options specified.
- deployment_
type str - The deployment type for the service.
- description str
- The service description.
- environment_
image_ AKSServicerequest Response Response Environment Image Request - The Environment, models and assets used for inferencing.
- is_
default bool - Is this the default variant.
- Mapping[str, str]
- The service tag dictionary. Tags are mutable.
- liveness_
probe_ AKSServicerequirements Response Response Liveness Probe Requirements - The liveness probe requirements.
- max_
concurrent_ intrequests_ per_ container - The maximum number of concurrent requests per container.
- max_
queue_ intwait_ ms - Maximum time a request will wait in the queue (in milliseconds). After this time, the service will return 503 (Service Unavailable)
- models
Sequence[Model
Response] - The list of models.
- namespace str
- The Kubernetes namespace of the deployment.
- num_
replicas int - The number of replicas on the cluster.
- properties Mapping[str, str]
- The service property dictionary. Properties are immutable.
- scoring_
timeout_ intms - The scoring timeout in milliseconds.
- traffic_
percentile float - The amount of traffic variant receives.
- type str
- The type of the variant.
- deployment
Status Property Map - The deployment status.
- error Property Map
- The error details.
- model
Config Map<Any>Map - Details on the models and configurations.
- scoring
Uri String - The Uri for sending scoring requests.
- state String
- The current state of the service.
- swagger
Uri String - The Uri for sending swagger requests.
- aad
Auth BooleanEnabled - Whether or not AAD authentication is enabled.
- app
Insights BooleanEnabled - Whether or not Application Insights is enabled.
- auth
Enabled Boolean - Whether or not authentication is enabled.
- auto
Scaler Property Map - The auto scaler properties.
- compute
Name String - The name of the compute resource.
- container
Resource Property MapRequirements - The container resource requirements.
- data
Collection Property Map - Details of the data collection options specified.
- deployment
Type String - The deployment type for the service.
- description String
- The service description.
- environment
Image Property MapRequest - The Environment, models and assets used for inferencing.
- is
Default Boolean - Is this the default variant.
- Map<String>
- The service tag dictionary. Tags are mutable.
- liveness
Probe Property MapRequirements - The liveness probe requirements.
- max
Concurrent NumberRequests Per Container - The maximum number of concurrent requests per container.
- max
Queue NumberWait Ms - Maximum time a request will wait in the queue (in milliseconds). After this time, the service will return 503 (Service Unavailable)
- models List<Property Map>
- The list of models.
- namespace String
- The Kubernetes namespace of the deployment.
- num
Replicas Number - The number of replicas on the cluster.
- properties Map<String>
- The service property dictionary. Properties are immutable.
- scoring
Timeout NumberMs - The scoring timeout in milliseconds.
- traffic
Percentile Number - The amount of traffic variant receives.
- type String
- The type of the variant.
AKSServiceResponseResponseAutoScaler, AKSServiceResponseResponseAutoScalerArgs
- Autoscale
Enabled bool - Option to enable/disable auto scaling.
- Max
Replicas int - The maximum number of replicas in the cluster.
- Min
Replicas int - The minimum number of replicas to scale down to.
- Refresh
Period intIn Seconds - The amount of seconds to wait between auto scale updates.
- Target
Utilization int - The target utilization percentage to use for determining whether to scale the cluster.
- Autoscale
Enabled bool - Option to enable/disable auto scaling.
- Max
Replicas int - The maximum number of replicas in the cluster.
- Min
Replicas int - The minimum number of replicas to scale down to.
- Refresh
Period intIn Seconds - The amount of seconds to wait between auto scale updates.
- Target
Utilization int - The target utilization percentage to use for determining whether to scale the cluster.
- autoscale
Enabled Boolean - Option to enable/disable auto scaling.
- max
Replicas Integer - The maximum number of replicas in the cluster.
- min
Replicas Integer - The minimum number of replicas to scale down to.
- refresh
Period IntegerIn Seconds - The amount of seconds to wait between auto scale updates.
- target
Utilization Integer - The target utilization percentage to use for determining whether to scale the cluster.
- autoscale
Enabled boolean - Option to enable/disable auto scaling.
- max
Replicas number - The maximum number of replicas in the cluster.
- min
Replicas number - The minimum number of replicas to scale down to.
- refresh
Period numberIn Seconds - The amount of seconds to wait between auto scale updates.
- target
Utilization number - The target utilization percentage to use for determining whether to scale the cluster.
- autoscale_
enabled bool - Option to enable/disable auto scaling.
- max_
replicas int - The maximum number of replicas in the cluster.
- min_
replicas int - The minimum number of replicas to scale down to.
- refresh_
period_ intin_ seconds - The amount of seconds to wait between auto scale updates.
- target_
utilization int - The target utilization percentage to use for determining whether to scale the cluster.
- autoscale
Enabled Boolean - Option to enable/disable auto scaling.
- max
Replicas Number - The maximum number of replicas in the cluster.
- min
Replicas Number - The minimum number of replicas to scale down to.
- refresh
Period NumberIn Seconds - The amount of seconds to wait between auto scale updates.
- target
Utilization Number - The target utilization percentage to use for determining whether to scale the cluster.
AKSServiceResponseResponseDataCollection, AKSServiceResponseResponseDataCollectionArgs
- Event
Hub boolEnabled - Option for enabling/disabling Event Hub.
- Storage
Enabled bool - Option for enabling/disabling storage.
- Event
Hub boolEnabled - Option for enabling/disabling Event Hub.
- Storage
Enabled bool - Option for enabling/disabling storage.
- event
Hub BooleanEnabled - Option for enabling/disabling Event Hub.
- storage
Enabled Boolean - Option for enabling/disabling storage.
- event
Hub booleanEnabled - Option for enabling/disabling Event Hub.
- storage
Enabled boolean - Option for enabling/disabling storage.
- event_
hub_ boolenabled - Option for enabling/disabling Event Hub.
- storage_
enabled bool - Option for enabling/disabling storage.
- event
Hub BooleanEnabled - Option for enabling/disabling Event Hub.
- storage
Enabled Boolean - Option for enabling/disabling storage.
AKSServiceResponseResponseDeploymentStatus, AKSServiceResponseResponseDeploymentStatusArgs
- Available
Replicas int - The number of available replicas.
- Desired
Replicas int - The desired number of replicas.
- Error
Pulumi.
Azure Native. Machine Learning Services. Inputs. AKSReplica Status Response Error - The error details.
- Updated
Replicas int - The number of updated replicas.
- Available
Replicas int - The number of available replicas.
- Desired
Replicas int - The desired number of replicas.
- Error
AKSReplica
Status Response Error - The error details.
- Updated
Replicas int - The number of updated replicas.
- available
Replicas Integer - The number of available replicas.
- desired
Replicas Integer - The desired number of replicas.
- error
AKSReplica
Status Response Error - The error details.
- updated
Replicas Integer - The number of updated replicas.
- available
Replicas number - The number of available replicas.
- desired
Replicas number - The desired number of replicas.
- error
AKSReplica
Status Response Error - The error details.
- updated
Replicas number - The number of updated replicas.
- available_
replicas int - The number of available replicas.
- desired_
replicas int - The desired number of replicas.
- error
AKSReplica
Status Response Error - The error details.
- updated_
replicas int - The number of updated replicas.
- available
Replicas Number - The number of available replicas.
- desired
Replicas Number - The desired number of replicas.
- error Property Map
- The error details.
- updated
Replicas Number - The number of updated replicas.
AKSServiceResponseResponseEnvironmentImageRequest, AKSServiceResponseResponseEnvironmentImageRequestArgs
- Assets
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Image Asset Response> - The list of assets.
- Driver
Program string - The name of the driver file.
- Environment
Pulumi.
Azure Native. Machine Learning Services. Inputs. Environment Image Response Response Environment - The details of the AZURE ML environment.
- Environment
Reference Pulumi.Azure Native. Machine Learning Services. Inputs. Environment Image Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- Model
Ids List<string> - The list of model Ids.
- Models
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Response> - The list of models.
- Assets
[]Image
Asset Response - The list of assets.
- Driver
Program string - The name of the driver file.
- Environment
Environment
Image Response Response Environment - The details of the AZURE ML environment.
- Environment
Reference EnvironmentImage Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- Model
Ids []string - The list of model Ids.
- Models
[]Model
Response - The list of models.
- assets
List<Image
Asset Response> - The list of assets.
- driver
Program String - The name of the driver file.
- environment
Environment
Image Response Response Environment - The details of the AZURE ML environment.
- environment
Reference EnvironmentImage Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- model
Ids List<String> - The list of model Ids.
- models
List<Model
Response> - The list of models.
- assets
Image
Asset Response[] - The list of assets.
- driver
Program string - The name of the driver file.
- environment
Environment
Image Response Response Environment - The details of the AZURE ML environment.
- environment
Reference EnvironmentImage Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- model
Ids string[] - The list of model Ids.
- models
Model
Response[] - The list of models.
- assets
Sequence[Image
Asset Response] - The list of assets.
- driver_
program str - The name of the driver file.
- environment
Environment
Image Response Response Environment - The details of the AZURE ML environment.
- environment_
reference EnvironmentImage Response Response Environment Reference - The unique identifying details of the AZURE ML environment.
- model_
ids Sequence[str] - The list of model Ids.
- models
Sequence[Model
Response] - The list of models.
- assets List<Property Map>
- The list of assets.
- driver
Program String - The name of the driver file.
- environment Property Map
- The details of the AZURE ML environment.
- environment
Reference Property Map - The unique identifying details of the AZURE ML environment.
- model
Ids List<String> - The list of model Ids.
- models List<Property Map>
- The list of models.
AKSServiceResponseResponseLivenessProbeRequirements, AKSServiceResponseResponseLivenessProbeRequirementsArgs
- Failure
Threshold int - The number of failures to allow before returning an unhealthy status.
- Initial
Delay intSeconds - The delay before the first probe in seconds.
- Period
Seconds int - The length of time between probes in seconds.
- Success
Threshold int - The number of successful probes before returning a healthy status.
- Timeout
Seconds int - The probe timeout in seconds.
- Failure
Threshold int - The number of failures to allow before returning an unhealthy status.
- Initial
Delay intSeconds - The delay before the first probe in seconds.
- Period
Seconds int - The length of time between probes in seconds.
- Success
Threshold int - The number of successful probes before returning a healthy status.
- Timeout
Seconds int - The probe timeout in seconds.
- failure
Threshold Integer - The number of failures to allow before returning an unhealthy status.
- initial
Delay IntegerSeconds - The delay before the first probe in seconds.
- period
Seconds Integer - The length of time between probes in seconds.
- success
Threshold Integer - The number of successful probes before returning a healthy status.
- timeout
Seconds Integer - The probe timeout in seconds.
- failure
Threshold number - The number of failures to allow before returning an unhealthy status.
- initial
Delay numberSeconds - The delay before the first probe in seconds.
- period
Seconds number - The length of time between probes in seconds.
- success
Threshold number - The number of successful probes before returning a healthy status.
- timeout
Seconds number - The probe timeout in seconds.
- failure_
threshold int - The number of failures to allow before returning an unhealthy status.
- initial_
delay_ intseconds - The delay before the first probe in seconds.
- period_
seconds int - The length of time between probes in seconds.
- success_
threshold int - The number of successful probes before returning a healthy status.
- timeout_
seconds int - The probe timeout in seconds.
- failure
Threshold Number - The number of failures to allow before returning an unhealthy status.
- initial
Delay NumberSeconds - The delay before the first probe in seconds.
- period
Seconds Number - The length of time between probes in seconds.
- success
Threshold Number - The number of successful probes before returning a healthy status.
- timeout
Seconds Number - The probe timeout in seconds.
AKSVariantResponseResponse, AKSVariantResponseResponseArgs
- Error
Pulumi.
Azure Native. Machine Learning Services. Inputs. Service Response Base Response Error - The error details.
- State string
- The current state of the service.
- Deployment
Type string - The deployment type for the service.
- Description string
- The service description.
- Is
Default bool - Is this the default variant.
- Dictionary<string, string>
- The service tag dictionary. Tags are mutable.
- Properties Dictionary<string, string>
- The service property dictionary. Properties are immutable.
- Traffic
Percentile double - The amount of traffic variant receives.
- Type string
- The type of the variant.
- Error
Service
Response Base Response Error - The error details.
- State string
- The current state of the service.
- Deployment
Type string - The deployment type for the service.
- Description string
- The service description.
- Is
Default bool - Is this the default variant.
- map[string]string
- The service tag dictionary. Tags are mutable.
- Properties map[string]string
- The service property dictionary. Properties are immutable.
- Traffic
Percentile float64 - The amount of traffic variant receives.
- Type string
- The type of the variant.
- error
Service
Response Base Response Error - The error details.
- state String
- The current state of the service.
- deployment
Type String - The deployment type for the service.
- description String
- The service description.
- is
Default Boolean - Is this the default variant.
- Map<String,String>
- The service tag dictionary. Tags are mutable.
- properties Map<String,String>
- The service property dictionary. Properties are immutable.
- traffic
Percentile Double - The amount of traffic variant receives.
- type String
- The type of the variant.
- error
Service
Response Base Response Error - The error details.
- state string
- The current state of the service.
- deployment
Type string - The deployment type for the service.
- description string
- The service description.
- is
Default boolean - Is this the default variant.
- {[key: string]: string}
- The service tag dictionary. Tags are mutable.
- properties {[key: string]: string}
- The service property dictionary. Properties are immutable.
- traffic
Percentile number - The amount of traffic variant receives.
- type string
- The type of the variant.
- error
Service
Response Base Response Error - The error details.
- state str
- The current state of the service.
- deployment_
type str - The deployment type for the service.
- description str
- The service description.
- is_
default bool - Is this the default variant.
- Mapping[str, str]
- The service tag dictionary. Tags are mutable.
- properties Mapping[str, str]
- The service property dictionary. Properties are immutable.
- traffic_
percentile float - The amount of traffic variant receives.
- type str
- The type of the variant.
- error Property Map
- The error details.
- state String
- The current state of the service.
- deployment
Type String - The deployment type for the service.
- description String
- The service description.
- is
Default Boolean - Is this the default variant.
- Map<String>
- The service tag dictionary. Tags are mutable.
- properties Map<String>
- The service property dictionary. Properties are immutable.
- traffic
Percentile Number - The amount of traffic variant receives.
- type String
- The type of the variant.
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/
CreateServiceRequestEnvironmentImageRequest, CreateServiceRequestEnvironmentImageRequestArgs
- Assets
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Image Asset> - The list of assets.
- Driver
Program string - The name of the driver file.
- Environment
Pulumi.
Azure Native. Machine Learning Services. Inputs. Environment Image Request Environment - The details of the AZURE ML environment.
- Environment
Reference Pulumi.Azure Native. Machine Learning Services. Inputs. Environment Image Request Environment Reference - The unique identifying details of the AZURE ML environment.
- Model
Ids List<string> - The list of model Ids.
- Models
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Model> - The list of models.
- Assets
[]Image
Asset - The list of assets.
- Driver
Program string - The name of the driver file.
- Environment
Environment
Image Request Environment - The details of the AZURE ML environment.
- Environment
Reference EnvironmentImage Request Environment Reference - The unique identifying details of the AZURE ML environment.
- Model
Ids []string - The list of model Ids.
- Models []Model
- The list of models.
- assets
List<Image
Asset> - The list of assets.
- driver
Program String - The name of the driver file.
- environment
Environment
Image Request Environment - The details of the AZURE ML environment.
- environment
Reference EnvironmentImage Request Environment Reference - The unique identifying details of the AZURE ML environment.
- model
Ids List<String> - The list of model Ids.
- models List<Model>
- The list of models.
- assets
Image
Asset[] - The list of assets.
- driver
Program string - The name of the driver file.
- environment
Environment
Image Request Environment - The details of the AZURE ML environment.
- environment
Reference EnvironmentImage Request Environment Reference - The unique identifying details of the AZURE ML environment.
- model
Ids string[] - The list of model Ids.
- models Model[]
- The list of models.
- assets
Sequence[Image
Asset] - The list of assets.
- driver_
program str - The name of the driver file.
- environment
Environment
Image Request Environment - The details of the AZURE ML environment.
- environment_
reference EnvironmentImage Request Environment Reference - The unique identifying details of the AZURE ML environment.
- model_
ids Sequence[str] - The list of model Ids.
- models Sequence[Model]
- The list of models.
- assets List<Property Map>
- The list of assets.
- driver
Program String - The name of the driver file.
- environment Property Map
- The details of the AZURE ML environment.
- environment
Reference Property Map - The unique identifying details of the AZURE ML environment.
- model
Ids List<String> - The list of model Ids.
- models List<Property Map>
- The list of models.
CreateServiceRequestKeys, CreateServiceRequestKeysArgs
- Primary
Key string - The primary key.
- Secondary
Key string - The secondary key.
- Primary
Key string - The primary key.
- Secondary
Key string - The secondary key.
- primary
Key String - The primary key.
- secondary
Key String - The secondary key.
- primary
Key string - The primary key.
- secondary
Key string - The secondary key.
- primary_
key str - The primary key.
- secondary_
key str - The secondary key.
- primary
Key String - The primary key.
- secondary
Key String - The secondary key.
DatasetReference, DatasetReferenceArgs
DatasetReferenceResponse, DatasetReferenceResponseArgs
EnvironmentImageRequestEnvironment, EnvironmentImageRequestEnvironmentArgs
- Docker
Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Environment Definition Docker - The definition of a Docker container.
- Environment
Variables Dictionary<string, string> - Definition of environment variables to be defined in the environment.
- Inferencing
Stack stringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- Name string
- The name of the environment.
- Python
Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Environment Definition Python - Settings for a Python environment.
- R
Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Environment Definition R - Settings for a R environment.
- Spark
Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Environment Definition Spark - The configuration for a Spark environment.
- Version string
- The environment version.
- Docker
Model
Environment Definition Docker - The definition of a Docker container.
- Environment
Variables map[string]string - Definition of environment variables to be defined in the environment.
- Inferencing
Stack stringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- Name string
- The name of the environment.
- Python
Model
Environment Definition Python - Settings for a Python environment.
- R
Model
Environment Definition R - Settings for a R environment.
- Spark
Model
Environment Definition Spark - The configuration for a Spark environment.
- Version string
- The environment version.
- docker
Model
Environment Definition Docker - The definition of a Docker container.
- environment
Variables Map<String,String> - Definition of environment variables to be defined in the environment.
- inferencing
Stack StringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- name String
- The name of the environment.
- python
Model
Environment Definition Python - Settings for a Python environment.
- r
Model
Environment Definition R - Settings for a R environment.
- spark
Model
Environment Definition Spark - The configuration for a Spark environment.
- version String
- The environment version.
- docker
Model
Environment Definition Docker - The definition of a Docker container.
- environment
Variables {[key: string]: string} - Definition of environment variables to be defined in the environment.
- inferencing
Stack stringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- name string
- The name of the environment.
- python
Model
Environment Definition Python - Settings for a Python environment.
- r
Model
Environment Definition R - Settings for a R environment.
- spark
Model
Environment Definition Spark - The configuration for a Spark environment.
- version string
- The environment version.
- docker
Model
Environment Definition Docker - The definition of a Docker container.
- environment_
variables Mapping[str, str] - Definition of environment variables to be defined in the environment.
- inferencing_
stack_ strversion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- name str
- The name of the environment.
- python
Model
Environment Definition Python - Settings for a Python environment.
- r
Model
Environment Definition R - Settings for a R environment.
- spark
Model
Environment Definition Spark - The configuration for a Spark environment.
- version str
- The environment version.
- docker Property Map
- The definition of a Docker container.
- environment
Variables Map<String> - Definition of environment variables to be defined in the environment.
- inferencing
Stack StringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- name String
- The name of the environment.
- python Property Map
- Settings for a Python environment.
- r Property Map
- Settings for a R environment.
- spark Property Map
- The configuration for a Spark environment.
- version String
- The environment version.
EnvironmentImageRequestEnvironmentReference, EnvironmentImageRequestEnvironmentReferenceArgs
EnvironmentImageResponseResponseEnvironment, EnvironmentImageResponseResponseEnvironmentArgs
- Docker
Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Environment Definition Response Response Docker - The definition of a Docker container.
- Environment
Variables Dictionary<string, string> - Definition of environment variables to be defined in the environment.
- Inferencing
Stack stringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- Name string
- The name of the environment.
- Python
Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Environment Definition Response Response Python - Settings for a Python environment.
- R
Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Environment Definition Response Response R - Settings for a R environment.
- Spark
Pulumi.
Azure Native. Machine Learning Services. Inputs. Model Environment Definition Response Response Spark - The configuration for a Spark environment.
- Version string
- The environment version.
- Docker
Model
Environment Definition Response Response Docker - The definition of a Docker container.
- Environment
Variables map[string]string - Definition of environment variables to be defined in the environment.
- Inferencing
Stack stringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- Name string
- The name of the environment.
- Python
Model
Environment Definition Response Response Python - Settings for a Python environment.
- R
Model
Environment Definition Response Response R - Settings for a R environment.
- Spark
Model
Environment Definition Response Response Spark - The configuration for a Spark environment.
- Version string
- The environment version.
- docker
Model
Environment Definition Response Response Docker - The definition of a Docker container.
- environment
Variables Map<String,String> - Definition of environment variables to be defined in the environment.
- inferencing
Stack StringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- name String
- The name of the environment.
- python
Model
Environment Definition Response Response Python - Settings for a Python environment.
- r
Model
Environment Definition Response Response R - Settings for a R environment.
- spark
Model
Environment Definition Response Response Spark - The configuration for a Spark environment.
- version String
- The environment version.
- docker
Model
Environment Definition Response Response Docker - The definition of a Docker container.
- environment
Variables {[key: string]: string} - Definition of environment variables to be defined in the environment.
- inferencing
Stack stringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- name string
- The name of the environment.
- python
Model
Environment Definition Response Response Python - Settings for a Python environment.
- r
Model
Environment Definition Response Response R - Settings for a R environment.
- spark
Model
Environment Definition Response Response Spark - The configuration for a Spark environment.
- version string
- The environment version.
- docker
Model
Environment Definition Response Response Docker - The definition of a Docker container.
- environment_
variables Mapping[str, str] - Definition of environment variables to be defined in the environment.
- inferencing_
stack_ strversion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- name str
- The name of the environment.
- python
Model
Environment Definition Response Response Python - Settings for a Python environment.
- r
Model
Environment Definition Response Response R - Settings for a R environment.
- spark
Model
Environment Definition Response Response Spark - The configuration for a Spark environment.
- version str
- The environment version.
- docker Property Map
- The definition of a Docker container.
- environment
Variables Map<String> - Definition of environment variables to be defined in the environment.
- inferencing
Stack StringVersion - The inferencing stack version added to the image. To avoid adding an inferencing stack, do not set this value. Valid values: "latest".
- name String
- The name of the environment.
- python Property Map
- Settings for a Python environment.
- r Property Map
- Settings for a R environment.
- spark Property Map
- The configuration for a Spark environment.
- version String
- The environment version.
EnvironmentImageResponseResponseEnvironmentReference, EnvironmentImageResponseResponseEnvironmentReferenceArgs
ErrorDetailResponse, ErrorDetailResponseArgs
ErrorResponseResponse, ErrorResponseResponseArgs
- Code string
- Error code.
- Details
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Error Detail Response> - An array of error detail objects.
- Message string
- Error message.
- Code string
- Error code.
- Details
[]Error
Detail Response - An array of error detail objects.
- Message string
- Error message.
- code String
- Error code.
- details
List<Error
Detail Response> - An array of error detail objects.
- message String
- Error message.
- code string
- Error code.
- details
Error
Detail Response[] - An array of error detail objects.
- message string
- Error message.
- code str
- Error code.
- details
Sequence[Error
Detail Response] - An array of error detail objects.
- message str
- Error message.
- code String
- Error code.
- details List<Property Map>
- An array of error detail objects.
- message String
- Error message.
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Machine Learning Services. Inputs. User Assigned Identity Response> - The user assigned identities associated with the resource.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned map[string]UserIdentities Assigned Identity Response - The user assigned identities associated with the resource.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The user assigned identities associated with the resource.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The user assigned identities associated with the resource.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The identity type.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The user assigned identities associated with the resource.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - The user assigned identities associated with the resource.
ImageAsset, ImageAssetArgs
ImageAssetResponse, ImageAssetResponseArgs
Model, ModelArgs
- Mime
Type string - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- Name string
- The Model name.
- Url string
- The URL of the Model. Usually a SAS URL.
- Created
Time string - The Model creation time (UTC).
- Datasets
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Dataset Reference> - The list of datasets associated with the model.
- Derived
Model List<string>Ids - Models derived from this model
- Description string
- The Model description text.
- Experiment
Name string - The name of the experiment where this model was created.
- Framework string
- The Model framework.
- Framework
Version string - The Model framework version.
- Id string
- The Model Id.
- Dictionary<string, string>
- The Model tag dictionary. Items are mutable.
- Modified
Time string - The Model last modified time (UTC).
- Parent
Model stringId - The Parent Model Id.
- Properties Dictionary<string, string>
- The Model property dictionary. Properties are immutable.
- Resource
Requirements Pulumi.Azure Native. Machine Learning Services. Inputs. Container Resource Requirements - Resource requirements for the model
- Run
Id string - The RunId that created this model.
- Sample
Input stringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- Sample
Output stringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- Unpack bool
- Indicates whether we need to unpack the Model during docker Image creation.
- Version double
- The Model version assigned by Model Management Service.
- Mime
Type string - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- Name string
- The Model name.
- Url string
- The URL of the Model. Usually a SAS URL.
- Created
Time string - The Model creation time (UTC).
- Datasets
[]Dataset
Reference - The list of datasets associated with the model.
- Derived
Model []stringIds - Models derived from this model
- Description string
- The Model description text.
- Experiment
Name string - The name of the experiment where this model was created.
- Framework string
- The Model framework.
- Framework
Version string - The Model framework version.
- Id string
- The Model Id.
- map[string]string
- The Model tag dictionary. Items are mutable.
- Modified
Time string - The Model last modified time (UTC).
- Parent
Model stringId - The Parent Model Id.
- Properties map[string]string
- The Model property dictionary. Properties are immutable.
- Resource
Requirements ContainerResource Requirements - Resource requirements for the model
- Run
Id string - The RunId that created this model.
- Sample
Input stringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- Sample
Output stringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- Unpack bool
- Indicates whether we need to unpack the Model during docker Image creation.
- Version float64
- The Model version assigned by Model Management Service.
- mime
Type String - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- name String
- The Model name.
- url String
- The URL of the Model. Usually a SAS URL.
- created
Time String - The Model creation time (UTC).
- datasets
List<Dataset
Reference> - The list of datasets associated with the model.
- derived
Model List<String>Ids - Models derived from this model
- description String
- The Model description text.
- experiment
Name String - The name of the experiment where this model was created.
- framework String
- The Model framework.
- framework
Version String - The Model framework version.
- id String
- The Model Id.
- Map<String,String>
- The Model tag dictionary. Items are mutable.
- modified
Time String - The Model last modified time (UTC).
- parent
Model StringId - The Parent Model Id.
- properties Map<String,String>
- The Model property dictionary. Properties are immutable.
- resource
Requirements ContainerResource Requirements - Resource requirements for the model
- run
Id String - The RunId that created this model.
- sample
Input StringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sample
Output StringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- unpack Boolean
- Indicates whether we need to unpack the Model during docker Image creation.
- version Double
- The Model version assigned by Model Management Service.
- mime
Type string - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- name string
- The Model name.
- url string
- The URL of the Model. Usually a SAS URL.
- created
Time string - The Model creation time (UTC).
- datasets
Dataset
Reference[] - The list of datasets associated with the model.
- derived
Model string[]Ids - Models derived from this model
- description string
- The Model description text.
- experiment
Name string - The name of the experiment where this model was created.
- framework string
- The Model framework.
- framework
Version string - The Model framework version.
- id string
- The Model Id.
- {[key: string]: string}
- The Model tag dictionary. Items are mutable.
- modified
Time string - The Model last modified time (UTC).
- parent
Model stringId - The Parent Model Id.
- properties {[key: string]: string}
- The Model property dictionary. Properties are immutable.
- resource
Requirements ContainerResource Requirements - Resource requirements for the model
- run
Id string - The RunId that created this model.
- sample
Input stringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sample
Output stringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- unpack boolean
- Indicates whether we need to unpack the Model during docker Image creation.
- version number
- The Model version assigned by Model Management Service.
- mime_
type str - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- name str
- The Model name.
- url str
- The URL of the Model. Usually a SAS URL.
- created_
time str - The Model creation time (UTC).
- datasets
Sequence[Dataset
Reference] - The list of datasets associated with the model.
- derived_
model_ Sequence[str]ids - Models derived from this model
- description str
- The Model description text.
- experiment_
name str - The name of the experiment where this model was created.
- framework str
- The Model framework.
- framework_
version str - The Model framework version.
- id str
- The Model Id.
- Mapping[str, str]
- The Model tag dictionary. Items are mutable.
- modified_
time str - The Model last modified time (UTC).
- parent_
model_ strid - The Parent Model Id.
- properties Mapping[str, str]
- The Model property dictionary. Properties are immutable.
- resource_
requirements ContainerResource Requirements - Resource requirements for the model
- run_
id str - The RunId that created this model.
- sample_
input_ strdata - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sample_
output_ strdata - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- unpack bool
- Indicates whether we need to unpack the Model during docker Image creation.
- version float
- The Model version assigned by Model Management Service.
- mime
Type String - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- name String
- The Model name.
- url String
- The URL of the Model. Usually a SAS URL.
- created
Time String - The Model creation time (UTC).
- datasets List<Property Map>
- The list of datasets associated with the model.
- derived
Model List<String>Ids - Models derived from this model
- description String
- The Model description text.
- experiment
Name String - The name of the experiment where this model was created.
- framework String
- The Model framework.
- framework
Version String - The Model framework version.
- id String
- The Model Id.
- Map<String>
- The Model tag dictionary. Items are mutable.
- modified
Time String - The Model last modified time (UTC).
- parent
Model StringId - The Parent Model Id.
- properties Map<String>
- The Model property dictionary. Properties are immutable.
- resource
Requirements Property Map - Resource requirements for the model
- run
Id String - The RunId that created this model.
- sample
Input StringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sample
Output StringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- unpack Boolean
- Indicates whether we need to unpack the Model during docker Image creation.
- version Number
- The Model version assigned by Model Management Service.
ModelDockerSectionBaseImageRegistry, ModelDockerSectionBaseImageRegistryArgs
ModelDockerSectionResponseResponseBaseImageRegistry, ModelDockerSectionResponseResponseBaseImageRegistryArgs
- Address string
- Address string
- address String
- address string
- address str
- address String
ModelEnvironmentDefinitionDocker, ModelEnvironmentDefinitionDockerArgs
- Base
Dockerfile string - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- Base
Image string - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- Base
Image Pulumi.Registry Azure Native. Machine Learning Services. Inputs. Model Docker Section Base Image Registry - Image registry that contains the base image.
- Base
Dockerfile string - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- Base
Image string - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- Base
Image ModelRegistry Docker Section Base Image Registry - Image registry that contains the base image.
- base
Dockerfile String - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- base
Image String - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- base
Image ModelRegistry Docker Section Base Image Registry - Image registry that contains the base image.
- base
Dockerfile string - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- base
Image string - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- base
Image ModelRegistry Docker Section Base Image Registry - Image registry that contains the base image.
- base_
dockerfile str - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- base_
image str - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- base_
image_ Modelregistry Docker Section Base Image Registry - Image registry that contains the base image.
- base
Dockerfile String - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- base
Image String - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- base
Image Property MapRegistry - Image registry that contains the base image.
ModelEnvironmentDefinitionPython, ModelEnvironmentDefinitionPythonArgs
- Base
Conda stringEnvironment - Conda
Dependencies object - A JObject containing Conda dependencies.
- Interpreter
Path string - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- User
Managed boolDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- Base
Conda stringEnvironment - Conda
Dependencies interface{} - A JObject containing Conda dependencies.
- Interpreter
Path string - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- User
Managed boolDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- base
Conda StringEnvironment - conda
Dependencies Object - A JObject containing Conda dependencies.
- interpreter
Path String - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- user
Managed BooleanDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- base
Conda stringEnvironment - conda
Dependencies any - A JObject containing Conda dependencies.
- interpreter
Path string - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- user
Managed booleanDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- base_
conda_ strenvironment - conda_
dependencies Any - A JObject containing Conda dependencies.
- interpreter_
path str - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- user_
managed_ booldependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- base
Conda StringEnvironment - conda
Dependencies Any - A JObject containing Conda dependencies.
- interpreter
Path String - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- user
Managed BooleanDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
ModelEnvironmentDefinitionR, ModelEnvironmentDefinitionRArgs
- Bio
Conductor List<string>Packages - The packages from Bioconductor.
- Cran
Packages List<Pulumi.Azure Native. Machine Learning Services. Inputs. RCran Package> - The CRAN packages to use.
- Custom
Url List<string>Packages - The packages from custom urls.
- Git
Hub List<Pulumi.Packages Azure Native. Machine Learning Services. Inputs. RGit Hub Package> - The packages directly from GitHub.
- RVersion string
- The version of R to be installed
- Rscript
Path string - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- Snapshot
Date string - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- User
Managed bool - Indicates whether the environment is managed by user or by AzureML.
- Bio
Conductor []stringPackages - The packages from Bioconductor.
- Cran
Packages []RCranPackage - The CRAN packages to use.
- Custom
Url []stringPackages - The packages from custom urls.
- Git
Hub []RGitPackages Hub Package - The packages directly from GitHub.
- RVersion string
- The version of R to be installed
- Rscript
Path string - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- Snapshot
Date string - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- User
Managed bool - Indicates whether the environment is managed by user or by AzureML.
- bio
Conductor List<String>Packages - The packages from Bioconductor.
- cran
Packages List<RCranPackage> - The CRAN packages to use.
- custom
Url List<String>Packages - The packages from custom urls.
- git
Hub List<RGitPackages Hub Package> - The packages directly from GitHub.
- r
Version String - The version of R to be installed
- rscript
Path String - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshot
Date String - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- user
Managed Boolean - Indicates whether the environment is managed by user or by AzureML.
- bio
Conductor string[]Packages - The packages from Bioconductor.
- cran
Packages RCranPackage[] - The CRAN packages to use.
- custom
Url string[]Packages - The packages from custom urls.
- git
Hub RGitPackages Hub Package[] - The packages directly from GitHub.
- r
Version string - The version of R to be installed
- rscript
Path string - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshot
Date string - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- user
Managed boolean - Indicates whether the environment is managed by user or by AzureML.
- bio_
conductor_ Sequence[str]packages - The packages from Bioconductor.
- cran_
packages Sequence[RCranPackage] - The CRAN packages to use.
- custom_
url_ Sequence[str]packages - The packages from custom urls.
- git_
hub_ Sequence[RGitpackages Hub Package] - The packages directly from GitHub.
- r_
version str - The version of R to be installed
- rscript_
path str - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshot_
date str - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- user_
managed bool - Indicates whether the environment is managed by user or by AzureML.
- bio
Conductor List<String>Packages - The packages from Bioconductor.
- cran
Packages List<Property Map> - The CRAN packages to use.
- custom
Url List<String>Packages - The packages from custom urls.
- git
Hub List<Property Map>Packages - The packages directly from GitHub.
- r
Version String - The version of R to be installed
- rscript
Path String - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshot
Date String - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- user
Managed Boolean - Indicates whether the environment is managed by user or by AzureML.
ModelEnvironmentDefinitionResponseResponseDocker, ModelEnvironmentDefinitionResponseResponseDockerArgs
- Base
Dockerfile string - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- Base
Image string - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- Base
Image Pulumi.Registry Azure Native. Machine Learning Services. Inputs. Model Docker Section Response Response Base Image Registry - Image registry that contains the base image.
- Base
Dockerfile string - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- Base
Image string - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- Base
Image ModelRegistry Docker Section Response Response Base Image Registry - Image registry that contains the base image.
- base
Dockerfile String - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- base
Image String - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- base
Image ModelRegistry Docker Section Response Response Base Image Registry - Image registry that contains the base image.
- base
Dockerfile string - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- base
Image string - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- base
Image ModelRegistry Docker Section Response Response Base Image Registry - Image registry that contains the base image.
- base_
dockerfile str - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- base_
image str - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- base_
image_ Modelregistry Docker Section Response Response Base Image Registry - Image registry that contains the base image.
- base
Dockerfile String - Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- base
Image String - Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- base
Image Property MapRegistry - Image registry that contains the base image.
ModelEnvironmentDefinitionResponseResponsePython, ModelEnvironmentDefinitionResponseResponsePythonArgs
- Base
Conda stringEnvironment - Conda
Dependencies object - A JObject containing Conda dependencies.
- Interpreter
Path string - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- User
Managed boolDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- Base
Conda stringEnvironment - Conda
Dependencies interface{} - A JObject containing Conda dependencies.
- Interpreter
Path string - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- User
Managed boolDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- base
Conda StringEnvironment - conda
Dependencies Object - A JObject containing Conda dependencies.
- interpreter
Path String - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- user
Managed BooleanDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- base
Conda stringEnvironment - conda
Dependencies any - A JObject containing Conda dependencies.
- interpreter
Path string - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- user
Managed booleanDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- base_
conda_ strenvironment - conda_
dependencies Any - A JObject containing Conda dependencies.
- interpreter_
path str - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- user_
managed_ booldependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
- base
Conda StringEnvironment - conda
Dependencies Any - A JObject containing Conda dependencies.
- interpreter
Path String - The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- user
Managed BooleanDependencies - True means that AzureML reuses an existing python environment; False means that AzureML will create a python environment based on the Conda dependencies specification.
ModelEnvironmentDefinitionResponseResponseR, ModelEnvironmentDefinitionResponseResponseRArgs
- Bio
Conductor List<string>Packages - The packages from Bioconductor.
- Cran
Packages List<Pulumi.Azure Native. Machine Learning Services. Inputs. RCran Package Response> - The CRAN packages to use.
- Custom
Url List<string>Packages - The packages from custom urls.
- Git
Hub List<Pulumi.Packages Azure Native. Machine Learning Services. Inputs. RGit Hub Package Response Response> - The packages directly from GitHub.
- RVersion string
- The version of R to be installed
- Rscript
Path string - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- Snapshot
Date string - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- User
Managed bool - Indicates whether the environment is managed by user or by AzureML.
- Bio
Conductor []stringPackages - The packages from Bioconductor.
- Cran
Packages []RCranPackage Response - The CRAN packages to use.
- Custom
Url []stringPackages - The packages from custom urls.
- Git
Hub []RGitPackages Hub Package Response Response - The packages directly from GitHub.
- RVersion string
- The version of R to be installed
- Rscript
Path string - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- Snapshot
Date string - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- User
Managed bool - Indicates whether the environment is managed by user or by AzureML.
- bio
Conductor List<String>Packages - The packages from Bioconductor.
- cran
Packages List<RCranPackage Response> - The CRAN packages to use.
- custom
Url List<String>Packages - The packages from custom urls.
- git
Hub List<RGitPackages Hub Package Response Response> - The packages directly from GitHub.
- r
Version String - The version of R to be installed
- rscript
Path String - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshot
Date String - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- user
Managed Boolean - Indicates whether the environment is managed by user or by AzureML.
- bio
Conductor string[]Packages - The packages from Bioconductor.
- cran
Packages RCranPackage Response[] - The CRAN packages to use.
- custom
Url string[]Packages - The packages from custom urls.
- git
Hub RGitPackages Hub Package Response Response[] - The packages directly from GitHub.
- r
Version string - The version of R to be installed
- rscript
Path string - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshot
Date string - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- user
Managed boolean - Indicates whether the environment is managed by user or by AzureML.
- bio_
conductor_ Sequence[str]packages - The packages from Bioconductor.
- cran_
packages Sequence[RCranPackage Response] - The CRAN packages to use.
- custom_
url_ Sequence[str]packages - The packages from custom urls.
- git_
hub_ Sequence[RGitpackages Hub Package Response Response] - The packages directly from GitHub.
- r_
version str - The version of R to be installed
- rscript_
path str - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshot_
date str - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- user_
managed bool - Indicates whether the environment is managed by user or by AzureML.
- bio
Conductor List<String>Packages - The packages from Bioconductor.
- cran
Packages List<Property Map> - The CRAN packages to use.
- custom
Url List<String>Packages - The packages from custom urls.
- git
Hub List<Property Map>Packages - The packages directly from GitHub.
- r
Version String - The version of R to be installed
- rscript
Path String - The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshot
Date String - Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- user
Managed Boolean - Indicates whether the environment is managed by user or by AzureML.
ModelEnvironmentDefinitionResponseResponseSpark, ModelEnvironmentDefinitionResponseResponseSparkArgs
- Packages
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Spark Maven Package Response> - The Spark packages to use.
- Precache
Packages bool - Whether to precache the packages.
- Repositories List<string>
- The list of spark repositories.
- Packages
[]Spark
Maven Package Response - The Spark packages to use.
- Precache
Packages bool - Whether to precache the packages.
- Repositories []string
- The list of spark repositories.
- packages
List<Spark
Maven Package Response> - The Spark packages to use.
- precache
Packages Boolean - Whether to precache the packages.
- repositories List<String>
- The list of spark repositories.
- packages
Spark
Maven Package Response[] - The Spark packages to use.
- precache
Packages boolean - Whether to precache the packages.
- repositories string[]
- The list of spark repositories.
- packages
Sequence[Spark
Maven Package Response] - The Spark packages to use.
- precache_
packages bool - Whether to precache the packages.
- repositories Sequence[str]
- The list of spark repositories.
- packages List<Property Map>
- The Spark packages to use.
- precache
Packages Boolean - Whether to precache the packages.
- repositories List<String>
- The list of spark repositories.
ModelEnvironmentDefinitionSpark, ModelEnvironmentDefinitionSparkArgs
- Packages
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Spark Maven Package> - The Spark packages to use.
- Precache
Packages bool - Whether to precache the packages.
- Repositories List<string>
- The list of spark repositories.
- Packages
[]Spark
Maven Package - The Spark packages to use.
- Precache
Packages bool - Whether to precache the packages.
- Repositories []string
- The list of spark repositories.
- packages
List<Spark
Maven Package> - The Spark packages to use.
- precache
Packages Boolean - Whether to precache the packages.
- repositories List<String>
- The list of spark repositories.
- packages
Spark
Maven Package[] - The Spark packages to use.
- precache
Packages boolean - Whether to precache the packages.
- repositories string[]
- The list of spark repositories.
- packages
Sequence[Spark
Maven Package] - The Spark packages to use.
- precache_
packages bool - Whether to precache the packages.
- repositories Sequence[str]
- The list of spark repositories.
- packages List<Property Map>
- The Spark packages to use.
- precache
Packages Boolean - Whether to precache the packages.
- repositories List<String>
- The list of spark repositories.
ModelResponse, ModelResponseArgs
- Mime
Type string - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- Name string
- The Model name.
- Url string
- The URL of the Model. Usually a SAS URL.
- Created
Time string - The Model creation time (UTC).
- Datasets
List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Dataset Reference Response> - The list of datasets associated with the model.
- Derived
Model List<string>Ids - Models derived from this model
- Description string
- The Model description text.
- Experiment
Name string - The name of the experiment where this model was created.
- Framework string
- The Model framework.
- Framework
Version string - The Model framework version.
- Id string
- The Model Id.
- Dictionary<string, string>
- The Model tag dictionary. Items are mutable.
- Modified
Time string - The Model last modified time (UTC).
- Parent
Model stringId - The Parent Model Id.
- Properties Dictionary<string, string>
- The Model property dictionary. Properties are immutable.
- Resource
Requirements Pulumi.Azure Native. Machine Learning Services. Inputs. Container Resource Requirements Response - Resource requirements for the model
- Run
Id string - The RunId that created this model.
- Sample
Input stringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- Sample
Output stringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- Unpack bool
- Indicates whether we need to unpack the Model during docker Image creation.
- Version double
- The Model version assigned by Model Management Service.
- Mime
Type string - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- Name string
- The Model name.
- Url string
- The URL of the Model. Usually a SAS URL.
- Created
Time string - The Model creation time (UTC).
- Datasets
[]Dataset
Reference Response - The list of datasets associated with the model.
- Derived
Model []stringIds - Models derived from this model
- Description string
- The Model description text.
- Experiment
Name string - The name of the experiment where this model was created.
- Framework string
- The Model framework.
- Framework
Version string - The Model framework version.
- Id string
- The Model Id.
- map[string]string
- The Model tag dictionary. Items are mutable.
- Modified
Time string - The Model last modified time (UTC).
- Parent
Model stringId - The Parent Model Id.
- Properties map[string]string
- The Model property dictionary. Properties are immutable.
- Resource
Requirements ContainerResource Requirements Response - Resource requirements for the model
- Run
Id string - The RunId that created this model.
- Sample
Input stringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- Sample
Output stringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- Unpack bool
- Indicates whether we need to unpack the Model during docker Image creation.
- Version float64
- The Model version assigned by Model Management Service.
- mime
Type String - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- name String
- The Model name.
- url String
- The URL of the Model. Usually a SAS URL.
- created
Time String - The Model creation time (UTC).
- datasets
List<Dataset
Reference Response> - The list of datasets associated with the model.
- derived
Model List<String>Ids - Models derived from this model
- description String
- The Model description text.
- experiment
Name String - The name of the experiment where this model was created.
- framework String
- The Model framework.
- framework
Version String - The Model framework version.
- id String
- The Model Id.
- Map<String,String>
- The Model tag dictionary. Items are mutable.
- modified
Time String - The Model last modified time (UTC).
- parent
Model StringId - The Parent Model Id.
- properties Map<String,String>
- The Model property dictionary. Properties are immutable.
- resource
Requirements ContainerResource Requirements Response - Resource requirements for the model
- run
Id String - The RunId that created this model.
- sample
Input StringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sample
Output StringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- unpack Boolean
- Indicates whether we need to unpack the Model during docker Image creation.
- version Double
- The Model version assigned by Model Management Service.
- mime
Type string - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- name string
- The Model name.
- url string
- The URL of the Model. Usually a SAS URL.
- created
Time string - The Model creation time (UTC).
- datasets
Dataset
Reference Response[] - The list of datasets associated with the model.
- derived
Model string[]Ids - Models derived from this model
- description string
- The Model description text.
- experiment
Name string - The name of the experiment where this model was created.
- framework string
- The Model framework.
- framework
Version string - The Model framework version.
- id string
- The Model Id.
- {[key: string]: string}
- The Model tag dictionary. Items are mutable.
- modified
Time string - The Model last modified time (UTC).
- parent
Model stringId - The Parent Model Id.
- properties {[key: string]: string}
- The Model property dictionary. Properties are immutable.
- resource
Requirements ContainerResource Requirements Response - Resource requirements for the model
- run
Id string - The RunId that created this model.
- sample
Input stringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sample
Output stringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- unpack boolean
- Indicates whether we need to unpack the Model during docker Image creation.
- version number
- The Model version assigned by Model Management Service.
- mime_
type str - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- name str
- The Model name.
- url str
- The URL of the Model. Usually a SAS URL.
- created_
time str - The Model creation time (UTC).
- datasets
Sequence[Dataset
Reference Response] - The list of datasets associated with the model.
- derived_
model_ Sequence[str]ids - Models derived from this model
- description str
- The Model description text.
- experiment_
name str - The name of the experiment where this model was created.
- framework str
- The Model framework.
- framework_
version str - The Model framework version.
- id str
- The Model Id.
- Mapping[str, str]
- The Model tag dictionary. Items are mutable.
- modified_
time str - The Model last modified time (UTC).
- parent_
model_ strid - The Parent Model Id.
- properties Mapping[str, str]
- The Model property dictionary. Properties are immutable.
- resource_
requirements ContainerResource Requirements Response - Resource requirements for the model
- run_
id str - The RunId that created this model.
- sample_
input_ strdata - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sample_
output_ strdata - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- unpack bool
- Indicates whether we need to unpack the Model during docker Image creation.
- version float
- The Model version assigned by Model Management Service.
- mime
Type String - The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml
- name String
- The Model name.
- url String
- The URL of the Model. Usually a SAS URL.
- created
Time String - The Model creation time (UTC).
- datasets List<Property Map>
- The list of datasets associated with the model.
- derived
Model List<String>Ids - Models derived from this model
- description String
- The Model description text.
- experiment
Name String - The name of the experiment where this model was created.
- framework String
- The Model framework.
- framework
Version String - The Model framework version.
- id String
- The Model Id.
- Map<String>
- The Model tag dictionary. Items are mutable.
- modified
Time String - The Model last modified time (UTC).
- parent
Model StringId - The Parent Model Id.
- properties Map<String>
- The Model property dictionary. Properties are immutable.
- resource
Requirements Property Map - Resource requirements for the model
- run
Id String - The RunId that created this model.
- sample
Input StringData - Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sample
Output StringData - Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- unpack Boolean
- Indicates whether we need to unpack the Model during docker Image creation.
- version Number
- The Model version assigned by Model Management Service.
RCranPackage, RCranPackageArgs
- Name string
- The package name.
- Repository string
- The repository name.
- Name string
- The package name.
- Repository string
- The repository name.
- name String
- The package name.
- repository String
- The repository name.
- name string
- The package name.
- repository string
- The repository name.
- name str
- The package name.
- repository str
- The repository name.
- name String
- The package name.
- repository String
- The repository name.
RCranPackageResponse, RCranPackageResponseArgs
- Name string
- The package name.
- Repository string
- The repository name.
- Name string
- The package name.
- Repository string
- The repository name.
- name String
- The package name.
- repository String
- The repository name.
- name string
- The package name.
- repository string
- The repository name.
- name str
- The package name.
- repository str
- The repository name.
- name String
- The package name.
- repository String
- The repository name.
RGitHubPackage, RGitHubPackageArgs
- Auth
Token string - Personal access token to install from a private repo
- Repository string
- Repository address in the format username/repo[/subdir][@ref|#pull].
- Auth
Token string - Personal access token to install from a private repo
- Repository string
- Repository address in the format username/repo[/subdir][@ref|#pull].
- auth
Token String - Personal access token to install from a private repo
- repository String
- Repository address in the format username/repo[/subdir][@ref|#pull].
- auth
Token string - Personal access token to install from a private repo
- repository string
- Repository address in the format username/repo[/subdir][@ref|#pull].
- auth_
token str - Personal access token to install from a private repo
- repository str
- Repository address in the format username/repo[/subdir][@ref|#pull].
- auth
Token String - Personal access token to install from a private repo
- repository String
- Repository address in the format username/repo[/subdir][@ref|#pull].
RGitHubPackageResponseResponse, RGitHubPackageResponseResponseArgs
- Repository string
- Repository address in the format username/repo[/subdir][@ref|#pull].
- Repository string
- Repository address in the format username/repo[/subdir][@ref|#pull].
- repository String
- Repository address in the format username/repo[/subdir][@ref|#pull].
- repository string
- Repository address in the format username/repo[/subdir][@ref|#pull].
- repository str
- Repository address in the format username/repo[/subdir][@ref|#pull].
- repository String
- Repository address in the format username/repo[/subdir][@ref|#pull].
ServiceResponseBaseResponseError, ServiceResponseBaseResponseErrorArgs
- Error
Pulumi.
Azure Native. Machine Learning Services. Inputs. Error Response Response - The error response.
- Error
Error
Response Response - The error response.
- error
Error
Response Response - The error response.
- error
Error
Response Response - The error response.
- error
Error
Response Response - The error response.
- error Property Map
- The error response.
SkuResponse, SkuResponseArgs
SparkMavenPackage, SparkMavenPackageArgs
SparkMavenPackageResponse, SparkMavenPackageResponseArgs
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
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The clientId(aka appId) of the user assigned identity.
- Principal
Id string - The principal ID of the user assigned identity.
- Tenant
Id string - The tenant ID of the user assigned identity.
- Client
Id string - The clientId(aka appId) of the user assigned identity.
- Principal
Id string - The principal ID of the user assigned identity.
- Tenant
Id string - The tenant ID of the user assigned identity.
- client
Id String - The clientId(aka appId) of the user assigned identity.
- principal
Id String - The principal ID of the user assigned identity.
- tenant
Id String - The tenant ID of the user assigned identity.
- client
Id string - The clientId(aka appId) of the user assigned identity.
- principal
Id string - The principal ID of the user assigned identity.
- tenant
Id string - The tenant ID of the user assigned identity.
- client_
id str - The clientId(aka appId) of the user assigned identity.
- principal_
id str - The principal ID of the user assigned identity.
- tenant_
id str - The tenant ID of the user assigned identity.
- client
Id String - The clientId(aka appId) of the user assigned identity.
- principal
Id String - The principal ID of the user assigned identity.
- tenant
Id String - The tenant ID of the user assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:machinelearningservices:ACIService service456 subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.MachineLearningServices/workspaces/workspaces123/services/service456
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