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
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2025-08-01/managedClusters.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": "ContainerServiceClient",
Expand Down Expand Up @@ -4231,6 +4231,33 @@
"enabled": {
"type": "boolean",
"description": "This feature allows user to configure network policy based on DNS (FQDN) names. It can be enabled only on cilium based clusters. If not specified, the default is false."
},
"advancedNetworkPolicies": {
"type": "string",
"enum": [
"L7",
"FQDN",
"None"
],
"x-ms-enum": {
"name": "advancedNetworkPolicies",
"modelAsString": true,
"values": [
{
"value": "L7",
"description": "Enable Layer7 network policies (FQDN, HTTP/S, Kafka). This option is a superset of the FQDN option."
},
{
"value": "FQDN",
"description": "Enable FQDN based network policies"
},
{
"value": "None",
"description": "Disable Layer 7 network policies (FQDN, HTTP/S, Kafka)"
}
]
},
"description": "Enable advanced network policies. This allows users to configure Layer 7 network policies (FQDN, HTTP, Kafka). Policies themselves must be configured via the Cilium Network Policy resources, see https://docs.cilium.io/en/latest/security/policy/index.html. This can be enabled only on cilium-based clusters. If not specified, the default value is FQDN if security.enabled is set to true."
}
}
},
Expand Down
Loading