azure-native.machinelearningservices.WorkspaceConnection
Explore with Pulumi AI
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",
});
});
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
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.WorkspaceConnection;
import com.pulumi.azurenative.machinelearningservices.WorkspaceConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var workspaceConnection = new WorkspaceConnection("workspaceConnection", WorkspaceConnectionArgs.builder()
.connectionName("connection-1")
.properties(NoneAuthTypeWorkspaceConnectionPropertiesArgs.builder()
.authType("None")
.category("ContainerRegistry")
.target("www.facebook.com")
.build())
.resourceGroupName("resourceGroup-1")
.workspaceName("workspace-1")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workspaceConnection = new azure_native.machinelearningservices.WorkspaceConnection("workspaceConnection", {
connectionName: "connection-1",
properties: {
authType: "None",
category: azure_native.machinelearningservices.ConnectionCategory.ContainerRegistry,
target: "www.facebook.com",
},
resourceGroupName: "resourceGroup-1",
workspaceName: "workspace-1",
});
import pulumi
import pulumi_azure_native as azure_native
workspace_connection = azure_native.machinelearningservices.WorkspaceConnection("workspaceConnection",
connection_name="connection-1",
properties={
"auth_type": "None",
"category": azure_native.machinelearningservices.ConnectionCategory.CONTAINER_REGISTRY,
"target": "www.facebook.com",
},
resource_group_name="resourceGroup-1",
workspace_name="workspace-1")
resources:
workspaceConnection:
type: azure-native:machinelearningservices:WorkspaceConnection
properties:
connectionName: connection-1
properties:
authType: None
category: ContainerRegistry
target: www.facebook.com
resourceGroupName: resourceGroup-1
workspaceName: workspace-1
Create WorkspaceConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspaceConnection(name: string, args: WorkspaceConnectionArgs, opts?: CustomResourceOptions);
@overload
def WorkspaceConnection(resource_name: str,
args: WorkspaceConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkspaceConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
properties: Optional[Union[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 string
- The unique name of the resource.
- args WorkspaceConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkspaceConnectionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkspaceConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceConnectionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var workspaceConnectionResource = new AzureNative.MachineLearningServices.WorkspaceConnection("workspaceConnectionResource", new()
{
Properties = new AzureNative.MachineLearningServices.Inputs.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",
});
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"),
})
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());
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")
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",
});
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
WorkspaceConnection Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WorkspaceConnection resource accepts the following input properties:
- Properties
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. AADAuth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. Access Key Auth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. Account Key Auth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. Api Key Auth Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. Custom Keys Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. Managed Identity Auth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. None Auth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. OAuth2Auth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. PATAuth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. SASAuth Type Workspace Connection Properties Azure | Pulumi.Native. Machine Learning Services. Inputs. Service Principal Auth Type Workspace Connection Properties Azure Native. Machine Learning Services. Inputs. Username Password Auth Type Workspace Connection Properties - Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Connection
Name string - Friendly name of the workspace connection
- Properties
AADAuth
Type | AccessWorkspace Connection Properties Args Key | AccountAuth Type Workspace Connection Properties Args Key | ApiAuth Type Workspace Connection Properties Args Key | CustomAuth Workspace Connection Properties Args Keys | ManagedWorkspace Connection Properties Args Identity | NoneAuth Type Workspace Connection Properties Args Auth | OAuth2AuthType Workspace Connection Properties Args Type | PATAuthWorkspace Connection Properties Args Type | SASAuthWorkspace Connection Properties Args Type | ServiceWorkspace Connection Properties Args Principal | UsernameAuth Type Workspace Connection Properties Args Password Auth Type Workspace Connection Properties Args - Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Connection
Name string - Friendly name of the workspace connection
- properties
AADAuth
Type | AccessWorkspace Connection Properties Key | AccountAuth Type Workspace Connection Properties Key | ApiAuth Type Workspace Connection Properties Key | CustomAuth Workspace Connection Properties Keys | ManagedWorkspace Connection Properties Identity | NoneAuth Type Workspace Connection Properties Auth | OAuth2AuthType Workspace Connection Properties Type | PATAuthWorkspace Connection Properties Type | SASAuthWorkspace Connection Properties Type | ServiceWorkspace Connection Properties Principal | UsernameAuth Type Workspace Connection Properties Password Auth Type Workspace Connection Properties - resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Name of Azure Machine Learning workspace.
- connection
Name String - Friendly name of the workspace connection
- properties
AADAuth
Type | AccessWorkspace Connection Properties Key | AccountAuth Type Workspace Connection Properties Key | ApiAuth Type Workspace Connection Properties Key | CustomAuth Workspace Connection Properties Keys | ManagedWorkspace Connection Properties Identity | NoneAuth Type Workspace Connection Properties Auth | OAuth2AuthType Workspace Connection Properties Type | PATAuthWorkspace Connection Properties Type | SASAuthWorkspace Connection Properties Type | ServiceWorkspace Connection Properties Principal | UsernameAuth Type Workspace Connection Properties Password Auth Type Workspace Connection Properties - resource
Group stringName - The name of the resource group. The name is case insensitive.
- workspace
Name string - Name of Azure Machine Learning workspace.
- connection
Name string - Friendly name of the workspace connection
- properties
AADAuth
Type | AccessWorkspace Connection Properties Args Key | AccountAuth Type Workspace Connection Properties Args Key | ApiAuth Type Workspace Connection Properties Args Key | CustomAuth Workspace Connection Properties Args Keys | ManagedWorkspace Connection Properties Args Identity | NoneAuth Type Workspace Connection Properties Args Auth | OAuth2AuthType Workspace Connection Properties Args Type | PATAuthWorkspace Connection Properties Args Type | SASAuthWorkspace Connection Properties Args Type | ServiceWorkspace Connection Properties Args Principal | UsernameAuth Type Workspace Connection Properties Args Password Auth Type Workspace Connection Properties Args - resource_
group_ strname - The name of the resource group. The name is case insensitive.
- workspace_
name str - Name of Azure Machine Learning workspace.
- connection_
name str - Friendly name of the workspace connection
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Name of Azure Machine Learning workspace.
- connection
Name String - Friendly name of the workspace connection
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkspaceConnection resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AADAuthTypeWorkspaceConnectionProperties, AADAuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
AADAuthTypeWorkspaceConnectionPropertiesResponse, AADAuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
AccessKeyAuthTypeWorkspaceConnectionProperties, AccessKeyAuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Access Key - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Workspace
Connection Access Key - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Workspace
Connection Access Key - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Workspace
Connection Access Key - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Workspace
Connection Access Key - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
AccessKeyAuthTypeWorkspaceConnectionPropertiesResponse, AccessKeyAuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Access Key Response - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Workspace
Connection Access Key Response - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Workspace
Connection Access Key Response - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Workspace
Connection Access Key Response - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Workspace
Connection Access Key Response - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
AccountKeyAuthTypeWorkspaceConnectionProperties, AccountKeyAuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Account Key - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Workspace
Connection Account Key - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Workspace
Connection Account Key - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Workspace
Connection Account Key - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Workspace
Connection Account Key - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
AccountKeyAuthTypeWorkspaceConnectionPropertiesResponse, AccountKeyAuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Account Key Response - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Workspace
Connection Account Key Response - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Workspace
Connection Account Key Response - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Workspace
Connection Account Key Response - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Workspace
Connection Account Key Response - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
ApiKeyAuthWorkspaceConnectionProperties, ApiKeyAuthWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Api Key - Api key object for workspace connection credential.
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Workspace
Connection Api Key - Api key object for workspace connection credential.
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Workspace
Connection Api Key - Api key object for workspace connection credential.
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Workspace
Connection Api Key - Api key object for workspace connection credential.
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Workspace
Connection Api Key - Api key object for workspace connection credential.
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- Api key object for workspace connection credential.
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
ApiKeyAuthWorkspaceConnectionPropertiesResponse, ApiKeyAuthWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Api Key Response - Api key object for workspace connection credential.
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Workspace
Connection Api Key Response - Api key object for workspace connection credential.
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Workspace
Connection Api Key Response - Api key object for workspace connection credential.
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Workspace
Connection Api Key Response - Api key object for workspace connection credential.
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Workspace
Connection Api Key Response - Api key object for workspace connection credential.
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- Api key object for workspace connection credential.
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
ConnectionCategory, ConnectionCategoryArgs
- 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
- ADLSGen2
- ADLSGen2
- Redis
- Redis
- Api
Key - ApiKey
- Azure
Open AI - AzureOpenAI
- AIServices
- 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
S3Compatible - AmazonS3Compatible
- File
Server - FileServer
- Ftp
Server - FtpServer
- Google
Cloud Storage - GoogleCloudStorage
- Hdfs
- Hdfs
- Oracle
Cloud Storage - OracleCloudStorage
- Sftp
- Sftp
- Generic
Http - GenericHttp
- OData
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
LLMSearch - BingLLMSearch
- Serverless
- Serverless
- Managed
Online Endpoint - ManagedOnlineEndpoint
- Connection
Category Python Feed - PythonFeed
- Connection
Category Container Registry - ContainerRegistry
- Connection
Category Git - Git
- Connection
Category S3 - S3
- Connection
Category Snowflake - Snowflake
- Connection
Category Azure Sql Db - AzureSqlDb
- Connection
Category Azure Synapse Analytics - AzureSynapseAnalytics
- Connection
Category Azure My Sql Db - AzureMySqlDb
- Connection
Category Azure Postgres Db - AzurePostgresDb
- Connection
Category ADLSGen2 - ADLSGen2
- Connection
Category Redis - Redis
- Connection
Category Api Key - ApiKey
- Connection
Category Azure Open AI - AzureOpenAI
- Connection
Category AIServices - AIServices
- Connection
Category Cognitive Search - CognitiveSearch
- Connection
Category Cognitive Service - CognitiveService
- Connection
Category Custom Keys - CustomKeys
- Connection
Category Azure Blob - AzureBlob
- Connection
Category Azure One Lake - AzureOneLake
- Connection
Category Cosmos Db - CosmosDb
- Connection
Category Cosmos Db Mongo Db Api - CosmosDbMongoDbApi
- Connection
Category Azure Data Explorer - AzureDataExplorer
- Connection
Category Azure Maria Db - AzureMariaDb
- Connection
Category Azure Databricks Delta Lake - AzureDatabricksDeltaLake
- Connection
Category Azure Sql Mi - AzureSqlMi
- Connection
Category Azure Table Storage - AzureTableStorage
- Connection
Category Amazon Rds For Oracle - AmazonRdsForOracle
- Connection
Category Amazon Rds For Sql Server - AmazonRdsForSqlServer
- Connection
Category Amazon Redshift - AmazonRedshift
- Connection
Category Db2 - Db2
- Connection
Category Drill - Drill
- Connection
Category Google Big Query - GoogleBigQuery
- Connection
Category Greenplum - Greenplum
- Connection
Category Hbase - Hbase
- Connection
Category Hive - Hive
- Connection
Category Impala - Impala
- Connection
Category Informix - Informix
- Connection
Category Maria Db - MariaDb
- Connection
Category Microsoft Access - MicrosoftAccess
- Connection
Category My Sql - MySql
- Connection
Category Netezza - Netezza
- Connection
Category Oracle - Oracle
- Connection
Category Phoenix - Phoenix
- Connection
Category Postgre Sql - PostgreSql
- Connection
Category Presto - Presto
- Connection
Category Sap Open Hub - SapOpenHub
- Connection
Category Sap Bw - SapBw
- Connection
Category Sap Hana - SapHana
- Connection
Category Sap Table - SapTable
- Connection
Category Spark - Spark
- Connection
Category Sql Server - SqlServer
- Connection
Category Sybase - Sybase
- Connection
Category Teradata - Teradata
- Connection
Category Vertica - Vertica
- Connection
Category Pinecone - Pinecone
- Connection
Category Cassandra - Cassandra
- Connection
Category Couchbase - Couchbase
- Connection
Category Mongo Db V2 - MongoDbV2
- Connection
Category Mongo Db Atlas - MongoDbAtlas
- Connection
Category Amazon S3Compatible - AmazonS3Compatible
- Connection
Category File Server - FileServer
- Connection
Category Ftp Server - FtpServer
- Connection
Category Google Cloud Storage - GoogleCloudStorage
- Connection
Category Hdfs - Hdfs
- Connection
Category Oracle Cloud Storage - OracleCloudStorage
- Connection
Category Sftp - Sftp
- Connection
Category Generic Http - GenericHttp
- Connection
Category OData Rest - ODataRest
- Connection
Category Odbc - Odbc
- Connection
Category Generic Rest - GenericRest
- Connection
Category Amazon Mws - AmazonMws
- Connection
Category Concur - Concur
- Connection
Category Dynamics - Dynamics
- Connection
Category Dynamics Ax - DynamicsAx
- Connection
Category Dynamics Crm - DynamicsCrm
- Connection
Category Google Ad Words - GoogleAdWords
- Connection
Category Hubspot - Hubspot
- Connection
Category Jira - Jira
- Connection
Category Magento - Magento
- Connection
Category Marketo - Marketo
- Connection
Category Office365 - Office365
- Connection
Category Eloqua - Eloqua
- Connection
Category Responsys - Responsys
- Connection
Category Oracle Service Cloud - OracleServiceCloud
- Connection
Category Pay Pal - PayPal
- Connection
Category Quick Books - QuickBooks
- Connection
Category Salesforce - Salesforce
- Connection
Category Salesforce Service Cloud - SalesforceServiceCloud
- Connection
Category Salesforce Marketing Cloud - SalesforceMarketingCloud
- Connection
Category Sap Cloud For Customer - SapCloudForCustomer
- Connection
Category Sap Ecc - SapEcc
- Connection
Category Service Now - ServiceNow
- Connection
Category Share Point Online List - SharePointOnlineList
- Connection
Category Shopify - Shopify
- Connection
Category Square - Square
- Connection
Category Web Table - WebTable
- Connection
Category Xero - Xero
- Connection
Category Zoho - Zoho
- Connection
Category Generic Container Registry - GenericContainerRegistry
- Connection
Category Elasticsearch - Elasticsearch
- Connection
Category Open AI - OpenAI
- Connection
Category Serp - Serp
- Connection
Category Bing LLMSearch - BingLLMSearch
- Connection
Category Serverless - Serverless
- Connection
Category Managed Online Endpoint - 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
- ADLSGen2
- ADLSGen2
- Redis
- Redis
- Api
Key - ApiKey
- Azure
Open AI - AzureOpenAI
- AIServices
- 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
S3Compatible - AmazonS3Compatible
- File
Server - FileServer
- Ftp
Server - FtpServer
- Google
Cloud Storage - GoogleCloudStorage
- Hdfs
- Hdfs
- Oracle
Cloud Storage - OracleCloudStorage
- Sftp
- Sftp
- Generic
Http - GenericHttp
- OData
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
LLMSearch - BingLLMSearch
- Serverless
- Serverless
- Managed
Online Endpoint - 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
- ADLSGen2
- ADLSGen2
- Redis
- Redis
- Api
Key - ApiKey
- Azure
Open AI - AzureOpenAI
- AIServices
- 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
S3Compatible - AmazonS3Compatible
- File
Server - FileServer
- Ftp
Server - FtpServer
- Google
Cloud Storage - GoogleCloudStorage
- Hdfs
- Hdfs
- Oracle
Cloud Storage - OracleCloudStorage
- Sftp
- Sftp
- Generic
Http - GenericHttp
- OData
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
LLMSearch - BingLLMSearch
- Serverless
- Serverless
- Managed
Online Endpoint - 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
- "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
- "ADLSGen2"
- ADLSGen2
- "Redis"
- Redis
- "Api
Key" - ApiKey
- "Azure
Open AI" - AzureOpenAI
- "AIServices"
- 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
S3Compatible" - AmazonS3Compatible
- "File
Server" - FileServer
- "Ftp
Server" - FtpServer
- "Google
Cloud Storage" - GoogleCloudStorage
- "Hdfs"
- Hdfs
- "Oracle
Cloud Storage" - OracleCloudStorage
- "Sftp"
- Sftp
- "Generic
Http" - GenericHttp
- "OData
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
LLMSearch" - BingLLMSearch
- "Serverless"
- Serverless
- "Managed
Online Endpoint" - 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.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Custom Keys - Custom Keys credential object
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Custom
Keys - Custom Keys credential object
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Custom
Keys - Custom Keys credential object
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Custom
Keys - Custom Keys credential object
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Custom
Keys - Custom Keys credential object
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- Custom Keys credential object
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
CustomKeysWorkspaceConnectionPropertiesResponse, CustomKeysWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Custom Keys Response - Custom Keys credential object
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Custom
Keys Response - Custom Keys credential object
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Custom
Keys Response - Custom Keys credential object
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Custom
Keys Response - Custom Keys credential object
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Custom
Keys Response - Custom Keys credential object
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- Custom Keys credential object
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
ManagedIdentityAuthTypeWorkspaceConnectionProperties, ManagedIdentityAuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Managed Identity - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Workspace
Connection Managed Identity - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Workspace
Connection Managed Identity - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Workspace
Connection Managed Identity - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Workspace
Connection Managed Identity - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
ManagedIdentityAuthTypeWorkspaceConnectionPropertiesResponse, ManagedIdentityAuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Managed Identity Response - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Workspace
Connection Managed Identity Response - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Workspace
Connection Managed Identity Response - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Workspace
Connection Managed Identity Response - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Workspace
Connection Managed Identity Response - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
NoneAuthTypeWorkspaceConnectionProperties, NoneAuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
NoneAuthTypeWorkspaceConnectionPropertiesResponse, NoneAuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
OAuth2AuthTypeWorkspaceConnectionProperties, OAuth2AuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Workspace
Connection OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Workspace
Connection OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Workspace
Connection OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Workspace
Connection OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
OAuth2AuthTypeWorkspaceConnectionPropertiesResponse, OAuth2AuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Workspace
Connection OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Workspace
Connection OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Workspace
Connection OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Workspace
Connection OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group 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.
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
PATAuthTypeWorkspaceConnectionProperties, PATAuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Personal Access Token - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Workspace
Connection Personal Access Token - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Workspace
Connection Personal Access Token - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Workspace
Connection Personal Access Token - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Workspace
Connection Personal Access Token - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
PATAuthTypeWorkspaceConnectionPropertiesResponse, PATAuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Personal Access Token Response - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Workspace
Connection Personal Access Token Response - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Workspace
Connection Personal Access Token Response - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Workspace
Connection Personal Access Token Response - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Workspace
Connection Personal Access Token Response - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
SASAuthTypeWorkspaceConnectionProperties, SASAuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Shared Access Signature - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Workspace
Connection Shared Access Signature - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Workspace
Connection Shared Access Signature - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Workspace
Connection Shared Access Signature - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Workspace
Connection Shared Access Signature - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
SASAuthTypeWorkspaceConnectionPropertiesResponse, SASAuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Shared Access Signature Response - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Workspace
Connection Shared Access Signature Response - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Workspace
Connection Shared Access Signature Response - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Workspace
Connection Shared Access Signature Response - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Workspace
Connection Shared Access Signature Response - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
ServicePrincipalAuthTypeWorkspaceConnectionProperties, ServicePrincipalAuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Service Principal - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Workspace
Connection Service Principal - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Workspace
Connection Service Principal - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Workspace
Connection Service Principal - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Workspace
Connection Service Principal - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
ServicePrincipalAuthTypeWorkspaceConnectionPropertiesResponse, ServicePrincipalAuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Service Principal Response - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Workspace
Connection Service Principal Response - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Workspace
Connection Service Principal Response - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Workspace
Connection Service Principal Response - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Workspace
Connection Service Principal Response - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UsernamePasswordAuthTypeWorkspaceConnectionProperties, UsernamePasswordAuthTypeWorkspaceConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Username Password - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | Pulumi.Azure Native. Machine Learning Services. Value Format - format for the workspace connection value
- Category
string | Connection
Category - Category of the connection
- Credentials
Workspace
Connection Username Password - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string | ValueFormat - format for the workspace connection value
- category
String | Connection
Category - Category of the connection
- credentials
Workspace
Connection Username Password - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | ValueFormat - format for the workspace connection value
- category
string | Connection
Category - Category of the connection
- credentials
Workspace
Connection Username Password - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string | ValueFormat - format for the workspace connection value
- category
str | Connection
Category - Category of the connection
- credentials
Workspace
Connection Username Password - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str | ValueFormat - format for the workspace connection value
- category
String | "Python
Feed" | "Container Registry" | "Git" | "S3" | "Snowflake" | "Azure Sql Db" | "Azure Synapse Analytics" | "Azure My Sql Db" | "Azure Postgres Db" | "ADLSGen2" | "Redis" | "Api Key" | "Azure Open AI" | "AIServices" | "Cognitive Search" | "Cognitive Service" | "Custom Keys" | "Azure Blob" | "Azure One Lake" | "Cosmos Db" | "Cosmos Db Mongo Db Api" | "Azure Data Explorer" | "Azure Maria Db" | "Azure Databricks Delta Lake" | "Azure Sql Mi" | "Azure Table Storage" | "Amazon Rds For Oracle" | "Amazon Rds For Sql Server" | "Amazon Redshift" | "Db2" | "Drill" | "Google Big Query" | "Greenplum" | "Hbase" | "Hive" | "Impala" | "Informix" | "Maria Db" | "Microsoft Access" | "My Sql" | "Netezza" | "Oracle" | "Phoenix" | "Postgre Sql" | "Presto" | "Sap Open Hub" | "Sap Bw" | "Sap Hana" | "Sap Table" | "Spark" | "Sql Server" | "Sybase" | "Teradata" | "Vertica" | "Pinecone" | "Cassandra" | "Couchbase" | "Mongo Db V2" | "Mongo Db Atlas" | "Amazon S3Compatible" | "File Server" | "Ftp Server" | "Google Cloud Storage" | "Hdfs" | "Oracle Cloud Storage" | "Sftp" | "Generic Http" | "OData Rest" | "Odbc" | "Generic Rest" | "Amazon Mws" | "Concur" | "Dynamics" | "Dynamics Ax" | "Dynamics Crm" | "Google Ad Words" | "Hubspot" | "Jira" | "Magento" | "Marketo" | "Office365" | "Eloqua" | "Responsys" | "Oracle Service Cloud" | "Pay Pal" | "Quick Books" | "Salesforce" | "Salesforce Service Cloud" | "Salesforce Marketing Cloud" | "Sap Cloud For Customer" | "Sap Ecc" | "Service Now" | "Share Point Online List" | "Shopify" | "Square" | "Web Table" | "Xero" | "Zoho" | "Generic Container Registry" | "Elasticsearch" | "Open AI" | "Serp" | "Bing LLMSearch" | "Serverless" | "Managed Online Endpoint" - Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String | "JSON" - format for the workspace connection value
UsernamePasswordAuthTypeWorkspaceConnectionPropertiesResponse, UsernamePasswordAuthTypeWorkspaceConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Machine Learning Services. Inputs. Workspace Connection Username Password Response - Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- List<string>
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Workspace
Connection Username Password Response - Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- []string
- Target string
- Value string
- Value details of the workspace connection.
- Value
Format string - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Workspace
Connection Username Password Response - expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Workspace
Connection Username Password Response - expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- string[]
- target string
- value string
- Value details of the workspace connection.
- value
Format string - format for the workspace connection value
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Workspace
Connection Username Password Response - expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- Sequence[str]
- target str
- value str
- Value details of the workspace connection.
- value_
format str - format for the workspace connection value
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- List<String>
- target String
- value String
- Value details of the workspace connection.
- value
Format String - format for the workspace connection value
ValueFormat, ValueFormatArgs
- JSON
- JSON
- Value
Format JSON - JSON
- JSON
- JSON
- JSON
- JSON
- JSON
- JSON
- "JSON"
- JSON
WorkspaceConnectionAccessKey, WorkspaceConnectionAccessKeyArgs
- Access
Key stringId - Secret
Access stringKey
- Access
Key stringId - Secret
Access stringKey
- access
Key StringId - secret
Access StringKey
- access
Key stringId - secret
Access stringKey
- access_
key_ strid - secret_
access_ strkey
- access
Key StringId - secret
Access StringKey
WorkspaceConnectionAccessKeyResponse, WorkspaceConnectionAccessKeyResponseArgs
- Access
Key stringId - Secret
Access stringKey
- Access
Key stringId - Secret
Access stringKey
- access
Key StringId - secret
Access StringKey
- access
Key stringId - secret
Access stringKey
- access_
key_ strid - secret_
access_ strkey
- access
Key StringId - secret
Access StringKey
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
- Client
Id string - Resource
Id string
- Client
Id string - Resource
Id string
- client
Id String - resource
Id String
- client
Id string - resource
Id string
- client_
id str - resource_
id str
- client
Id String - resource
Id String
WorkspaceConnectionManagedIdentityResponse, WorkspaceConnectionManagedIdentityResponseArgs
- Client
Id string - Resource
Id string
- Client
Id string - Resource
Id string
- client
Id String - resource
Id String
- client
Id string - resource
Id string
- client_
id str - resource_
id str
- client
Id String - resource
Id String
WorkspaceConnectionOAuth2, WorkspaceConnectionOAuth2Args
- Auth
Url string - Required by Concur connection category
- Client
Id string - Client id in the format of UUID
- Client
Secret string - Developer
Token string - Required by GoogleAdWords connection category
- Password string
- Refresh
Token string - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- Tenant
Id string - Required by QuickBooks and Xero connection categories
- Username string
- Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
- Auth
Url string - Required by Concur connection category
- Client
Id string - Client id in the format of UUID
- Client
Secret string - Developer
Token string - Required by GoogleAdWords connection category
- Password string
- Refresh
Token string - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- Tenant
Id string - Required by QuickBooks and Xero connection categories
- Username string
- Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
- auth
Url String - Required by Concur connection category
- client
Id String - Client id in the format of UUID
- client
Secret String - developer
Token String - Required by GoogleAdWords connection category
- password String
- refresh
Token String - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- tenant
Id String - Required by QuickBooks and Xero connection categories
- username String
- Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
- auth
Url string - Required by Concur connection category
- client
Id string - Client id in the format of UUID
- client
Secret string - developer
Token string - Required by GoogleAdWords connection category
- password string
- refresh
Token string - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- tenant
Id 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
- auth
Url String - Required by Concur connection category
- client
Id String - Client id in the format of UUID
- client
Secret String - developer
Token String - Required by GoogleAdWords connection category
- password String
- refresh
Token String - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- tenant
Id String - Required by QuickBooks and Xero connection categories
- username String
- Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
WorkspaceConnectionOAuth2Response, WorkspaceConnectionOAuth2ResponseArgs
- Auth
Url string - Required by Concur connection category
- Client
Id string - Client id in the format of UUID
- Client
Secret string - Developer
Token string - Required by GoogleAdWords connection category
- Password string
- Refresh
Token string - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- Tenant
Id string - Required by QuickBooks and Xero connection categories
- Username string
- Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
- Auth
Url string - Required by Concur connection category
- Client
Id string - Client id in the format of UUID
- Client
Secret string - Developer
Token string - Required by GoogleAdWords connection category
- Password string
- Refresh
Token string - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- Tenant
Id string - Required by QuickBooks and Xero connection categories
- Username string
- Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
- auth
Url String - Required by Concur connection category
- client
Id String - Client id in the format of UUID
- client
Secret String - developer
Token String - Required by GoogleAdWords connection category
- password String
- refresh
Token String - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- tenant
Id String - Required by QuickBooks and Xero connection categories
- username String
- Concur, ServiceNow auth server AccessToken grant type is 'Password' which requires UsernamePassword
- auth
Url string - Required by Concur connection category
- client
Id string - Client id in the format of UUID
- client
Secret string - developer
Token string - Required by GoogleAdWords connection category
- password string
- refresh
Token string - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- tenant
Id 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
- auth
Url String - Required by Concur connection category
- client
Id String - Client id in the format of UUID
- client
Secret String - developer
Token String - Required by GoogleAdWords connection category
- password String
- refresh
Token String - Required by GoogleBigQuery, GoogleAdWords, Hubspot, QuickBooks, Square, Xero, Zoho where user needs to get RefreshToken offline
- tenant
Id 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
- Client
Id string - Client
Secret string - Tenant
Id string
- Client
Id string - Client
Secret string - Tenant
Id string
- client
Id String - client
Secret String - tenant
Id String
- client
Id string - client
Secret string - tenant
Id string
- client_
id str - client_
secret str - tenant_
id str
- client
Id String - client
Secret String - tenant
Id String
WorkspaceConnectionServicePrincipalResponse, WorkspaceConnectionServicePrincipalResponseArgs
- Client
Id string - Client
Secret string - Tenant
Id string
- Client
Id string - Client
Secret string - Tenant
Id string
- client
Id String - client
Secret String - tenant
Id String
- client
Id string - client
Secret string - tenant
Id string
- client_
id str - client_
secret str - tenant_
id str
- client
Id String - client
Secret String - tenant
Id 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
- Security
Token string - Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
- Username string
- Password string
- Security
Token string - Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
- Username string
- password String
- security
Token String - Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
- username String
- password string
- security
Token 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
- security
Token String - Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
- username String
WorkspaceConnectionUsernamePasswordResponse, WorkspaceConnectionUsernamePasswordResponseArgs
- Password string
- Security
Token string - Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
- Username string
- Password string
- Security
Token string - Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
- Username string
- password String
- security
Token String - Optional, required by connections like SalesForce for extra security in addition to UsernamePassword
- username String
- password string
- security
Token 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
- security
Token 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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0