azure-native.cognitiveservices.AccountConnection
Explore with Pulumi AI
Connection base resource schema.
Uses Azure REST API version 2025-04-01-preview.
Example Usage
CreateAccountConnection
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var accountConnection = new AzureNative.CognitiveServices.AccountConnection("accountConnection", new()
{
AccountName = "account-1",
ConnectionName = "connection-1",
Properties = new AzureNative.CognitiveServices.Inputs.NoneAuthTypeConnectionPropertiesArgs
{
AuthType = "None",
Category = AzureNative.CognitiveServices.ConnectionCategory.ContainerRegistry,
ExpiryTime = "2024-03-15T14:30:00Z",
Target = "[tartget url]",
},
ResourceGroupName = "resourceGroup-1",
});
});
package main
import (
cognitiveservices "github.com/pulumi/pulumi-azure-native-sdk/cognitiveservices/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cognitiveservices.NewAccountConnection(ctx, "accountConnection", &cognitiveservices.AccountConnectionArgs{
AccountName: pulumi.String("account-1"),
ConnectionName: pulumi.String("connection-1"),
Properties: &cognitiveservices.NoneAuthTypeConnectionPropertiesArgs{
AuthType: pulumi.String("None"),
Category: pulumi.String(cognitiveservices.ConnectionCategoryContainerRegistry),
ExpiryTime: pulumi.String("2024-03-15T14:30:00Z"),
Target: pulumi.String("[tartget url]"),
},
ResourceGroupName: pulumi.String("resourceGroup-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.cognitiveservices.AccountConnection;
import com.pulumi.azurenative.cognitiveservices.AccountConnectionArgs;
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 accountConnection = new AccountConnection("accountConnection", AccountConnectionArgs.builder()
.accountName("account-1")
.connectionName("connection-1")
.properties(NoneAuthTypeConnectionPropertiesArgs.builder()
.authType("None")
.category("ContainerRegistry")
.expiryTime("2024-03-15T14:30:00Z")
.target("[tartget url]")
.build())
.resourceGroupName("resourceGroup-1")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const accountConnection = new azure_native.cognitiveservices.AccountConnection("accountConnection", {
accountName: "account-1",
connectionName: "connection-1",
properties: {
authType: "None",
category: azure_native.cognitiveservices.ConnectionCategory.ContainerRegistry,
expiryTime: "2024-03-15T14:30:00Z",
target: "[tartget url]",
},
resourceGroupName: "resourceGroup-1",
});
import pulumi
import pulumi_azure_native as azure_native
account_connection = azure_native.cognitiveservices.AccountConnection("accountConnection",
account_name="account-1",
connection_name="connection-1",
properties={
"auth_type": "None",
"category": azure_native.cognitiveservices.ConnectionCategory.CONTAINER_REGISTRY,
"expiry_time": "2024-03-15T14:30:00Z",
"target": "[tartget url]",
},
resource_group_name="resourceGroup-1")
resources:
accountConnection:
type: azure-native:cognitiveservices:AccountConnection
properties:
accountName: account-1
connectionName: connection-1
properties:
authType: None
category: ContainerRegistry
expiryTime: 2024-03-15T14:30:00Z
target: '[tartget url]'
resourceGroupName: resourceGroup-1
Create AccountConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AccountConnection(name: string, args: AccountConnectionArgs, opts?: CustomResourceOptions);
@overload
def AccountConnection(resource_name: str,
args: AccountConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AccountConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
properties: Optional[Union[AADAuthTypeConnectionPropertiesArgs, AccessKeyAuthTypeConnectionPropertiesArgs, AccountKeyAuthTypeConnectionPropertiesArgs, ApiKeyAuthConnectionPropertiesArgs, CustomKeysConnectionPropertiesArgs, ManagedIdentityAuthTypeConnectionPropertiesArgs, NoneAuthTypeConnectionPropertiesArgs, OAuth2AuthTypeConnectionPropertiesArgs, PATAuthTypeConnectionPropertiesArgs, SASAuthTypeConnectionPropertiesArgs, ServicePrincipalAuthTypeConnectionPropertiesArgs, UsernamePasswordAuthTypeConnectionPropertiesArgs]] = None,
resource_group_name: Optional[str] = None,
connection_name: Optional[str] = None)
func NewAccountConnection(ctx *Context, name string, args AccountConnectionArgs, opts ...ResourceOption) (*AccountConnection, error)
public AccountConnection(string name, AccountConnectionArgs args, CustomResourceOptions? opts = null)
public AccountConnection(String name, AccountConnectionArgs args)
public AccountConnection(String name, AccountConnectionArgs args, CustomResourceOptions options)
type: azure-native:cognitiveservices:AccountConnection
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 AccountConnectionArgs
- 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 AccountConnectionArgs
- 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 AccountConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountConnectionArgs
- 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 accountConnectionResource = new AzureNative.CognitiveServices.AccountConnection("accountConnectionResource", new()
{
AccountName = "string",
Properties = new AzureNative.CognitiveServices.Inputs.AADAuthTypeConnectionPropertiesArgs
{
AuthType = "AAD",
Category = "string",
Error = "string",
ExpiryTime = "string",
IsSharedToAll = false,
Metadata =
{
{ "string", "string" },
},
PeRequirement = "string",
PeStatus = "string",
SharedUserList = new[]
{
"string",
},
Target = "string",
UseWorkspaceManagedIdentity = false,
},
ResourceGroupName = "string",
ConnectionName = "string",
});
example, err := cognitiveservices.NewAccountConnection(ctx, "accountConnectionResource", &cognitiveservices.AccountConnectionArgs{
AccountName: pulumi.String("string"),
Properties: &cognitiveservices.AADAuthTypeConnectionPropertiesArgs{
AuthType: pulumi.String("AAD"),
Category: pulumi.String("string"),
Error: pulumi.String("string"),
ExpiryTime: pulumi.String("string"),
IsSharedToAll: pulumi.Bool(false),
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
PeRequirement: pulumi.String("string"),
PeStatus: pulumi.String("string"),
SharedUserList: pulumi.StringArray{
pulumi.String("string"),
},
Target: pulumi.String("string"),
UseWorkspaceManagedIdentity: pulumi.Bool(false),
},
ResourceGroupName: pulumi.String("string"),
ConnectionName: pulumi.String("string"),
})
var accountConnectionResource = new AccountConnection("accountConnectionResource", AccountConnectionArgs.builder()
.accountName("string")
.properties(AADAuthTypeConnectionPropertiesArgs.builder()
.authType("AAD")
.category("string")
.error("string")
.expiryTime("string")
.isSharedToAll(false)
.metadata(Map.of("string", "string"))
.peRequirement("string")
.peStatus("string")
.sharedUserList("string")
.target("string")
.useWorkspaceManagedIdentity(false)
.build())
.resourceGroupName("string")
.connectionName("string")
.build());
account_connection_resource = azure_native.cognitiveservices.AccountConnection("accountConnectionResource",
account_name="string",
properties={
"auth_type": "AAD",
"category": "string",
"error": "string",
"expiry_time": "string",
"is_shared_to_all": False,
"metadata": {
"string": "string",
},
"pe_requirement": "string",
"pe_status": "string",
"shared_user_list": ["string"],
"target": "string",
"use_workspace_managed_identity": False,
},
resource_group_name="string",
connection_name="string")
const accountConnectionResource = new azure_native.cognitiveservices.AccountConnection("accountConnectionResource", {
accountName: "string",
properties: {
authType: "AAD",
category: "string",
error: "string",
expiryTime: "string",
isSharedToAll: false,
metadata: {
string: "string",
},
peRequirement: "string",
peStatus: "string",
sharedUserList: ["string"],
target: "string",
useWorkspaceManagedIdentity: false,
},
resourceGroupName: "string",
connectionName: "string",
});
type: azure-native:cognitiveservices:AccountConnection
properties:
accountName: string
connectionName: string
properties:
authType: AAD
category: string
error: string
expiryTime: string
isSharedToAll: false
metadata:
string: string
peRequirement: string
peStatus: string
sharedUserList:
- string
target: string
useWorkspaceManagedIdentity: false
resourceGroupName: string
AccountConnection 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 AccountConnection resource accepts the following input properties:
- Account
Name string - The name of Cognitive Services account.
- Properties
Pulumi.
Azure | Pulumi.Native. Cognitive Services. Inputs. AADAuth Type Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. Access Key Auth Type Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. Account Key Auth Type Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. Api Key Auth Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. Custom Keys Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. Managed Identity Auth Type Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. None Auth Type Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. OAuth2Auth Type Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. PATAuth Type Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. SASAuth Type Connection Properties Azure | Pulumi.Native. Cognitive Services. Inputs. Service Principal Auth Type Connection Properties Azure Native. Cognitive Services. Inputs. Username Password Auth Type Connection Properties - Connection property base schema.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connection
Name string - Friendly name of the connection
- Account
Name string - The name of Cognitive Services account.
- Properties
AADAuth
Type | AccessConnection Properties Args Key | AccountAuth Type Connection Properties Args Key | ApiAuth Type Connection Properties Args Key | CustomAuth Connection Properties Args Keys | ManagedConnection Properties Args Identity | NoneAuth Type Connection Properties Args Auth | OAuth2AuthType Connection Properties Args Type | PATAuthConnection Properties Args Type | SASAuthConnection Properties Args Type | ServiceConnection Properties Args Principal | UsernameAuth Type Connection Properties Args Password Auth Type Connection Properties Args - Connection property base schema.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connection
Name string - Friendly name of the connection
- account
Name String - The name of Cognitive Services account.
- properties
AADAuth
Type | AccessConnection Properties Key | AccountAuth Type Connection Properties Key | ApiAuth Type Connection Properties Key | CustomAuth Connection Properties Keys | ManagedConnection Properties Identity | NoneAuth Type Connection Properties Auth | OAuth2AuthType Connection Properties Type | PATAuthConnection Properties Type | SASAuthConnection Properties Type | ServiceConnection Properties Principal | UsernameAuth Type Connection Properties Password Auth Type Connection Properties - Connection property base schema.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connection
Name String - Friendly name of the connection
- account
Name string - The name of Cognitive Services account.
- properties
AADAuth
Type | AccessConnection Properties Key | AccountAuth Type Connection Properties Key | ApiAuth Type Connection Properties Key | CustomAuth Connection Properties Keys | ManagedConnection Properties Identity | NoneAuth Type Connection Properties Auth | OAuth2AuthType Connection Properties Type | PATAuthConnection Properties Type | SASAuthConnection Properties Type | ServiceConnection Properties Principal | UsernameAuth Type Connection Properties Password Auth Type Connection Properties - Connection property base schema.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- connection
Name string - Friendly name of the connection
- account_
name str - The name of Cognitive Services account.
- properties
AADAuth
Type | AccessConnection Properties Args Key | AccountAuth Type Connection Properties Args Key | ApiAuth Type Connection Properties Args Key | CustomAuth Connection Properties Args Keys | ManagedConnection Properties Args Identity | NoneAuth Type Connection Properties Args Auth | OAuth2AuthType Connection Properties Args Type | PATAuthConnection Properties Args Type | SASAuthConnection Properties Args Type | ServiceConnection Properties Args Principal | UsernameAuth Type Connection Properties Args Password Auth Type Connection Properties Args - Connection property base schema.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- connection_
name str - Friendly name of the connection
- account
Name String - The name of Cognitive Services account.
- 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
- Connection property base schema.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connection
Name String - Friendly name of the connection
Outputs
All input properties are implicitly available as output properties. Additionally, the AccountConnection 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
- 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
- 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
- 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
- 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
- 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
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AADAuthTypeConnectionProperties, AADAuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
AADAuthTypeConnectionPropertiesResponse, AADAuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
AccessKeyAuthTypeConnectionProperties, AccessKeyAuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Access Key - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Connection
Access Key - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Connection
Access Key - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Connection
Access Key - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Connection
Access Key - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
AccessKeyAuthTypeConnectionPropertiesResponse, AccessKeyAuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Access Key Response - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Connection
Access Key Response - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Connection
Access Key Response - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Connection
Access Key Response - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Connection
Access Key Response - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
AccountKeyAuthTypeConnectionProperties, AccountKeyAuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Account Key - Account key object for connection credential.
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Connection
Account Key - Account key object for connection credential.
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Connection
Account Key - Account key object for connection credential.
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Connection
Account Key - Account key object for connection credential.
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Connection
Account Key - Account key object for connection credential.
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- Account key object for connection credential.
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
AccountKeyAuthTypeConnectionPropertiesResponse, AccountKeyAuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Account Key Response - Account key object for connection credential.
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Connection
Account Key Response - Account key object for connection credential.
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Connection
Account Key Response - Account key object for connection credential.
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Connection
Account Key Response - Account key object for connection credential.
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Connection
Account Key Response - Account key object for connection credential.
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- Account key object for connection credential.
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
ApiKeyAuthConnectionProperties, ApiKeyAuthConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Api Key - Api key object for connection credential.
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Connection
Api Key - Api key object for connection credential.
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Connection
Api Key - Api key object for connection credential.
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Connection
Api Key - Api key object for connection credential.
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Connection
Api Key - Api key object for connection credential.
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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 connection credential.
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
ApiKeyAuthConnectionPropertiesResponse, ApiKeyAuthConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Api Key Response - Api key object for connection credential.
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Connection
Api Key Response - Api key object for connection credential.
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Connection
Api Key Response - Api key object for connection credential.
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Connection
Api Key Response - Api key object for connection credential.
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Connection
Api Key Response - Api key object for connection credential.
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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 connection credential.
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
ConnectionAccessKey, ConnectionAccessKeyArgs
- 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
ConnectionAccessKeyResponse, ConnectionAccessKeyResponseArgs
- 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
ConnectionAccountKey, ConnectionAccountKeyArgs
- Key string
- Key string
- key String
- key string
- key str
- key String
ConnectionAccountKeyResponse, ConnectionAccountKeyResponseArgs
- Key string
- Key string
- key String
- key string
- key str
- key String
ConnectionApiKey, ConnectionApiKeyArgs
- Key string
- Key string
- key String
- key string
- key str
- key String
ConnectionApiKeyResponse, ConnectionApiKeyResponseArgs
- Key string
- Key string
- key String
- key string
- key str
- key String
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
ConnectionManagedIdentity, ConnectionManagedIdentityArgs
- 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
ConnectionManagedIdentityResponse, ConnectionManagedIdentityResponseArgs
- 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
ConnectionOAuth2, ConnectionOAuth2Args
- 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
ConnectionOAuth2Response, ConnectionOAuth2ResponseArgs
- 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
ConnectionPersonalAccessToken, ConnectionPersonalAccessTokenArgs
- Pat string
- Pat string
- pat String
- pat string
- pat str
- pat String
ConnectionPersonalAccessTokenResponse, ConnectionPersonalAccessTokenResponseArgs
- Pat string
- Pat string
- pat String
- pat string
- pat str
- pat String
ConnectionServicePrincipal, ConnectionServicePrincipalArgs
- 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
ConnectionServicePrincipalResponse, ConnectionServicePrincipalResponseArgs
- 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
ConnectionSharedAccessSignature, ConnectionSharedAccessSignatureArgs
- Sas string
- Sas string
- sas String
- sas string
- sas str
- sas String
ConnectionSharedAccessSignatureResponse, ConnectionSharedAccessSignatureResponseArgs
- Sas string
- Sas string
- sas String
- sas string
- sas str
- sas String
ConnectionUsernamePassword, ConnectionUsernamePasswordArgs
- 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
ConnectionUsernamePasswordResponse, ConnectionUsernamePasswordResponseArgs
- 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
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>
CustomKeysConnectionProperties, CustomKeysConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Custom Keys - Custom Keys credential object
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Custom
Keys - Custom Keys credential object
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Custom
Keys - Custom Keys credential object
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Custom
Keys - Custom Keys credential object
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Custom
Keys - Custom Keys credential object
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
CustomKeysConnectionPropertiesResponse, CustomKeysConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Custom Keys Response - Custom Keys credential object
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- 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
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- 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
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- 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
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
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>
ManagedIdentityAuthTypeConnectionProperties, ManagedIdentityAuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Managed Identity - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Connection
Managed Identity - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Connection
Managed Identity - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Connection
Managed Identity - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Connection
Managed Identity - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
ManagedIdentityAuthTypeConnectionPropertiesResponse, ManagedIdentityAuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Managed Identity Response - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Connection
Managed Identity Response - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Connection
Managed Identity Response - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Connection
Managed Identity Response - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Connection
Managed Identity Response - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
ManagedPERequirement, ManagedPERequirementArgs
- Required
- Required
- Not
Required - NotRequired
- Not
Applicable - NotApplicable
- Managed
PERequirement Required - Required
- Managed
PERequirement Not Required - NotRequired
- Managed
PERequirement Not Applicable - NotApplicable
- Required
- Required
- Not
Required - NotRequired
- Not
Applicable - NotApplicable
- Required
- Required
- Not
Required - NotRequired
- Not
Applicable - NotApplicable
- REQUIRED
- Required
- NOT_REQUIRED
- NotRequired
- NOT_APPLICABLE
- NotApplicable
- "Required"
- Required
- "Not
Required" - NotRequired
- "Not
Applicable" - NotApplicable
ManagedPEStatus, ManagedPEStatusArgs
- Inactive
- Inactive
- Active
- Active
- Not
Applicable - NotApplicable
- Managed
PEStatus Inactive - Inactive
- Managed
PEStatus Active - Active
- Managed
PEStatus Not Applicable - NotApplicable
- Inactive
- Inactive
- Active
- Active
- Not
Applicable - NotApplicable
- Inactive
- Inactive
- Active
- Active
- Not
Applicable - NotApplicable
- INACTIVE
- Inactive
- ACTIVE
- Active
- NOT_APPLICABLE
- NotApplicable
- "Inactive"
- Inactive
- "Active"
- Active
- "Not
Applicable" - NotApplicable
NoneAuthTypeConnectionProperties, NoneAuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
NoneAuthTypeConnectionPropertiesResponse, NoneAuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
OAuth2AuthTypeConnectionProperties, OAuth2AuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Connection
OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Connection
OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Connection
OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Connection
OAuth2 - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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.
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
OAuth2AuthTypeConnectionPropertiesResponse, OAuth2AuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Connection
OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Connection
OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Connection
OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Connection
OAuth2Response - ClientId and ClientSecret are required. Other properties are optional depending on each OAuth2 provider's implementation.
- error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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.
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
PATAuthTypeConnectionProperties, PATAuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Personal Access Token - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Connection
Personal Access Token - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Connection
Personal Access Token - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Connection
Personal Access Token - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Connection
Personal Access Token - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
PATAuthTypeConnectionPropertiesResponse, PATAuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Personal Access Token Response - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Connection
Personal Access Token Response - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Connection
Personal Access Token Response - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Connection
Personal Access Token Response - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Connection
Personal Access Token Response - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
SASAuthTypeConnectionProperties, SASAuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Shared Access Signature - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Connection
Shared Access Signature - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Connection
Shared Access Signature - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Connection
Shared Access Signature - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Connection
Shared Access Signature - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
SASAuthTypeConnectionPropertiesResponse, SASAuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Shared Access Signature Response - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Connection
Shared Access Signature Response - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Connection
Shared Access Signature Response - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Connection
Shared Access Signature Response - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Connection
Shared Access Signature Response - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
ServicePrincipalAuthTypeConnectionProperties, ServicePrincipalAuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Service Principal - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Connection
Service Principal - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Connection
Service Principal - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Connection
Service Principal - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Connection
Service Principal - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
ServicePrincipalAuthTypeConnectionPropertiesResponse, ServicePrincipalAuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Service Principal Response - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Connection
Service Principal Response - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Connection
Service Principal Response - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Connection
Service Principal Response - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Connection
Service Principal Response - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
UsernamePasswordAuthTypeConnectionProperties, UsernamePasswordAuthTypeConnectionPropertiesArgs
- Category
string | Pulumi.
Azure Native. Cognitive Services. Connection Category - Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Username Password - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string | Pulumi.Azure Native. Cognitive Services. Managed PERequirement - Pe
Status string | Pulumi.Azure Native. Cognitive Services. Managed PEStatus - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Category
string | Connection
Category - Category of the connection
- Credentials
Connection
Username Password - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string | ManagedPERequirement - Pe
Status string | ManagedPEStatus - []string
- Target string
- Use
Workspace boolManaged Identity
- category
String | Connection
Category - Category of the connection
- credentials
Connection
Username Password - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String | ManagedPERequirement - pe
Status String | ManagedPEStatus - List<String>
- target String
- use
Workspace BooleanManaged Identity
- category
string | Connection
Category - Category of the connection
- credentials
Connection
Username Password - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string | ManagedPERequirement - pe
Status string | ManagedPEStatus - string[]
- target string
- use
Workspace booleanManaged Identity
- category
str | Connection
Category - Category of the connection
- credentials
Connection
Username Password - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str | ManagedPERequirement - pe_
status str | ManagedPEStatus - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- 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
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String | "Required" | "NotRequired" | "Not Applicable" - pe
Status String | "Inactive" | "Active" | "NotApplicable" - List<String>
- target String
- use
Workspace BooleanManaged Identity
UsernamePasswordAuthTypeConnectionPropertiesResponse, UsernamePasswordAuthTypeConnectionPropertiesResponseArgs
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Pulumi.
Azure Native. Cognitive Services. Inputs. Connection Username Password Response - Error string
- Expiry
Time string - bool
- Metadata Dictionary<string, string>
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - List<string>
- Target string
- Use
Workspace boolManaged Identity
- Created
By stringWorkspace Arm Id - Group string
- Group based on connection category
- Category string
- Category of the connection
- Credentials
Connection
Username Password Response - Error string
- Expiry
Time string - bool
- Metadata map[string]string
- Store user metadata for this connection
- Pe
Requirement string - Pe
Status string - []string
- Target string
- Use
Workspace boolManaged Identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials
Connection
Username Password Response - error String
- expiry
Time String - Boolean
- metadata Map<String,String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
- created
By stringWorkspace Arm Id - group string
- Group based on connection category
- category string
- Category of the connection
- credentials
Connection
Username Password Response - error string
- expiry
Time string - boolean
- metadata {[key: string]: string}
- Store user metadata for this connection
- pe
Requirement string - pe
Status string - string[]
- target string
- use
Workspace booleanManaged Identity
- created_
by_ strworkspace_ arm_ id - group str
- Group based on connection category
- category str
- Category of the connection
- credentials
Connection
Username Password Response - error str
- expiry_
time str - bool
- metadata Mapping[str, str]
- Store user metadata for this connection
- pe_
requirement str - pe_
status str - Sequence[str]
- target str
- use_
workspace_ boolmanaged_ identity
- created
By StringWorkspace Arm Id - group String
- Group based on connection category
- category String
- Category of the connection
- credentials Property Map
- error String
- expiry
Time String - Boolean
- metadata Map<String>
- Store user metadata for this connection
- pe
Requirement String - pe
Status String - List<String>
- target String
- use
Workspace BooleanManaged Identity
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cognitiveservices:AccountConnection connection-1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{accountName}/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