Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update CapabilityHost schema
  • Loading branch information
ZhidaLiu committed Oct 14, 2024
commit 8e0051db9632cf84fac8b79b9c942e882e14b4f6
Original file line number Diff line number Diff line change
Expand Up @@ -15010,13 +15010,21 @@
}
],
"properties": {
"customerSubnet": {
"description": "Represents a request to provision a resource.",
"type": "string",
"aiServicesConnnections": {
"description": "List of AI services connections.",
"type": "array",
"items": {
"type": "string"
},
"x-nullable": true
},
"connectionName":{
"description": "connection name.",
"capabilityHostKind": {
"description": "Kind of this capability host.",
"default": "Agents",
"$ref": "#/definitions/CapabilityHostKind"
},
"customerSubnet": {
"description": "Customer subnet info to help set up this capability host.",
"type": "string",
"x-nullable": true
},
Expand All @@ -15027,11 +15035,43 @@
"x-ms-mutability": [
"read"
]
},
"storageConnections": {
"description": "List of Storage connections.",
"type": "array",
"items": {
"type": "string"
},
"x-nullable": true
},
"vectorStoreConnections": {
"description": "List of VectorStore connections.",
"type": "array",
"items": {
"type": "string"
},
"x-nullable": true
}
},
"x-ms-client-name": "CapabilityHostProperties",
"additionalProperties": false
},
"CapabilityHostKind": {
"enum": [
"Agents"
],
"type": "string",
"x-ms-enum": {
"name": "CapabilityHostKind",
"modelAsString": true,
"values": [
{
"value": "Agents"
}
]
},
"additionalProperties": false
},
"CapabilityHostProvisioningState": {
"description": "Provisioning state of capability host.",
"enum": [
Expand Down