Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,14 @@
"description": "The internal identifier.",
"readOnly": true
},
"capabilities": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/SkuCapability"
},
"description": "Gets the capabilities of the cognitive services account. Each item indicates the capability of a specific feature. The values are read-only and for reference only."
},
"customSubDomainName": {
"type": "string",
"description": "Optional subdomain name used for token-based authentication."
Expand Down Expand Up @@ -1313,6 +1321,19 @@
}
}
},
"SkuCapability": {
"properties": {
"name": {
"type": "string",
"description": "The name of the SkuCapability."
},
"value": {
"type": "string",
"description": "The value of the SkuCapability."
}
},
"description": "SkuCapability indicates the capability of a certain feature."
},
"CheckDomainAvailabilityParameter": {
"description": "Check Domain availability parameter.",
"properties": {
Expand Down