Retrieves a list of Azure virtual network list for the sepcified account
GET/v1/clouds/azure/regions/:region/subscriptions/:subscriptionId/networks
Retrieves a list of Azure virtual network list for the sepcified account
Request
Path Parameters
Region for which Azure virtual networks are requested
Uid for which Azure virtual networks are requested
Query Parameters
Uid for the specific Azure cloud account
Resource group for which Azure virtual networks are requested
Header Parameters
Scope the request to the specified project uid
Responses
- 200
(empty)
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
virtualNetworkList
object[]
Location of the virtual network
The ID of the resource group
Location of the virtual network
Name of the virtual network
subnets
object[]
List of subnets associated with Azure VPC
CidrBlock is the CIDR block to be used when the provider creates a managed Vnet.
Network Security Group(NSG) to be attached to subnet. NSG for a control plane subnet, should allow inbound to port 6443, as port 6443 is used by kubeadm to bootstrap the control planes
Type of the virtual network
{
"virtualNetworkList": [
{
"addressSpaces": [
"string"
],
"id": "string",
"location": "string",
"name": "string",
"subnets": [
{
"cidrBlock": "string",
"name": "string",
"securityGroupName": "string"
}
],
"type": "string"
}
]
}