azure-native.machinelearningservices.WorkspaceConnection
Explore with Pulumi AI
Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2021-01-01.
Other available API versions: 2021-04-01, 2022-02-01-preview, 2023-04-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-10-01, 2024-01-01-preview, 2024-04-01, 2024-04-01-preview, 2024-07-01-preview, 2024-10-01, 2024-10-01-preview.
Example Usage
CreateWorkspaceConnection
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var workspaceConnection = new AzureNative.MachineLearningServices.WorkspaceConnection("workspaceConnection", new()
    {
        ConnectionName = "connection-1",
        Properties = new AzureNative.MachineLearningServices.Inputs.NoneAuthTypeWorkspaceConnectionPropertiesArgs
        {
            AuthType = "None",
            Category = AzureNative.MachineLearningServices.ConnectionCategory.ContainerRegistry,
            Target = "www.facebook.com",
        },
        ResourceGroupName = "resourceGroup-1",
        WorkspaceName = "workspace-1",
    });
});
package main
import (
	machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := machinelearningservices.NewWorkspaceConnection(ctx, "workspaceConnection", &machinelearningservices.WorkspaceConnectionArgs{
			ConnectionName: pulumi.String("connection-1"),
			Properties: &machinelearningservices.NoneAuthTypeWorkspaceConnectionPropertiesArgs{
				AuthType: pulumi.String("None"),
				Category: pulumi.String(machinelearningservices.ConnectionCategoryContainerRegistry),
				Target:   pulumi.String("www.facebook.com"),
			},
			ResourceGroupName: pulumi.String("resourceGroup-1"),
			WorkspaceName:     pulumi.String("workspace-1"),
		})
		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.WorkspaceConnection;
import com.pulumi.azurenative.machinelearningservices.WorkspaceConnectionArgs;
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 workspaceConnection = new WorkspaceConnection("workspaceConnection", WorkspaceConnectionArgs.builder()
            .connectionName("connection-1")
            .properties(NoneAuthTypeWorkspaceConnectionPropertiesArgs.builder()
                .authType("None")
                .category("ContainerRegistry")
                .target("www.facebook.com")
                .build())
            .resourceGroupName("resourceGroup-1")
            .workspaceName("workspace-1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workspaceConnection = new azure_native.machinelearningservices.WorkspaceConnection("workspaceConnection", {
    connectionName: "connection-1",
    properties: {
        authType: "None",
        category: azure_native.machinelearningservices.ConnectionCategory.ContainerRegistry,
        target: "www.facebook.com",
    },
    resourceGroupName: "resourceGroup-1",
    workspaceName: "workspace-1",
});
import pulumi
import pulumi_azure_native as azure_native
workspace_connection = azure_native.machinelearningservices.WorkspaceConnection("workspaceConnection",
    connection_name="connection-1",
    properties={
        "auth_type": "None",
        "category": azure_native.machinelearningservices.ConnectionCategory.CONTAINER_REGISTRY,
        "target": "www.facebook.com",
    },
    resource_group_name="resourceGroup-1",
    workspace_name="workspace-1")
resources:
  workspaceConnection:
    type: azure-native:machinelearningservices:WorkspaceConnection
    properties:
      connectionName: connection-1
      properties:
        authType: None
        category: ContainerRegistry
        target: www.facebook.com
      resourceGroupName: resourceGroup-1
      workspaceName: workspace-1
Create WorkspaceConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspaceConnection(name: string, args: WorkspaceConnectionArgs, opts?: CustomResourceOptions);@overload
def WorkspaceConnection(resource_name: str,
                        args: WorkspaceConnectionArgs,
                        opts: Optional[ResourceOptions] = None)
@overload
def WorkspaceConnection(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        properties: Optional[Union[ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs, NoneAuthTypeWorkspaceConnectionPropertiesArgs, PATAuthTypeWorkspaceConnectionPropertiesArgs, SASAuthTypeWorkspaceConnectionPropertiesArgs, UsernamePasswordAuthTypeWorkspaceConnectionPropertiesArgs]] = None,
                        resource_group_name: Optional[str] = None,
                        workspace_name: Optional[str] = None,
                        connection_name: Optional[str] = None)func NewWorkspaceConnection(ctx *Context, name string, args WorkspaceConnectionArgs, opts ...ResourceOption) (*WorkspaceConnection, error)public WorkspaceConnection(string name, WorkspaceConnectionArgs args, CustomResourceOptions? opts = null)
public WorkspaceConnection(String name, WorkspaceConnectionArgs args)
public WorkspaceConnection(String name, WorkspaceConnectionArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:WorkspaceConnection
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 WorkspaceConnectionArgs
- 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 WorkspaceConnectionArgs
- 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 WorkspaceConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceConnectionArgs
- 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 workspaceConnectionResource = new AzureNative.MachineLearningServices.WorkspaceConnection("workspaceConnectionResource", new()
{
    Properties = new AzureNative.MachineLearningServices.Inputs.ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs
    {
        AuthType = "ManagedIdentity",
        Category = "string",
        Credentials = new AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionManagedIdentityArgs
        {
            ClientId = "string",
            ResourceId = "string",
        },
        Target = "string",
        Value = "string",
        ValueFormat = "string",
    },
    ResourceGroupName = "string",
    WorkspaceName = "string",
    ConnectionName = "string",
});
example, err := machinelearningservices.NewWorkspaceConnection(ctx, "workspaceConnectionResource", &machinelearningservices.WorkspaceConnectionArgs{
	Properties: &machinelearningservices.ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs{
		AuthType: pulumi.String("ManagedIdentity"),
		Category: pulumi.String("string"),
		Credentials: &machinelearningservices.WorkspaceConnectionManagedIdentityArgs{
			ClientId:   pulumi.String("string"),
			ResourceId: pulumi.String("string"),
		},
		Target:      pulumi.String("string"),
		Value:       pulumi.String("string"),
		ValueFormat: pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	WorkspaceName:     pulumi.String("string"),
	ConnectionName:    pulumi.String("string"),
})
var workspaceConnectionResource = new WorkspaceConnection("workspaceConnectionResource", WorkspaceConnectionArgs.builder()
    .properties(ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs.builder()
        .authType("ManagedIdentity")
        .category("string")
        .credentials(WorkspaceConnectionManagedIdentityArgs.builder()
            .clientId("string")
            .resourceId("string")
            .build())
        .target("string")
        .value("string")
        .valueFormat("string")
        .build())
    .resourceGroupName("string")
    .workspaceName("string")
    .connectionName("string")
    .build());
workspace_connection_resource = azure_native.machinelearningservices.WorkspaceConnection("workspaceConnectionResource",
    properties={
        "auth_type": "ManagedIdentity",
        "category": "string",
        "credentials": {
            "client_id": "string",
            "resource_id": "string",
        },
        "target": "string",
        "value": "string",
        "value_format": "string",
    },
    resource_group_name="string",
    workspace_name="string",
    connection_name="string")
const workspaceConnectionResource = new azure_native.machinelearningservices.WorkspaceConnection("workspaceConnectionResource", {
    properties: {
        authType: "ManagedIdentity",
        category: "string",
        credentials: {
            clientId: "string",
            resourceId: "string",
        },
        target: "string",
        value: "string",
        valueFormat: "string",
    },
    resourceGroupName: "string",
    workspaceName: "string",
    connectionName: "string",
});
type: azure-native:machinelearningservices:WorkspaceConnection
properties:
    connectionName: string
    properties:
        authType: ManagedIdentity
        category: string
        credentials:
            clientId: string
            resourceId: string
        target: string
        value: string
        valueFormat: string
    resourceGroupName: string
    workspaceName: string
WorkspaceConnection 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 WorkspaceConnection resource accepts the following input properties:
- Properties
Pulumi.Azure | Pulumi.Native. Machine Learning Services. Inputs. Managed Identity Auth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. None Auth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. PATAuth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. SASAuth Type Workspace Connection Properties Azure Native. Machine Learning Services. Inputs. Username Password Auth Type Workspace Connection Properties 
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- Name of Azure Machine Learning workspace.
- ConnectionName string
- Friendly name of the workspace connection
- Properties
ManagedIdentity | NoneAuth Type Workspace Connection Properties Args Auth | PATAuthType Workspace Connection Properties Args Type | SASAuthWorkspace Connection Properties Args Type | UsernameWorkspace Connection Properties Args Password Auth Type Workspace Connection Properties Args 
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- Name of Azure Machine Learning workspace.
- ConnectionName string
- Friendly name of the workspace connection
- properties
ManagedIdentity | NoneAuth Type Workspace Connection Properties Auth | PATAuthType Workspace Connection Properties Type | SASAuthWorkspace Connection Properties Type | UsernameWorkspace Connection Properties Password Auth Type Workspace Connection Properties 
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- Name of Azure Machine Learning workspace.
- connectionName String
- Friendly name of the workspace connection
- properties
ManagedIdentity | NoneAuth Type Workspace Connection Properties Auth | PATAuthType Workspace Connection Properties Type | SASAuthWorkspace Connection Properties Type | UsernameWorkspace Connection Properties Password Auth Type Workspace Connection Properties 
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- workspaceName string
- Name of Azure Machine Learning workspace.
- connectionName string
- Friendly name of the workspace connection
- properties
ManagedIdentity | NoneAuth Type Workspace Connection Properties Args Auth | PATAuthType Workspace Connection Properties Args Type | SASAuthWorkspace Connection Properties Args Type | UsernameWorkspace Connection Properties Args Password Auth Type Workspace Connection Properties Args 
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- workspace_name str
- Name of Azure Machine Learning workspace.
- connection_name str
- Friendly name of the workspace connection
- properties Property Map | Property Map | Property Map | Property Map | Property Map
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- Name of Azure Machine Learning workspace.
- connectionName String
- Friendly name of the workspace connection
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkspaceConnection resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData 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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData 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"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData 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"
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData 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
ConnectionCategory, ConnectionCategoryArgs    
- PythonFeed 
- PythonFeed
- ContainerRegistry 
- ContainerRegistry
- Git
- Git
- ConnectionCategory Python Feed 
- PythonFeed
- ConnectionCategory Container Registry 
- ContainerRegistry
- ConnectionCategory Git 
- Git
- PythonFeed 
- PythonFeed
- ContainerRegistry 
- ContainerRegistry
- Git
- Git
- PythonFeed 
- PythonFeed
- ContainerRegistry 
- ContainerRegistry
- Git
- Git
- PYTHON_FEED
- PythonFeed
- CONTAINER_REGISTRY
- ContainerRegistry
- GIT
- Git
- "PythonFeed" 
- PythonFeed
- "ContainerRegistry" 
- ContainerRegistry
- "Git"
- Git
ManagedIdentityAuthTypeWorkspaceConnectionProperties, ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs              
- Category
string | Pulumi.Azure Native. Machine Learning Services. Connection Category 
- Category of the connection
- Credentials
Pulumi.Azure Native. Machine Learning Services. Inputs. Workspace Connection Managed Identity 
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | Pulumi.Azure Native. Machine Learning Services. Value Format 
- format for the workspace connection value
- Category
string | ConnectionCategory 
- Category of the connection
- Credentials
WorkspaceConnection Managed Identity 
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | ValueFormat 
- format for the workspace connection value
- category
String | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Managed Identity 
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | ValueFormat 
- format for the workspace connection value
- category
string | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Managed Identity 
- target string
- value string
- Value details of the workspace connection.
- valueFormat string | ValueFormat 
- format for the workspace connection value
- category
str | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Managed Identity 
- target str
- value str
- Value details of the workspace connection.
- value_format str | ValueFormat 
- format for the workspace connection value
- category
String | "PythonFeed" | "Container Registry" | "Git" 
- Category of the connection
- credentials Property Map
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | "JSON"
- format for the workspace connection value
ManagedIdentityAuthTypeWorkspaceConnectionPropertiesResponse, ManagedIdentityAuthTypeWorkspaceConnectionPropertiesResponseArgs                
- Category string
- Category of the connection
- Credentials
Pulumi.Azure Native. Machine Learning Services. Inputs. Workspace Connection Managed Identity Response 
- ExpiryTime string
- Metadata object
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- Category string
- Category of the connection
- Credentials
WorkspaceConnection Managed Identity Response 
- ExpiryTime string
- Metadata interface{}
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- category String
- Category of the connection
- credentials
WorkspaceConnection Managed Identity Response 
- expiryTime String
- metadata Object
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
- category string
- Category of the connection
- credentials
WorkspaceConnection Managed Identity Response 
- expiryTime string
- metadata any
- target string
- value string
- Value details of the workspace connection.
- valueFormat string
- format for the workspace connection value
- category str
- Category of the connection
- credentials
WorkspaceConnection Managed Identity Response 
- expiry_time str
- metadata Any
- target str
- value str
- Value details of the workspace connection.
- value_format str
- format for the workspace connection value
- category String
- Category of the connection
- credentials Property Map
- expiryTime String
- metadata Any
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
NoneAuthTypeWorkspaceConnectionProperties, NoneAuthTypeWorkspaceConnectionPropertiesArgs            
- Category
string | Pulumi.Azure Native. Machine Learning Services. Connection Category 
- Category of the connection
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | Pulumi.Azure Native. Machine Learning Services. Value Format 
- format for the workspace connection value
- Category
string | ConnectionCategory 
- Category of the connection
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | ValueFormat 
- format for the workspace connection value
- category
String | ConnectionCategory 
- Category of the connection
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | ValueFormat 
- format for the workspace connection value
- category
string | ConnectionCategory 
- Category of the connection
- target string
- value string
- Value details of the workspace connection.
- valueFormat string | ValueFormat 
- format for the workspace connection value
- category
str | ConnectionCategory 
- Category of the connection
- target str
- value str
- Value details of the workspace connection.
- value_format str | ValueFormat 
- format for the workspace connection value
- category
String | "PythonFeed" | "Container Registry" | "Git" 
- Category of the connection
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | "JSON"
- format for the workspace connection value
NoneAuthTypeWorkspaceConnectionPropertiesResponse, NoneAuthTypeWorkspaceConnectionPropertiesResponseArgs              
- Category string
- Category of the connection
- ExpiryTime string
- Metadata object
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- Category string
- Category of the connection
- ExpiryTime string
- Metadata interface{}
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- category String
- Category of the connection
- expiryTime String
- metadata Object
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
- category string
- Category of the connection
- expiryTime string
- metadata any
- target string
- value string
- Value details of the workspace connection.
- valueFormat string
- format for the workspace connection value
- category str
- Category of the connection
- expiry_time str
- metadata Any
- target str
- value str
- Value details of the workspace connection.
- value_format str
- format for the workspace connection value
- category String
- Category of the connection
- expiryTime String
- metadata Any
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
PATAuthTypeWorkspaceConnectionProperties, PATAuthTypeWorkspaceConnectionPropertiesArgs          
- Category
string | Pulumi.Azure Native. Machine Learning Services. Connection Category 
- Category of the connection
- Credentials
Pulumi.Azure Native. Machine Learning Services. Inputs. Workspace Connection Personal Access Token 
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | Pulumi.Azure Native. Machine Learning Services. Value Format 
- format for the workspace connection value
- Category
string | ConnectionCategory 
- Category of the connection
- Credentials
WorkspaceConnection Personal Access Token 
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | ValueFormat 
- format for the workspace connection value
- category
String | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Personal Access Token 
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | ValueFormat 
- format for the workspace connection value
- category
string | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Personal Access Token 
- target string
- value string
- Value details of the workspace connection.
- valueFormat string | ValueFormat 
- format for the workspace connection value
- category
str | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Personal Access Token 
- target str
- value str
- Value details of the workspace connection.
- value_format str | ValueFormat 
- format for the workspace connection value
- category
String | "PythonFeed" | "Container Registry" | "Git" 
- Category of the connection
- credentials Property Map
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | "JSON"
- format for the workspace connection value
PATAuthTypeWorkspaceConnectionPropertiesResponse, PATAuthTypeWorkspaceConnectionPropertiesResponseArgs            
- Category string
- Category of the connection
- Credentials
Pulumi.Azure Native. Machine Learning Services. Inputs. Workspace Connection Personal Access Token Response 
- ExpiryTime string
- Metadata object
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- Category string
- Category of the connection
- Credentials
WorkspaceConnection Personal Access Token Response 
- ExpiryTime string
- Metadata interface{}
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- category String
- Category of the connection
- credentials
WorkspaceConnection Personal Access Token Response 
- expiryTime String
- metadata Object
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
- category string
- Category of the connection
- credentials
WorkspaceConnection Personal Access Token Response 
- expiryTime string
- metadata any
- target string
- value string
- Value details of the workspace connection.
- valueFormat string
- format for the workspace connection value
- category str
- Category of the connection
- credentials
WorkspaceConnection Personal Access Token Response 
- expiry_time str
- metadata Any
- target str
- value str
- Value details of the workspace connection.
- value_format str
- format for the workspace connection value
- category String
- Category of the connection
- credentials Property Map
- expiryTime String
- metadata Any
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
SASAuthTypeWorkspaceConnectionProperties, SASAuthTypeWorkspaceConnectionPropertiesArgs          
- Category
string | Pulumi.Azure Native. Machine Learning Services. Connection Category 
- Category of the connection
- Credentials
Pulumi.Azure Native. Machine Learning Services. Inputs. Workspace Connection Shared Access Signature 
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | Pulumi.Azure Native. Machine Learning Services. Value Format 
- format for the workspace connection value
- Category
string | ConnectionCategory 
- Category of the connection
- Credentials
WorkspaceConnection Shared Access Signature 
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | ValueFormat 
- format for the workspace connection value
- category
String | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Shared Access Signature 
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | ValueFormat 
- format for the workspace connection value
- category
string | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Shared Access Signature 
- target string
- value string
- Value details of the workspace connection.
- valueFormat string | ValueFormat 
- format for the workspace connection value
- category
str | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Shared Access Signature 
- target str
- value str
- Value details of the workspace connection.
- value_format str | ValueFormat 
- format for the workspace connection value
- category
String | "PythonFeed" | "Container Registry" | "Git" 
- Category of the connection
- credentials Property Map
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | "JSON"
- format for the workspace connection value
SASAuthTypeWorkspaceConnectionPropertiesResponse, SASAuthTypeWorkspaceConnectionPropertiesResponseArgs            
- Category string
- Category of the connection
- Credentials
Pulumi.Azure Native. Machine Learning Services. Inputs. Workspace Connection Shared Access Signature Response 
- ExpiryTime string
- Metadata object
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- Category string
- Category of the connection
- Credentials
WorkspaceConnection Shared Access Signature Response 
- ExpiryTime string
- Metadata interface{}
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- category String
- Category of the connection
- credentials
WorkspaceConnection Shared Access Signature Response 
- expiryTime String
- metadata Object
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
- category string
- Category of the connection
- credentials
WorkspaceConnection Shared Access Signature Response 
- expiryTime string
- metadata any
- target string
- value string
- Value details of the workspace connection.
- valueFormat string
- format for the workspace connection value
- category str
- Category of the connection
- credentials
WorkspaceConnection Shared Access Signature Response 
- expiry_time str
- metadata Any
- target str
- value str
- Value details of the workspace connection.
- value_format str
- format for the workspace connection value
- category String
- Category of the connection
- credentials Property Map
- expiryTime String
- metadata Any
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- 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 
- 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
- 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 
- 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
- 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 
- 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
- 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 
- 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
- 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- 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 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UsernamePasswordAuthTypeWorkspaceConnectionProperties, UsernamePasswordAuthTypeWorkspaceConnectionPropertiesArgs              
- Category
string | Pulumi.Azure Native. Machine Learning Services. Connection Category 
- Category of the connection
- Credentials
Pulumi.Azure Native. Machine Learning Services. Inputs. Workspace Connection Username Password 
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | Pulumi.Azure Native. Machine Learning Services. Value Format 
- format for the workspace connection value
- Category
string | ConnectionCategory 
- Category of the connection
- Credentials
WorkspaceConnection Username Password 
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string | ValueFormat 
- format for the workspace connection value
- category
String | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Username Password 
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | ValueFormat 
- format for the workspace connection value
- category
string | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Username Password 
- target string
- value string
- Value details of the workspace connection.
- valueFormat string | ValueFormat 
- format for the workspace connection value
- category
str | ConnectionCategory 
- Category of the connection
- credentials
WorkspaceConnection Username Password 
- target str
- value str
- Value details of the workspace connection.
- value_format str | ValueFormat 
- format for the workspace connection value
- category
String | "PythonFeed" | "Container Registry" | "Git" 
- Category of the connection
- credentials Property Map
- target String
- value String
- Value details of the workspace connection.
- valueFormat String | "JSON"
- format for the workspace connection value
UsernamePasswordAuthTypeWorkspaceConnectionPropertiesResponse, UsernamePasswordAuthTypeWorkspaceConnectionPropertiesResponseArgs                
- Category string
- Category of the connection
- Credentials
Pulumi.Azure Native. Machine Learning Services. Inputs. Workspace Connection Username Password Response 
- ExpiryTime string
- Metadata object
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- Category string
- Category of the connection
- Credentials
WorkspaceConnection Username Password Response 
- ExpiryTime string
- Metadata interface{}
- Target string
- Value string
- Value details of the workspace connection.
- ValueFormat string
- format for the workspace connection value
- category String
- Category of the connection
- credentials
WorkspaceConnection Username Password Response 
- expiryTime String
- metadata Object
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
- category string
- Category of the connection
- credentials
WorkspaceConnection Username Password Response 
- expiryTime string
- metadata any
- target string
- value string
- Value details of the workspace connection.
- valueFormat string
- format for the workspace connection value
- category str
- Category of the connection
- credentials
WorkspaceConnection Username Password Response 
- expiry_time str
- metadata Any
- target str
- value str
- Value details of the workspace connection.
- value_format str
- format for the workspace connection value
- category String
- Category of the connection
- credentials Property Map
- expiryTime String
- metadata Any
- target String
- value String
- Value details of the workspace connection.
- valueFormat String
- format for the workspace connection value
ValueFormat, ValueFormatArgs    
- JSON
- JSON
- ValueFormat JSON 
- JSON
- JSON
- JSON
- JSON
- JSON
- JSON
- JSON
- "JSON"
- JSON
WorkspaceConnectionManagedIdentity, WorkspaceConnectionManagedIdentityArgs        
- ClientId string
- ResourceId string
- ClientId string
- ResourceId string
- clientId String
- resourceId String
- clientId string
- resourceId string
- client_id str
- resource_id str
- clientId String
- resourceId String
WorkspaceConnectionManagedIdentityResponse, WorkspaceConnectionManagedIdentityResponseArgs          
- ClientId string
- ResourceId string
- ClientId string
- ResourceId string
- clientId String
- resourceId String
- clientId string
- resourceId string
- client_id str
- resource_id str
- clientId String
- resourceId String
WorkspaceConnectionPersonalAccessToken, WorkspaceConnectionPersonalAccessTokenArgs          
- Pat string
- Pat string
- pat String
- pat string
- pat str
- pat String
WorkspaceConnectionPersonalAccessTokenResponse, WorkspaceConnectionPersonalAccessTokenResponseArgs            
- Pat string
- Pat string
- pat String
- pat string
- pat str
- pat String
WorkspaceConnectionSharedAccessSignature, WorkspaceConnectionSharedAccessSignatureArgs          
- Sas string
- Sas string
- sas String
- sas string
- sas str
- sas String
WorkspaceConnectionSharedAccessSignatureResponse, WorkspaceConnectionSharedAccessSignatureResponseArgs            
- Sas string
- Sas string
- sas String
- sas string
- sas str
- sas String
WorkspaceConnectionUsernamePassword, WorkspaceConnectionUsernamePasswordArgs        
WorkspaceConnectionUsernamePasswordResponse, WorkspaceConnectionUsernamePasswordResponseArgs          
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:machinelearningservices:WorkspaceConnection connection-1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/connections/{connectionName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0