Skip to content
Open
Show file tree
Hide file tree
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
@@ -1,4 +1,4 @@
{

Check failure on line 1 in specification/app/resource-manager/Microsoft.App/preview/2025-10-02-preview/ManagedEnvironments.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

OpenAPI was not generated from TypeSpec, and spec appears to be new
"swagger": "2.0",
"info": {
"version": "2025-10-02-preview",
Expand Down Expand Up @@ -1577,22 +1577,6 @@
"description": "Name of the workload profile used by the ingress component. Required.",
"type": "string"
},
"scale": {
"description": "Scaling configuration for the ingress component. Required.",
"type": "object",
"properties": {
"minReplicas": {
"description": "Minimum number of ingress replicas. Must be at least 2. Required.",
"type": "integer",
"format": "int32"
},
"maxReplicas": {
"description": "Maximum number of ingress replicas. Must be greater than or equal to minReplicas.",
"type": "integer",
"format": "int32"
}
}
},
"terminationGracePeriodSeconds": {
"description": "Time (in seconds) to allow active connections to complete on termination. Must be between 0 and 3600. Defaults to 480 seconds.",
"type": "integer",
Expand All @@ -1604,7 +1588,7 @@
"format": "int32"
},
"requestIdleTimeout": {
"description": "Duration (in minutes) before idle requests are timed out. Must be at least 1 minute. Defaults to 4 minutes.",
"description": "Duration (in minutes) before idle requests are timed out. Must be between 4 and 30 inclusive. Defaults to 4 minutes.",
"type": "integer",
"format": "int32"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,6 @@
},
"ingressConfiguration": {
"workloadProfileName": "My-CO-01",
"scale": {
"minReplicas": 2,
"maxReplicas": 4
},
"terminationGracePeriodSeconds": 3600,
"headerCountLimit": 30,
"requestIdleTimeout": 5
Expand Down Expand Up @@ -242,10 +238,6 @@
},
"ingressConfiguration": {
"workloadProfileName": "My-CO-01",
"scale": {
"minReplicas": 2,
"maxReplicas": 4
},
"terminationGracePeriodSeconds": 3600,
"headerCountLimit": 30,
"requestIdleTimeout": 5
Expand Down Expand Up @@ -369,10 +361,6 @@
},
"ingressConfiguration": {
"workloadProfileName": "My-CO-01",
"scale": {
"minReplicas": 2,
"maxReplicas": 4
},
"terminationGracePeriodSeconds": 3600,
"headerCountLimit": 30,
"requestIdleTimeout": 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,6 @@
},
"ingressConfiguration": {
"workloadProfileName": "My-CO-01",
"scale": {
"minReplicas": 2,
"maxReplicas": 4
},
"terminationGracePeriodSeconds": 3600,
"headerCountLimit": 30,
"requestIdleTimeout": 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,6 @@
],
"ingressConfiguration": {
"workloadProfileName": "My-GP-01",
"scale": {
"maxReplicas": 2,
"minReplicas": 2
},
"terminationGracePeriodSeconds": 600,
"headerCountLimit": 50,
"requestIdleTimeout": null
Expand Down
Loading