azure-native.machinelearningservices.EndpointVariant
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 endpointVariant = new AzureNative.MachineLearningServices.EndpointVariant("endpointVariant", new()
    {
        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.NewEndpointVariant(ctx, "endpointVariant", &machinelearningservices.EndpointVariantArgs{
			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.EndpointVariant;
import com.pulumi.azurenative.machinelearningservices.EndpointVariantArgs;
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 endpointVariant = new EndpointVariant("endpointVariant", EndpointVariantArgs.builder()        
            .resourceGroupName("testrg123")
            .serviceName("service456")
            .workspaceName("workspaces123")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const endpointVariant = new azure_native.machinelearningservices.EndpointVariant("endpointVariant", {
    resourceGroupName: "testrg123",
    serviceName: "service456",
    workspaceName: "workspaces123",
});
import pulumi
import pulumi_azure_native as azure_native
endpoint_variant = azure_native.machinelearningservices.EndpointVariant("endpointVariant",
    resource_group_name="testrg123",
    service_name="service456",
    workspace_name="workspaces123")
resources:
  endpointVariant:
    type: azure-native:machinelearningservices:EndpointVariant
    properties:
      resourceGroupName: testrg123
      serviceName: service456
      workspaceName: workspaces123
Create EndpointVariant Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EndpointVariant(name: string, args: EndpointVariantArgs, opts?: CustomResourceOptions);@overload
def EndpointVariant(resource_name: str,
                    args: EndpointVariantArgs,
                    opts: Optional[ResourceOptions] = None)
@overload
def EndpointVariant(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    workspace_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    location: Optional[str] = None,
                    keys: Optional[CreateServiceRequestKeysArgs] = None,
                    kv_tags: Optional[Mapping[str, str]] = None,
                    is_default: Optional[bool] = None,
                    properties: Optional[Mapping[str, str]] = None,
                    environment_image_request: Optional[CreateServiceRequestEnvironmentImageRequestArgs] = None,
                    service_name: Optional[str] = None,
                    traffic_percentile: Optional[float] = None,
                    type: Optional[Union[str, VariantType]] = None,
                    description: Optional[str] = None)func NewEndpointVariant(ctx *Context, name string, args EndpointVariantArgs, opts ...ResourceOption) (*EndpointVariant, error)public EndpointVariant(string name, EndpointVariantArgs args, CustomResourceOptions? opts = null)
public EndpointVariant(String name, EndpointVariantArgs args)
public EndpointVariant(String name, EndpointVariantArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:EndpointVariant
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 EndpointVariantArgs
- 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 EndpointVariantArgs
- 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 EndpointVariantArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EndpointVariantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EndpointVariantArgs
- 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 endpointVariantResource = new AzureNative.Machinelearningservices.EndpointVariant("endpointVariantResource", new()
{
    ComputeType = "string",
    WorkspaceName = "string",
    ResourceGroupName = "string",
    Location = "string",
    Keys = 
    {
        { "primaryKey", "string" },
        { "secondaryKey", "string" },
    },
    KvTags = 
    {
        { "string", "string" },
    },
    IsDefault = false,
    Properties = 
    {
        { "string", "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 },
            },
        } },
    },
    ServiceName = "string",
    TrafficPercentile = 0,
    Type = "string",
    Description = "string",
});
example, err := machinelearningservices.NewEndpointVariant(ctx, "endpointVariantResource", &machinelearningservices.EndpointVariantArgs{
	ComputeType:       "string",
	WorkspaceName:     "string",
	ResourceGroupName: "string",
	Location:          "string",
	Keys: map[string]interface{}{
		"primaryKey":   "string",
		"secondaryKey": "string",
	},
	KvTags: map[string]interface{}{
		"string": "string",
	},
	IsDefault: false,
	Properties: map[string]interface{}{
		"string": "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,
			},
		},
	},
	ServiceName:       "string",
	TrafficPercentile: 0,
	Type:              "string",
	Description:       "string",
})
var endpointVariantResource = new EndpointVariant("endpointVariantResource", EndpointVariantArgs.builder()
    .computeType("string")
    .workspaceName("string")
    .resourceGroupName("string")
    .location("string")
    .keys(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .kvTags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .isDefault(false)
    .properties(%!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))
    .serviceName("string")
    .trafficPercentile(0)
    .type("string")
    .description("string")
    .build());
endpoint_variant_resource = azure_native.machinelearningservices.EndpointVariant("endpointVariantResource",
    compute_type=string,
    workspace_name=string,
    resource_group_name=string,
    location=string,
    keys={
        primaryKey: string,
        secondaryKey: string,
    },
    kv_tags={
        string: string,
    },
    is_default=False,
    properties={
        string: 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,
        }],
    },
    service_name=string,
    traffic_percentile=0,
    type=string,
    description=string)
const endpointVariantResource = new azure_native.machinelearningservices.EndpointVariant("endpointVariantResource", {
    computeType: "string",
    workspaceName: "string",
    resourceGroupName: "string",
    location: "string",
    keys: {
        primaryKey: "string",
        secondaryKey: "string",
    },
    kvTags: {
        string: "string",
    },
    isDefault: false,
    properties: {
        string: "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,
        }],
    },
    serviceName: "string",
    trafficPercentile: 0,
    type: "string",
    description: "string",
});
type: azure-native:machinelearningservices:EndpointVariant
properties:
    computeType: string
    description: 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
    isDefault: false
    keys:
        primaryKey: string
        secondaryKey: string
    kvTags:
        string: string
    location: string
    properties:
        string: string
    resourceGroupName: string
    serviceName: string
    trafficPercentile: 0
    type: string
    workspaceName: string
EndpointVariant Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EndpointVariant resource accepts the following input properties:
- ResourceGroup stringName 
- Name of the resource group in which workspace is located.
- WorkspaceName string
- Name of Azure Machine Learning workspace.
- Description string
- The description of the service.
- EnvironmentImage Pulumi.Request Azure Native. Machine Learning Services. Inputs. Create Service Request Environment Image Request 
- The Environment, models and assets needed for inferencing.
- IsDefault bool
- Is this the default variant.
- 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.
- ServiceName string
- Name of the Azure Machine Learning service.
- TrafficPercentile double
- The amount of traffic variant receives.
- Type
string | Pulumi.Azure Native. Machine Learning Services. Variant Type 
- The type of the variant.
- ResourceGroup stringName 
- Name of the resource group in which workspace is located.
- WorkspaceName string
- Name of Azure Machine Learning workspace.
- Description string
- The description of the service.
- EnvironmentImage CreateRequest Service Request Environment Image Request Args 
- The Environment, models and assets needed for inferencing.
- IsDefault bool
- Is this the default variant.
- Keys
CreateService 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.
- ServiceName string
- Name of the Azure Machine Learning service.
- TrafficPercentile float64
- The amount of traffic variant receives.
- Type
string | VariantType 
- The type of the variant.
- resourceGroup StringName 
- Name of the resource group in which workspace is located.
- workspaceName String
- Name of Azure Machine Learning workspace.
- description String
- The description of the service.
- environmentImage CreateRequest Service Request Environment Image Request 
- The Environment, models and assets needed for inferencing.
- isDefault Boolean
- Is this the default variant.
- keys
CreateService 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.
- serviceName String
- Name of the Azure Machine Learning service.
- trafficPercentile Double
- The amount of traffic variant receives.
- type
String | VariantType 
- The type of the variant.
- resourceGroup stringName 
- Name of the resource group in which workspace is located.
- workspaceName string
- Name of Azure Machine Learning workspace.
- description string
- The description of the service.
- environmentImage CreateRequest Service Request Environment Image Request 
- The Environment, models and assets needed for inferencing.
- isDefault boolean
- Is this the default variant.
- keys
CreateService 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.
- serviceName string
- Name of the Azure Machine Learning service.
- trafficPercentile number
- The amount of traffic variant receives.
- type
string | VariantType 
- The type of the variant.
- resource_group_ strname 
- Name of the resource group in which workspace is located.
- workspace_name str
- Name of Azure Machine Learning workspace.
- description str
- The description of the service.
- environment_image_ Createrequest Service Request Environment Image Request Args 
- The Environment, models and assets needed for inferencing.
- is_default bool
- Is this the default variant.
- keys
CreateService 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.
- traffic_percentile float
- The amount of traffic variant receives.
- type
str | VariantType 
- The type of the variant.
- resourceGroup StringName 
- Name of the resource group in which workspace is located.
- workspaceName String
- Name of Azure Machine Learning workspace.
- description String
- The description of the service.
- environmentImage Property MapRequest 
- The Environment, models and assets needed for inferencing.
- isDefault Boolean
- Is this the default variant.
- 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.
- serviceName String
- Name of the Azure Machine Learning service.
- trafficPercentile Number
- The amount of traffic variant receives.
- type String | "Control" | "Treatment"
- The type of the variant.
Outputs
All input properties are implicitly available as output properties. Additionally, the EndpointVariant 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.
- SystemData Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response 
- Read only system data
- 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.
- SystemData SystemData Response 
- Read only system data
- Identity
IdentityResponse 
- The identity of the resource.
- Sku
SkuResponse 
- 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.
- systemData SystemData Response 
- Read only system data
- identity
IdentityResponse 
- The identity of the resource.
- sku
SkuResponse 
- 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.
- systemData SystemData Response 
- Read only system data
- identity
IdentityResponse 
- The identity of the resource.
- sku
SkuResponse 
- 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
- identity
IdentityResponse 
- The identity of the resource.
- sku
SkuResponse 
- 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.
- systemData Property Map
- Read only system data
- 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
ACIServiceResponseResponse, ACIServiceResponseResponseArgs      
- Error
Pulumi.Azure Native. Machine Learning Services. Inputs. Service Response Base Response Error 
- The error details.
- ModelConfig Dictionary<string, object>Map 
- Details on the models and configurations.
- ScoringUri string
- The Uri for sending scoring requests.
- State string
- The current state of the service.
- SwaggerUri string
- The Uri for sending swagger requests.
- AppInsights boolEnabled 
- Whether or not Application Insights is enabled.
- AuthEnabled bool
- Whether or not authentication is enabled on the service.
- Cname string
- The CName for the service.
- ContainerResource Pulumi.Requirements Azure Native. Machine Learning Services. Inputs. Container Resource Requirements Response 
- The container resource requirements.
- DataCollection Pulumi.Azure Native. Machine Learning Services. Inputs. ACIService Response Response Data Collection 
- Details of the data collection options specified.
- DeploymentType string
- The deployment type for the service.
- Description string
- The service description.
- EncryptionProperties Pulumi.Azure Native. Machine Learning Services. Inputs. ACIService Response Response Encryption Properties 
- The encryption properties.
- EnvironmentImage 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.
- PublicFqdn string
- The public Fqdn for the service.
- PublicIp string
- The public IP address for the service.
- SslCertificate string
- The public SSL certificate in PEM format to use if SSL is enabled.
- SslEnabled bool
- Whether or not SSL is enabled.
- SslKey string
- The public SSL key in PEM format for the certificate.
- VnetConfiguration Pulumi.Azure Native. Machine Learning Services. Inputs. ACIService Response Response Vnet Configuration 
- The virtual network configuration.
- Error
ServiceResponse Base Response Error 
- The error details.
- ModelConfig map[string]interface{}Map 
- Details on the models and configurations.
- ScoringUri string
- The Uri for sending scoring requests.
- State string
- The current state of the service.
- SwaggerUri string
- The Uri for sending swagger requests.
- AppInsights boolEnabled 
- Whether or not Application Insights is enabled.
- AuthEnabled bool
- Whether or not authentication is enabled on the service.
- Cname string
- The CName for the service.
- ContainerResource ContainerRequirements Resource Requirements Response 
- The container resource requirements.
- DataCollection ACIServiceResponse Response Data Collection 
- Details of the data collection options specified.
- DeploymentType string
- The deployment type for the service.
- Description string
- The service description.
- EncryptionProperties ACIServiceResponse Response Encryption Properties 
- The encryption properties.
- EnvironmentImage 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
[]ModelResponse 
- The list of models.
- Properties map[string]string
- The service property dictionary. Properties are immutable.
- PublicFqdn string
- The public Fqdn for the service.
- PublicIp string
- The public IP address for the service.
- SslCertificate string
- The public SSL certificate in PEM format to use if SSL is enabled.
- SslEnabled bool
- Whether or not SSL is enabled.
- SslKey string
- The public SSL key in PEM format for the certificate.
- VnetConfiguration ACIServiceResponse Response Vnet Configuration 
- The virtual network configuration.
- error
ServiceResponse Base Response Error 
- The error details.
- modelConfig Map<String,Object>Map 
- Details on the models and configurations.
- scoringUri String
- The Uri for sending scoring requests.
- state String
- The current state of the service.
- swaggerUri String
- The Uri for sending swagger requests.
- appInsights BooleanEnabled 
- Whether or not Application Insights is enabled.
- authEnabled Boolean
- Whether or not authentication is enabled on the service.
- cname String
- The CName for the service.
- containerResource ContainerRequirements Resource Requirements Response 
- The container resource requirements.
- dataCollection ACIServiceResponse Response Data Collection 
- Details of the data collection options specified.
- deploymentType String
- The deployment type for the service.
- description String
- The service description.
- encryptionProperties ACIServiceResponse Response Encryption Properties 
- The encryption properties.
- environmentImage 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<ModelResponse> 
- The list of models.
- properties Map<String,String>
- The service property dictionary. Properties are immutable.
- publicFqdn String
- The public Fqdn for the service.
- publicIp String
- The public IP address for the service.
- sslCertificate String
- The public SSL certificate in PEM format to use if SSL is enabled.
- sslEnabled Boolean
- Whether or not SSL is enabled.
- sslKey String
- The public SSL key in PEM format for the certificate.
- vnetConfiguration ACIServiceResponse Response Vnet Configuration 
- The virtual network configuration.
- error
ServiceResponse Base Response Error 
- The error details.
- modelConfig {[key: string]: any}Map 
- Details on the models and configurations.
- scoringUri string
- The Uri for sending scoring requests.
- state string
- The current state of the service.
- swaggerUri string
- The Uri for sending swagger requests.
- appInsights booleanEnabled 
- Whether or not Application Insights is enabled.
- authEnabled boolean
- Whether or not authentication is enabled on the service.
- cname string
- The CName for the service.
- containerResource ContainerRequirements Resource Requirements Response 
- The container resource requirements.
- dataCollection ACIServiceResponse Response Data Collection 
- Details of the data collection options specified.
- deploymentType string
- The deployment type for the service.
- description string
- The service description.
- encryptionProperties ACIServiceResponse Response Encryption Properties 
- The encryption properties.
- environmentImage 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
ModelResponse[] 
- The list of models.
- properties {[key: string]: string}
- The service property dictionary. Properties are immutable.
- publicFqdn string
- The public Fqdn for the service.
- publicIp string
- The public IP address for the service.
- sslCertificate string
- The public SSL certificate in PEM format to use if SSL is enabled.
- sslEnabled boolean
- Whether or not SSL is enabled.
- sslKey string
- The public SSL key in PEM format for the certificate.
- vnetConfiguration ACIServiceResponse Response Vnet Configuration 
- The virtual network configuration.
- error
ServiceResponse 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[ModelResponse] 
- 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.
- modelConfig Map<Any>Map 
- Details on the models and configurations.
- scoringUri String
- The Uri for sending scoring requests.
- state String
- The current state of the service.
- swaggerUri String
- The Uri for sending swagger requests.
- appInsights BooleanEnabled 
- Whether or not Application Insights is enabled.
- authEnabled Boolean
- Whether or not authentication is enabled on the service.
- cname String
- The CName for the service.
- containerResource Property MapRequirements 
- The container resource requirements.
- dataCollection Property Map
- Details of the data collection options specified.
- deploymentType String
- The deployment type for the service.
- description String
- The service description.
- encryptionProperties Property Map
- The encryption properties.
- environmentImage 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.
- publicFqdn String
- The public Fqdn for the service.
- publicIp String
- The public IP address for the service.
- sslCertificate String
- The public SSL certificate in PEM format to use if SSL is enabled.
- sslEnabled Boolean
- Whether or not SSL is enabled.
- sslKey String
- The public SSL key in PEM format for the certificate.
- vnetConfiguration Property Map
- The virtual network configuration.
ACIServiceResponseResponseDataCollection, ACIServiceResponseResponseDataCollectionArgs          
- EventHub boolEnabled 
- Option for enabling/disabling Event Hub.
- StorageEnabled bool
- Option for enabling/disabling storage.
- EventHub boolEnabled 
- Option for enabling/disabling Event Hub.
- StorageEnabled bool
- Option for enabling/disabling storage.
- eventHub BooleanEnabled 
- Option for enabling/disabling Event Hub.
- storageEnabled Boolean
- Option for enabling/disabling storage.
- eventHub booleanEnabled 
- Option for enabling/disabling Event Hub.
- storageEnabled boolean
- Option for enabling/disabling storage.
- event_hub_ boolenabled 
- Option for enabling/disabling Event Hub.
- storage_enabled bool
- Option for enabling/disabling storage.
- eventHub BooleanEnabled 
- Option for enabling/disabling Event Hub.
- storageEnabled Boolean
- Option for enabling/disabling storage.
ACIServiceResponseResponseEncryptionProperties, ACIServiceResponseResponseEncryptionPropertiesArgs          
- KeyName string
- Encryption Key name
- KeyVersion string
- Encryption Key Version
- VaultBase stringUrl 
- vault base Url
- KeyName string
- Encryption Key name
- KeyVersion string
- Encryption Key Version
- VaultBase stringUrl 
- vault base Url
- keyName String
- Encryption Key name
- keyVersion String
- Encryption Key Version
- vaultBase StringUrl 
- vault base Url
- keyName string
- Encryption Key name
- keyVersion string
- Encryption Key Version
- vaultBase stringUrl 
- vault base Url
- key_name str
- Encryption Key name
- key_version str
- Encryption Key Version
- vault_base_ strurl 
- vault base Url
- keyName String
- Encryption Key name
- keyVersion String
- Encryption Key Version
- vaultBase StringUrl 
- vault base Url
ACIServiceResponseResponseEnvironmentImageRequest, ACIServiceResponseResponseEnvironmentImageRequestArgs            
- Assets
List<Pulumi.Azure Native. Machine Learning Services. Inputs. Image Asset Response> 
- The list of assets.
- DriverProgram 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.
- EnvironmentReference Pulumi.Azure Native. Machine Learning Services. Inputs. Environment Image Response Response Environment Reference 
- The unique identifying details of the AZURE ML environment.
- ModelIds List<string>
- The list of model Ids.
- Models
List<Pulumi.Azure Native. Machine Learning Services. Inputs. Model Response> 
- The list of models.
- Assets
[]ImageAsset Response 
- The list of assets.
- DriverProgram string
- The name of the driver file.
- Environment
EnvironmentImage Response Response Environment 
- The details of the AZURE ML environment.
- EnvironmentReference EnvironmentImage Response Response Environment Reference 
- The unique identifying details of the AZURE ML environment.
- ModelIds []string
- The list of model Ids.
- Models
[]ModelResponse 
- The list of models.
- assets
List<ImageAsset Response> 
- The list of assets.
- driverProgram String
- The name of the driver file.
- environment
EnvironmentImage Response Response Environment 
- The details of the AZURE ML environment.
- environmentReference EnvironmentImage Response Response Environment Reference 
- The unique identifying details of the AZURE ML environment.
- modelIds List<String>
- The list of model Ids.
- models
List<ModelResponse> 
- The list of models.
- assets
ImageAsset Response[] 
- The list of assets.
- driverProgram string
- The name of the driver file.
- environment
EnvironmentImage Response Response Environment 
- The details of the AZURE ML environment.
- environmentReference EnvironmentImage Response Response Environment Reference 
- The unique identifying details of the AZURE ML environment.
- modelIds string[]
- The list of model Ids.
- models
ModelResponse[] 
- The list of models.
- assets
Sequence[ImageAsset Response] 
- The list of assets.
- driver_program str
- The name of the driver file.
- environment
EnvironmentImage 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[ModelResponse] 
- The list of models.
- assets List<Property Map>
- The list of assets.
- driverProgram String
- The name of the driver file.
- environment Property Map
- The details of the AZURE ML environment.
- environmentReference Property Map
- The unique identifying details of the AZURE ML environment.
- modelIds List<String>
- The list of model Ids.
- models List<Property Map>
- The list of models.
ACIServiceResponseResponseVnetConfiguration, ACIServiceResponseResponseVnetConfigurationArgs          
- SubnetName string
- The name of the virtual network subnet.
- VnetName string
- The name of the virtual network.
- SubnetName string
- The name of the virtual network subnet.
- VnetName string
- The name of the virtual network.
- subnetName String
- The name of the virtual network subnet.
- vnetName String
- The name of the virtual network.
- subnetName string
- The name of the virtual network subnet.
- vnetName 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.
- subnetName String
- The name of the virtual network subnet.
- vnetName String
- The name of the virtual network.
AKSReplicaStatusResponseError, AKSReplicaStatusResponseErrorArgs        
- Error
Pulumi.Azure Native. Machine Learning Services. Inputs. Error Response Response 
- The error response.
- Error
ErrorResponse Response 
- The error response.
- error
ErrorResponse Response 
- The error response.
- error
ErrorResponse Response 
- The error response.
- error
ErrorResponse Response 
- The error response.
- error Property Map
- The error response.
AKSServiceResponseResponse, AKSServiceResponseResponseArgs      
- DeploymentStatus 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.
- ModelConfig Dictionary<string, object>Map 
- Details on the models and configurations.
- ScoringUri string
- The Uri for sending scoring requests.
- State string
- The current state of the service.
- SwaggerUri string
- The Uri for sending swagger requests.
- AadAuth boolEnabled 
- Whether or not AAD authentication is enabled.
- AppInsights boolEnabled 
- Whether or not Application Insights is enabled.
- AuthEnabled bool
- Whether or not authentication is enabled.
- AutoScaler Pulumi.Azure Native. Machine Learning Services. Inputs. AKSService Response Response Auto Scaler 
- The auto scaler properties.
- ComputeName string
- The name of the compute resource.
- ContainerResource Pulumi.Requirements Azure Native. Machine Learning Services. Inputs. Container Resource Requirements Response 
- The container resource requirements.
- DataCollection Pulumi.Azure Native. Machine Learning Services. Inputs. AKSService Response Response Data Collection 
- Details of the data collection options specified.
- DeploymentType string
- The deployment type for the service.
- Description string
- The service description.
- EnvironmentImage Pulumi.Request Azure Native. Machine Learning Services. Inputs. AKSService Response Response Environment Image Request 
- The Environment, models and assets used for inferencing.
- IsDefault bool
- Is this the default variant.
- Dictionary<string, string>
- The service tag dictionary. Tags are mutable.
- LivenessProbe Pulumi.Requirements Azure Native. Machine Learning Services. Inputs. AKSService Response Response Liveness Probe Requirements 
- The liveness probe requirements.
- MaxConcurrent intRequests Per Container 
- The maximum number of concurrent requests per container.
- MaxQueue 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.
- NumReplicas int
- The number of replicas on the cluster.
- Properties Dictionary<string, string>
- The service property dictionary. Properties are immutable.
- ScoringTimeout intMs 
- The scoring timeout in milliseconds.
- TrafficPercentile double
- The amount of traffic variant receives.
- Type string
- The type of the variant.
- DeploymentStatus AKSServiceResponse Response Deployment Status 
- The deployment status.
- Error
ServiceResponse Base Response Error 
- The error details.
- ModelConfig map[string]interface{}Map 
- Details on the models and configurations.
- ScoringUri string
- The Uri for sending scoring requests.
- State string
- The current state of the service.
- SwaggerUri string
- The Uri for sending swagger requests.
- AadAuth boolEnabled 
- Whether or not AAD authentication is enabled.
- AppInsights boolEnabled 
- Whether or not Application Insights is enabled.
- AuthEnabled bool
- Whether or not authentication is enabled.
- AutoScaler AKSServiceResponse Response Auto Scaler 
- The auto scaler properties.
- ComputeName string
- The name of the compute resource.
- ContainerResource ContainerRequirements Resource Requirements Response 
- The container resource requirements.
- DataCollection AKSServiceResponse Response Data Collection 
- Details of the data collection options specified.
- DeploymentType string
- The deployment type for the service.
- Description string
- The service description.
- EnvironmentImage AKSServiceRequest Response Response Environment Image Request 
- The Environment, models and assets used for inferencing.
- IsDefault bool
- Is this the default variant.
- map[string]string
- The service tag dictionary. Tags are mutable.
- LivenessProbe AKSServiceRequirements Response Response Liveness Probe Requirements 
- The liveness probe requirements.
- MaxConcurrent intRequests Per Container 
- The maximum number of concurrent requests per container.
- MaxQueue intWait Ms 
- Maximum time a request will wait in the queue (in milliseconds). After this time, the service will return 503 (Service Unavailable)
- Models
[]ModelResponse 
- The list of models.
- Namespace string
- The Kubernetes namespace of the deployment.
- NumReplicas int
- The number of replicas on the cluster.
- Properties map[string]string
- The service property dictionary. Properties are immutable.
- ScoringTimeout intMs 
- The scoring timeout in milliseconds.
- TrafficPercentile float64
- The amount of traffic variant receives.
- Type string
- The type of the variant.
- deploymentStatus AKSServiceResponse Response Deployment Status 
- The deployment status.
- error
ServiceResponse Base Response Error 
- The error details.
- modelConfig Map<String,Object>Map 
- Details on the models and configurations.
- scoringUri String
- The Uri for sending scoring requests.
- state String
- The current state of the service.
- swaggerUri String
- The Uri for sending swagger requests.
- aadAuth BooleanEnabled 
- Whether or not AAD authentication is enabled.
- appInsights BooleanEnabled 
- Whether or not Application Insights is enabled.
- authEnabled Boolean
- Whether or not authentication is enabled.
- autoScaler AKSServiceResponse Response Auto Scaler 
- The auto scaler properties.
- computeName String
- The name of the compute resource.
- containerResource ContainerRequirements Resource Requirements Response 
- The container resource requirements.
- dataCollection AKSServiceResponse Response Data Collection 
- Details of the data collection options specified.
- deploymentType String
- The deployment type for the service.
- description String
- The service description.
- environmentImage AKSServiceRequest Response Response Environment Image Request 
- The Environment, models and assets used for inferencing.
- isDefault Boolean
- Is this the default variant.
- Map<String,String>
- The service tag dictionary. Tags are mutable.
- livenessProbe AKSServiceRequirements Response Response Liveness Probe Requirements 
- The liveness probe requirements.
- maxConcurrent IntegerRequests Per Container 
- The maximum number of concurrent requests per container.
- maxQueue 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<ModelResponse> 
- The list of models.
- namespace String
- The Kubernetes namespace of the deployment.
- numReplicas Integer
- The number of replicas on the cluster.
- properties Map<String,String>
- The service property dictionary. Properties are immutable.
- scoringTimeout IntegerMs 
- The scoring timeout in milliseconds.
- trafficPercentile Double
- The amount of traffic variant receives.
- type String
- The type of the variant.
- deploymentStatus AKSServiceResponse Response Deployment Status 
- The deployment status.
- error
ServiceResponse Base Response Error 
- The error details.
- modelConfig {[key: string]: any}Map 
- Details on the models and configurations.
- scoringUri string
- The Uri for sending scoring requests.
- state string
- The current state of the service.
- swaggerUri string
- The Uri for sending swagger requests.
- aadAuth booleanEnabled 
- Whether or not AAD authentication is enabled.
- appInsights booleanEnabled 
- Whether or not Application Insights is enabled.
- authEnabled boolean
- Whether or not authentication is enabled.
- autoScaler AKSServiceResponse Response Auto Scaler 
- The auto scaler properties.
- computeName string
- The name of the compute resource.
- containerResource ContainerRequirements Resource Requirements Response 
- The container resource requirements.
- dataCollection AKSServiceResponse Response Data Collection 
- Details of the data collection options specified.
- deploymentType string
- The deployment type for the service.
- description string
- The service description.
- environmentImage AKSServiceRequest Response Response Environment Image Request 
- The Environment, models and assets used for inferencing.
- isDefault boolean
- Is this the default variant.
- {[key: string]: string}
- The service tag dictionary. Tags are mutable.
- livenessProbe AKSServiceRequirements Response Response Liveness Probe Requirements 
- The liveness probe requirements.
- maxConcurrent numberRequests Per Container 
- The maximum number of concurrent requests per container.
- maxQueue numberWait Ms 
- Maximum time a request will wait in the queue (in milliseconds). After this time, the service will return 503 (Service Unavailable)
- models
ModelResponse[] 
- The list of models.
- namespace string
- The Kubernetes namespace of the deployment.
- numReplicas number
- The number of replicas on the cluster.
- properties {[key: string]: string}
- The service property dictionary. Properties are immutable.
- scoringTimeout numberMs 
- The scoring timeout in milliseconds.
- trafficPercentile number
- The amount of traffic variant receives.
- type string
- The type of the variant.
- deployment_status AKSServiceResponse Response Deployment Status 
- The deployment status.
- error
ServiceResponse 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[ModelResponse] 
- 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.
- deploymentStatus Property Map
- The deployment status.
- error Property Map
- The error details.
- modelConfig Map<Any>Map 
- Details on the models and configurations.
- scoringUri String
- The Uri for sending scoring requests.
- state String
- The current state of the service.
- swaggerUri String
- The Uri for sending swagger requests.
- aadAuth BooleanEnabled 
- Whether or not AAD authentication is enabled.
- appInsights BooleanEnabled 
- Whether or not Application Insights is enabled.
- authEnabled Boolean
- Whether or not authentication is enabled.
- autoScaler Property Map
- The auto scaler properties.
- computeName String
- The name of the compute resource.
- containerResource Property MapRequirements 
- The container resource requirements.
- dataCollection Property Map
- Details of the data collection options specified.
- deploymentType String
- The deployment type for the service.
- description String
- The service description.
- environmentImage Property MapRequest 
- The Environment, models and assets used for inferencing.
- isDefault Boolean
- Is this the default variant.
- Map<String>
- The service tag dictionary. Tags are mutable.
- livenessProbe Property MapRequirements 
- The liveness probe requirements.
- maxConcurrent NumberRequests Per Container 
- The maximum number of concurrent requests per container.
- maxQueue 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.
- numReplicas Number
- The number of replicas on the cluster.
- properties Map<String>
- The service property dictionary. Properties are immutable.
- scoringTimeout NumberMs 
- The scoring timeout in milliseconds.
- trafficPercentile Number
- The amount of traffic variant receives.
- type String
- The type of the variant.
AKSServiceResponseResponseAutoScaler, AKSServiceResponseResponseAutoScalerArgs          
- AutoscaleEnabled bool
- Option to enable/disable auto scaling.
- MaxReplicas int
- The maximum number of replicas in the cluster.
- MinReplicas int
- The minimum number of replicas to scale down to.
- RefreshPeriod intIn Seconds 
- The amount of seconds to wait between auto scale updates.
- TargetUtilization int
- The target utilization percentage to use for determining whether to scale the cluster.
- AutoscaleEnabled bool
- Option to enable/disable auto scaling.
- MaxReplicas int
- The maximum number of replicas in the cluster.
- MinReplicas int
- The minimum number of replicas to scale down to.
- RefreshPeriod intIn Seconds 
- The amount of seconds to wait between auto scale updates.
- TargetUtilization int
- The target utilization percentage to use for determining whether to scale the cluster.
- autoscaleEnabled Boolean
- Option to enable/disable auto scaling.
- maxReplicas Integer
- The maximum number of replicas in the cluster.
- minReplicas Integer
- The minimum number of replicas to scale down to.
- refreshPeriod IntegerIn Seconds 
- The amount of seconds to wait between auto scale updates.
- targetUtilization Integer
- The target utilization percentage to use for determining whether to scale the cluster.
- autoscaleEnabled boolean
- Option to enable/disable auto scaling.
- maxReplicas number
- The maximum number of replicas in the cluster.
- minReplicas number
- The minimum number of replicas to scale down to.
- refreshPeriod numberIn Seconds 
- The amount of seconds to wait between auto scale updates.
- targetUtilization 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.
- autoscaleEnabled Boolean
- Option to enable/disable auto scaling.
- maxReplicas Number
- The maximum number of replicas in the cluster.
- minReplicas Number
- The minimum number of replicas to scale down to.
- refreshPeriod NumberIn Seconds 
- The amount of seconds to wait between auto scale updates.
- targetUtilization Number
- The target utilization percentage to use for determining whether to scale the cluster.
AKSServiceResponseResponseDataCollection, AKSServiceResponseResponseDataCollectionArgs          
- EventHub boolEnabled 
- Option for enabling/disabling Event Hub.
- StorageEnabled bool
- Option for enabling/disabling storage.
- EventHub boolEnabled 
- Option for enabling/disabling Event Hub.
- StorageEnabled bool
- Option for enabling/disabling storage.
- eventHub BooleanEnabled 
- Option for enabling/disabling Event Hub.
- storageEnabled Boolean
- Option for enabling/disabling storage.
- eventHub booleanEnabled 
- Option for enabling/disabling Event Hub.
- storageEnabled boolean
- Option for enabling/disabling storage.
- event_hub_ boolenabled 
- Option for enabling/disabling Event Hub.
- storage_enabled bool
- Option for enabling/disabling storage.
- eventHub BooleanEnabled 
- Option for enabling/disabling Event Hub.
- storageEnabled Boolean
- Option for enabling/disabling storage.
AKSServiceResponseResponseDeploymentStatus, AKSServiceResponseResponseDeploymentStatusArgs          
- AvailableReplicas int
- The number of available replicas.
- DesiredReplicas int
- The desired number of replicas.
- Error
Pulumi.Azure Native. Machine Learning Services. Inputs. AKSReplica Status Response Error 
- The error details.
- UpdatedReplicas int
- The number of updated replicas.
- AvailableReplicas int
- The number of available replicas.
- DesiredReplicas int
- The desired number of replicas.
- Error
AKSReplicaStatus Response Error 
- The error details.
- UpdatedReplicas int
- The number of updated replicas.
- availableReplicas Integer
- The number of available replicas.
- desiredReplicas Integer
- The desired number of replicas.
- error
AKSReplicaStatus Response Error 
- The error details.
- updatedReplicas Integer
- The number of updated replicas.
- availableReplicas number
- The number of available replicas.
- desiredReplicas number
- The desired number of replicas.
- error
AKSReplicaStatus Response Error 
- The error details.
- updatedReplicas number
- The number of updated replicas.
- available_replicas int
- The number of available replicas.
- desired_replicas int
- The desired number of replicas.
- error
AKSReplicaStatus Response Error 
- The error details.
- updated_replicas int
- The number of updated replicas.
- availableReplicas Number
- The number of available replicas.
- desiredReplicas Number
- The desired number of replicas.
- error Property Map
- The error details.
- updatedReplicas Number
- The number of updated replicas.
AKSServiceResponseResponseEnvironmentImageRequest, AKSServiceResponseResponseEnvironmentImageRequestArgs            
- Assets
List<Pulumi.Azure Native. Machine Learning Services. Inputs. Image Asset Response> 
- The list of assets.
- DriverProgram 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.
- EnvironmentReference Pulumi.Azure Native. Machine Learning Services. Inputs. Environment Image Response Response Environment Reference 
- The unique identifying details of the AZURE ML environment.
- ModelIds List<string>
- The list of model Ids.
- Models
List<Pulumi.Azure Native. Machine Learning Services. Inputs. Model Response> 
- The list of models.
- Assets
[]ImageAsset Response 
- The list of assets.
- DriverProgram string
- The name of the driver file.
- Environment
EnvironmentImage Response Response Environment 
- The details of the AZURE ML environment.
- EnvironmentReference EnvironmentImage Response Response Environment Reference 
- The unique identifying details of the AZURE ML environment.
- ModelIds []string
- The list of model Ids.
- Models
[]ModelResponse 
- The list of models.
- assets
List<ImageAsset Response> 
- The list of assets.
- driverProgram String
- The name of the driver file.
- environment
EnvironmentImage Response Response Environment 
- The details of the AZURE ML environment.
- environmentReference EnvironmentImage Response Response Environment Reference 
- The unique identifying details of the AZURE ML environment.
- modelIds List<String>
- The list of model Ids.
- models
List<ModelResponse> 
- The list of models.
- assets
ImageAsset Response[] 
- The list of assets.
- driverProgram string
- The name of the driver file.
- environment
EnvironmentImage Response Response Environment 
- The details of the AZURE ML environment.
- environmentReference EnvironmentImage Response Response Environment Reference 
- The unique identifying details of the AZURE ML environment.
- modelIds string[]
- The list of model Ids.
- models
ModelResponse[] 
- The list of models.
- assets
Sequence[ImageAsset Response] 
- The list of assets.
- driver_program str
- The name of the driver file.
- environment
EnvironmentImage 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[ModelResponse] 
- The list of models.
- assets List<Property Map>
- The list of assets.
- driverProgram String
- The name of the driver file.
- environment Property Map
- The details of the AZURE ML environment.
- environmentReference Property Map
- The unique identifying details of the AZURE ML environment.
- modelIds List<String>
- The list of model Ids.
- models List<Property Map>
- The list of models.
AKSServiceResponseResponseLivenessProbeRequirements, AKSServiceResponseResponseLivenessProbeRequirementsArgs            
- FailureThreshold int
- The number of failures to allow before returning an unhealthy status.
- InitialDelay intSeconds 
- The delay before the first probe in seconds.
- PeriodSeconds int
- The length of time between probes in seconds.
- SuccessThreshold int
- The number of successful probes before returning a healthy status.
- TimeoutSeconds int
- The probe timeout in seconds.
- FailureThreshold int
- The number of failures to allow before returning an unhealthy status.
- InitialDelay intSeconds 
- The delay before the first probe in seconds.
- PeriodSeconds int
- The length of time between probes in seconds.
- SuccessThreshold int
- The number of successful probes before returning a healthy status.
- TimeoutSeconds int
- The probe timeout in seconds.
- failureThreshold Integer
- The number of failures to allow before returning an unhealthy status.
- initialDelay IntegerSeconds 
- The delay before the first probe in seconds.
- periodSeconds Integer
- The length of time between probes in seconds.
- successThreshold Integer
- The number of successful probes before returning a healthy status.
- timeoutSeconds Integer
- The probe timeout in seconds.
- failureThreshold number
- The number of failures to allow before returning an unhealthy status.
- initialDelay numberSeconds 
- The delay before the first probe in seconds.
- periodSeconds number
- The length of time between probes in seconds.
- successThreshold number
- The number of successful probes before returning a healthy status.
- timeoutSeconds 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.
- failureThreshold Number
- The number of failures to allow before returning an unhealthy status.
- initialDelay NumberSeconds 
- The delay before the first probe in seconds.
- periodSeconds Number
- The length of time between probes in seconds.
- successThreshold Number
- The number of successful probes before returning a healthy status.
- timeoutSeconds 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.
- DeploymentType string
- The deployment type for the service.
- Description string
- The service description.
- IsDefault 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.
- TrafficPercentile double
- The amount of traffic variant receives.
- Type string
- The type of the variant.
- Error
ServiceResponse Base Response Error 
- The error details.
- State string
- The current state of the service.
- DeploymentType string
- The deployment type for the service.
- Description string
- The service description.
- IsDefault 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.
- TrafficPercentile float64
- The amount of traffic variant receives.
- Type string
- The type of the variant.
- error
ServiceResponse Base Response Error 
- The error details.
- state String
- The current state of the service.
- deploymentType String
- The deployment type for the service.
- description String
- The service description.
- isDefault 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.
- trafficPercentile Double
- The amount of traffic variant receives.
- type String
- The type of the variant.
- error
ServiceResponse Base Response Error 
- The error details.
- state string
- The current state of the service.
- deploymentType string
- The deployment type for the service.
- description string
- The service description.
- isDefault 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.
- trafficPercentile number
- The amount of traffic variant receives.
- type string
- The type of the variant.
- error
ServiceResponse 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.
- deploymentType String
- The deployment type for the service.
- description String
- The service description.
- isDefault 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.
- trafficPercentile 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/
- CpuLimit 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.
- MemoryIn 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/
- MemoryIn 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/
- CpuLimit 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.
- MemoryIn 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/
- MemoryIn 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/
- cpuLimit 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.
- memoryIn 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/
- memoryIn 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/
- cpuLimit 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.
- memoryIn 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/
- memoryIn 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/
- cpuLimit 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.
- memoryIn 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/
- memoryIn 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/
- CpuLimit 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.
- MemoryIn 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/
- MemoryIn 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/
- CpuLimit 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.
- MemoryIn 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/
- MemoryIn 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/
- cpuLimit 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.
- memoryIn 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/
- memoryIn 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/
- cpuLimit 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.
- memoryIn 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/
- memoryIn 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/
- cpuLimit 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.
- memoryIn 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/
- memoryIn 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.
- DriverProgram 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.
- EnvironmentReference Pulumi.Azure Native. Machine Learning Services. Inputs. Environment Image Request Environment Reference 
- The unique identifying details of the AZURE ML environment.
- ModelIds List<string>
- The list of model Ids.
- Models
List<Pulumi.Azure Native. Machine Learning Services. Inputs. Model> 
- The list of models.
- Assets
[]ImageAsset 
- The list of assets.
- DriverProgram string
- The name of the driver file.
- Environment
EnvironmentImage Request Environment 
- The details of the AZURE ML environment.
- EnvironmentReference EnvironmentImage Request Environment Reference 
- The unique identifying details of the AZURE ML environment.
- ModelIds []string
- The list of model Ids.
- Models []Model
- The list of models.
- assets
List<ImageAsset> 
- The list of assets.
- driverProgram String
- The name of the driver file.
- environment
EnvironmentImage Request Environment 
- The details of the AZURE ML environment.
- environmentReference EnvironmentImage Request Environment Reference 
- The unique identifying details of the AZURE ML environment.
- modelIds List<String>
- The list of model Ids.
- models List<Model>
- The list of models.
- assets
ImageAsset[] 
- The list of assets.
- driverProgram string
- The name of the driver file.
- environment
EnvironmentImage Request Environment 
- The details of the AZURE ML environment.
- environmentReference EnvironmentImage Request Environment Reference 
- The unique identifying details of the AZURE ML environment.
- modelIds string[]
- The list of model Ids.
- models Model[]
- The list of models.
- assets
Sequence[ImageAsset] 
- The list of assets.
- driver_program str
- The name of the driver file.
- environment
EnvironmentImage 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.
- driverProgram String
- The name of the driver file.
- environment Property Map
- The details of the AZURE ML environment.
- environmentReference Property Map
- The unique identifying details of the AZURE ML environment.
- modelIds List<String>
- The list of model Ids.
- models List<Property Map>
- The list of models.
CreateServiceRequestKeys, CreateServiceRequestKeysArgs        
- PrimaryKey string
- The primary key.
- SecondaryKey string
- The secondary key.
- PrimaryKey string
- The primary key.
- SecondaryKey string
- The secondary key.
- primaryKey String
- The primary key.
- secondaryKey String
- The secondary key.
- primaryKey string
- The primary key.
- secondaryKey string
- The secondary key.
- primary_key str
- The primary key.
- secondary_key str
- The secondary key.
- primaryKey String
- The primary key.
- secondaryKey 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.
- EnvironmentVariables Dictionary<string, string>
- Definition of environment variables to be defined in the environment.
- InferencingStack 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
ModelEnvironment Definition Docker 
- The definition of a Docker container.
- EnvironmentVariables map[string]string
- Definition of environment variables to be defined in the environment.
- InferencingStack 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
ModelEnvironment Definition Python 
- Settings for a Python environment.
- R
ModelEnvironment Definition R 
- Settings for a R environment.
- Spark
ModelEnvironment Definition Spark 
- The configuration for a Spark environment.
- Version string
- The environment version.
- docker
ModelEnvironment Definition Docker 
- The definition of a Docker container.
- environmentVariables Map<String,String>
- Definition of environment variables to be defined in the environment.
- inferencingStack 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
ModelEnvironment Definition Python 
- Settings for a Python environment.
- r
ModelEnvironment Definition R 
- Settings for a R environment.
- spark
ModelEnvironment Definition Spark 
- The configuration for a Spark environment.
- version String
- The environment version.
- docker
ModelEnvironment Definition Docker 
- The definition of a Docker container.
- environmentVariables {[key: string]: string}
- Definition of environment variables to be defined in the environment.
- inferencingStack 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
ModelEnvironment Definition Python 
- Settings for a Python environment.
- r
ModelEnvironment Definition R 
- Settings for a R environment.
- spark
ModelEnvironment Definition Spark 
- The configuration for a Spark environment.
- version string
- The environment version.
- docker
ModelEnvironment 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
ModelEnvironment Definition Python 
- Settings for a Python environment.
- r
ModelEnvironment Definition R 
- Settings for a R environment.
- spark
ModelEnvironment Definition Spark 
- The configuration for a Spark environment.
- version str
- The environment version.
- docker Property Map
- The definition of a Docker container.
- environmentVariables Map<String>
- Definition of environment variables to be defined in the environment.
- inferencingStack 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.
- EnvironmentVariables Dictionary<string, string>
- Definition of environment variables to be defined in the environment.
- InferencingStack 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
ModelEnvironment Definition Response Response Docker 
- The definition of a Docker container.
- EnvironmentVariables map[string]string
- Definition of environment variables to be defined in the environment.
- InferencingStack 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
ModelEnvironment Definition Response Response Python 
- Settings for a Python environment.
- R
ModelEnvironment Definition Response Response R 
- Settings for a R environment.
- Spark
ModelEnvironment Definition Response Response Spark 
- The configuration for a Spark environment.
- Version string
- The environment version.
- docker
ModelEnvironment Definition Response Response Docker 
- The definition of a Docker container.
- environmentVariables Map<String,String>
- Definition of environment variables to be defined in the environment.
- inferencingStack 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
ModelEnvironment Definition Response Response Python 
- Settings for a Python environment.
- r
ModelEnvironment Definition Response Response R 
- Settings for a R environment.
- spark
ModelEnvironment Definition Response Response Spark 
- The configuration for a Spark environment.
- version String
- The environment version.
- docker
ModelEnvironment Definition Response Response Docker 
- The definition of a Docker container.
- environmentVariables {[key: string]: string}
- Definition of environment variables to be defined in the environment.
- inferencingStack 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
ModelEnvironment Definition Response Response Python 
- Settings for a Python environment.
- r
ModelEnvironment Definition Response Response R 
- Settings for a R environment.
- spark
ModelEnvironment Definition Response Response Spark 
- The configuration for a Spark environment.
- version string
- The environment version.
- docker
ModelEnvironment 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
ModelEnvironment Definition Response Response Python 
- Settings for a Python environment.
- r
ModelEnvironment Definition Response Response R 
- Settings for a R environment.
- spark
ModelEnvironment Definition Response Response Spark 
- The configuration for a Spark environment.
- version str
- The environment version.
- docker Property Map
- The definition of a Docker container.
- environmentVariables Map<String>
- Definition of environment variables to be defined in the environment.
- inferencingStack 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
[]ErrorDetail Response 
- An array of error detail objects.
- Message string
- Error message.
- code String
- Error code.
- details
List<ErrorDetail Response> 
- An array of error detail objects.
- message String
- Error message.
- code string
- Error code.
- details
ErrorDetail Response[] 
- An array of error detail objects.
- message string
- Error message.
- code str
- Error code.
- details
Sequence[ErrorDetail 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    
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Machine Learning Services. Inputs. User Assigned Identity Response> 
- The user assigned identities associated with the resource.
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- The user assigned identities associated with the resource.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity type.
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- The user assigned identities associated with the resource.
- principalId string
- The principal ID of resource identity.
- tenantId string
- The tenant ID of resource.
- type string
- The identity type.
- userAssigned {[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.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity type.
- userAssigned Map<Property Map>Identities 
- The user assigned identities associated with the resource.
ImageAsset, ImageAssetArgs    
ImageAssetResponse, ImageAssetResponseArgs      
Model, ModelArgs  
- MimeType 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.
- CreatedTime 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.
- DerivedModel List<string>Ids 
- Models derived from this model
- Description string
- The Model description text.
- ExperimentName string
- The name of the experiment where this model was created.
- Framework string
- The Model framework.
- FrameworkVersion string
- The Model framework version.
- Id string
- The Model Id.
- Dictionary<string, string>
- The Model tag dictionary. Items are mutable.
- ModifiedTime string
- The Model last modified time (UTC).
- ParentModel stringId 
- The Parent Model Id.
- Properties Dictionary<string, string>
- The Model property dictionary. Properties are immutable.
- ResourceRequirements Pulumi.Azure Native. Machine Learning Services. Inputs. Container Resource Requirements 
- Resource requirements for the model
- RunId string
- The RunId that created this model.
- SampleInput stringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- SampleOutput 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.
- MimeType 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.
- CreatedTime string
- The Model creation time (UTC).
- Datasets
[]DatasetReference 
- The list of datasets associated with the model.
- DerivedModel []stringIds 
- Models derived from this model
- Description string
- The Model description text.
- ExperimentName string
- The name of the experiment where this model was created.
- Framework string
- The Model framework.
- FrameworkVersion string
- The Model framework version.
- Id string
- The Model Id.
- map[string]string
- The Model tag dictionary. Items are mutable.
- ModifiedTime string
- The Model last modified time (UTC).
- ParentModel stringId 
- The Parent Model Id.
- Properties map[string]string
- The Model property dictionary. Properties are immutable.
- ResourceRequirements ContainerResource Requirements 
- Resource requirements for the model
- RunId string
- The RunId that created this model.
- SampleInput stringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- SampleOutput 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.
- mimeType 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.
- createdTime String
- The Model creation time (UTC).
- datasets
List<DatasetReference> 
- The list of datasets associated with the model.
- derivedModel List<String>Ids 
- Models derived from this model
- description String
- The Model description text.
- experimentName String
- The name of the experiment where this model was created.
- framework String
- The Model framework.
- frameworkVersion String
- The Model framework version.
- id String
- The Model Id.
- Map<String,String>
- The Model tag dictionary. Items are mutable.
- modifiedTime String
- The Model last modified time (UTC).
- parentModel StringId 
- The Parent Model Id.
- properties Map<String,String>
- The Model property dictionary. Properties are immutable.
- resourceRequirements ContainerResource Requirements 
- Resource requirements for the model
- runId String
- The RunId that created this model.
- sampleInput StringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sampleOutput 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.
- mimeType 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.
- createdTime string
- The Model creation time (UTC).
- datasets
DatasetReference[] 
- The list of datasets associated with the model.
- derivedModel string[]Ids 
- Models derived from this model
- description string
- The Model description text.
- experimentName string
- The name of the experiment where this model was created.
- framework string
- The Model framework.
- frameworkVersion string
- The Model framework version.
- id string
- The Model Id.
- {[key: string]: string}
- The Model tag dictionary. Items are mutable.
- modifiedTime string
- The Model last modified time (UTC).
- parentModel stringId 
- The Parent Model Id.
- properties {[key: string]: string}
- The Model property dictionary. Properties are immutable.
- resourceRequirements ContainerResource Requirements 
- Resource requirements for the model
- runId string
- The RunId that created this model.
- sampleInput stringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sampleOutput 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[DatasetReference] 
- 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.
- mimeType 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.
- createdTime String
- The Model creation time (UTC).
- datasets List<Property Map>
- The list of datasets associated with the model.
- derivedModel List<String>Ids 
- Models derived from this model
- description String
- The Model description text.
- experimentName String
- The name of the experiment where this model was created.
- framework String
- The Model framework.
- frameworkVersion String
- The Model framework version.
- id String
- The Model Id.
- Map<String>
- The Model tag dictionary. Items are mutable.
- modifiedTime String
- The Model last modified time (UTC).
- parentModel StringId 
- The Parent Model Id.
- properties Map<String>
- The Model property dictionary. Properties are immutable.
- resourceRequirements Property Map
- Resource requirements for the model
- runId String
- The RunId that created this model.
- sampleInput StringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sampleOutput 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        
- BaseDockerfile string
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- BaseImage string
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- BaseImage Pulumi.Registry Azure Native. Machine Learning Services. Inputs. Model Docker Section Base Image Registry 
- Image registry that contains the base image.
- BaseDockerfile string
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- BaseImage string
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- BaseImage ModelRegistry Docker Section Base Image Registry 
- Image registry that contains the base image.
- baseDockerfile String
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- baseImage String
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- baseImage ModelRegistry Docker Section Base Image Registry 
- Image registry that contains the base image.
- baseDockerfile string
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- baseImage string
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- baseImage 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.
- baseDockerfile String
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- baseImage String
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- baseImage Property MapRegistry 
- Image registry that contains the base image.
ModelEnvironmentDefinitionPython, ModelEnvironmentDefinitionPythonArgs        
- BaseConda stringEnvironment 
- CondaDependencies object
- A JObject containing Conda dependencies.
- InterpreterPath string
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- UserManaged 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.
- BaseConda stringEnvironment 
- CondaDependencies interface{}
- A JObject containing Conda dependencies.
- InterpreterPath string
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- UserManaged 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.
- baseConda StringEnvironment 
- condaDependencies Object
- A JObject containing Conda dependencies.
- interpreterPath String
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- userManaged 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.
- baseConda stringEnvironment 
- condaDependencies any
- A JObject containing Conda dependencies.
- interpreterPath string
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- userManaged 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.
- baseConda StringEnvironment 
- condaDependencies Any
- A JObject containing Conda dependencies.
- interpreterPath String
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- userManaged 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        
- BioConductor List<string>Packages 
- The packages from Bioconductor.
- CranPackages List<Pulumi.Azure Native. Machine Learning Services. Inputs. RCran Package> 
- The CRAN packages to use.
- CustomUrl List<string>Packages 
- The packages from custom urls.
- GitHub 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
- RscriptPath string
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- SnapshotDate string
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- UserManaged bool
- Indicates whether the environment is managed by user or by AzureML.
- BioConductor []stringPackages 
- The packages from Bioconductor.
- CranPackages []RCranPackage 
- The CRAN packages to use.
- CustomUrl []stringPackages 
- The packages from custom urls.
- GitHub []RGitPackages Hub Package 
- The packages directly from GitHub.
- RVersion string
- The version of R to be installed
- RscriptPath string
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- SnapshotDate string
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- UserManaged bool
- Indicates whether the environment is managed by user or by AzureML.
- bioConductor List<String>Packages 
- The packages from Bioconductor.
- cranPackages List<RCranPackage> 
- The CRAN packages to use.
- customUrl List<String>Packages 
- The packages from custom urls.
- gitHub List<RGitPackages Hub Package> 
- The packages directly from GitHub.
- rVersion String
- The version of R to be installed
- rscriptPath String
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshotDate String
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- userManaged Boolean
- Indicates whether the environment is managed by user or by AzureML.
- bioConductor string[]Packages 
- The packages from Bioconductor.
- cranPackages RCranPackage[] 
- The CRAN packages to use.
- customUrl string[]Packages 
- The packages from custom urls.
- gitHub RGitPackages Hub Package[] 
- The packages directly from GitHub.
- rVersion string
- The version of R to be installed
- rscriptPath string
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshotDate string
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- userManaged 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.
- bioConductor List<String>Packages 
- The packages from Bioconductor.
- cranPackages List<Property Map>
- The CRAN packages to use.
- customUrl List<String>Packages 
- The packages from custom urls.
- gitHub List<Property Map>Packages 
- The packages directly from GitHub.
- rVersion String
- The version of R to be installed
- rscriptPath String
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshotDate String
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- userManaged Boolean
- Indicates whether the environment is managed by user or by AzureML.
ModelEnvironmentDefinitionResponseResponseDocker, ModelEnvironmentDefinitionResponseResponseDockerArgs            
- BaseDockerfile string
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- BaseImage string
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- BaseImage Pulumi.Registry Azure Native. Machine Learning Services. Inputs. Model Docker Section Response Response Base Image Registry 
- Image registry that contains the base image.
- BaseDockerfile string
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- BaseImage string
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- BaseImage ModelRegistry Docker Section Response Response Base Image Registry 
- Image registry that contains the base image.
- baseDockerfile String
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- baseImage String
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- baseImage ModelRegistry Docker Section Response Response Base Image Registry 
- Image registry that contains the base image.
- baseDockerfile string
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- baseImage string
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- baseImage 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.
- baseDockerfile String
- Base Dockerfile used for Docker-based runs. Mutually exclusive with BaseImage.
- baseImage String
- Base image used for Docker-based runs. Mutually exclusive with BaseDockerfile.
- baseImage Property MapRegistry 
- Image registry that contains the base image.
ModelEnvironmentDefinitionResponseResponsePython, ModelEnvironmentDefinitionResponseResponsePythonArgs            
- BaseConda stringEnvironment 
- CondaDependencies object
- A JObject containing Conda dependencies.
- InterpreterPath string
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- UserManaged 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.
- BaseConda stringEnvironment 
- CondaDependencies interface{}
- A JObject containing Conda dependencies.
- InterpreterPath string
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- UserManaged 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.
- baseConda StringEnvironment 
- condaDependencies Object
- A JObject containing Conda dependencies.
- interpreterPath String
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- userManaged 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.
- baseConda stringEnvironment 
- condaDependencies any
- A JObject containing Conda dependencies.
- interpreterPath string
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- userManaged 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.
- baseConda StringEnvironment 
- condaDependencies Any
- A JObject containing Conda dependencies.
- interpreterPath String
- The python interpreter path to use if an environment build is not required. The path specified gets used to call the user script.
- userManaged 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            
- BioConductor List<string>Packages 
- The packages from Bioconductor.
- CranPackages List<Pulumi.Azure Native. Machine Learning Services. Inputs. RCran Package Response> 
- The CRAN packages to use.
- CustomUrl List<string>Packages 
- The packages from custom urls.
- GitHub 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
- RscriptPath string
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- SnapshotDate string
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- UserManaged bool
- Indicates whether the environment is managed by user or by AzureML.
- BioConductor []stringPackages 
- The packages from Bioconductor.
- CranPackages []RCranPackage Response 
- The CRAN packages to use.
- CustomUrl []stringPackages 
- The packages from custom urls.
- GitHub []RGitPackages Hub Package Response Response 
- The packages directly from GitHub.
- RVersion string
- The version of R to be installed
- RscriptPath string
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- SnapshotDate string
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- UserManaged bool
- Indicates whether the environment is managed by user or by AzureML.
- bioConductor List<String>Packages 
- The packages from Bioconductor.
- cranPackages List<RCranPackage Response> 
- The CRAN packages to use.
- customUrl List<String>Packages 
- The packages from custom urls.
- gitHub List<RGitPackages Hub Package Response Response> 
- The packages directly from GitHub.
- rVersion String
- The version of R to be installed
- rscriptPath String
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshotDate String
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- userManaged Boolean
- Indicates whether the environment is managed by user or by AzureML.
- bioConductor string[]Packages 
- The packages from Bioconductor.
- cranPackages RCranPackage Response[] 
- The CRAN packages to use.
- customUrl string[]Packages 
- The packages from custom urls.
- gitHub RGitPackages Hub Package Response Response[] 
- The packages directly from GitHub.
- rVersion string
- The version of R to be installed
- rscriptPath string
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshotDate string
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- userManaged 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.
- bioConductor List<String>Packages 
- The packages from Bioconductor.
- cranPackages List<Property Map>
- The CRAN packages to use.
- customUrl List<String>Packages 
- The packages from custom urls.
- gitHub List<Property Map>Packages 
- The packages directly from GitHub.
- rVersion String
- The version of R to be installed
- rscriptPath String
- The Rscript path to use if an environment build is not required. The path specified gets used to call the user script.
- snapshotDate String
- Date of MRAN snapshot to use in YYYY-MM-DD format, e.g. "2019-04-17"
- userManaged 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.
- PrecachePackages bool
- Whether to precache the packages.
- Repositories List<string>
- The list of spark repositories.
- Packages
[]SparkMaven Package Response 
- The Spark packages to use.
- PrecachePackages bool
- Whether to precache the packages.
- Repositories []string
- The list of spark repositories.
- packages
List<SparkMaven Package Response> 
- The Spark packages to use.
- precachePackages Boolean
- Whether to precache the packages.
- repositories List<String>
- The list of spark repositories.
- packages
SparkMaven Package Response[] 
- The Spark packages to use.
- precachePackages boolean
- Whether to precache the packages.
- repositories string[]
- The list of spark repositories.
- packages
Sequence[SparkMaven 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.
- precachePackages 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.
- PrecachePackages bool
- Whether to precache the packages.
- Repositories List<string>
- The list of spark repositories.
- Packages
[]SparkMaven Package 
- The Spark packages to use.
- PrecachePackages bool
- Whether to precache the packages.
- Repositories []string
- The list of spark repositories.
- packages
List<SparkMaven Package> 
- The Spark packages to use.
- precachePackages Boolean
- Whether to precache the packages.
- repositories List<String>
- The list of spark repositories.
- packages
SparkMaven Package[] 
- The Spark packages to use.
- precachePackages boolean
- Whether to precache the packages.
- repositories string[]
- The list of spark repositories.
- packages
Sequence[SparkMaven 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.
- precachePackages Boolean
- Whether to precache the packages.
- repositories List<String>
- The list of spark repositories.
ModelResponse, ModelResponseArgs    
- MimeType 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.
- CreatedTime 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.
- DerivedModel List<string>Ids 
- Models derived from this model
- Description string
- The Model description text.
- ExperimentName string
- The name of the experiment where this model was created.
- Framework string
- The Model framework.
- FrameworkVersion string
- The Model framework version.
- Id string
- The Model Id.
- Dictionary<string, string>
- The Model tag dictionary. Items are mutable.
- ModifiedTime string
- The Model last modified time (UTC).
- ParentModel stringId 
- The Parent Model Id.
- Properties Dictionary<string, string>
- The Model property dictionary. Properties are immutable.
- ResourceRequirements Pulumi.Azure Native. Machine Learning Services. Inputs. Container Resource Requirements Response 
- Resource requirements for the model
- RunId string
- The RunId that created this model.
- SampleInput stringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- SampleOutput 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.
- MimeType 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.
- CreatedTime string
- The Model creation time (UTC).
- Datasets
[]DatasetReference Response 
- The list of datasets associated with the model.
- DerivedModel []stringIds 
- Models derived from this model
- Description string
- The Model description text.
- ExperimentName string
- The name of the experiment where this model was created.
- Framework string
- The Model framework.
- FrameworkVersion string
- The Model framework version.
- Id string
- The Model Id.
- map[string]string
- The Model tag dictionary. Items are mutable.
- ModifiedTime string
- The Model last modified time (UTC).
- ParentModel stringId 
- The Parent Model Id.
- Properties map[string]string
- The Model property dictionary. Properties are immutable.
- ResourceRequirements ContainerResource Requirements Response 
- Resource requirements for the model
- RunId string
- The RunId that created this model.
- SampleInput stringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- SampleOutput 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.
- mimeType 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.
- createdTime String
- The Model creation time (UTC).
- datasets
List<DatasetReference Response> 
- The list of datasets associated with the model.
- derivedModel List<String>Ids 
- Models derived from this model
- description String
- The Model description text.
- experimentName String
- The name of the experiment where this model was created.
- framework String
- The Model framework.
- frameworkVersion String
- The Model framework version.
- id String
- The Model Id.
- Map<String,String>
- The Model tag dictionary. Items are mutable.
- modifiedTime String
- The Model last modified time (UTC).
- parentModel StringId 
- The Parent Model Id.
- properties Map<String,String>
- The Model property dictionary. Properties are immutable.
- resourceRequirements ContainerResource Requirements Response 
- Resource requirements for the model
- runId String
- The RunId that created this model.
- sampleInput StringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sampleOutput 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.
- mimeType 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.
- createdTime string
- The Model creation time (UTC).
- datasets
DatasetReference Response[] 
- The list of datasets associated with the model.
- derivedModel string[]Ids 
- Models derived from this model
- description string
- The Model description text.
- experimentName string
- The name of the experiment where this model was created.
- framework string
- The Model framework.
- frameworkVersion string
- The Model framework version.
- id string
- The Model Id.
- {[key: string]: string}
- The Model tag dictionary. Items are mutable.
- modifiedTime string
- The Model last modified time (UTC).
- parentModel stringId 
- The Parent Model Id.
- properties {[key: string]: string}
- The Model property dictionary. Properties are immutable.
- resourceRequirements ContainerResource Requirements Response 
- Resource requirements for the model
- runId string
- The RunId that created this model.
- sampleInput stringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sampleOutput 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[DatasetReference 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.
- mimeType 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.
- createdTime String
- The Model creation time (UTC).
- datasets List<Property Map>
- The list of datasets associated with the model.
- derivedModel List<String>Ids 
- Models derived from this model
- description String
- The Model description text.
- experimentName String
- The name of the experiment where this model was created.
- framework String
- The Model framework.
- frameworkVersion String
- The Model framework version.
- id String
- The Model Id.
- Map<String>
- The Model tag dictionary. Items are mutable.
- modifiedTime String
- The Model last modified time (UTC).
- parentModel StringId 
- The Parent Model Id.
- properties Map<String>
- The Model property dictionary. Properties are immutable.
- resourceRequirements Property Map
- Resource requirements for the model
- runId String
- The RunId that created this model.
- sampleInput StringData 
- Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}
- sampleOutput 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      
- AuthToken string
- Personal access token to install from a private repo
- Repository string
- Repository address in the format username/repo[/subdir][@ref|#pull].
- AuthToken string
- Personal access token to install from a private repo
- Repository string
- Repository address in the format username/repo[/subdir][@ref|#pull].
- authToken String
- Personal access token to install from a private repo
- repository String
- Repository address in the format username/repo[/subdir][@ref|#pull].
- authToken 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].
- authToken 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
ErrorResponse Response 
- The error response.
- error
ErrorResponse Response 
- The error response.
- error
ErrorResponse Response 
- The error response.
- error
ErrorResponse Response 
- The error response.
- error Property Map
- The error response.
SkuResponse, SkuResponseArgs    
SparkMavenPackage, SparkMavenPackageArgs      
SparkMavenPackageResponse, SparkMavenPackageResponseArgs        
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC)
- CreatedBy string
- An identifier for the identity that created the resource
- CreatedBy stringType 
- The type of identity that created the resource
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- An identifier for the identity that last modified the resource
- LastModified stringBy Type 
- The type of identity that last modified the resource
- CreatedAt string
- The timestamp of resource creation (UTC)
- CreatedBy string
- An identifier for the identity that created the resource
- CreatedBy stringType 
- The type of identity that created the resource
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- An identifier for the identity that last modified the resource
- LastModified stringBy Type 
- The type of identity that last modified the resource
- createdAt String
- The timestamp of resource creation (UTC)
- createdBy String
- An identifier for the identity that created the resource
- createdBy StringType 
- The type of identity that created the resource
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- An identifier for the identity that last modified the resource
- lastModified StringBy Type 
- The type of identity that last modified the resource
- createdAt string
- The timestamp of resource creation (UTC)
- createdBy string
- An identifier for the identity that created the resource
- createdBy stringType 
- The type of identity that created the resource
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- An identifier for the identity that last modified the resource
- lastModified 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
- createdAt String
- The timestamp of resource creation (UTC)
- createdBy String
- An identifier for the identity that created the resource
- createdBy StringType 
- The type of identity that created the resource
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- An identifier for the identity that last modified the resource
- lastModified StringBy Type 
- The type of identity that last modified the resource
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs        
- ClientId string
- The clientId(aka appId) of the user assigned identity.
- PrincipalId string
- The principal ID of the user assigned identity.
- TenantId string
- The tenant ID of the user assigned identity.
- ClientId string
- The clientId(aka appId) of the user assigned identity.
- PrincipalId string
- The principal ID of the user assigned identity.
- TenantId string
- The tenant ID of the user assigned identity.
- clientId String
- The clientId(aka appId) of the user assigned identity.
- principalId String
- The principal ID of the user assigned identity.
- tenantId String
- The tenant ID of the user assigned identity.
- clientId string
- The clientId(aka appId) of the user assigned identity.
- principalId string
- The principal ID of the user assigned identity.
- tenantId 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.
- clientId String
- The clientId(aka appId) of the user assigned identity.
- principalId String
- The principal ID of the user assigned identity.
- tenantId String
- The tenant ID of the user assigned identity.
VariantType, VariantTypeArgs    
- Control
- Control
- Treatment
- Treatment
- VariantType Control 
- Control
- VariantType Treatment 
- Treatment
- Control
- Control
- Treatment
- Treatment
- Control
- Control
- Treatment
- Treatment
- CONTROL
- Control
- TREATMENT
- Treatment
- "Control"
- Control
- "Treatment"
- Treatment
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:machinelearningservices:EndpointVariant 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