1. Packages
  2. Azure Native
  3. API Docs
  4. machinelearningservices
  5. WorkspaceConnection
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.machinelearningservices.WorkspaceConnection

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

Uses Azure REST API version 2024-10-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.

Other available API versions: 2020-06-01, 2020-08-01, 2020-09-01-preview, 2021-01-01, 2021-03-01-preview, 2021-04-01, 2021-07-01, 2022-01-01-preview, 2022-02-01-preview, 2022-05-01, 2022-06-01-preview, 2022-10-01, 2022-10-01-preview, 2022-12-01-preview, 2023-02-01-preview, 2023-04-01, 2023-04-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2023-10-01, 2024-01-01-preview, 2024-04-01, 2024-07-01-preview, 2024-10-01-preview, 2025-01-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native machinelearningservices [ApiVersion]. See the version guide for details.

Example Usage

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",
    });

});
Copy
package main

import (
	machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := machinelearningservices.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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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[AADAuthTypeWorkspaceConnectionPropertiesArgs, AccessKeyAuthTypeWorkspaceConnectionPropertiesArgs, AccountKeyAuthTypeWorkspaceConnectionPropertiesArgs, ApiKeyAuthWorkspaceConnectionPropertiesArgs, CustomKeysWorkspaceConnectionPropertiesArgs, ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs, NoneAuthTypeWorkspaceConnectionPropertiesArgs, OAuth2AuthTypeWorkspaceConnectionPropertiesArgs, PATAuthTypeWorkspaceConnectionPropertiesArgs, SASAuthTypeWorkspaceConnectionPropertiesArgs, ServicePrincipalAuthTypeWorkspaceConnectionPropertiesArgs, 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 This property is required. string
The unique name of the resource.
args This property is required. WorkspaceConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. WorkspaceConnectionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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.AADAuthTypeWorkspaceConnectionPropertiesArgs
    {
        AuthType = "AAD",
        Category = "string",
        ExpiryTime = "string",
        IsSharedToAll = false,
        Metadata = 
        {
            { "string", "string" },
        },
        SharedUserList = new[]
        {
            "string",
        },
        Target = "string",
        Value = "string",
        ValueFormat = "string",
    },
    ResourceGroupName = "string",
    WorkspaceName = "string",
    ConnectionName = "string",
});
Copy
example, err := machinelearningservices.NewWorkspaceConnection(ctx, "workspaceConnectionResource", &machinelearningservices.WorkspaceConnectionArgs{
	Properties: &machinelearningservices.AADAuthTypeWorkspaceConnectionPropertiesArgs{
		AuthType:      pulumi.String("AAD"),
		Category:      pulumi.String("string"),
		ExpiryTime:    pulumi.String("string"),
		IsSharedToAll: pulumi.Bool(false),
		Metadata: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		SharedUserList: pulumi.StringArray{
			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"),
})
Copy
var workspaceConnectionResource = new WorkspaceConnection("workspaceConnectionResource", WorkspaceConnectionArgs.builder()
    .properties(AADAuthTypeWorkspaceConnectionPropertiesArgs.builder()
        .authType("AAD")
        .category("string")
        .expiryTime("string")
        .isSharedToAll(false)
        .metadata(Map.of("string", "string"))
        .sharedUserList("string")
        .target("string")
        .value("string")
        .valueFormat("string")
        .build())
    .resourceGroupName("string")
    .workspaceName("string")
    .connectionName("string")
    .build());
Copy
workspace_connection_resource = azure_native.machinelearningservices.WorkspaceConnection("workspaceConnectionResource",
    properties={
        "auth_type": "AAD",
        "category": "string",
        "expiry_time": "string",
        "is_shared_to_all": False,
        "metadata": {
            "string": "string",
        },
        "shared_user_list": ["string"],
        "target": "string",
        "value": "string",
        "value_format": "string",
    },
    resource_group_name="string",
    workspace_name="string",
    connection_name="string")
Copy
const workspaceConnectionResource = new azure_native.machinelearningservices.WorkspaceConnection("workspaceConnectionResource", {
    properties: {
        authType: "AAD",
        category: "string",
        expiryTime: "string",
        isSharedToAll: false,
        metadata: {
            string: "string",
        },
        sharedUserList: ["string"],
        target: "string",
        value: "string",
        valueFormat: "string",
    },
    resourceGroupName: "string",
    workspaceName: "string",
    connectionName: "string",
});
Copy
type: azure-native:machinelearningservices:WorkspaceConnection
properties:
    connectionName: string
    properties:
        authType: AAD
        category: string
        expiryTime: string
        isSharedToAll: false
        metadata:
            string: string
        sharedUserList:
            - string
        target: string
        value: string
        valueFormat: string
    resourceGroupName: string
    workspaceName: string
Copy

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 This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.AADAuthTypeWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.AccessKeyAuthTypeWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.AccountKeyAuthTypeWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.ApiKeyAuthWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.CustomKeysWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.ManagedIdentityAuthTypeWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.NoneAuthTypeWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.OAuth2AuthTypeWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.PATAuthTypeWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.SASAuthTypeWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.ServicePrincipalAuthTypeWorkspaceConnectionProperties | Pulumi.AzureNative.MachineLearningServices.Inputs.UsernamePasswordAuthTypeWorkspaceConnectionProperties
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Azure Machine Learning workspace.
ConnectionName Changes to this property will trigger replacement. string
Friendly name of the workspace connection
Properties This property is required. AADAuthTypeWorkspaceConnectionPropertiesArgs | AccessKeyAuthTypeWorkspaceConnectionPropertiesArgs | AccountKeyAuthTypeWorkspaceConnectionPropertiesArgs | ApiKeyAuthWorkspaceConnectionPropertiesArgs | CustomKeysWorkspaceConnectionPropertiesArgs | ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs | NoneAuthTypeWorkspaceConnectionPropertiesArgs | OAuth2AuthTypeWorkspaceConnectionPropertiesArgs | PATAuthTypeWorkspaceConnectionPropertiesArgs | SASAuthTypeWorkspaceConnectionPropertiesArgs | ServicePrincipalAuthTypeWorkspaceConnectionPropertiesArgs | UsernamePasswordAuthTypeWorkspaceConnectionPropertiesArgs
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Azure Machine Learning workspace.
ConnectionName Changes to this property will trigger replacement. string
Friendly name of the workspace connection
properties This property is required. AADAuthTypeWorkspaceConnectionProperties | AccessKeyAuthTypeWorkspaceConnectionProperties | AccountKeyAuthTypeWorkspaceConnectionProperties | ApiKeyAuthWorkspaceConnectionProperties | CustomKeysWorkspaceConnectionProperties | ManagedIdentityAuthTypeWorkspaceConnectionProperties | NoneAuthTypeWorkspaceConnectionProperties | OAuth2AuthTypeWorkspaceConnectionProperties | PATAuthTypeWorkspaceConnectionProperties | SASAuthTypeWorkspaceConnectionProperties | ServicePrincipalAuthTypeWorkspaceConnectionProperties | UsernamePasswordAuthTypeWorkspaceConnectionProperties
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
Name of Azure Machine Learning workspace.
connectionName Changes to this property will trigger replacement. String
Friendly name of the workspace connection
properties This property is required. AADAuthTypeWorkspaceConnectionProperties | AccessKeyAuthTypeWorkspaceConnectionProperties | AccountKeyAuthTypeWorkspaceConnectionProperties | ApiKeyAuthWorkspaceConnectionProperties | CustomKeysWorkspaceConnectionProperties | ManagedIdentityAuthTypeWorkspaceConnectionProperties | NoneAuthTypeWorkspaceConnectionProperties | OAuth2AuthTypeWorkspaceConnectionProperties | PATAuthTypeWorkspaceConnectionProperties | SASAuthTypeWorkspaceConnectionProperties | ServicePrincipalAuthTypeWorkspaceConnectionProperties | UsernamePasswordAuthTypeWorkspaceConnectionProperties
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Azure Machine Learning workspace.
connectionName Changes to this property will trigger replacement. string
Friendly name of the workspace connection
properties This property is required. AADAuthTypeWorkspaceConnectionPropertiesArgs | AccessKeyAuthTypeWorkspaceConnectionPropertiesArgs | AccountKeyAuthTypeWorkspaceConnectionPropertiesArgs | ApiKeyAuthWorkspaceConnectionPropertiesArgs | CustomKeysWorkspaceConnectionPropertiesArgs | ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs | NoneAuthTypeWorkspaceConnectionPropertiesArgs | OAuth2AuthTypeWorkspaceConnectionPropertiesArgs | PATAuthTypeWorkspaceConnectionPropertiesArgs | SASAuthTypeWorkspaceConnectionPropertiesArgs | ServicePrincipalAuthTypeWorkspaceConnectionPropertiesArgs | UsernamePasswordAuthTypeWorkspaceConnectionPropertiesArgs
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
workspace_name
This property is required.
Changes to this property will trigger replacement.
str
Name of Azure Machine Learning workspace.
connection_name Changes to this property will trigger replacement. str
Friendly name of the workspace connection
properties This property is required. Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
Name of Azure Machine Learning workspace.
connectionName Changes to this property will trigger replacement. 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:

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
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"
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
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"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
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"
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
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"
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data 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"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
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

AADAuthTypeWorkspaceConnectionProperties
, AADAuthTypeWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

AADAuthTypeWorkspaceConnectionPropertiesResponse
, AADAuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value

AccessKeyAuthTypeWorkspaceConnectionProperties
, AccessKeyAuthTypeWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionAccessKey
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials WorkspaceConnectionAccessKey
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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 WorkspaceConnectionAccessKey
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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 WorkspaceConnectionAccessKey
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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 WorkspaceConnectionAccessKey
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

AccessKeyAuthTypeWorkspaceConnectionPropertiesResponse
, AccessKeyAuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionAccessKeyResponse
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials WorkspaceConnectionAccessKeyResponse
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials WorkspaceConnectionAccessKeyResponse
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials WorkspaceConnectionAccessKeyResponse
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials WorkspaceConnectionAccessKeyResponse
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value

AccountKeyAuthTypeWorkspaceConnectionProperties
, AccountKeyAuthTypeWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionAccountKey
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials WorkspaceConnectionAccountKey
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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 WorkspaceConnectionAccountKey
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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 WorkspaceConnectionAccountKey
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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 WorkspaceConnectionAccountKey
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

AccountKeyAuthTypeWorkspaceConnectionPropertiesResponse
, AccountKeyAuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionAccountKeyResponse
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials WorkspaceConnectionAccountKeyResponse
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials WorkspaceConnectionAccountKeyResponse
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials WorkspaceConnectionAccountKeyResponse
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials WorkspaceConnectionAccountKeyResponse
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value

ApiKeyAuthWorkspaceConnectionProperties
, ApiKeyAuthWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionApiKey
Api key object for workspace connection credential.
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials WorkspaceConnectionApiKey
Api key object for workspace connection credential.
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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 WorkspaceConnectionApiKey
Api key object for workspace connection credential.
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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 WorkspaceConnectionApiKey
Api key object for workspace connection credential.
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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 WorkspaceConnectionApiKey
Api key object for workspace connection credential.
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
Api key object for workspace connection credential.
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

ApiKeyAuthWorkspaceConnectionPropertiesResponse
, ApiKeyAuthWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionApiKeyResponse
Api key object for workspace connection credential.
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials WorkspaceConnectionApiKeyResponse
Api key object for workspace connection credential.
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials WorkspaceConnectionApiKeyResponse
Api key object for workspace connection credential.
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials WorkspaceConnectionApiKeyResponse
Api key object for workspace connection credential.
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials WorkspaceConnectionApiKeyResponse
Api key object for workspace connection credential.
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
Api key object for workspace connection credential.
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value

ConnectionCategory
, ConnectionCategoryArgs

PythonFeed
PythonFeed
ContainerRegistry
ContainerRegistry
Git
Git
S3
S3
Snowflake
Snowflake
AzureSqlDb
AzureSqlDb
AzureSynapseAnalytics
AzureSynapseAnalytics
AzureMySqlDb
AzureMySqlDb
AzurePostgresDb
AzurePostgresDb
ADLSGen2
ADLSGen2
Redis
Redis
ApiKey
ApiKey
AzureOpenAI
AzureOpenAI
AIServices
AIServices
CognitiveSearch
CognitiveSearch
CognitiveService
CognitiveService
CustomKeys
CustomKeys
AzureBlob
AzureBlob
AzureOneLake
AzureOneLake
CosmosDb
CosmosDb
CosmosDbMongoDbApi
CosmosDbMongoDbApi
AzureDataExplorer
AzureDataExplorer
AzureMariaDb
AzureMariaDb
AzureDatabricksDeltaLake
AzureDatabricksDeltaLake
AzureSqlMi
AzureSqlMi
AzureTableStorage
AzureTableStorage
AmazonRdsForOracle
AmazonRdsForOracle
AmazonRdsForSqlServer
AmazonRdsForSqlServer
AmazonRedshift
AmazonRedshift
Db2
Db2
Drill
Drill
GoogleBigQuery
GoogleBigQuery
Greenplum
Greenplum
Hbase
Hbase
Hive
Hive
Impala
Impala
Informix
Informix
MariaDb
MariaDb
MicrosoftAccess
MicrosoftAccess
MySql
MySql
Netezza
Netezza
Oracle
Oracle
Phoenix
Phoenix
PostgreSql
PostgreSql
Presto
Presto
SapOpenHub
SapOpenHub
SapBw
SapBw
SapHana
SapHana
SapTable
SapTable
Spark
Spark
SqlServer
SqlServer
Sybase
Sybase
Teradata
Teradata
Vertica
Vertica
Pinecone
Pinecone
Cassandra
Cassandra
Couchbase
Couchbase
MongoDbV2
MongoDbV2
MongoDbAtlas
MongoDbAtlas
AmazonS3Compatible
AmazonS3Compatible
FileServer
FileServer
FtpServer
FtpServer
GoogleCloudStorage
GoogleCloudStorage
Hdfs
Hdfs
OracleCloudStorage
OracleCloudStorage
Sftp
Sftp
GenericHttp
GenericHttp
ODataRest
ODataRest
Odbc
Odbc
GenericRest
GenericRest
AmazonMws
AmazonMws
Concur
Concur
Dynamics
Dynamics
DynamicsAx
DynamicsAx
DynamicsCrm
DynamicsCrm
GoogleAdWords
GoogleAdWords
Hubspot
Hubspot
Jira
Jira
Magento
Magento
Marketo
Marketo
Office365
Office365
Eloqua
Eloqua
Responsys
Responsys
OracleServiceCloud
OracleServiceCloud
PayPal
PayPal
QuickBooks
QuickBooks
Salesforce
Salesforce
SalesforceServiceCloud
SalesforceServiceCloud
SalesforceMarketingCloud
SalesforceMarketingCloud
SapCloudForCustomer
SapCloudForCustomer
SapEcc
SapEcc
ServiceNow
ServiceNow
SharePointOnlineList
SharePointOnlineList
Shopify
Shopify
Square
Square
WebTable
WebTable
Xero
Xero
Zoho
Zoho
GenericContainerRegistry
GenericContainerRegistry
Elasticsearch
Elasticsearch
OpenAI
OpenAI
Serp
Serp
BingLLMSearch
BingLLMSearch
Serverless
Serverless
ManagedOnlineEndpoint
ManagedOnlineEndpoint
ConnectionCategoryPythonFeed
PythonFeed
ConnectionCategoryContainerRegistry
ContainerRegistry
ConnectionCategoryGit
Git
ConnectionCategoryS3
S3
ConnectionCategorySnowflake
Snowflake
ConnectionCategoryAzureSqlDb
AzureSqlDb
ConnectionCategoryAzureSynapseAnalytics
AzureSynapseAnalytics
ConnectionCategoryAzureMySqlDb
AzureMySqlDb
ConnectionCategoryAzurePostgresDb
AzurePostgresDb
ConnectionCategoryADLSGen2
ADLSGen2
ConnectionCategoryRedis
Redis
ConnectionCategoryApiKey
ApiKey
ConnectionCategoryAzureOpenAI
AzureOpenAI
ConnectionCategoryAIServices
AIServices
ConnectionCategoryCognitiveSearch
CognitiveSearch
ConnectionCategoryCognitiveService
CognitiveService
ConnectionCategoryCustomKeys
CustomKeys
ConnectionCategoryAzureBlob
AzureBlob
ConnectionCategoryAzureOneLake
AzureOneLake
ConnectionCategoryCosmosDb
CosmosDb
ConnectionCategoryCosmosDbMongoDbApi
CosmosDbMongoDbApi
ConnectionCategoryAzureDataExplorer
AzureDataExplorer
ConnectionCategoryAzureMariaDb
AzureMariaDb
ConnectionCategoryAzureDatabricksDeltaLake
AzureDatabricksDeltaLake
ConnectionCategoryAzureSqlMi
AzureSqlMi
ConnectionCategoryAzureTableStorage
AzureTableStorage
ConnectionCategoryAmazonRdsForOracle
AmazonRdsForOracle
ConnectionCategoryAmazonRdsForSqlServer
AmazonRdsForSqlServer
ConnectionCategoryAmazonRedshift
AmazonRedshift
ConnectionCategoryDb2
Db2
ConnectionCategoryDrill
Drill
ConnectionCategoryGoogleBigQuery
GoogleBigQuery
ConnectionCategoryGreenplum
Greenplum
ConnectionCategoryHbase
Hbase
ConnectionCategoryHive
Hive
ConnectionCategoryImpala
Impala
ConnectionCategoryInformix
Informix
ConnectionCategoryMariaDb
MariaDb
ConnectionCategoryMicrosoftAccess
MicrosoftAccess
ConnectionCategoryMySql
MySql
ConnectionCategoryNetezza
Netezza
ConnectionCategoryOracle
Oracle
ConnectionCategoryPhoenix
Phoenix
ConnectionCategoryPostgreSql
PostgreSql
ConnectionCategoryPresto
Presto
ConnectionCategorySapOpenHub
SapOpenHub
ConnectionCategorySapBw
SapBw
ConnectionCategorySapHana
SapHana
ConnectionCategorySapTable
SapTable
ConnectionCategorySpark
Spark
ConnectionCategorySqlServer
SqlServer
ConnectionCategorySybase
Sybase
ConnectionCategoryTeradata
Teradata
ConnectionCategoryVertica
Vertica
ConnectionCategoryPinecone
Pinecone
ConnectionCategoryCassandra
Cassandra
ConnectionCategoryCouchbase
Couchbase
ConnectionCategoryMongoDbV2
MongoDbV2
ConnectionCategoryMongoDbAtlas
MongoDbAtlas
ConnectionCategoryAmazonS3Compatible
AmazonS3Compatible
ConnectionCategoryFileServer
FileServer
ConnectionCategoryFtpServer
FtpServer
ConnectionCategoryGoogleCloudStorage
GoogleCloudStorage
ConnectionCategoryHdfs
Hdfs
ConnectionCategoryOracleCloudStorage
OracleCloudStorage
ConnectionCategorySftp
Sftp
ConnectionCategoryGenericHttp
GenericHttp
ConnectionCategoryODataRest
ODataRest
ConnectionCategoryOdbc
Odbc
ConnectionCategoryGenericRest
GenericRest
ConnectionCategoryAmazonMws
AmazonMws
ConnectionCategoryConcur
Concur
ConnectionCategoryDynamics
Dynamics
ConnectionCategoryDynamicsAx
DynamicsAx
ConnectionCategoryDynamicsCrm
DynamicsCrm
ConnectionCategoryGoogleAdWords
GoogleAdWords
ConnectionCategoryHubspot
Hubspot
ConnectionCategoryJira
Jira
ConnectionCategoryMagento
Magento
ConnectionCategoryMarketo
Marketo
ConnectionCategoryOffice365
Office365
ConnectionCategoryEloqua
Eloqua
ConnectionCategoryResponsys
Responsys
ConnectionCategoryOracleServiceCloud
OracleServiceCloud
ConnectionCategoryPayPal
PayPal
ConnectionCategoryQuickBooks
QuickBooks
ConnectionCategorySalesforce
Salesforce
ConnectionCategorySalesforceServiceCloud
SalesforceServiceCloud
ConnectionCategorySalesforceMarketingCloud
SalesforceMarketingCloud
ConnectionCategorySapCloudForCustomer
SapCloudForCustomer
ConnectionCategorySapEcc
SapEcc
ConnectionCategoryServiceNow
ServiceNow
ConnectionCategorySharePointOnlineList
SharePointOnlineList
ConnectionCategoryShopify
Shopify
ConnectionCategorySquare
Square
ConnectionCategoryWebTable
WebTable
ConnectionCategoryXero
Xero
ConnectionCategoryZoho
Zoho
ConnectionCategoryGenericContainerRegistry
GenericContainerRegistry
ConnectionCategoryElasticsearch
Elasticsearch
ConnectionCategoryOpenAI
OpenAI
ConnectionCategorySerp
Serp
ConnectionCategoryBingLLMSearch
BingLLMSearch
ConnectionCategoryServerless
Serverless
ConnectionCategoryManagedOnlineEndpoint
ManagedOnlineEndpoint
PythonFeed
PythonFeed
ContainerRegistry
ContainerRegistry
Git
Git
S3
S3
Snowflake
Snowflake
AzureSqlDb
AzureSqlDb
AzureSynapseAnalytics
AzureSynapseAnalytics
AzureMySqlDb
AzureMySqlDb
AzurePostgresDb
AzurePostgresDb
ADLSGen2
ADLSGen2
Redis
Redis
ApiKey
ApiKey
AzureOpenAI
AzureOpenAI
AIServices
AIServices
CognitiveSearch
CognitiveSearch
CognitiveService
CognitiveService
CustomKeys
CustomKeys
AzureBlob
AzureBlob
AzureOneLake
AzureOneLake
CosmosDb
CosmosDb
CosmosDbMongoDbApi
CosmosDbMongoDbApi
AzureDataExplorer
AzureDataExplorer
AzureMariaDb
AzureMariaDb
AzureDatabricksDeltaLake
AzureDatabricksDeltaLake
AzureSqlMi
AzureSqlMi
AzureTableStorage
AzureTableStorage
AmazonRdsForOracle
AmazonRdsForOracle
AmazonRdsForSqlServer
AmazonRdsForSqlServer
AmazonRedshift
AmazonRedshift
Db2
Db2
Drill
Drill
GoogleBigQuery
GoogleBigQuery
Greenplum
Greenplum
Hbase
Hbase
Hive
Hive
Impala
Impala
Informix
Informix
MariaDb
MariaDb
MicrosoftAccess
MicrosoftAccess
MySql
MySql
Netezza
Netezza
Oracle
Oracle
Phoenix
Phoenix
PostgreSql
PostgreSql
Presto
Presto
SapOpenHub
SapOpenHub
SapBw
SapBw
SapHana
SapHana
SapTable
SapTable
Spark
Spark
SqlServer
SqlServer
Sybase
Sybase
Teradata
Teradata
Vertica
Vertica
Pinecone
Pinecone
Cassandra
Cassandra
Couchbase
Couchbase
MongoDbV2
MongoDbV2
MongoDbAtlas
MongoDbAtlas
AmazonS3Compatible
AmazonS3Compatible
FileServer
FileServer
FtpServer
FtpServer
GoogleCloudStorage
GoogleCloudStorage
Hdfs
Hdfs
OracleCloudStorage
OracleCloudStorage
Sftp
Sftp
GenericHttp
GenericHttp
ODataRest
ODataRest
Odbc
Odbc
GenericRest
GenericRest
AmazonMws
AmazonMws
Concur
Concur
Dynamics
Dynamics
DynamicsAx
DynamicsAx
DynamicsCrm
DynamicsCrm
GoogleAdWords
GoogleAdWords
Hubspot
Hubspot
Jira
Jira
Magento
Magento
Marketo
Marketo
Office365
Office365
Eloqua
Eloqua
Responsys
Responsys
OracleServiceCloud
OracleServiceCloud
PayPal
PayPal
QuickBooks
QuickBooks
Salesforce
Salesforce
SalesforceServiceCloud
SalesforceServiceCloud
SalesforceMarketingCloud
SalesforceMarketingCloud
SapCloudForCustomer
SapCloudForCustomer
SapEcc
SapEcc
ServiceNow
ServiceNow
SharePointOnlineList
SharePointOnlineList
Shopify
Shopify
Square
Square
WebTable
WebTable
Xero
Xero
Zoho
Zoho
GenericContainerRegistry
GenericContainerRegistry
Elasticsearch
Elasticsearch
OpenAI
OpenAI
Serp
Serp
BingLLMSearch
BingLLMSearch
Serverless
Serverless
ManagedOnlineEndpoint
ManagedOnlineEndpoint
PythonFeed
PythonFeed
ContainerRegistry
ContainerRegistry
Git
Git
S3
S3
Snowflake
Snowflake
AzureSqlDb
AzureSqlDb
AzureSynapseAnalytics
AzureSynapseAnalytics
AzureMySqlDb
AzureMySqlDb
AzurePostgresDb
AzurePostgresDb
ADLSGen2
ADLSGen2
Redis
Redis
ApiKey
ApiKey
AzureOpenAI
AzureOpenAI
AIServices
AIServices
CognitiveSearch
CognitiveSearch
CognitiveService
CognitiveService
CustomKeys
CustomKeys
AzureBlob
AzureBlob
AzureOneLake
AzureOneLake
CosmosDb
CosmosDb
CosmosDbMongoDbApi
CosmosDbMongoDbApi
AzureDataExplorer
AzureDataExplorer
AzureMariaDb
AzureMariaDb
AzureDatabricksDeltaLake
AzureDatabricksDeltaLake
AzureSqlMi
AzureSqlMi
AzureTableStorage
AzureTableStorage
AmazonRdsForOracle
AmazonRdsForOracle
AmazonRdsForSqlServer
AmazonRdsForSqlServer
AmazonRedshift
AmazonRedshift
Db2
Db2
Drill
Drill
GoogleBigQuery
GoogleBigQuery
Greenplum
Greenplum
Hbase
Hbase
Hive
Hive
Impala
Impala
Informix
Informix
MariaDb
MariaDb
MicrosoftAccess
MicrosoftAccess
MySql
MySql
Netezza
Netezza
Oracle
Oracle
Phoenix
Phoenix
PostgreSql
PostgreSql
Presto
Presto
SapOpenHub
SapOpenHub
SapBw
SapBw
SapHana
SapHana
SapTable
SapTable
Spark
Spark
SqlServer
SqlServer
Sybase
Sybase
Teradata
Teradata
Vertica
Vertica
Pinecone
Pinecone
Cassandra
Cassandra
Couchbase
Couchbase
MongoDbV2
MongoDbV2
MongoDbAtlas
MongoDbAtlas
AmazonS3Compatible
AmazonS3Compatible
FileServer
FileServer
FtpServer
FtpServer
GoogleCloudStorage
GoogleCloudStorage
Hdfs
Hdfs
OracleCloudStorage
OracleCloudStorage
Sftp
Sftp
GenericHttp
GenericHttp
ODataRest
ODataRest
Odbc
Odbc
GenericRest
GenericRest
AmazonMws
AmazonMws
Concur
Concur
Dynamics
Dynamics
DynamicsAx
DynamicsAx
DynamicsCrm
DynamicsCrm
GoogleAdWords
GoogleAdWords
Hubspot
Hubspot
Jira
Jira
Magento
Magento
Marketo
Marketo
Office365
Office365
Eloqua
Eloqua
Responsys
Responsys
OracleServiceCloud
OracleServiceCloud
PayPal
PayPal
QuickBooks
QuickBooks
Salesforce
Salesforce
SalesforceServiceCloud
SalesforceServiceCloud
SalesforceMarketingCloud
SalesforceMarketingCloud
SapCloudForCustomer
SapCloudForCustomer
SapEcc
SapEcc
ServiceNow
ServiceNow
SharePointOnlineList
SharePointOnlineList
Shopify
Shopify
Square
Square
WebTable
WebTable
Xero
Xero
Zoho
Zoho
GenericContainerRegistry
GenericContainerRegistry
Elasticsearch
Elasticsearch
OpenAI
OpenAI
Serp
Serp
BingLLMSearch
BingLLMSearch
Serverless
Serverless
ManagedOnlineEndpoint
ManagedOnlineEndpoint
PYTHON_FEED
PythonFeed
CONTAINER_REGISTRY
ContainerRegistry
GIT
Git
S3
S3
SNOWFLAKE
Snowflake
AZURE_SQL_DB
AzureSqlDb
AZURE_SYNAPSE_ANALYTICS
AzureSynapseAnalytics
AZURE_MY_SQL_DB
AzureMySqlDb
AZURE_POSTGRES_DB
AzurePostgresDb
ADLS_GEN2
ADLSGen2
REDIS
Redis
API_KEY
ApiKey
AZURE_OPEN_AI
AzureOpenAI
AI_SERVICES
AIServices
COGNITIVE_SEARCH
CognitiveSearch
COGNITIVE_SERVICE
CognitiveService
CUSTOM_KEYS
CustomKeys
AZURE_BLOB
AzureBlob
AZURE_ONE_LAKE
AzureOneLake
COSMOS_DB
CosmosDb
COSMOS_DB_MONGO_DB_API
CosmosDbMongoDbApi
AZURE_DATA_EXPLORER
AzureDataExplorer
AZURE_MARIA_DB
AzureMariaDb
AZURE_DATABRICKS_DELTA_LAKE
AzureDatabricksDeltaLake
AZURE_SQL_MI
AzureSqlMi
AZURE_TABLE_STORAGE
AzureTableStorage
AMAZON_RDS_FOR_ORACLE
AmazonRdsForOracle
AMAZON_RDS_FOR_SQL_SERVER
AmazonRdsForSqlServer
AMAZON_REDSHIFT
AmazonRedshift
DB2
Db2
DRILL
Drill
GOOGLE_BIG_QUERY
GoogleBigQuery
GREENPLUM
Greenplum
HBASE
Hbase
HIVE
Hive
IMPALA
Impala
INFORMIX
Informix
MARIA_DB
MariaDb
MICROSOFT_ACCESS
MicrosoftAccess
MY_SQL
MySql
NETEZZA
Netezza
ORACLE
Oracle
PHOENIX
Phoenix
POSTGRE_SQL
PostgreSql
PRESTO
Presto
SAP_OPEN_HUB
SapOpenHub
SAP_BW
SapBw
SAP_HANA
SapHana
SAP_TABLE
SapTable
SPARK
Spark
SQL_SERVER
SqlServer
SYBASE
Sybase
TERADATA
Teradata
VERTICA
Vertica
PINECONE
Pinecone
CASSANDRA
Cassandra
COUCHBASE
Couchbase
MONGO_DB_V2
MongoDbV2
MONGO_DB_ATLAS
MongoDbAtlas
AMAZON_S3_COMPATIBLE
AmazonS3Compatible
FILE_SERVER
FileServer
FTP_SERVER
FtpServer
GOOGLE_CLOUD_STORAGE
GoogleCloudStorage
HDFS
Hdfs
ORACLE_CLOUD_STORAGE
OracleCloudStorage
SFTP
Sftp
GENERIC_HTTP
GenericHttp
O_DATA_REST
ODataRest
ODBC
Odbc
GENERIC_REST
GenericRest
AMAZON_MWS
AmazonMws
CONCUR
Concur
DYNAMICS
Dynamics
DYNAMICS_AX
DynamicsAx
DYNAMICS_CRM
DynamicsCrm
GOOGLE_AD_WORDS
GoogleAdWords
HUBSPOT
Hubspot
JIRA
Jira
MAGENTO
Magento
MARKETO
Marketo
OFFICE365
Office365
ELOQUA
Eloqua
RESPONSYS
Responsys
ORACLE_SERVICE_CLOUD
OracleServiceCloud
PAY_PAL
PayPal
QUICK_BOOKS
QuickBooks
SALESFORCE
Salesforce
SALESFORCE_SERVICE_CLOUD
SalesforceServiceCloud
SALESFORCE_MARKETING_CLOUD
SalesforceMarketingCloud
SAP_CLOUD_FOR_CUSTOMER
SapCloudForCustomer
SAP_ECC
SapEcc
SERVICE_NOW
ServiceNow
SHARE_POINT_ONLINE_LIST
SharePointOnlineList
SHOPIFY
Shopify
SQUARE
Square
WEB_TABLE
WebTable
XERO
Xero
ZOHO
Zoho
GENERIC_CONTAINER_REGISTRY
GenericContainerRegistry
ELASTICSEARCH
Elasticsearch
OPEN_AI
OpenAI
SERP
Serp
BING_LLM_SEARCH
BingLLMSearch
SERVERLESS
Serverless
MANAGED_ONLINE_ENDPOINT
ManagedOnlineEndpoint
"PythonFeed"
PythonFeed
"ContainerRegistry"
ContainerRegistry
"Git"
Git
"S3"
S3
"Snowflake"
Snowflake
"AzureSqlDb"
AzureSqlDb
"AzureSynapseAnalytics"
AzureSynapseAnalytics
"AzureMySqlDb"
AzureMySqlDb
"AzurePostgresDb"
AzurePostgresDb
"ADLSGen2"
ADLSGen2
"Redis"
Redis
"ApiKey"
ApiKey
"AzureOpenAI"
AzureOpenAI
"AIServices"
AIServices
"CognitiveSearch"
CognitiveSearch
"CognitiveService"
CognitiveService
"CustomKeys"
CustomKeys
"AzureBlob"
AzureBlob
"AzureOneLake"
AzureOneLake
"CosmosDb"
CosmosDb
"CosmosDbMongoDbApi"
CosmosDbMongoDbApi
"AzureDataExplorer"
AzureDataExplorer
"AzureMariaDb"
AzureMariaDb
"AzureDatabricksDeltaLake"
AzureDatabricksDeltaLake
"AzureSqlMi"
AzureSqlMi
"AzureTableStorage"
AzureTableStorage
"AmazonRdsForOracle"
AmazonRdsForOracle
"AmazonRdsForSqlServer"
AmazonRdsForSqlServer
"AmazonRedshift"
AmazonRedshift
"Db2"
Db2
"Drill"
Drill
"GoogleBigQuery"
GoogleBigQuery
"Greenplum"
Greenplum
"Hbase"
Hbase
"Hive"
Hive
"Impala"
Impala
"Informix"
Informix
"MariaDb"
MariaDb
"MicrosoftAccess"
MicrosoftAccess
"MySql"
MySql
"Netezza"
Netezza
"Oracle"
Oracle
"Phoenix"
Phoenix
"PostgreSql"
PostgreSql
"Presto"
Presto
"SapOpenHub"
SapOpenHub
"SapBw"
SapBw
"SapHana"
SapHana
"SapTable"
SapTable
"Spark"
Spark
"SqlServer"
SqlServer
"Sybase"
Sybase
"Teradata"
Teradata
"Vertica"
Vertica
"Pinecone"
Pinecone
"Cassandra"
Cassandra
"Couchbase"
Couchbase
"MongoDbV2"
MongoDbV2
"MongoDbAtlas"
MongoDbAtlas
"AmazonS3Compatible"
AmazonS3Compatible
"FileServer"
FileServer
"FtpServer"
FtpServer
"GoogleCloudStorage"
GoogleCloudStorage
"Hdfs"
Hdfs
"OracleCloudStorage"
OracleCloudStorage
"Sftp"
Sftp
"GenericHttp"
GenericHttp
"ODataRest"
ODataRest
"Odbc"
Odbc
"GenericRest"
GenericRest
"AmazonMws"
AmazonMws
"Concur"
Concur
"Dynamics"
Dynamics
"DynamicsAx"
DynamicsAx
"DynamicsCrm"
DynamicsCrm
"GoogleAdWords"
GoogleAdWords
"Hubspot"
Hubspot
"Jira"
Jira
"Magento"
Magento
"Marketo"
Marketo
"Office365"
Office365
"Eloqua"
Eloqua
"Responsys"
Responsys
"OracleServiceCloud"
OracleServiceCloud
"PayPal"
PayPal
"QuickBooks"
QuickBooks
"Salesforce"
Salesforce
"SalesforceServiceCloud"
SalesforceServiceCloud
"SalesforceMarketingCloud"
SalesforceMarketingCloud
"SapCloudForCustomer"
SapCloudForCustomer
"SapEcc"
SapEcc
"ServiceNow"
ServiceNow
"SharePointOnlineList"
SharePointOnlineList
"Shopify"
Shopify
"Square"
Square
"WebTable"
WebTable
"Xero"
Xero
"Zoho"
Zoho
"GenericContainerRegistry"
GenericContainerRegistry
"Elasticsearch"
Elasticsearch
"OpenAI"
OpenAI
"Serp"
Serp
"BingLLMSearch"
BingLLMSearch
"Serverless"
Serverless
"ManagedOnlineEndpoint"
ManagedOnlineEndpoint

CustomKeys
, CustomKeysArgs

Keys Dictionary<string, string>
Keys map[string]string
keys Map<String,String>
keys {[key: string]: string}
keys Mapping[str, str]
keys Map<String>

CustomKeysResponse
, CustomKeysResponseArgs

Keys Dictionary<string, string>
Keys map[string]string
keys Map<String,String>
keys {[key: string]: string}
keys Mapping[str, str]
keys Map<String>

CustomKeysWorkspaceConnectionProperties
, CustomKeysWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.CustomKeys
Custom Keys credential object
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials CustomKeys
Custom Keys credential object
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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 CustomKeys
Custom Keys credential object
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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 CustomKeys
Custom Keys credential object
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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 CustomKeys
Custom Keys credential object
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
Custom Keys credential object
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

CustomKeysWorkspaceConnectionPropertiesResponse
, CustomKeysWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.CustomKeysResponse
Custom Keys credential object
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials CustomKeysResponse
Custom Keys credential object
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials CustomKeysResponse
Custom Keys credential object
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials CustomKeysResponse
Custom Keys credential object
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials CustomKeysResponse
Custom Keys credential object
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
Custom Keys credential object
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value

ManagedIdentityAuthTypeWorkspaceConnectionProperties
, ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionManagedIdentity
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials WorkspaceConnectionManagedIdentity
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

ManagedIdentityAuthTypeWorkspaceConnectionPropertiesResponse
, ManagedIdentityAuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionManagedIdentityResponse
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials WorkspaceConnectionManagedIdentityResponse
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials WorkspaceConnectionManagedIdentityResponse
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials WorkspaceConnectionManagedIdentityResponse
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials WorkspaceConnectionManagedIdentityResponse
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
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
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

NoneAuthTypeWorkspaceConnectionPropertiesResponse
, NoneAuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value

OAuth2AuthTypeWorkspaceConnectionProperties
, OAuth2AuthTypeWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionOAuth2
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials WorkspaceConnectionOAuth2
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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 WorkspaceConnectionOAuth2
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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 WorkspaceConnectionOAuth2
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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 WorkspaceConnectionOAuth2
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

OAuth2AuthTypeWorkspaceConnectionPropertiesResponse
, OAuth2AuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionOAuth2Response
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials WorkspaceConnectionOAuth2Response
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials WorkspaceConnectionOAuth2Response
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials WorkspaceConnectionOAuth2Response
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials WorkspaceConnectionOAuth2Response
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value

PATAuthTypeWorkspaceConnectionProperties
, PATAuthTypeWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionPersonalAccessToken
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials WorkspaceConnectionPersonalAccessToken
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

PATAuthTypeWorkspaceConnectionPropertiesResponse
, PATAuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionPersonalAccessTokenResponse
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials WorkspaceConnectionPersonalAccessTokenResponse
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials WorkspaceConnectionPersonalAccessTokenResponse
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials WorkspaceConnectionPersonalAccessTokenResponse
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials WorkspaceConnectionPersonalAccessTokenResponse
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value

SASAuthTypeWorkspaceConnectionProperties
, SASAuthTypeWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionSharedAccessSignature
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials WorkspaceConnectionSharedAccessSignature
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

SASAuthTypeWorkspaceConnectionPropertiesResponse
, SASAuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionSharedAccessSignatureResponse
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials WorkspaceConnectionSharedAccessSignatureResponse
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials WorkspaceConnectionSharedAccessSignatureResponse
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials WorkspaceConnectionSharedAccessSignatureResponse
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials WorkspaceConnectionSharedAccessSignatureResponse
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value

ServicePrincipalAuthTypeWorkspaceConnectionProperties
, ServicePrincipalAuthTypeWorkspaceConnectionPropertiesArgs

Category string | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionServicePrincipal
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials WorkspaceConnectionServicePrincipal
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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 WorkspaceConnectionServicePrincipal
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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 WorkspaceConnectionServicePrincipal
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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 WorkspaceConnectionServicePrincipal
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

ServicePrincipalAuthTypeWorkspaceConnectionPropertiesResponse
, ServicePrincipalAuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionServicePrincipalResponse
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials WorkspaceConnectionServicePrincipalResponse
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials WorkspaceConnectionServicePrincipalResponse
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials WorkspaceConnectionServicePrincipalResponse
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials WorkspaceConnectionServicePrincipalResponse
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
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 | Pulumi.AzureNative.MachineLearningServices.ConnectionCategory
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionUsernamePassword
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
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
Credentials WorkspaceConnectionUsernamePassword
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
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
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
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
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
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
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
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" | "S3" | "Snowflake" | "AzureSqlDb" | "AzureSynapseAnalytics" | "AzureMySqlDb" | "AzurePostgresDb" | "ADLSGen2" | "Redis" | "ApiKey" | "AzureOpenAI" | "AIServices" | "CognitiveSearch" | "CognitiveService" | "CustomKeys" | "AzureBlob" | "AzureOneLake" | "CosmosDb" | "CosmosDbMongoDbApi" | "AzureDataExplorer" | "AzureMariaDb" | "AzureDatabricksDeltaLake" | "AzureSqlMi" | "AzureTableStorage" | "AmazonRdsForOracle" | "AmazonRdsForSqlServer" | "AmazonRedshift" | "Db2" | "Drill" | "GoogleBigQuery" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "MariaDb" | "MicrosoftAccess" | "MySql" | "Netezza" | "Oracle" | "Phoenix" | "PostgreSql" | "Presto" | "SapOpenHub" | "SapBw" | "SapHana" | "SapTable" | "Spark" | "SqlServer" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "MongoDbV2" | "MongoDbAtlas" | "AmazonS3Compatible" | "FileServer" | "FtpServer" | "GoogleCloudStorage" | "Hdfs" | "OracleCloudStorage" | "Sftp" | "GenericHttp" | "ODataRest" | "Odbc" | "GenericRest" | "AmazonMws" | "Concur" | "Dynamics" | "DynamicsAx" | "DynamicsCrm" | "GoogleAdWords" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "OracleServiceCloud" | "PayPal" | "QuickBooks" | "Salesforce" | "SalesforceServiceCloud" | "SalesforceMarketingCloud" | "SapCloudForCustomer" | "SapEcc" | "ServiceNow" | "SharePointOnlineList" | "Shopify" | "Square" | "WebTable" | "Xero" | "Zoho" | "GenericContainerRegistry" | "Elasticsearch" | "OpenAI" | "Serp" | "BingLLMSearch" | "Serverless" | "ManagedOnlineEndpoint"
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String | "JSON"
format for the workspace connection value

UsernamePasswordAuthTypeWorkspaceConnectionPropertiesResponse
, UsernamePasswordAuthTypeWorkspaceConnectionPropertiesResponseArgs

CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials Pulumi.AzureNative.MachineLearningServices.Inputs.WorkspaceConnectionUsernamePasswordResponse
ExpiryTime string
IsSharedToAll bool
Metadata Dictionary<string, string>
Store user metadata for this connection
SharedUserList List<string>
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
CreatedByWorkspaceArmId This property is required. string
Group This property is required. string
Group based on connection category
Category string
Category of the connection
Credentials WorkspaceConnectionUsernamePasswordResponse
ExpiryTime string
IsSharedToAll bool
Metadata map[string]string
Store user metadata for this connection
SharedUserList []string
Target string
Value string
Value details of the workspace connection.
ValueFormat string
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials WorkspaceConnectionUsernamePasswordResponse
expiryTime String
isSharedToAll Boolean
metadata Map<String,String>
Store user metadata for this connection
sharedUserList List<String>
target String
value String
Value details of the workspace connection.
valueFormat String
format for the workspace connection value
createdByWorkspaceArmId This property is required. string
group This property is required. string
Group based on connection category
category string
Category of the connection
credentials WorkspaceConnectionUsernamePasswordResponse
expiryTime string
isSharedToAll boolean
metadata {[key: string]: string}
Store user metadata for this connection
sharedUserList string[]
target string
value string
Value details of the workspace connection.
valueFormat string
format for the workspace connection value
created_by_workspace_arm_id This property is required. str
group This property is required. str
Group based on connection category
category str
Category of the connection
credentials WorkspaceConnectionUsernamePasswordResponse
expiry_time str
is_shared_to_all bool
metadata Mapping[str, str]
Store user metadata for this connection
shared_user_list Sequence[str]
target str
value str
Value details of the workspace connection.
value_format str
format for the workspace connection value
createdByWorkspaceArmId This property is required. String
group This property is required. String
Group based on connection category
category String
Category of the connection
credentials Property Map
expiryTime String
isSharedToAll Boolean
metadata Map<String>
Store user metadata for this connection
sharedUserList List<String>
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

WorkspaceConnectionAccessKey
, WorkspaceConnectionAccessKeyArgs

WorkspaceConnectionAccessKeyResponse
, WorkspaceConnectionAccessKeyResponseArgs

WorkspaceConnectionAccountKey
, WorkspaceConnectionAccountKeyArgs

Key string
Key string
key String
key string
key str
key String

WorkspaceConnectionAccountKeyResponse
, WorkspaceConnectionAccountKeyResponseArgs

Key string
Key string
key String
key string
key str
key String

WorkspaceConnectionApiKey
, WorkspaceConnectionApiKeyArgs

Key string
Key string
key String
key string
key str
key String

WorkspaceConnectionApiKeyResponse
, WorkspaceConnectionApiKeyResponseArgs

Key string
Key string
key String
key string
key str
key String

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

WorkspaceConnectionOAuth2
, WorkspaceConnectionOAuth2Args

AuthUrl string
Required by Concur connection category
ClientId string
Client id in the format of UUID
ClientSecret string
DeveloperToken string
Required by GoogleAdWords connection category
Password string
RefreshToken string
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
TenantId string
Required by QuickBooks and Xero connection categories
Username string
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
AuthUrl string
Required by Concur connection category
ClientId string
Client id in the format of UUID
ClientSecret string
DeveloperToken string
Required by GoogleAdWords connection category
Password string
RefreshToken string
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
TenantId string
Required by QuickBooks and Xero connection categories
Username string
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
authUrl String
Required by Concur connection category
clientId String
Client id in the format of UUID
clientSecret String
developerToken String
Required by GoogleAdWords connection category
password String
refreshToken String
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
tenantId String
Required by QuickBooks and Xero connection categories
username String
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
authUrl string
Required by Concur connection category
clientId string
Client id in the format of UUID
clientSecret string
developerToken string
Required by GoogleAdWords connection category
password string
refreshToken string
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
tenantId string
Required by QuickBooks and Xero connection categories
username string
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
auth_url str
Required by Concur connection category
client_id str
Client id in the format of UUID
client_secret str
developer_token str
Required by GoogleAdWords connection category
password str
refresh_token str
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
tenant_id str
Required by QuickBooks and Xero connection categories
username str
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
authUrl String
Required by Concur connection category
clientId String
Client id in the format of UUID
clientSecret String
developerToken String
Required by GoogleAdWords connection category
password String
refreshToken String
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
tenantId String
Required by QuickBooks and Xero connection categories
username String
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword

WorkspaceConnectionOAuth2Response
, WorkspaceConnectionOAuth2ResponseArgs

AuthUrl string
Required by Concur connection category
ClientId string
Client id in the format of UUID
ClientSecret string
DeveloperToken string
Required by GoogleAdWords connection category
Password string
RefreshToken string
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
TenantId string
Required by QuickBooks and Xero connection categories
Username string
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
AuthUrl string
Required by Concur connection category
ClientId string
Client id in the format of UUID
ClientSecret string
DeveloperToken string
Required by GoogleAdWords connection category
Password string
RefreshToken string
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
TenantId string
Required by QuickBooks and Xero connection categories
Username string
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
authUrl String
Required by Concur connection category
clientId String
Client id in the format of UUID
clientSecret String
developerToken String
Required by GoogleAdWords connection category
password String
refreshToken String
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
tenantId String
Required by QuickBooks and Xero connection categories
username String
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
authUrl string
Required by Concur connection category
clientId string
Client id in the format of UUID
clientSecret string
developerToken string
Required by GoogleAdWords connection category
password string
refreshToken string
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
tenantId string
Required by QuickBooks and Xero connection categories
username string
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
auth_url str
Required by Concur connection category
client_id str
Client id in the format of UUID
client_secret str
developer_token str
Required by GoogleAdWords connection category
password str
refresh_token str
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
tenant_id str
Required by QuickBooks and Xero connection categories
username str
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
authUrl String
Required by Concur connection category
clientId String
Client id in the format of UUID
clientSecret String
developerToken String
Required by GoogleAdWords connection category
password String
refreshToken String
Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
tenantId String
Required by QuickBooks and Xero connection categories
username String
Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword

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

WorkspaceConnectionServicePrincipal
, WorkspaceConnectionServicePrincipalArgs

ClientId string
ClientSecret string
TenantId string
ClientId string
ClientSecret string
TenantId string
clientId String
clientSecret String
tenantId String
clientId string
clientSecret string
tenantId string
clientId String
clientSecret String
tenantId String

WorkspaceConnectionServicePrincipalResponse
, WorkspaceConnectionServicePrincipalResponseArgs

ClientId string
ClientSecret string
TenantId string
ClientId string
ClientSecret string
TenantId string
clientId String
clientSecret String
tenantId String
clientId string
clientSecret string
tenantId string
clientId String
clientSecret String
tenantId 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
SecurityToken string
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
Username string
Password string
SecurityToken string
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
Username string
password String
securityToken String
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
username String
password string
securityToken string
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
username string
password str
security_token str
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
username str
password String
securityToken String
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
username String

WorkspaceConnectionUsernamePasswordResponse
, WorkspaceConnectionUsernamePasswordResponseArgs

Password string
SecurityToken string
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
Username string
Password string
SecurityToken string
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
Username string
password String
securityToken String
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
username String
password string
securityToken string
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
username string
password str
security_token str
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
username str
password String
securityToken String
Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
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} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi