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.
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 pulumi
import pulumi_azure_native as azure_native
workspace_connection = azure_native.machinelearningservices.WorkspaceConnection("workspaceConnection",
    connection_name="connection-1",
    properties=azure_native.machinelearningservices.NoneAuthTypeWorkspaceConnectionPropertiesArgs(
        auth_type="None",
        category=azure_native.machinelearningservices.ConnectionCategory.CONTAINER_REGISTRY,
        target="www.facebook.com",
    ),
    resource_group_name="resourceGroup-1",
    workspace_name="workspace-1")
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",
});
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=azure_native.machinelearningservices.ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs(
        auth_type="ManagedIdentity",
        category="string",
        credentials=azure_native.machinelearningservices.WorkspaceConnectionManagedIdentityArgs(
            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
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  - Resource
Group stringName  - The name of the resource group. The name is case insensitive.
 - Workspace
Name string - Name of Azure Machine Learning workspace.
 - Connection
Name string - Friendly name of the workspace connection
 
- Properties
Managed
Identity | 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 stringName  - The name of the resource group. The name is case insensitive.
 - Workspace
Name string - Name of Azure Machine Learning workspace.
 - Connection
Name string - Friendly name of the workspace connection
 
- properties
Managed
Identity | NoneAuth Type Workspace Connection Properties Auth | PATAuthType Workspace Connection Properties Type | SASAuthWorkspace Connection Properties Type | UsernameWorkspace Connection Properties Password Auth Type Workspace Connection Properties  - resource
Group StringName  - The name of the resource group. The name is case insensitive.
 - workspace
Name String - Name of Azure Machine Learning workspace.
 - connection
Name String - Friendly name of the workspace connection
 
- properties
Managed
Identity | NoneAuth Type Workspace Connection Properties Auth | PATAuthType Workspace Connection Properties Type | SASAuthWorkspace Connection Properties Type | UsernameWorkspace Connection Properties Password Auth Type Workspace Connection Properties  - resource
Group stringName  - The name of the resource group. The name is case insensitive.
 - workspace
Name string - Name of Azure Machine Learning workspace.
 - connection
Name string - Friendly name of the workspace connection
 
- properties
Managed
Identity | 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
 - resource
Group StringName  - The name of the resource group. The name is case insensitive.
 - workspace
Name String - Name of Azure Machine Learning workspace.
 - connection
Name 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
 - 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"
 
- 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"
 
- 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"
 
- 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"
 
- 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
 - 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
ConnectionCategory, ConnectionCategoryArgs    
- Python
Feed  - PythonFeed
 - Container
Registry  - ContainerRegistry
 - Git
 - Git
 
- Connection
Category Python Feed  - PythonFeed
 - Connection
Category Container Registry  - ContainerRegistry
 - Connection
Category Git  - Git
 
- Python
Feed  - PythonFeed
 - Container
Registry  - ContainerRegistry
 - Git
 - Git
 
- Python
Feed  - PythonFeed
 - Container
Registry  - ContainerRegistry
 - Git
 - Git
 
- PYTHON_FEED
 - PythonFeed
 - CONTAINER_REGISTRY
 - ContainerRegistry
 - GIT
 - Git
 
- "Python
Feed"  - PythonFeed
 - "Container
Registry"  - 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.
 - Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format  - format for the workspace connection value
 
- Category
string | Connection
Category  - Category of the connection
 - Credentials
Workspace
Connection Managed Identity  - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string | ValueFormat  - format for the workspace connection value
 
- category
String | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Managed Identity  - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String | ValueFormat  - format for the workspace connection value
 
- category
string | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Managed Identity  - target string
 - value string
 - Value details of the workspace connection.
 - value
Format string | ValueFormat  - format for the workspace connection value
 
- category
str | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Managed Identity  - target str
 - value str
 - Value details of the workspace connection.
 - value_
format str | ValueFormat  - format for the workspace connection value
 
- category
String | "Python
Feed" | "Container Registry" | "Git"  - Category of the connection
 - credentials Property Map
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format 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  - Expiry
Time string - Metadata object
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- Category string
 - Category of the connection
 - Credentials
Workspace
Connection Managed Identity Response  - Expiry
Time string - Metadata interface{}
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- category String
 - Category of the connection
 - credentials
Workspace
Connection Managed Identity Response  - expiry
Time String - metadata Object
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String - format for the workspace connection value
 
- category string
 - Category of the connection
 - credentials
Workspace
Connection Managed Identity Response  - expiry
Time string - metadata any
 - target string
 - value string
 - Value details of the workspace connection.
 - value
Format string - format for the workspace connection value
 
- category str
 - Category of the connection
 - credentials
Workspace
Connection 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
 - expiry
Time String - metadata Any
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format 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.
 - Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format  - format for the workspace connection value
 
- Category
string | Connection
Category  - Category of the connection
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string | ValueFormat  - format for the workspace connection value
 
- category
String | Connection
Category  - Category of the connection
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String | ValueFormat  - format for the workspace connection value
 
- category
string | Connection
Category  - Category of the connection
 - target string
 - value string
 - Value details of the workspace connection.
 - value
Format string | ValueFormat  - format for the workspace connection value
 
- category
str | Connection
Category  - 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 | "Python
Feed" | "Container Registry" | "Git"  - Category of the connection
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String | "JSON" - format for the workspace connection value
 
NoneAuthTypeWorkspaceConnectionPropertiesResponse, NoneAuthTypeWorkspaceConnectionPropertiesResponseArgs              
- Category string
 - Category of the connection
 - Expiry
Time string - Metadata object
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- Category string
 - Category of the connection
 - Expiry
Time string - Metadata interface{}
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- category String
 - Category of the connection
 - expiry
Time String - metadata Object
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String - format for the workspace connection value
 
- category string
 - Category of the connection
 - expiry
Time string - metadata any
 - target string
 - value string
 - Value details of the workspace connection.
 - value
Format 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
 - expiry
Time String - metadata Any
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format 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.
 - Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format  - format for the workspace connection value
 
- Category
string | Connection
Category  - Category of the connection
 - Credentials
Workspace
Connection Personal Access Token  - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string | ValueFormat  - format for the workspace connection value
 
- category
String | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Personal Access Token  - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String | ValueFormat  - format for the workspace connection value
 
- category
string | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Personal Access Token  - target string
 - value string
 - Value details of the workspace connection.
 - value
Format string | ValueFormat  - format for the workspace connection value
 
- category
str | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection 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 | "Python
Feed" | "Container Registry" | "Git"  - Category of the connection
 - credentials Property Map
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format 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  - Expiry
Time string - Metadata object
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- Category string
 - Category of the connection
 - Credentials
Workspace
Connection Personal Access Token Response  - Expiry
Time string - Metadata interface{}
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- category String
 - Category of the connection
 - credentials
Workspace
Connection Personal Access Token Response  - expiry
Time String - metadata Object
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String - format for the workspace connection value
 
- category string
 - Category of the connection
 - credentials
Workspace
Connection Personal Access Token Response  - expiry
Time string - metadata any
 - target string
 - value string
 - Value details of the workspace connection.
 - value
Format string - format for the workspace connection value
 
- category str
 - Category of the connection
 - credentials
Workspace
Connection 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
 - expiry
Time String - metadata Any
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format 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.
 - Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format  - format for the workspace connection value
 
- Category
string | Connection
Category  - Category of the connection
 - Credentials
Workspace
Connection Shared Access Signature  - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string | ValueFormat  - format for the workspace connection value
 
- category
String | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Shared Access Signature  - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String | ValueFormat  - format for the workspace connection value
 
- category
string | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Shared Access Signature  - target string
 - value string
 - Value details of the workspace connection.
 - value
Format string | ValueFormat  - format for the workspace connection value
 
- category
str | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection 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 | "Python
Feed" | "Container Registry" | "Git"  - Category of the connection
 - credentials Property Map
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format 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  - Expiry
Time string - Metadata object
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- Category string
 - Category of the connection
 - Credentials
Workspace
Connection Shared Access Signature Response  - Expiry
Time string - Metadata interface{}
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- category String
 - Category of the connection
 - credentials
Workspace
Connection Shared Access Signature Response  - expiry
Time String - metadata Object
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String - format for the workspace connection value
 
- category string
 - Category of the connection
 - credentials
Workspace
Connection Shared Access Signature Response  - expiry
Time string - metadata any
 - target string
 - value string
 - Value details of the workspace connection.
 - value
Format string - format for the workspace connection value
 
- category str
 - Category of the connection
 - credentials
Workspace
Connection 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
 - expiry
Time String - metadata Any
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String - format for the workspace connection value
 
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.
 
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.
 - Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format  - format for the workspace connection value
 
- Category
string | Connection
Category  - Category of the connection
 - Credentials
Workspace
Connection Username Password  - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string | ValueFormat  - format for the workspace connection value
 
- category
String | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Username Password  - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String | ValueFormat  - format for the workspace connection value
 
- category
string | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Username Password  - target string
 - value string
 - Value details of the workspace connection.
 - value
Format string | ValueFormat  - format for the workspace connection value
 
- category
str | Connection
Category  - Category of the connection
 - credentials
Workspace
Connection Username Password  - target str
 - value str
 - Value details of the workspace connection.
 - value_
format str | ValueFormat  - format for the workspace connection value
 
- category
String | "Python
Feed" | "Container Registry" | "Git"  - Category of the connection
 - credentials Property Map
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format 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  - Expiry
Time string - Metadata object
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- Category string
 - Category of the connection
 - Credentials
Workspace
Connection Username Password Response  - Expiry
Time string - Metadata interface{}
 - Target string
 - Value string
 - Value details of the workspace connection.
 - Value
Format string - format for the workspace connection value
 
- category String
 - Category of the connection
 - credentials
Workspace
Connection Username Password Response  - expiry
Time String - metadata Object
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String - format for the workspace connection value
 
- category string
 - Category of the connection
 - credentials
Workspace
Connection Username Password Response  - expiry
Time string - metadata any
 - target string
 - value string
 - Value details of the workspace connection.
 - value
Format string - format for the workspace connection value
 
- category str
 - Category of the connection
 - credentials
Workspace
Connection 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
 - expiry
Time String - metadata Any
 - target String
 - value String
 - Value details of the workspace connection.
 - value
Format String - format for the workspace connection value
 
ValueFormat, ValueFormatArgs    
- JSON
 - JSON
 
- Value
Format JSON  - JSON
 
- JSON
 - JSON
 
- JSON
 - JSON
 
- JSON
 - JSON
 
- "JSON"
 - JSON
 
WorkspaceConnectionManagedIdentity, WorkspaceConnectionManagedIdentityArgs        
- Client
Id string - Resource
Id string 
- Client
Id string - Resource
Id string 
- client
Id String - resource
Id String 
- client
Id string - resource
Id string 
- client_
id str - resource_
id str 
- client
Id String - resource
Id String 
WorkspaceConnectionManagedIdentityResponse, WorkspaceConnectionManagedIdentityResponseArgs          
- Client
Id string - Resource
Id string 
- Client
Id string - Resource
Id string 
- client
Id String - resource
Id String 
- client
Id string - resource
Id string 
- client_
id str - resource_
id str 
- client
Id String - resource
Id 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