Skip to content
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/cognitiveservices/resource-manager/Microsoft.CognitiveServices/preview/2025-04-01-preview/cognitiveservices.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Your service description will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"title": "CognitiveServicesManagementClient",
Expand Down Expand Up @@ -5222,7 +5222,10 @@
"$ref": "#/definitions/RaiMonitorConfig"
},
"networkInjections": {
"$ref": "#/definitions/NetworkInjections"
"type": "array",
"items": {
"$ref": "#/definitions/NetworkInjection"
}
},
"allowProjectManagement": {
"type": "boolean",
Expand Down Expand Up @@ -8810,7 +8813,7 @@
},
"additionalProperties": false
},
"NetworkInjections": {
"NetworkInjection": {
"description": "Specifies in AI Foundry where virtual network injection occurs to secure scenarios like Agents entirely within the user's private network, eliminating public internet exposure while maintaining control over network configurations and resources.",
"type": "object",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/cognitiveservices/resource-manager/Microsoft.CognitiveServices/stable/2025-06-01/cognitiveservices.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Your service description will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"title": "CognitiveServicesManagementClient",
Expand Down Expand Up @@ -5219,7 +5219,10 @@
"$ref": "#/definitions/RaiMonitorConfig"
},
"networkInjections": {
"$ref": "#/definitions/NetworkInjections"
"type": "array",
"items": {
"$ref": "#/definitions/NetworkInjection"
}
},
"allowProjectManagement": {
"type": "boolean",
Expand Down Expand Up @@ -8813,7 +8816,7 @@
},
"additionalProperties": false
},
"NetworkInjections": {
"NetworkInjection": {
"description": "Specifies in AI Foundry where virtual network injection occurs to secure scenarios like Agents entirely within the user's private network, eliminating public internet exposure while maintaining control over network configurations and resources.",
"type": "object",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
suppressions:
azure-sdk-for-go:
- package: sdk/resourcemanager/cognitiveservices/armcognitiveservices
breaking-changes:
- Type of `AccountProperties.NetworkInjections` has been changed from `*NetworkInjections` to `[]*NetworkInjection`
- Struct `NetworkInjections` has been removed
Loading