Skip to content

allAzureNativeVirtualNetworks

Retrieves all virtual networks (VNets) in the protected subscriptions. VNet enables secure communication with other VNets, the internet, and on-premise networks. For more information, see https://docs.microsoft.com/en-us/azure/virtual-network/virtual-networks-overview.

Arguments

Argument Type Description
azureSubscriptionRubrikId UUID Rubrik ID of the Azure Subscription.

Returns

[AzureNativeVirtualNetwork!]!

Sample

query {
  allAzureNativeVirtualNetworks {
    name
    resourceGroupName
  }
}
{}
{
  "data": {
    "allAzureNativeVirtualNetworks": [
      {
        "name": "example-string",
        "resourceGroupName": "example-string"
      }
    ]
  }
}