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 @@ -3293,10 +3293,46 @@
},
"title": "The fully qualified resource ID of the Dedicated Host Group to provision virtual machines from, used only in creation scenario and not allowed to changed once set.",
"description": "This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. For more information see [Azure dedicated hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts)."
},
"networkProfile": {
"$ref": "#/definitions/AgentPoolNetworkProfile",
"description": "Network-related settings of an agent pool."
}
},
"description": "Properties for the container service agent pool profile."
},
"AgentPoolNetworkProfile": {
"type": "object",
"properties": {
"nodePublicIPTags": {
"$ref": "#/definitions/NodePublicIPTags",
"description": "IPTags of instance-level public IPs."
}
},
"description": "Network settings of an agent pool."
},
"NodePublicIPTags": {
"type": "array",
"items": {
"$ref": "#/definitions/IPTag"
},
"x-ms-identifiers": [],
"description": "The list of tags associated with the node public IP address."
},
"IPTag": {
"type": "object",
"properties": {
"ipTagType": {
"type": "string",
"description": "The IP tag type. Example: RoutingPreference."
},
"tag": {
"type": "string",
"description": "The value of the IP tag associated with the public IP. Example: Internet."
}
},
"description": "Contains the IPTag associated with the object."
},
"ManagedClusterAgentPoolProfile": {
"type": "object",
"allOf": [
Expand Down Expand Up @@ -4265,6 +4301,29 @@
"enableMultipleStandardLoadBalancers": {
"type": "boolean",
"description": "Enable multiple standard load balancers per AKS cluster or not."
},
"backendPoolType": {
"type": "string",
"x-ms-enum": {
"name": "BackendPoolType",
"modelAsString": true,
"values": [
{
"value": "NodeIPConfiguration",
"description": "The type of the managed inbound Load Balancer BackendPool. https://cloud-provider-azure.sigs.k8s.io/topics/loadbalancer/#configure-load-balancer-backend."
},
{
"value": "NodeIP",
"description": "The type of the managed inbound Load Balancer BackendPool. https://cloud-provider-azure.sigs.k8s.io/topics/loadbalancer/#configure-load-balancer-backend."
}
]
},
"enum": [
"NodeIPConfiguration",
"NodeIP"
],
"description": "The type of the managed inbound Load Balancer BackendPool.",
"default": "NodeIPConfiguration"
}
},
"description": "Profile of the managed cluster load balancer."
Expand Down