Microsoft.CustomerInsights hubs/connectors

Bicep resource definition

The hubs/connectors resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.CustomerInsights/hubs/connectors resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.CustomerInsights/hubs/connectors@2017-04-26' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    connectorName: 'string'
    connectorProperties: {}
    connectorType: 'string'
    description: 'string'
    displayName: 'string'
    isInternal: bool
  }
}

Property values

hubs/connectors

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)

Character limit: 1-128

Valid characters:
Alphanumerics and underscores.

Start with letter.
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: hubs
properties Properties of connector. Connector

Connector

Name Description Value
connectorName Name of the connector. string
connectorProperties The connector properties. object (required)
connectorType Type of connector. 'AzureBlob'
'CRM'
'ExchangeOnline'
'None'
'Outbound'
'Salesforce' (required)
description Description of the connector. string
displayName Display name of the connector. string
isInternal If this is an internal connector. bool

ARM template resource definition

The hubs/connectors resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.CustomerInsights/hubs/connectors resource, add the following JSON to your template.

{
  "type": "Microsoft.CustomerInsights/hubs/connectors",
  "apiVersion": "2017-04-26",
  "name": "string",
  "properties": {
    "connectorName": "string",
    "connectorProperties": {},
    "connectorType": "string",
    "description": "string",
    "displayName": "string",
    "isInternal": "bool"
  }
}

Property values

hubs/connectors

Name Description Value
type The resource type 'Microsoft.CustomerInsights/hubs/connectors'
apiVersion The resource api version '2017-04-26'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)

Character limit: 1-128

Valid characters:
Alphanumerics and underscores.

Start with letter.
properties Properties of connector. Connector

Connector

Name Description Value
connectorName Name of the connector. string
connectorProperties The connector properties. object (required)
connectorType Type of connector. 'AzureBlob'
'CRM'
'ExchangeOnline'
'None'
'Outbound'
'Salesforce' (required)
description Description of the connector. string
displayName Display name of the connector. string
isInternal If this is an internal connector. bool

Terraform (AzAPI provider) resource definition

The hubs/connectors resource type can be deployed to:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.CustomerInsights/hubs/connectors resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.CustomerInsights/hubs/connectors@2017-04-26"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      connectorName = "string"
      connectorProperties = {}
      connectorType = "string"
      description = "string"
      displayName = "string"
      isInternal = bool
    }
  })
}

Property values

hubs/connectors

Name Description Value
type The resource type "Microsoft.CustomerInsights/hubs/connectors@2017-04-26"
name The resource name string (required)

Character limit: 1-128

Valid characters:
Alphanumerics and underscores.

Start with letter.
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: hubs
properties Properties of connector. Connector

Connector

Name Description Value
connectorName Name of the connector. string
connectorProperties The connector properties. object (required)
connectorType Type of connector. "AzureBlob"
"CRM"
"ExchangeOnline"
"None"
"Outbound"
"Salesforce" (required)
description Description of the connector. string
displayName Display name of the connector. string
isInternal If this is an internal connector. bool