Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added extended location to 5 entities. #11000

Merged
Merged
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
Expand Up @@ -1187,7 +1187,7 @@
"properties": {
"id": {
"type": "string",
"description": "Signature id"
"description": "Signature id."
},
"mode": {
"$ref": "#/definitions/FirewallPolicyIntrusionDetectionStateOptions",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2102,6 +2102,10 @@
},
"LoadBalancer": {
"properties": {
"extendedLocation": {
"$ref": "./network.json#/definitions/ExtendedLocation",
"description": "The extended location of the load balancer."
},
"sku": {
"$ref": "#/definitions/LoadBalancerSku",
"description": "The load balancer SKU."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,34 @@
"name": "IPVersion",
"modelAsString": true
}
},
"ExtendedLocationType": {
"type": "string",
"description": "The supported ExtendedLocation types. Currently only EdgeZone is supported in Microsoft.Network resources.",
"enum": [
"EdgeZone"
],
"x-ms-enum": {
"name": "ExtendedLocationTypes",
"modelAsString": true
}
},
"ExtendedLocation": {
"description": "ExtendedLocation complex type.",
"properties": {
"name": {
"type": "string",
"description": "The name of the extended location."
},
"type": {
"$ref": "#/definitions/ExtendedLocationType",
"description": "The type of the extended location."
}
},
"required": [
"name",
"type"
]
}
},
"parameters": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1159,6 +1159,10 @@
},
"NetworkInterface": {
"properties": {
"extendedLocation": {
"$ref": "./network.json#/definitions/ExtendedLocation",
"description": "The extended location of the network interface."
},
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/NetworkInterfacePropertiesFormat",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,10 @@
},
"PublicIPAddress": {
"properties": {
"extendedLocation": {
"$ref": "./network.json#/definitions/ExtendedLocation",
"description": "The extended location of the public ip address."
},
"sku": {
"$ref": "#/definitions/PublicIPAddressSku",
"description": "The public IP address SKU."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,10 @@
},
"PublicIPPrefix": {
"properties": {
"extendedLocation": {
"$ref": "./network.json#/definitions/ExtendedLocation",
"description": "The extended location of the public ip address."
},
"sku": {
"$ref": "#/definitions/PublicIPPrefixSku",
"description": "The public IP prefix SKU."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1758,6 +1758,10 @@
},
"VirtualNetwork": {
"properties": {
"extendedLocation": {
"$ref": "./network.json#/definitions/ExtendedLocation",
"description": "The extended location of the virtual network."
},
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/VirtualNetworkPropertiesFormat",
Expand Down