1. Packages
  2. Azure Native
  3. API Docs
  4. machinelearningservices
  5. WorkspaceConnection
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.machinelearningservices.WorkspaceConnection

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    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.

    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 (
    	"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.NoneAuthTypeWorkspaceConnectionProperties{
    				AuthType: "None",
    				Category: machinelearningservices.ConnectionCategoryContainerRegistry,
    				Target:   "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.

    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.ManagedIdentityAuthTypeWorkspaceConnectionProperties{
    AuthType: "ManagedIdentity",
    Category: "string",
    Credentials: machinelearningservices.WorkspaceConnectionManagedIdentity{
    ClientId: "string",
    ResourceId: "string",
    },
    Target: "string",
    Value: "string",
    ValueFormat: "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 Property Map | Property Map | Property Map | Property Map | Property Map
    resourceGroupName String
    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.AzureNative.MachineLearningServices.Outputs.SystemDataResponse
    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 SystemDataResponse
    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 SystemDataResponse
    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 SystemDataResponse
    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 SystemDataResponse
    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
    ConnectionCategoryPythonFeed
    PythonFeed
    ConnectionCategoryContainerRegistry
    ContainerRegistry
    ConnectionCategoryGit
    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 | ConnectionCategory
    Category of the connection
    Credentials WorkspaceConnectionManagedIdentity
    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 WorkspaceConnectionManagedIdentity
    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 WorkspaceConnectionManagedIdentity
    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 WorkspaceConnectionManagedIdentity
    target str
    value str
    Value details of the workspace connection.
    value_format str | ValueFormat
    format for the workspace connection value
    category String | "PythonFeed" | "ContainerRegistry" | "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.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionManagedIdentityResponse
    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 WorkspaceConnectionManagedIdentityResponse
    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 WorkspaceConnectionManagedIdentityResponse
    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 WorkspaceConnectionManagedIdentityResponse
    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 WorkspaceConnectionManagedIdentityResponse
    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.AzureNative.MachineLearningServices.ConnectionCategory
    Category of the connection
    Target string
    Value string
    Value details of the workspace connection.
    ValueFormat string | Pulumi.AzureNative.MachineLearningServices.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 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" | "ContainerRegistry" | "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 | ConnectionCategory
    Category of the connection
    Credentials WorkspaceConnectionPersonalAccessToken
    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 WorkspaceConnectionPersonalAccessToken
    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 WorkspaceConnectionPersonalAccessToken
    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 WorkspaceConnectionPersonalAccessToken
    target str
    value str
    Value details of the workspace connection.
    value_format str | ValueFormat
    format for the workspace connection value
    category String | "PythonFeed" | "ContainerRegistry" | "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.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionPersonalAccessTokenResponse
    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 WorkspaceConnectionPersonalAccessTokenResponse
    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 WorkspaceConnectionPersonalAccessTokenResponse
    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 WorkspaceConnectionPersonalAccessTokenResponse
    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 WorkspaceConnectionPersonalAccessTokenResponse
    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 | ConnectionCategory
    Category of the connection
    Credentials WorkspaceConnectionSharedAccessSignature
    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 WorkspaceConnectionSharedAccessSignature
    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 WorkspaceConnectionSharedAccessSignature
    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 WorkspaceConnectionSharedAccessSignature
    target str
    value str
    Value details of the workspace connection.
    value_format str | ValueFormat
    format for the workspace connection value
    category String | "PythonFeed" | "ContainerRegistry" | "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.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionSharedAccessSignatureResponse
    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 WorkspaceConnectionSharedAccessSignatureResponse
    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 WorkspaceConnectionSharedAccessSignatureResponse
    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 WorkspaceConnectionSharedAccessSignatureResponse
    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 WorkspaceConnectionSharedAccessSignatureResponse
    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.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    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.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UsernamePasswordAuthTypeWorkspaceConnectionProperties, UsernamePasswordAuthTypeWorkspaceConnectionPropertiesArgs

    Category string | ConnectionCategory
    Category of the connection
    Credentials WorkspaceConnectionUsernamePassword
    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 WorkspaceConnectionUsernamePassword
    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 WorkspaceConnectionUsernamePassword
    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 WorkspaceConnectionUsernamePassword
    target str
    value str
    Value details of the workspace connection.
    value_format str | ValueFormat
    format for the workspace connection value
    category String | "PythonFeed" | "ContainerRegistry" | "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.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionUsernamePasswordResponse
    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 WorkspaceConnectionUsernamePasswordResponse
    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 WorkspaceConnectionUsernamePasswordResponse
    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 WorkspaceConnectionUsernamePasswordResponse
    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 WorkspaceConnectionUsernamePasswordResponse
    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
    ValueFormatJSON
    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
    clientId String
    resourceId String

    WorkspaceConnectionManagedIdentityResponse, WorkspaceConnectionManagedIdentityResponseArgs

    ClientId string
    ResourceId string
    ClientId string
    ResourceId string
    clientId String
    resourceId String
    clientId string
    resourceId string
    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

    Password string
    Username string
    Password string
    Username string
    password String
    username String
    password string
    username string
    password String
    username String

    WorkspaceConnectionUsernamePasswordResponse, WorkspaceConnectionUsernamePasswordResponseArgs

    Password string
    Username string
    Password string
    Username string
    password String
    username String
    password string
    username string
    password String
    username String

    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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi