Skip to content

Commit

Permalink
[AML]Update capabilityHost schema (#30957)
Browse files Browse the repository at this point in the history
* Update capabilityHost

* Update CapabilityHost schema

* Fix typo
  • Loading branch information
ZhidaLiu authored Oct 16, 2024
1 parent d54bbb5 commit 8299b5f
Showing 1 changed file with 46 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15010,8 +15010,21 @@
}
],
"properties": {
"aiServicesConnections": {
"description": "List of AI services connections.",
"type": "array",
"items": {
"type": "string"
},
"x-nullable": true
},
"capabilityHostKind": {
"description": "Kind of this capability host.",
"default": "Agents",
"$ref": "#/definitions/CapabilityHostKind"
},
"customerSubnet": {
"description": "Represents a request to provision a resource.",
"description": "Customer subnet info to help set up this capability host.",
"type": "string",
"x-nullable": true
},
Expand All @@ -15022,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

0 comments on commit 8299b5f

Please sign in to comment.