Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The accounts/projects/capabilityHosts resource type can be deployed with operations that target:
- 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.CognitiveServices/accounts/projects/capabilityHosts resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.CognitiveServices/accounts/projects/capabilityHosts@2025-06-01' = {
parent: resourceSymbolicName
name: 'string'
properties: {
aiServicesConnections: [
'string'
]
capabilityHostKind: 'string'
customerSubnet: 'string'
description: 'string'
storageConnections: [
'string'
]
tags: {
{customized property}: 'string'
}
threadStorageConnections: [
'string'
]
vectorStoreConnections: [
'string'
]
}
}
Property Values
Microsoft.CognitiveServices/accounts/projects/capabilityHosts
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9][a-zA-Z0-9\-_]{0,254}$ (required) |
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: accounts/projects |
properties | [Required] Additional attributes of the entity. | CapabilityHostProperties (required) |
CapabilityHostProperties
Name | Description | Value |
---|---|---|
aiServicesConnections | List of AI services connections. | string[] |
capabilityHostKind | Kind of this capability host. | 'Agents' |
customerSubnet | Customer subnet info to help set up this capability host. | string |
description | The asset description text. | string |
storageConnections | List of connection names from those available in the account or project to be used as a storage resource. | string[] |
tags | Tag dictionary. Tags can be added, removed, and updated. | ResourceBaseTags |
threadStorageConnections | List of connection names from those available in the account or project to be used for Thread storage. | string[] |
vectorStoreConnections | List of connection names from those available in the account or project to be used for vector database (e.g. CosmosDB). | string[] |
ResourceBaseTags
Name | Description | Value |
---|
ARM template resource definition
The accounts/projects/capabilityHosts resource type can be deployed with operations that target:
- 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.CognitiveServices/accounts/projects/capabilityHosts resource, add the following JSON to your template.
{
"type": "Microsoft.CognitiveServices/accounts/projects/capabilityHosts",
"apiVersion": "2025-06-01",
"name": "string",
"properties": {
"aiServicesConnections": [ "string" ],
"capabilityHostKind": "string",
"customerSubnet": "string",
"description": "string",
"storageConnections": [ "string" ],
"tags": {
"{customized property}": "string"
},
"threadStorageConnections": [ "string" ],
"vectorStoreConnections": [ "string" ]
}
}
Property Values
Microsoft.CognitiveServices/accounts/projects/capabilityHosts
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2025-06-01' |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9][a-zA-Z0-9\-_]{0,254}$ (required) |
properties | [Required] Additional attributes of the entity. | CapabilityHostProperties (required) |
type | The resource type | 'Microsoft.CognitiveServices/accounts/projects/capabilityHosts' |
CapabilityHostProperties
Name | Description | Value |
---|---|---|
aiServicesConnections | List of AI services connections. | string[] |
capabilityHostKind | Kind of this capability host. | 'Agents' |
customerSubnet | Customer subnet info to help set up this capability host. | string |
description | The asset description text. | string |
storageConnections | List of connection names from those available in the account or project to be used as a storage resource. | string[] |
tags | Tag dictionary. Tags can be added, removed, and updated. | ResourceBaseTags |
threadStorageConnections | List of connection names from those available in the account or project to be used for Thread storage. | string[] |
vectorStoreConnections | List of connection names from those available in the account or project to be used for vector database (e.g. CosmosDB). | string[] |
ResourceBaseTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The accounts/projects/capabilityHosts resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.CognitiveServices/accounts/projects/capabilityHosts resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.CognitiveServices/accounts/projects/capabilityHosts@2025-06-01"
name = "string"
parent_id = "string"
body = {
properties = {
aiServicesConnections = [
"string"
]
capabilityHostKind = "string"
customerSubnet = "string"
description = "string"
storageConnections = [
"string"
]
tags = {
{customized property} = "string"
}
threadStorageConnections = [
"string"
]
vectorStoreConnections = [
"string"
]
}
}
}
Property Values
Microsoft.CognitiveServices/accounts/projects/capabilityHosts
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9][a-zA-Z0-9\-_]{0,254}$ (required) |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: accounts/projects |
properties | [Required] Additional attributes of the entity. | CapabilityHostProperties (required) |
type | The resource type | "Microsoft.CognitiveServices/accounts/projects/capabilityHosts@2025-06-01" |
CapabilityHostProperties
Name | Description | Value |
---|---|---|
aiServicesConnections | List of AI services connections. | string[] |
capabilityHostKind | Kind of this capability host. | 'Agents' |
customerSubnet | Customer subnet info to help set up this capability host. | string |
description | The asset description text. | string |
storageConnections | List of connection names from those available in the account or project to be used as a storage resource. | string[] |
tags | Tag dictionary. Tags can be added, removed, and updated. | ResourceBaseTags |
threadStorageConnections | List of connection names from those available in the account or project to be used for Thread storage. | string[] |
vectorStoreConnections | List of connection names from those available in the account or project to be used for vector database (e.g. CosmosDB). | string[] |
ResourceBaseTags
Name | Description | Value |
---|