Microsoft.CustomerInsights hubs 2017-04-26
Bicep resource definition
The hubs resource type can be deployed to:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.CustomerInsights/hubs resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.CustomerInsights/hubs@2017-04-26' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
properties: {
hubBillingInfo: {
maxUnits: int
minUnits: int
skuName: 'string'
}
tenantFeatures: int
}
}
Property values
hubs
Name | Description | Value |
---|---|---|
name | The resource name | string (required) Character limit: 1-64 Valid characters: Alphanumerics. Start with letter. |
location | Resource location. | string |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
properties | Properties of hub. | HubPropertiesFormat |
HubPropertiesFormat
Name | Description | Value |
---|---|---|
hubBillingInfo | Billing settings of the hub. | HubBillingInfoFormat |
tenantFeatures | The bit flags for enabled hub features. Bit 0 is set to 1 indicates graph is enabled, or disabled if set to 0. Bit 1 is set to 1 indicates the hub is disabled, or enabled if set to 0. | int |
HubBillingInfoFormat
Name | Description | Value |
---|---|---|
maxUnits | The maximum number of units can be used. One unit is 10,000 Profiles and 100,000 Interactions. | int |
minUnits | The minimum number of units will be billed. One unit is 10,000 Profiles and 100,000 Interactions. | int |
skuName | The sku name. | string |
ARM template resource definition
The hubs resource type can be deployed to:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.CustomerInsights/hubs resource, add the following JSON to your template.
{
"type": "Microsoft.CustomerInsights/hubs",
"apiVersion": "2017-04-26",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"hubBillingInfo": {
"maxUnits": "int",
"minUnits": "int",
"skuName": "string"
},
"tenantFeatures": "int"
}
}
Property values
hubs
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.CustomerInsights/hubs' |
apiVersion | The resource api version | '2017-04-26' |
name | The resource name | string (required) Character limit: 1-64 Valid characters: Alphanumerics. Start with letter. |
location | Resource location. | string |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
properties | Properties of hub. | HubPropertiesFormat |
HubPropertiesFormat
Name | Description | Value |
---|---|---|
hubBillingInfo | Billing settings of the hub. | HubBillingInfoFormat |
tenantFeatures | The bit flags for enabled hub features. Bit 0 is set to 1 indicates graph is enabled, or disabled if set to 0. Bit 1 is set to 1 indicates the hub is disabled, or enabled if set to 0. | int |
HubBillingInfoFormat
Name | Description | Value |
---|---|---|
maxUnits | The maximum number of units can be used. One unit is 10,000 Profiles and 100,000 Interactions. | int |
minUnits | The minimum number of units will be billed. One unit is 10,000 Profiles and 100,000 Interactions. | int |
skuName | The sku name. | string |
Terraform (AzAPI provider) resource definition
The hubs 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 resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.CustomerInsights/hubs@2017-04-26"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
hubBillingInfo = {
maxUnits = int
minUnits = int
skuName = "string"
}
tenantFeatures = int
}
})
}
Property values
hubs
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.CustomerInsights/hubs@2017-04-26" |
name | The resource name | string (required) Character limit: 1-64 Valid characters: Alphanumerics. Start with letter. |
location | Resource location. | string |
parent_id | To deploy to a resource group, use the ID of that resource group. | string (required) |
tags | Resource tags. | Dictionary of tag names and values. |
properties | Properties of hub. | HubPropertiesFormat |
HubPropertiesFormat
Name | Description | Value |
---|---|---|
hubBillingInfo | Billing settings of the hub. | HubBillingInfoFormat |
tenantFeatures | The bit flags for enabled hub features. Bit 0 is set to 1 indicates graph is enabled, or disabled if set to 0. Bit 1 is set to 1 indicates the hub is disabled, or enabled if set to 0. | int |
HubBillingInfoFormat
Name | Description | Value |
---|---|---|
maxUnits | The maximum number of units can be used. One unit is 10,000 Profiles and 100,000 Interactions. | int |
minUnits | The minimum number of units will be billed. One unit is 10,000 Profiles and 100,000 Interactions. | int |
skuName | The sku name. | string |