azure-native.machinelearningservices.ConnectionDeployment
Explore with Pulumi AI
Uses Azure REST API version 2025-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2024-04-01-preview.
Other available API versions: 2024-04-01-preview, 2024-07-01-preview, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native machinelearningservices [ApiVersion]
. See the version guide for details.
Example Usage
Create Azure OpenAI Connection Deployment
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var connectionDeployment = new AzureNative.MachineLearningServices.ConnectionDeployment("connectionDeployment", new()
{
ConnectionName = "testConnection",
DeploymentName = "text-davinci-003",
Properties = new AzureNative.MachineLearningServices.Inputs.OpenAIEndpointDeploymentResourcePropertiesArgs
{
Model = new AzureNative.MachineLearningServices.Inputs.EndpointDeploymentModelArgs
{
Format = "OpenAI",
Name = "text-davinci-003",
Version = "1",
},
Type = "Azure.OpenAI",
VersionUpgradeOption = AzureNative.MachineLearningServices.DeploymentModelVersionUpgradeOption.OnceNewDefaultVersionAvailable,
},
ResourceGroupName = "resourceGroup-1",
WorkspaceName = "testworkspace",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewConnectionDeployment(ctx, "connectionDeployment", &machinelearningservices.ConnectionDeploymentArgs{
ConnectionName: pulumi.String("testConnection"),
DeploymentName: pulumi.String("text-davinci-003"),
Properties: &machinelearningservices.OpenAIEndpointDeploymentResourcePropertiesArgs{
Model: &machinelearningservices.EndpointDeploymentModelArgs{
Format: pulumi.String("OpenAI"),
Name: pulumi.String("text-davinci-003"),
Version: pulumi.String("1"),
},
Type: pulumi.String("Azure.OpenAI"),
VersionUpgradeOption: pulumi.String(machinelearningservices.DeploymentModelVersionUpgradeOptionOnceNewDefaultVersionAvailable),
},
ResourceGroupName: pulumi.String("resourceGroup-1"),
WorkspaceName: pulumi.String("testworkspace"),
})
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.ConnectionDeployment;
import com.pulumi.azurenative.machinelearningservices.ConnectionDeploymentArgs;
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 connectionDeployment = new ConnectionDeployment("connectionDeployment", ConnectionDeploymentArgs.builder()
.connectionName("testConnection")
.deploymentName("text-davinci-003")
.properties(OpenAIEndpointDeploymentResourcePropertiesArgs.builder()
.model(EndpointDeploymentModelArgs.builder()
.format("OpenAI")
.name("text-davinci-003")
.version("1")
.build())
.type("Azure.OpenAI")
.versionUpgradeOption("OnceNewDefaultVersionAvailable")
.build())
.resourceGroupName("resourceGroup-1")
.workspaceName("testworkspace")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const connectionDeployment = new azure_native.machinelearningservices.ConnectionDeployment("connectionDeployment", {
connectionName: "testConnection",
deploymentName: "text-davinci-003",
properties: {
model: {
format: "OpenAI",
name: "text-davinci-003",
version: "1",
},
type: "Azure.OpenAI",
versionUpgradeOption: azure_native.machinelearningservices.DeploymentModelVersionUpgradeOption.OnceNewDefaultVersionAvailable,
},
resourceGroupName: "resourceGroup-1",
workspaceName: "testworkspace",
});
import pulumi
import pulumi_azure_native as azure_native
connection_deployment = azure_native.machinelearningservices.ConnectionDeployment("connectionDeployment",
connection_name="testConnection",
deployment_name="text-davinci-003",
properties={
"model": {
"format": "OpenAI",
"name": "text-davinci-003",
"version": "1",
},
"type": "Azure.OpenAI",
"version_upgrade_option": azure_native.machinelearningservices.DeploymentModelVersionUpgradeOption.ONCE_NEW_DEFAULT_VERSION_AVAILABLE,
},
resource_group_name="resourceGroup-1",
workspace_name="testworkspace")
resources:
connectionDeployment:
type: azure-native:machinelearningservices:ConnectionDeployment
properties:
connectionName: testConnection
deploymentName: text-davinci-003
properties:
model:
format: OpenAI
name: text-davinci-003
version: '1'
type: Azure.OpenAI
versionUpgradeOption: OnceNewDefaultVersionAvailable
resourceGroupName: resourceGroup-1
workspaceName: testworkspace
Create ConnectionDeployment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConnectionDeployment(name: string, args: ConnectionDeploymentArgs, opts?: CustomResourceOptions);
@overload
def ConnectionDeployment(resource_name: str,
args: ConnectionDeploymentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ConnectionDeployment(resource_name: str,
opts: Optional[ResourceOptions] = None,
connection_name: Optional[str] = None,
properties: Optional[Union[ContentSafetyEndpointDeploymentResourcePropertiesArgs, ManagedOnlineEndpointDeploymentResourcePropertiesArgs, OpenAIEndpointDeploymentResourcePropertiesArgs, SpeechEndpointDeploymentResourcePropertiesArgs]] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
deployment_name: Optional[str] = None,
proxy_api_version: Optional[str] = None)
func NewConnectionDeployment(ctx *Context, name string, args ConnectionDeploymentArgs, opts ...ResourceOption) (*ConnectionDeployment, error)
public ConnectionDeployment(string name, ConnectionDeploymentArgs args, CustomResourceOptions? opts = null)
public ConnectionDeployment(String name, ConnectionDeploymentArgs args)
public ConnectionDeployment(String name, ConnectionDeploymentArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:ConnectionDeployment
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 ConnectionDeploymentArgs
- 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 ConnectionDeploymentArgs
- 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 ConnectionDeploymentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectionDeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectionDeploymentArgs
- 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 connectionDeploymentResource = new AzureNative.MachineLearningServices.ConnectionDeployment("connectionDeploymentResource", new()
{
ConnectionName = "string",
Properties = new AzureNative.MachineLearningServices.Inputs.ContentSafetyEndpointDeploymentResourcePropertiesArgs
{
Model = new AzureNative.MachineLearningServices.Inputs.EndpointDeploymentModelArgs
{
Format = "string",
Name = "string",
Source = "string",
Version = "string",
},
Type = "Azure.ContentSafety",
FailureReason = "string",
RaiPolicyName = "string",
Sku = new AzureNative.MachineLearningServices.Inputs.CognitiveServicesSkuArgs
{
Capacity = 0,
Family = "string",
Name = "string",
Size = "string",
Tier = "string",
},
VersionUpgradeOption = "string",
},
ResourceGroupName = "string",
WorkspaceName = "string",
DeploymentName = "string",
ProxyApiVersion = "string",
});
example, err := machinelearningservices.NewConnectionDeployment(ctx, "connectionDeploymentResource", &machinelearningservices.ConnectionDeploymentArgs{
ConnectionName: pulumi.String("string"),
Properties: &machinelearningservices.ContentSafetyEndpointDeploymentResourcePropertiesArgs{
Model: &machinelearningservices.EndpointDeploymentModelArgs{
Format: pulumi.String("string"),
Name: pulumi.String("string"),
Source: pulumi.String("string"),
Version: pulumi.String("string"),
},
Type: pulumi.String("Azure.ContentSafety"),
FailureReason: pulumi.String("string"),
RaiPolicyName: pulumi.String("string"),
Sku: &machinelearningservices.CognitiveServicesSkuArgs{
Capacity: pulumi.Int(0),
Family: pulumi.String("string"),
Name: pulumi.String("string"),
Size: pulumi.String("string"),
Tier: pulumi.String("string"),
},
VersionUpgradeOption: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
WorkspaceName: pulumi.String("string"),
DeploymentName: pulumi.String("string"),
ProxyApiVersion: pulumi.String("string"),
})
var connectionDeploymentResource = new ConnectionDeployment("connectionDeploymentResource", ConnectionDeploymentArgs.builder()
.connectionName("string")
.properties(ContentSafetyEndpointDeploymentResourcePropertiesArgs.builder()
.model(EndpointDeploymentModelArgs.builder()
.format("string")
.name("string")
.source("string")
.version("string")
.build())
.type("Azure.ContentSafety")
.failureReason("string")
.raiPolicyName("string")
.sku(CognitiveServicesSkuArgs.builder()
.capacity(0)
.family("string")
.name("string")
.size("string")
.tier("string")
.build())
.versionUpgradeOption("string")
.build())
.resourceGroupName("string")
.workspaceName("string")
.deploymentName("string")
.proxyApiVersion("string")
.build());
connection_deployment_resource = azure_native.machinelearningservices.ConnectionDeployment("connectionDeploymentResource",
connection_name="string",
properties={
"model": {
"format": "string",
"name": "string",
"source": "string",
"version": "string",
},
"type": "Azure.ContentSafety",
"failure_reason": "string",
"rai_policy_name": "string",
"sku": {
"capacity": 0,
"family": "string",
"name": "string",
"size": "string",
"tier": "string",
},
"version_upgrade_option": "string",
},
resource_group_name="string",
workspace_name="string",
deployment_name="string",
proxy_api_version="string")
const connectionDeploymentResource = new azure_native.machinelearningservices.ConnectionDeployment("connectionDeploymentResource", {
connectionName: "string",
properties: {
model: {
format: "string",
name: "string",
source: "string",
version: "string",
},
type: "Azure.ContentSafety",
failureReason: "string",
raiPolicyName: "string",
sku: {
capacity: 0,
family: "string",
name: "string",
size: "string",
tier: "string",
},
versionUpgradeOption: "string",
},
resourceGroupName: "string",
workspaceName: "string",
deploymentName: "string",
proxyApiVersion: "string",
});
type: azure-native:machinelearningservices:ConnectionDeployment
properties:
connectionName: string
deploymentName: string
properties:
failureReason: string
model:
format: string
name: string
source: string
version: string
raiPolicyName: string
sku:
capacity: 0
family: string
name: string
size: string
tier: string
type: Azure.ContentSafety
versionUpgradeOption: string
proxyApiVersion: string
resourceGroupName: string
workspaceName: string
ConnectionDeployment 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 ConnectionDeployment resource accepts the following input properties:
- Connection
Name string - Friendly name of the workspace connection
- Properties
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Content Safety Endpoint Deployment Resource Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. Managed Online Endpoint Deployment Resource Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. Open AIEndpoint Deployment Resource Properties Azure Native. Machine Learning Services. Inputs. Speech Endpoint Deployment Resource Properties - Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Azure Machine Learning Workspace Name
- Deployment
Name string - Name of the deployment resource
- Proxy
Api stringVersion - Api version used by proxy call
- Connection
Name string - Friendly name of the workspace connection
- Properties
Content
Safety | ManagedEndpoint Deployment Resource Properties Args Online | OpenEndpoint Deployment Resource Properties Args AIEndpoint | SpeechDeployment Resource Properties Args Endpoint Deployment Resource Properties Args - Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Azure Machine Learning Workspace Name
- Deployment
Name string - Name of the deployment resource
- Proxy
Api stringVersion - Api version used by proxy call
- connection
Name String - Friendly name of the workspace connection
- properties
Content
Safety | ManagedEndpoint Deployment Resource Properties Online | OpenEndpoint Deployment Resource Properties AIEndpoint | SpeechDeployment Resource Properties Endpoint Deployment Resource Properties - resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Azure Machine Learning Workspace Name
- deployment
Name String - Name of the deployment resource
- proxy
Api StringVersion - Api version used by proxy call
- connection
Name string - Friendly name of the workspace connection
- properties
Content
Safety | ManagedEndpoint Deployment Resource Properties Online | OpenEndpoint Deployment Resource Properties AIEndpoint | SpeechDeployment Resource Properties Endpoint Deployment Resource Properties - resource
Group stringName - The name of the resource group. The name is case insensitive.
- workspace
Name string - Azure Machine Learning Workspace Name
- deployment
Name string - Name of the deployment resource
- proxy
Api stringVersion - Api version used by proxy call
- connection_
name str - Friendly name of the workspace connection
- properties
Content
Safety | ManagedEndpoint Deployment Resource Properties Args Online | OpenEndpoint Deployment Resource Properties Args AIEndpoint | SpeechDeployment Resource Properties Args Endpoint Deployment Resource Properties Args - resource_
group_ strname - The name of the resource group. The name is case insensitive.
- workspace_
name str - Azure Machine Learning Workspace Name
- deployment_
name str - Name of the deployment resource
- proxy_
api_ strversion - Api version used by proxy call
- connection
Name String - Friendly name of the workspace connection
- properties Property Map | Property Map | Property Map | Property Map
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Azure Machine Learning Workspace Name
- deployment
Name String - Name of the deployment resource
- proxy
Api StringVersion - Api version used by proxy call
Outputs
All input properties are implicitly available as output properties. Additionally, the ConnectionDeployment resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
CognitiveServicesSku, CognitiveServicesSkuArgs
CognitiveServicesSkuResponse, CognitiveServicesSkuResponseArgs
ContentSafetyEndpointDeploymentResourceProperties, ContentSafetyEndpointDeploymentResourcePropertiesArgs
- Model
Pulumi.
Azure Native. Machine Learning Services. Inputs. Endpoint Deployment Model - Model used for the endpoint deployment.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Inputs. Cognitive Services Sku - Version
Upgrade string | Pulumi.Option Azure Native. Machine Learning Services. Deployment Model Version Upgrade Option - Deployment model version upgrade option.
- Model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Cognitive
Services Sku - Version
Upgrade string | DeploymentOption Model Version Upgrade Option - Deployment model version upgrade option.
- model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku
Cognitive
Services Sku - version
Upgrade String | DeploymentOption Model Version Upgrade Option - Deployment model version upgrade option.
- model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- failure
Reason string - The failure reason if the creation failed.
- rai
Policy stringName - The name of RAI policy.
- sku
Cognitive
Services Sku - version
Upgrade string | DeploymentOption Model Version Upgrade Option - Deployment model version upgrade option.
- model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- failure_
reason str - The failure reason if the creation failed.
- rai_
policy_ strname - The name of RAI policy.
- sku
Cognitive
Services Sku - version_
upgrade_ str | Deploymentoption Model Version Upgrade Option - Deployment model version upgrade option.
- model Property Map
- Model used for the endpoint deployment.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku Property Map
- version
Upgrade String | "OnceOption New Default Version Available" | "Once Current Version Expired" | "No Auto Upgrade" - Deployment model version upgrade option.
ContentSafetyEndpointDeploymentResourcePropertiesResponse, ContentSafetyEndpointDeploymentResourcePropertiesResponseArgs
- Model
Pulumi.
Azure Native. Machine Learning Services. Inputs. Endpoint Deployment Model Response - Model used for the endpoint deployment.
- Provisioning
State string - Read-only provision state status property.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Inputs. Cognitive Services Sku Response - Version
Upgrade stringOption - Deployment model version upgrade option.
- Model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- Provisioning
State string - Read-only provision state status property.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Cognitive
Services Sku Response - Version
Upgrade stringOption - Deployment model version upgrade option.
- model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- provisioning
State String - Read-only provision state status property.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku
Cognitive
Services Sku Response - version
Upgrade StringOption - Deployment model version upgrade option.
- model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- provisioning
State string - Read-only provision state status property.
- failure
Reason string - The failure reason if the creation failed.
- rai
Policy stringName - The name of RAI policy.
- sku
Cognitive
Services Sku Response - version
Upgrade stringOption - Deployment model version upgrade option.
- model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- provisioning_
state str - Read-only provision state status property.
- failure_
reason str - The failure reason if the creation failed.
- rai_
policy_ strname - The name of RAI policy.
- sku
Cognitive
Services Sku Response - version_
upgrade_ stroption - Deployment model version upgrade option.
- model Property Map
- Model used for the endpoint deployment.
- provisioning
State String - Read-only provision state status property.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku Property Map
- version
Upgrade StringOption - Deployment model version upgrade option.
DeploymentModelVersionUpgradeOption, DeploymentModelVersionUpgradeOptionArgs
- Once
New Default Version Available - OnceNewDefaultVersionAvailable
- Once
Current Version Expired - OnceCurrentVersionExpired
- No
Auto Upgrade - NoAutoUpgrade
- Deployment
Model Version Upgrade Option Once New Default Version Available - OnceNewDefaultVersionAvailable
- Deployment
Model Version Upgrade Option Once Current Version Expired - OnceCurrentVersionExpired
- Deployment
Model Version Upgrade Option No Auto Upgrade - NoAutoUpgrade
- Once
New Default Version Available - OnceNewDefaultVersionAvailable
- Once
Current Version Expired - OnceCurrentVersionExpired
- No
Auto Upgrade - NoAutoUpgrade
- Once
New Default Version Available - OnceNewDefaultVersionAvailable
- Once
Current Version Expired - OnceCurrentVersionExpired
- No
Auto Upgrade - NoAutoUpgrade
- ONCE_NEW_DEFAULT_VERSION_AVAILABLE
- OnceNewDefaultVersionAvailable
- ONCE_CURRENT_VERSION_EXPIRED
- OnceCurrentVersionExpired
- NO_AUTO_UPGRADE
- NoAutoUpgrade
- "Once
New Default Version Available" - OnceNewDefaultVersionAvailable
- "Once
Current Version Expired" - OnceCurrentVersionExpired
- "No
Auto Upgrade" - NoAutoUpgrade
EndpointComputeType, EndpointComputeTypeArgs
- Managed
- Managed
- Kubernetes
- Kubernetes
- Azure
MLCompute - AzureMLCompute
- Endpoint
Compute Type Managed - Managed
- Endpoint
Compute Type Kubernetes - Kubernetes
- Endpoint
Compute Type Azure MLCompute - AzureMLCompute
- Managed
- Managed
- Kubernetes
- Kubernetes
- Azure
MLCompute - AzureMLCompute
- Managed
- Managed
- Kubernetes
- Kubernetes
- Azure
MLCompute - AzureMLCompute
- MANAGED
- Managed
- KUBERNETES
- Kubernetes
- AZURE_ML_COMPUTE
- AzureMLCompute
- "Managed"
- Managed
- "Kubernetes"
- Kubernetes
- "Azure
MLCompute" - AzureMLCompute
EndpointDeploymentModel, EndpointDeploymentModelArgs
EndpointDeploymentModelResponse, EndpointDeploymentModelResponseArgs
ManagedOnlineEndpointDeploymentResourceProperties, ManagedOnlineEndpointDeploymentResourcePropertiesArgs
- Endpoint
Compute string | Pulumi.Type Azure Native. Machine Learning Services. Endpoint Compute Type - Failure
Reason string - The failure reason if the creation failed.
- Model string
- Endpoint
Compute string | EndpointType Compute Type - Failure
Reason string - The failure reason if the creation failed.
- Model string
- endpoint
Compute String | EndpointType Compute Type - failure
Reason String - The failure reason if the creation failed.
- model String
- endpoint
Compute string | EndpointType Compute Type - failure
Reason string - The failure reason if the creation failed.
- model string
- endpoint_
compute_ str | Endpointtype Compute Type - failure_
reason str - The failure reason if the creation failed.
- model str
- endpoint
Compute String | "Managed" | "Kubernetes" | "AzureType MLCompute" - failure
Reason String - The failure reason if the creation failed.
- model String
ManagedOnlineEndpointDeploymentResourcePropertiesResponse, ManagedOnlineEndpointDeploymentResourcePropertiesResponseArgs
- Provisioning
State string - Read-only provision state status property.
- Endpoint
Compute stringType - Failure
Reason string - The failure reason if the creation failed.
- Model string
- Provisioning
State string - Read-only provision state status property.
- Endpoint
Compute stringType - Failure
Reason string - The failure reason if the creation failed.
- Model string
- provisioning
State String - Read-only provision state status property.
- endpoint
Compute StringType - failure
Reason String - The failure reason if the creation failed.
- model String
- provisioning
State string - Read-only provision state status property.
- endpoint
Compute stringType - failure
Reason string - The failure reason if the creation failed.
- model string
- provisioning_
state str - Read-only provision state status property.
- endpoint_
compute_ strtype - failure_
reason str - The failure reason if the creation failed.
- model str
- provisioning
State String - Read-only provision state status property.
- endpoint
Compute StringType - failure
Reason String - The failure reason if the creation failed.
- model String
OpenAIEndpointDeploymentResourceProperties, OpenAIEndpointDeploymentResourcePropertiesArgs
- Model
Pulumi.
Azure Native. Machine Learning Services. Inputs. Endpoint Deployment Model - Model used for the endpoint deployment.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Inputs. Cognitive Services Sku - Version
Upgrade string | Pulumi.Option Azure Native. Machine Learning Services. Deployment Model Version Upgrade Option - Deployment model version upgrade option.
- Model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Cognitive
Services Sku - Version
Upgrade string | DeploymentOption Model Version Upgrade Option - Deployment model version upgrade option.
- model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku
Cognitive
Services Sku - version
Upgrade String | DeploymentOption Model Version Upgrade Option - Deployment model version upgrade option.
- model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- failure
Reason string - The failure reason if the creation failed.
- rai
Policy stringName - The name of RAI policy.
- sku
Cognitive
Services Sku - version
Upgrade string | DeploymentOption Model Version Upgrade Option - Deployment model version upgrade option.
- model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- failure_
reason str - The failure reason if the creation failed.
- rai_
policy_ strname - The name of RAI policy.
- sku
Cognitive
Services Sku - version_
upgrade_ str | Deploymentoption Model Version Upgrade Option - Deployment model version upgrade option.
- model Property Map
- Model used for the endpoint deployment.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku Property Map
- version
Upgrade String | "OnceOption New Default Version Available" | "Once Current Version Expired" | "No Auto Upgrade" - Deployment model version upgrade option.
OpenAIEndpointDeploymentResourcePropertiesResponse, OpenAIEndpointDeploymentResourcePropertiesResponseArgs
- Model
Pulumi.
Azure Native. Machine Learning Services. Inputs. Endpoint Deployment Model Response - Model used for the endpoint deployment.
- Provisioning
State string - Read-only provision state status property.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Inputs. Cognitive Services Sku Response - Version
Upgrade stringOption - Deployment model version upgrade option.
- Model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- Provisioning
State string - Read-only provision state status property.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Cognitive
Services Sku Response - Version
Upgrade stringOption - Deployment model version upgrade option.
- model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- provisioning
State String - Read-only provision state status property.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku
Cognitive
Services Sku Response - version
Upgrade StringOption - Deployment model version upgrade option.
- model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- provisioning
State string - Read-only provision state status property.
- failure
Reason string - The failure reason if the creation failed.
- rai
Policy stringName - The name of RAI policy.
- sku
Cognitive
Services Sku Response - version
Upgrade stringOption - Deployment model version upgrade option.
- model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- provisioning_
state str - Read-only provision state status property.
- failure_
reason str - The failure reason if the creation failed.
- rai_
policy_ strname - The name of RAI policy.
- sku
Cognitive
Services Sku Response - version_
upgrade_ stroption - Deployment model version upgrade option.
- model Property Map
- Model used for the endpoint deployment.
- provisioning
State String - Read-only provision state status property.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku Property Map
- version
Upgrade StringOption - Deployment model version upgrade option.
SpeechEndpointDeploymentResourceProperties, SpeechEndpointDeploymentResourcePropertiesArgs
- Model
Pulumi.
Azure Native. Machine Learning Services. Inputs. Endpoint Deployment Model - Model used for the endpoint deployment.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Inputs. Cognitive Services Sku - Version
Upgrade string | Pulumi.Option Azure Native. Machine Learning Services. Deployment Model Version Upgrade Option - Deployment model version upgrade option.
- Model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Cognitive
Services Sku - Version
Upgrade string | DeploymentOption Model Version Upgrade Option - Deployment model version upgrade option.
- model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku
Cognitive
Services Sku - version
Upgrade String | DeploymentOption Model Version Upgrade Option - Deployment model version upgrade option.
- model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- failure
Reason string - The failure reason if the creation failed.
- rai
Policy stringName - The name of RAI policy.
- sku
Cognitive
Services Sku - version
Upgrade string | DeploymentOption Model Version Upgrade Option - Deployment model version upgrade option.
- model
Endpoint
Deployment Model - Model used for the endpoint deployment.
- failure_
reason str - The failure reason if the creation failed.
- rai_
policy_ strname - The name of RAI policy.
- sku
Cognitive
Services Sku - version_
upgrade_ str | Deploymentoption Model Version Upgrade Option - Deployment model version upgrade option.
- model Property Map
- Model used for the endpoint deployment.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku Property Map
- version
Upgrade String | "OnceOption New Default Version Available" | "Once Current Version Expired" | "No Auto Upgrade" - Deployment model version upgrade option.
SpeechEndpointDeploymentResourcePropertiesResponse, SpeechEndpointDeploymentResourcePropertiesResponseArgs
- Model
Pulumi.
Azure Native. Machine Learning Services. Inputs. Endpoint Deployment Model Response - Model used for the endpoint deployment.
- Provisioning
State string - Read-only provision state status property.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Inputs. Cognitive Services Sku Response - Version
Upgrade stringOption - Deployment model version upgrade option.
- Model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- Provisioning
State string - Read-only provision state status property.
- Failure
Reason string - The failure reason if the creation failed.
- Rai
Policy stringName - The name of RAI policy.
- Sku
Cognitive
Services Sku Response - Version
Upgrade stringOption - Deployment model version upgrade option.
- model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- provisioning
State String - Read-only provision state status property.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku
Cognitive
Services Sku Response - version
Upgrade StringOption - Deployment model version upgrade option.
- model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- provisioning
State string - Read-only provision state status property.
- failure
Reason string - The failure reason if the creation failed.
- rai
Policy stringName - The name of RAI policy.
- sku
Cognitive
Services Sku Response - version
Upgrade stringOption - Deployment model version upgrade option.
- model
Endpoint
Deployment Model Response - Model used for the endpoint deployment.
- provisioning_
state str - Read-only provision state status property.
- failure_
reason str - The failure reason if the creation failed.
- rai_
policy_ strname - The name of RAI policy.
- sku
Cognitive
Services Sku Response - version_
upgrade_ stroption - Deployment model version upgrade option.
- model Property Map
- Model used for the endpoint deployment.
- provisioning
State String - Read-only provision state status property.
- failure
Reason String - The failure reason if the creation failed.
- rai
Policy StringName - The name of RAI policy.
- sku Property Map
- version
Upgrade StringOption - Deployment model version upgrade option.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:machinelearningservices:ConnectionDeployment text-davinci-003 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/connections/{connectionName}/deployments/{deploymentName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0