Skip to content

Commit

Permalink
feat: add rest api spec for ipTags (#20744)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilo19 authored and FumingZhang committed Sep 20, 2022
1 parent 9c77497 commit a2cb42e
Showing 1 changed file with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3522,10 +3522,46 @@
"windowsProfile": {
"$ref": "#/definitions/AgentPoolWindowsProfile",
"description": "The Windows agent pool's specific profile."
},
"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

0 comments on commit a2cb42e

Please sign in to comment.