1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. hybridcontainerservice
  6. VirtualNetworkRetrieve
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.25.0
published on Wednesday, Aug 5, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.25.0
published on Wednesday, Aug 5, 2026 by Pulumi

    The Virtual Network resource definition.

    Uses Azure REST API version 2024-01-01.

    Other available API versions: 2023-11-15-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native hybridcontainerservice [ApiVersion]. See the version guide for details.

    Example Usage

    PutVirtualNetwork

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var virtualNetworkRetrieve = new AzureNative.HybridContainerService.VirtualNetworkRetrieve("virtualNetworkRetrieve", new()
        {
            ExtendedLocation = new AzureNative.HybridContainerService.Inputs.VirtualNetworkExtendedLocationArgs
            {
                Name = "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
                Type = AzureNative.HybridContainerService.ExtendedLocationTypes.CustomLocation,
            },
            Location = "westus",
            Properties = new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesArgs
            {
                DnsServers = new[]
                {
                    "192.168.0.1",
                },
                Gateway = "192.168.0.1",
                InfraVnetProfile = new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesInfraVnetProfileArgs
                {
                    Hci = new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesHciArgs
                    {
                        MocGroup = "target-group",
                        MocLocation = "MocLocation",
                        MocVnetName = "vnet1",
                    },
                },
                IpAddressPrefix = "192.168.0.0/16",
                VipPool = new[]
                {
                    new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesVipPoolArgs
                    {
                        EndIP = "192.168.0.50",
                        StartIP = "192.168.0.10",
                    },
                },
                VlanID = 10,
                VmipPool = new[]
                {
                    new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesVmipPoolArgs
                    {
                        EndIP = "192.168.0.130",
                        StartIP = "192.168.0.110",
                    },
                },
            },
            ResourceGroupName = "test-arcappliance-resgrp",
            VirtualNetworkName = "test-vnet-static",
        });
    
    });
    
    package main
    
    import (
    	hybridcontainerservice "github.com/pulumi/pulumi-azure-native-sdk/hybridcontainerservice/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := hybridcontainerservice.NewVirtualNetworkRetrieve(ctx, "virtualNetworkRetrieve", &hybridcontainerservice.VirtualNetworkRetrieveArgs{
    			ExtendedLocation: &hybridcontainerservice.VirtualNetworkExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation"),
    				Type: pulumi.String(hybridcontainerservice.ExtendedLocationTypesCustomLocation),
    			},
    			Location: pulumi.String("westus"),
    			Properties: &hybridcontainerservice.VirtualNetworkPropertiesArgs{
    				DnsServers: pulumi.StringArray{
    					pulumi.String("192.168.0.1"),
    				},
    				Gateway: pulumi.String("192.168.0.1"),
    				InfraVnetProfile: &hybridcontainerservice.VirtualNetworkPropertiesInfraVnetProfileArgs{
    					Hci: &hybridcontainerservice.VirtualNetworkPropertiesHciArgs{
    						MocGroup:    pulumi.String("target-group"),
    						MocLocation: pulumi.String("MocLocation"),
    						MocVnetName: pulumi.String("vnet1"),
    					},
    				},
    				IpAddressPrefix: pulumi.String("192.168.0.0/16"),
    				VipPool: hybridcontainerservice.VirtualNetworkPropertiesVipPoolArray{
    					&hybridcontainerservice.VirtualNetworkPropertiesVipPoolArgs{
    						EndIP:   pulumi.String("192.168.0.50"),
    						StartIP: pulumi.String("192.168.0.10"),
    					},
    				},
    				VlanID: pulumi.Int(10),
    				VmipPool: hybridcontainerservice.VirtualNetworkPropertiesVmipPoolArray{
    					&hybridcontainerservice.VirtualNetworkPropertiesVmipPoolArgs{
    						EndIP:   pulumi.String("192.168.0.130"),
    						StartIP: pulumi.String("192.168.0.110"),
    					},
    				},
    			},
    			ResourceGroupName:  pulumi.String("test-arcappliance-resgrp"),
    			VirtualNetworkName: pulumi.String("test-vnet-static"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_hybridcontainerservice_virtualnetworkretrieve" "virtualNetworkRetrieve" {
      extended_location = {
        name = "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation"
        type = "CustomLocation"
      }
      location = "westus"
      properties = {
        dns_servers = ["192.168.0.1"]
        gateway     = "192.168.0.1"
        infra_vnet_profile = {
          hci = {
            moc_group     = "target-group"
            moc_location  = "MocLocation"
            moc_vnet_name = "vnet1"
          }
        }
        ip_address_prefix = "192.168.0.0/16"
        vip_pool = [{
          "endIP"   = "192.168.0.50"
          "startIP" = "192.168.0.10"
        }]
        vlan_id = 10
        vmip_pool = [{
          "endIP"   = "192.168.0.130"
          "startIP" = "192.168.0.110"
        }]
      }
      resource_group_name  = "test-arcappliance-resgrp"
      virtual_network_name = "test-vnet-static"
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.hybridcontainerservice.VirtualNetworkRetrieve;
    import com.pulumi.azurenative.hybridcontainerservice.VirtualNetworkRetrieveArgs;
    import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworkExtendedLocationArgs;
    import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworkPropertiesArgs;
    import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworkPropertiesInfraVnetProfileArgs;
    import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworkPropertiesHciArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var virtualNetworkRetrieve = new VirtualNetworkRetrieve("virtualNetworkRetrieve", VirtualNetworkRetrieveArgs.builder()
                .extendedLocation(VirtualNetworkExtendedLocationArgs.builder()
                    .name("/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation")
                    .type("CustomLocation")
                    .build())
                .location("westus")
                .properties(VirtualNetworkPropertiesArgs.builder()
                    .dnsServers("192.168.0.1")
                    .gateway("192.168.0.1")
                    .infraVnetProfile(VirtualNetworkPropertiesInfraVnetProfileArgs.builder()
                        .hci(VirtualNetworkPropertiesHciArgs.builder()
                            .mocGroup("target-group")
                            .mocLocation("MocLocation")
                            .mocVnetName("vnet1")
                            .build())
                        .build())
                    .ipAddressPrefix("192.168.0.0/16")
                    .vipPool(VirtualNetworkPropertiesVipPoolArgs.builder()
                        .endIP("192.168.0.50")
                        .startIP("192.168.0.10")
                        .build())
                    .vlanID(10)
                    .vmipPool(VirtualNetworkPropertiesVmipPoolArgs.builder()
                        .endIP("192.168.0.130")
                        .startIP("192.168.0.110")
                        .build())
                    .build())
                .resourceGroupName("test-arcappliance-resgrp")
                .virtualNetworkName("test-vnet-static")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const virtualNetworkRetrieve = new azure_native.hybridcontainerservice.VirtualNetworkRetrieve("virtualNetworkRetrieve", {
        extendedLocation: {
            name: "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
            type: azure_native.hybridcontainerservice.ExtendedLocationTypes.CustomLocation,
        },
        location: "westus",
        properties: {
            dnsServers: ["192.168.0.1"],
            gateway: "192.168.0.1",
            infraVnetProfile: {
                hci: {
                    mocGroup: "target-group",
                    mocLocation: "MocLocation",
                    mocVnetName: "vnet1",
                },
            },
            ipAddressPrefix: "192.168.0.0/16",
            vipPool: [{
                endIP: "192.168.0.50",
                startIP: "192.168.0.10",
            }],
            vlanID: 10,
            vmipPool: [{
                endIP: "192.168.0.130",
                startIP: "192.168.0.110",
            }],
        },
        resourceGroupName: "test-arcappliance-resgrp",
        virtualNetworkName: "test-vnet-static",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    virtual_network_retrieve = azure_native.hybridcontainerservice.VirtualNetworkRetrieve("virtualNetworkRetrieve",
        extended_location={
            "name": "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
            "type": azure_native.hybridcontainerservice.ExtendedLocationTypes.CUSTOM_LOCATION,
        },
        location="westus",
        properties={
            "dns_servers": ["192.168.0.1"],
            "gateway": "192.168.0.1",
            "infra_vnet_profile": {
                "hci": {
                    "moc_group": "target-group",
                    "moc_location": "MocLocation",
                    "moc_vnet_name": "vnet1",
                },
            },
            "ip_address_prefix": "192.168.0.0/16",
            "vip_pool": [{
                "end_ip": "192.168.0.50",
                "start_ip": "192.168.0.10",
            }],
            "vlan_id": 10,
            "vmip_pool": [{
                "end_ip": "192.168.0.130",
                "start_ip": "192.168.0.110",
            }],
        },
        resource_group_name="test-arcappliance-resgrp",
        virtual_network_name="test-vnet-static")
    
    resources:
      virtualNetworkRetrieve:
        type: azure-native:hybridcontainerservice:VirtualNetworkRetrieve
        properties:
          extendedLocation:
            name: /subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation
            type: CustomLocation
          location: westus
          properties:
            dnsServers:
              - 192.168.0.1
            gateway: 192.168.0.1
            infraVnetProfile:
              hci:
                mocGroup: target-group
                mocLocation: MocLocation
                mocVnetName: vnet1
            ipAddressPrefix: 192.168.0.0/16
            vipPool:
              - endIP: 192.168.0.50
                startIP: 192.168.0.10
            vlanID: 10
            vmipPool:
              - endIP: 192.168.0.130
                startIP: 192.168.0.110
          resourceGroupName: test-arcappliance-resgrp
          virtualNetworkName: test-vnet-static
    

    Create VirtualNetworkRetrieve Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new VirtualNetworkRetrieve(name: string, args: VirtualNetworkRetrieveArgs, opts?: CustomResourceOptions);
    @overload
    def VirtualNetworkRetrieve(resource_name: str,
                               args: VirtualNetworkRetrieveArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def VirtualNetworkRetrieve(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               resource_group_name: Optional[str] = None,
                               extended_location: Optional[VirtualNetworkExtendedLocationArgs] = None,
                               location: Optional[str] = None,
                               properties: Optional[VirtualNetworkPropertiesArgs] = None,
                               tags: Optional[Mapping[str, str]] = None,
                               virtual_network_name: Optional[str] = None)
    func NewVirtualNetworkRetrieve(ctx *Context, name string, args VirtualNetworkRetrieveArgs, opts ...ResourceOption) (*VirtualNetworkRetrieve, error)
    public VirtualNetworkRetrieve(string name, VirtualNetworkRetrieveArgs args, CustomResourceOptions? opts = null)
    public VirtualNetworkRetrieve(String name, VirtualNetworkRetrieveArgs args)
    public VirtualNetworkRetrieve(String name, VirtualNetworkRetrieveArgs args, CustomResourceOptions options)
    
    type: azure-native:hybridcontainerservice:VirtualNetworkRetrieve
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_hybridcontainerservice_virtual_network_retrieve" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args VirtualNetworkRetrieveArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args VirtualNetworkRetrieveArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args VirtualNetworkRetrieveArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VirtualNetworkRetrieveArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VirtualNetworkRetrieveArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var virtualNetworkRetrieveResource = new AzureNative.HybridContainerService.VirtualNetworkRetrieve("virtualNetworkRetrieveResource", new()
    {
        ResourceGroupName = "string",
        ExtendedLocation = new AzureNative.HybridContainerService.Inputs.VirtualNetworkExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        Location = "string",
        Properties = new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesArgs
        {
            DnsServers = new[]
            {
                "string",
            },
            Gateway = "string",
            InfraVnetProfile = new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesInfraVnetProfileArgs
            {
                Hci = new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesHciArgs
                {
                    MocGroup = "string",
                    MocLocation = "string",
                    MocVnetName = "string",
                },
            },
            IpAddressPrefix = "string",
            VipPool = new[]
            {
                new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesVipPoolArgs
                {
                    EndIP = "string",
                    StartIP = "string",
                },
            },
            VlanID = 0,
            VmipPool = new[]
            {
                new AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesVmipPoolArgs
                {
                    EndIP = "string",
                    StartIP = "string",
                },
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
        VirtualNetworkName = "string",
    });
    
    example, err := hybridcontainerservice.NewVirtualNetworkRetrieve(ctx, "virtualNetworkRetrieveResource", &hybridcontainerservice.VirtualNetworkRetrieveArgs{
    	ResourceGroupName: pulumi.String("string"),
    	ExtendedLocation: &hybridcontainerservice.VirtualNetworkExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Properties: &hybridcontainerservice.VirtualNetworkPropertiesArgs{
    		DnsServers: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Gateway: pulumi.String("string"),
    		InfraVnetProfile: &hybridcontainerservice.VirtualNetworkPropertiesInfraVnetProfileArgs{
    			Hci: &hybridcontainerservice.VirtualNetworkPropertiesHciArgs{
    				MocGroup:    pulumi.String("string"),
    				MocLocation: pulumi.String("string"),
    				MocVnetName: pulumi.String("string"),
    			},
    		},
    		IpAddressPrefix: pulumi.String("string"),
    		VipPool: hybridcontainerservice.VirtualNetworkPropertiesVipPoolArray{
    			&hybridcontainerservice.VirtualNetworkPropertiesVipPoolArgs{
    				EndIP:   pulumi.String("string"),
    				StartIP: pulumi.String("string"),
    			},
    		},
    		VlanID: pulumi.Int(0),
    		VmipPool: hybridcontainerservice.VirtualNetworkPropertiesVmipPoolArray{
    			&hybridcontainerservice.VirtualNetworkPropertiesVmipPoolArgs{
    				EndIP:   pulumi.String("string"),
    				StartIP: pulumi.String("string"),
    			},
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	VirtualNetworkName: pulumi.String("string"),
    })
    
    resource "azure-native_hybridcontainerservice_virtual_network_retrieve" "virtualNetworkRetrieveResource" {
      lifecycle {
        create_before_destroy = true
      }
      resource_group_name = "string"
      extended_location = {
        name = "string"
        type = "string"
      }
      location = "string"
      properties = {
        dns_servers = ["string"]
        gateway     = "string"
        infra_vnet_profile = {
          hci = {
            moc_group     = "string"
            moc_location  = "string"
            moc_vnet_name = "string"
          }
        }
        ip_address_prefix = "string"
        vip_pool = [{
          end_ip   = "string"
          start_ip = "string"
        }]
        vlan_id = 0
        vmip_pool = [{
          end_ip   = "string"
          start_ip = "string"
        }]
      }
      tags = {
        "string" = "string"
      }
      virtual_network_name = "string"
    }
    
    var virtualNetworkRetrieveResource = new VirtualNetworkRetrieve("virtualNetworkRetrieveResource", VirtualNetworkRetrieveArgs.builder()
        .resourceGroupName("string")
        .extendedLocation(VirtualNetworkExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .location("string")
        .properties(com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworkPropertiesArgs.builder()
            .dnsServers("string")
            .gateway("string")
            .infraVnetProfile(VirtualNetworkPropertiesInfraVnetProfileArgs.builder()
                .hci(VirtualNetworkPropertiesHciArgs.builder()
                    .mocGroup("string")
                    .mocLocation("string")
                    .mocVnetName("string")
                    .build())
                .build())
            .ipAddressPrefix("string")
            .vipPool(VirtualNetworkPropertiesVipPoolArgs.builder()
                .endIP("string")
                .startIP("string")
                .build())
            .vlanID(0)
            .vmipPool(VirtualNetworkPropertiesVmipPoolArgs.builder()
                .endIP("string")
                .startIP("string")
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .virtualNetworkName("string")
        .build());
    
    virtual_network_retrieve_resource = azure_native.hybridcontainerservice.VirtualNetworkRetrieve("virtualNetworkRetrieveResource",
        resource_group_name="string",
        extended_location={
            "name": "string",
            "type": "string",
        },
        location="string",
        properties={
            "dns_servers": ["string"],
            "gateway": "string",
            "infra_vnet_profile": {
                "hci": {
                    "moc_group": "string",
                    "moc_location": "string",
                    "moc_vnet_name": "string",
                },
            },
            "ip_address_prefix": "string",
            "vip_pool": [{
                "end_ip": "string",
                "start_ip": "string",
            }],
            "vlan_id": 0,
            "vmip_pool": [{
                "end_ip": "string",
                "start_ip": "string",
            }],
        },
        tags={
            "string": "string",
        },
        virtual_network_name="string")
    
    const virtualNetworkRetrieveResource = new azure_native.hybridcontainerservice.VirtualNetworkRetrieve("virtualNetworkRetrieveResource", {
        resourceGroupName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        location: "string",
        properties: {
            dnsServers: ["string"],
            gateway: "string",
            infraVnetProfile: {
                hci: {
                    mocGroup: "string",
                    mocLocation: "string",
                    mocVnetName: "string",
                },
            },
            ipAddressPrefix: "string",
            vipPool: [{
                endIP: "string",
                startIP: "string",
            }],
            vlanID: 0,
            vmipPool: [{
                endIP: "string",
                startIP: "string",
            }],
        },
        tags: {
            string: "string",
        },
        virtualNetworkName: "string",
    });
    
    type: azure-native:hybridcontainerservice:VirtualNetworkRetrieve
    properties:
        extendedLocation:
            name: string
            type: string
        location: string
        properties:
            dnsServers:
                - string
            gateway: string
            infraVnetProfile:
                hci:
                    mocGroup: string
                    mocLocation: string
                    mocVnetName: string
            ipAddressPrefix: string
            vipPool:
                - endIP: string
                  startIP: string
            vlanID: 0
            vmipPool:
                - endIP: string
                  startIP: string
        resourceGroupName: string
        tags:
            string: string
        virtualNetworkName: string
    

    VirtualNetworkRetrieve Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The VirtualNetworkRetrieve resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkExtendedLocation
    Extended location pointing to the underlying infrastructure
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkProperties
    Properties of the virtual network resource
    Tags Dictionary<string, string>
    Resource tags.
    VirtualNetworkName string
    Parameter for the name of the virtual network
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation VirtualNetworkExtendedLocationArgs
    Extended location pointing to the underlying infrastructure
    Location string
    The geo-location where the resource lives
    Properties VirtualNetworkPropertiesArgs
    Properties of the virtual network resource
    Tags map[string]string
    Resource tags.
    VirtualNetworkName string
    Parameter for the name of the virtual network
    resource_group_name string
    The name of the resource group. The name is case insensitive.
    extended_location object
    Extended location pointing to the underlying infrastructure
    location string
    The geo-location where the resource lives
    properties object
    Properties of the virtual network resource
    tags map(string)
    Resource tags.
    virtual_network_name string
    Parameter for the name of the virtual network
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation VirtualNetworkExtendedLocation
    Extended location pointing to the underlying infrastructure
    location String
    The geo-location where the resource lives
    properties VirtualNetworkProperties
    Properties of the virtual network resource
    tags Map<String,String>
    Resource tags.
    virtualNetworkName String
    Parameter for the name of the virtual network
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    extendedLocation VirtualNetworkExtendedLocation
    Extended location pointing to the underlying infrastructure
    location string
    The geo-location where the resource lives
    properties VirtualNetworkProperties
    Properties of the virtual network resource
    tags {[key: string]: string}
    Resource tags.
    virtualNetworkName string
    Parameter for the name of the virtual network
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    extended_location VirtualNetworkExtendedLocationArgs
    Extended location pointing to the underlying infrastructure
    location str
    The geo-location where the resource lives
    properties VirtualNetworkPropertiesArgs
    Properties of the virtual network resource
    tags Mapping[str, str]
    Resource tags.
    virtual_network_name str
    Parameter for the name of the virtual network
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation Property Map
    Extended location pointing to the underlying infrastructure
    location String
    The geo-location where the resource lives
    properties Property Map
    Properties of the virtual network resource
    tags Map<String>
    Resource tags.
    virtualNetworkName String
    Parameter for the name of the virtual network

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VirtualNetworkRetrieve resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.HybridContainerService.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    system_data object
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ExtendedLocationTypes, ExtendedLocationTypesArgs

    CustomLocation
    CustomLocation
    ExtendedLocationTypesCustomLocation
    CustomLocation
    "CustomLocation"
    CustomLocation
    CustomLocation
    CustomLocation
    CustomLocation
    CustomLocation
    CUSTOM_LOCATION
    CustomLocation
    "CustomLocation"
    CustomLocation

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    created_at string
    The timestamp of resource creation (UTC).
    created_by string
    The identity that created the resource.
    created_by_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    VirtualNetworkExtendedLocation, VirtualNetworkExtendedLocationArgs

    Extended location pointing to the underlying infrastructure
    Name string
    ARM Id of the extended location.
    Type string | Pulumi.AzureNative.HybridContainerService.ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    Name string
    ARM Id of the extended location.
    Type string | ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    name string
    ARM Id of the extended location.
    type string | "CustomLocation"
    The extended location type. Allowed value: 'CustomLocation'
    name String
    ARM Id of the extended location.
    type String | ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    name string
    ARM Id of the extended location.
    type string | ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    name str
    ARM Id of the extended location.
    type str | ExtendedLocationTypes
    The extended location type. Allowed value: 'CustomLocation'
    name String
    ARM Id of the extended location.
    type String | "CustomLocation"
    The extended location type. Allowed value: 'CustomLocation'

    VirtualNetworkProperties, VirtualNetworkPropertiesArgs

    Properties of the virtual network resource
    DnsServers List<string>
    List of DNS server IP Addresses associated with the network
    Gateway string
    IP Address of the Gateway associated with the network
    InfraVnetProfile Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesInfraVnetProfile
    IpAddressPrefix string
    IP Address Prefix of the network
    VipPool List<Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesVipPool>
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    VlanID int
    VLAN Id used by the network
    VmipPool List<Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesVmipPool>
    Range of IP Addresses for Kubernetes node VMs
    DnsServers []string
    List of DNS server IP Addresses associated with the network
    Gateway string
    IP Address of the Gateway associated with the network
    InfraVnetProfile VirtualNetworkPropertiesInfraVnetProfile
    IpAddressPrefix string
    IP Address Prefix of the network
    VipPool []VirtualNetworkPropertiesVipPool
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    VlanID int
    VLAN Id used by the network
    VmipPool []VirtualNetworkPropertiesVmipPool
    Range of IP Addresses for Kubernetes node VMs
    dns_servers list(string)
    List of DNS server IP Addresses associated with the network
    gateway string
    IP Address of the Gateway associated with the network
    infra_vnet_profile object
    ip_address_prefix string
    IP Address Prefix of the network
    vip_pool list(object)
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlan_id number
    VLAN Id used by the network
    vmip_pool list(object)
    Range of IP Addresses for Kubernetes node VMs
    dnsServers List<String>
    List of DNS server IP Addresses associated with the network
    gateway String
    IP Address of the Gateway associated with the network
    infraVnetProfile VirtualNetworkPropertiesInfraVnetProfile
    ipAddressPrefix String
    IP Address Prefix of the network
    vipPool List<VirtualNetworkPropertiesVipPool>
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlanID Integer
    VLAN Id used by the network
    vmipPool List<VirtualNetworkPropertiesVmipPool>
    Range of IP Addresses for Kubernetes node VMs
    dnsServers string[]
    List of DNS server IP Addresses associated with the network
    gateway string
    IP Address of the Gateway associated with the network
    infraVnetProfile VirtualNetworkPropertiesInfraVnetProfile
    ipAddressPrefix string
    IP Address Prefix of the network
    vipPool VirtualNetworkPropertiesVipPool[]
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlanID number
    VLAN Id used by the network
    vmipPool VirtualNetworkPropertiesVmipPool[]
    Range of IP Addresses for Kubernetes node VMs
    dns_servers Sequence[str]
    List of DNS server IP Addresses associated with the network
    gateway str
    IP Address of the Gateway associated with the network
    infra_vnet_profile VirtualNetworkPropertiesInfraVnetProfile
    ip_address_prefix str
    IP Address Prefix of the network
    vip_pool Sequence[VirtualNetworkPropertiesVipPool]
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlan_id int
    VLAN Id used by the network
    vmip_pool Sequence[VirtualNetworkPropertiesVmipPool]
    Range of IP Addresses for Kubernetes node VMs
    dnsServers List<String>
    List of DNS server IP Addresses associated with the network
    gateway String
    IP Address of the Gateway associated with the network
    infraVnetProfile Property Map
    ipAddressPrefix String
    IP Address Prefix of the network
    vipPool List<Property Map>
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlanID Number
    VLAN Id used by the network
    vmipPool List<Property Map>
    Range of IP Addresses for Kubernetes node VMs

    VirtualNetworkPropertiesHci, VirtualNetworkPropertiesHciArgs

    Infrastructure network profile for HCI platform
    MocGroup string
    Group in MOC(Microsoft On-premises Cloud)
    MocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    MocVnetName string
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    MocGroup string
    Group in MOC(Microsoft On-premises Cloud)
    MocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    MocVnetName string
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    moc_group string
    Group in MOC(Microsoft On-premises Cloud)
    moc_location string
    Location in MOC(Microsoft On-premises Cloud)
    moc_vnet_name string
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    mocGroup String
    Group in MOC(Microsoft On-premises Cloud)
    mocLocation String
    Location in MOC(Microsoft On-premises Cloud)
    mocVnetName String
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    mocGroup string
    Group in MOC(Microsoft On-premises Cloud)
    mocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    mocVnetName string
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    moc_group str
    Group in MOC(Microsoft On-premises Cloud)
    moc_location str
    Location in MOC(Microsoft On-premises Cloud)
    moc_vnet_name str
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    mocGroup String
    Group in MOC(Microsoft On-premises Cloud)
    mocLocation String
    Location in MOC(Microsoft On-premises Cloud)
    mocVnetName String
    Virtual Network name in MOC(Microsoft On-premises Cloud)

    VirtualNetworkPropertiesInfraVnetProfile, VirtualNetworkPropertiesInfraVnetProfileArgs

    Hci VirtualNetworkPropertiesHci
    Infrastructure network profile for HCI platform
    hci object
    Infrastructure network profile for HCI platform
    hci VirtualNetworkPropertiesHci
    Infrastructure network profile for HCI platform
    hci VirtualNetworkPropertiesHci
    Infrastructure network profile for HCI platform
    hci VirtualNetworkPropertiesHci
    Infrastructure network profile for HCI platform
    hci Property Map
    Infrastructure network profile for HCI platform

    VirtualNetworkPropertiesResponse, VirtualNetworkPropertiesResponseArgs

    Properties of the virtual network resource
    ProvisioningState string
    Status Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesResponseStatus
    Status of the virtual network resource
    DnsServers List<string>
    List of DNS server IP Addresses associated with the network
    Gateway string
    IP Address of the Gateway associated with the network
    InfraVnetProfile Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesResponseInfraVnetProfile
    IpAddressPrefix string
    IP Address Prefix of the network
    VipPool List<Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesResponseVipPool>
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    VlanID int
    VLAN Id used by the network
    VmipPool List<Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesResponseVmipPool>
    Range of IP Addresses for Kubernetes node VMs
    ProvisioningState string
    Status VirtualNetworkPropertiesResponseStatus
    Status of the virtual network resource
    DnsServers []string
    List of DNS server IP Addresses associated with the network
    Gateway string
    IP Address of the Gateway associated with the network
    InfraVnetProfile VirtualNetworkPropertiesResponseInfraVnetProfile
    IpAddressPrefix string
    IP Address Prefix of the network
    VipPool []VirtualNetworkPropertiesResponseVipPool
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    VlanID int
    VLAN Id used by the network
    VmipPool []VirtualNetworkPropertiesResponseVmipPool
    Range of IP Addresses for Kubernetes node VMs
    provisioning_state string
    status object
    Status of the virtual network resource
    dns_servers list(string)
    List of DNS server IP Addresses associated with the network
    gateway string
    IP Address of the Gateway associated with the network
    infra_vnet_profile object
    ip_address_prefix string
    IP Address Prefix of the network
    vip_pool list(object)
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlan_id number
    VLAN Id used by the network
    vmip_pool list(object)
    Range of IP Addresses for Kubernetes node VMs
    provisioningState String
    status VirtualNetworkPropertiesResponseStatus
    Status of the virtual network resource
    dnsServers List<String>
    List of DNS server IP Addresses associated with the network
    gateway String
    IP Address of the Gateway associated with the network
    infraVnetProfile VirtualNetworkPropertiesResponseInfraVnetProfile
    ipAddressPrefix String
    IP Address Prefix of the network
    vipPool List<VirtualNetworkPropertiesResponseVipPool>
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlanID Integer
    VLAN Id used by the network
    vmipPool List<VirtualNetworkPropertiesResponseVmipPool>
    Range of IP Addresses for Kubernetes node VMs
    provisioningState string
    status VirtualNetworkPropertiesResponseStatus
    Status of the virtual network resource
    dnsServers string[]
    List of DNS server IP Addresses associated with the network
    gateway string
    IP Address of the Gateway associated with the network
    infraVnetProfile VirtualNetworkPropertiesResponseInfraVnetProfile
    ipAddressPrefix string
    IP Address Prefix of the network
    vipPool VirtualNetworkPropertiesResponseVipPool[]
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlanID number
    VLAN Id used by the network
    vmipPool VirtualNetworkPropertiesResponseVmipPool[]
    Range of IP Addresses for Kubernetes node VMs
    provisioning_state str
    status VirtualNetworkPropertiesResponseStatus
    Status of the virtual network resource
    dns_servers Sequence[str]
    List of DNS server IP Addresses associated with the network
    gateway str
    IP Address of the Gateway associated with the network
    infra_vnet_profile VirtualNetworkPropertiesResponseInfraVnetProfile
    ip_address_prefix str
    IP Address Prefix of the network
    vip_pool Sequence[VirtualNetworkPropertiesResponseVipPool]
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlan_id int
    VLAN Id used by the network
    vmip_pool Sequence[VirtualNetworkPropertiesResponseVmipPool]
    Range of IP Addresses for Kubernetes node VMs
    provisioningState String
    status Property Map
    Status of the virtual network resource
    dnsServers List<String>
    List of DNS server IP Addresses associated with the network
    gateway String
    IP Address of the Gateway associated with the network
    infraVnetProfile Property Map
    ipAddressPrefix String
    IP Address Prefix of the network
    vipPool List<Property Map>
    Range of IP Addresses for Kubernetes API Server and services if using HA Proxy load balancer
    vlanID Number
    VLAN Id used by the network
    vmipPool List<Property Map>
    Range of IP Addresses for Kubernetes node VMs

    VirtualNetworkPropertiesResponseError, VirtualNetworkPropertiesResponseErrorArgs

    The error if any from the operation.
    Code string
    The error code from the operation.
    Message string
    The error message from the operation.
    Code string
    The error code from the operation.
    Message string
    The error message from the operation.
    code string
    The error code from the operation.
    message string
    The error message from the operation.
    code String
    The error code from the operation.
    message String
    The error message from the operation.
    code string
    The error code from the operation.
    message string
    The error message from the operation.
    code str
    The error code from the operation.
    message str
    The error message from the operation.
    code String
    The error code from the operation.
    message String
    The error message from the operation.

    VirtualNetworkPropertiesResponseHci, VirtualNetworkPropertiesResponseHciArgs

    Infrastructure network profile for HCI platform
    MocGroup string
    Group in MOC(Microsoft On-premises Cloud)
    MocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    MocVnetName string
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    MocGroup string
    Group in MOC(Microsoft On-premises Cloud)
    MocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    MocVnetName string
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    moc_group string
    Group in MOC(Microsoft On-premises Cloud)
    moc_location string
    Location in MOC(Microsoft On-premises Cloud)
    moc_vnet_name string
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    mocGroup String
    Group in MOC(Microsoft On-premises Cloud)
    mocLocation String
    Location in MOC(Microsoft On-premises Cloud)
    mocVnetName String
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    mocGroup string
    Group in MOC(Microsoft On-premises Cloud)
    mocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    mocVnetName string
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    moc_group str
    Group in MOC(Microsoft On-premises Cloud)
    moc_location str
    Location in MOC(Microsoft On-premises Cloud)
    moc_vnet_name str
    Virtual Network name in MOC(Microsoft On-premises Cloud)
    mocGroup String
    Group in MOC(Microsoft On-premises Cloud)
    mocLocation String
    Location in MOC(Microsoft On-premises Cloud)
    mocVnetName String
    Virtual Network name in MOC(Microsoft On-premises Cloud)

    VirtualNetworkPropertiesResponseInfraVnetProfile, VirtualNetworkPropertiesResponseInfraVnetProfileArgs

    Hci VirtualNetworkPropertiesResponseHci
    Infrastructure network profile for HCI platform
    hci object
    Infrastructure network profile for HCI platform
    hci VirtualNetworkPropertiesResponseHci
    Infrastructure network profile for HCI platform
    hci VirtualNetworkPropertiesResponseHci
    Infrastructure network profile for HCI platform
    hci VirtualNetworkPropertiesResponseHci
    Infrastructure network profile for HCI platform
    hci Property Map
    Infrastructure network profile for HCI platform

    VirtualNetworkPropertiesResponseOperationStatus, VirtualNetworkPropertiesResponseOperationStatusArgs

    The detailed status of the long running operation.
    Error Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworkPropertiesResponseError
    The error if any from the operation.
    OperationId string
    The identifier of the operation.
    Status string
    The status of the operation.
    Error VirtualNetworkPropertiesResponseError
    The error if any from the operation.
    OperationId string
    The identifier of the operation.
    Status string
    The status of the operation.
    error object
    The error if any from the operation.
    operation_id string
    The identifier of the operation.
    status string
    The status of the operation.
    error VirtualNetworkPropertiesResponseError
    The error if any from the operation.
    operationId String
    The identifier of the operation.
    status String
    The status of the operation.
    error VirtualNetworkPropertiesResponseError
    The error if any from the operation.
    operationId string
    The identifier of the operation.
    status string
    The status of the operation.
    error VirtualNetworkPropertiesResponseError
    The error if any from the operation.
    operation_id str
    The identifier of the operation.
    status str
    The status of the operation.
    error Property Map
    The error if any from the operation.
    operationId String
    The identifier of the operation.
    status String
    The status of the operation.

    VirtualNetworkPropertiesResponseStatus, VirtualNetworkPropertiesResponseStatusArgs

    Status of the virtual network resource
    OperationStatus VirtualNetworkPropertiesResponseOperationStatus
    The detailed status of the long running operation.
    operation_status object
    The detailed status of the long running operation.
    operationStatus VirtualNetworkPropertiesResponseOperationStatus
    The detailed status of the long running operation.
    operationStatus VirtualNetworkPropertiesResponseOperationStatus
    The detailed status of the long running operation.
    operation_status VirtualNetworkPropertiesResponseOperationStatus
    The detailed status of the long running operation.
    operationStatus Property Map
    The detailed status of the long running operation.

    VirtualNetworkPropertiesResponseVipPool, VirtualNetworkPropertiesResponseVipPoolArgs

    EndIP string
    Ending IP address for the IP Pool
    StartIP string
    Starting IP address for the IP Pool
    EndIP string
    Ending IP address for the IP Pool
    StartIP string
    Starting IP address for the IP Pool
    end_ip string
    Ending IP address for the IP Pool
    start_ip string
    Starting IP address for the IP Pool
    endIP String
    Ending IP address for the IP Pool
    startIP String
    Starting IP address for the IP Pool
    endIP string
    Ending IP address for the IP Pool
    startIP string
    Starting IP address for the IP Pool
    end_ip str
    Ending IP address for the IP Pool
    start_ip str
    Starting IP address for the IP Pool
    endIP String
    Ending IP address for the IP Pool
    startIP String
    Starting IP address for the IP Pool

    VirtualNetworkPropertiesResponseVmipPool, VirtualNetworkPropertiesResponseVmipPoolArgs

    EndIP string
    Ending IP address for the IP Pool
    StartIP string
    Starting IP address for the IP Pool
    EndIP string
    Ending IP address for the IP Pool
    StartIP string
    Starting IP address for the IP Pool
    end_ip string
    Ending IP address for the IP Pool
    start_ip string
    Starting IP address for the IP Pool
    endIP String
    Ending IP address for the IP Pool
    startIP String
    Starting IP address for the IP Pool
    endIP string
    Ending IP address for the IP Pool
    startIP string
    Starting IP address for the IP Pool
    end_ip str
    Ending IP address for the IP Pool
    start_ip str
    Starting IP address for the IP Pool
    endIP String
    Ending IP address for the IP Pool
    startIP String
    Starting IP address for the IP Pool

    VirtualNetworkPropertiesVipPool, VirtualNetworkPropertiesVipPoolArgs

    EndIP string
    Ending IP address for the IP Pool
    StartIP string
    Starting IP address for the IP Pool
    EndIP string
    Ending IP address for the IP Pool
    StartIP string
    Starting IP address for the IP Pool
    end_ip string
    Ending IP address for the IP Pool
    start_ip string
    Starting IP address for the IP Pool
    endIP String
    Ending IP address for the IP Pool
    startIP String
    Starting IP address for the IP Pool
    endIP string
    Ending IP address for the IP Pool
    startIP string
    Starting IP address for the IP Pool
    end_ip str
    Ending IP address for the IP Pool
    start_ip str
    Starting IP address for the IP Pool
    endIP String
    Ending IP address for the IP Pool
    startIP String
    Starting IP address for the IP Pool

    VirtualNetworkPropertiesVmipPool, VirtualNetworkPropertiesVmipPoolArgs

    EndIP string
    Ending IP address for the IP Pool
    StartIP string
    Starting IP address for the IP Pool
    EndIP string
    Ending IP address for the IP Pool
    StartIP string
    Starting IP address for the IP Pool
    end_ip string
    Ending IP address for the IP Pool
    start_ip string
    Starting IP address for the IP Pool
    endIP String
    Ending IP address for the IP Pool
    startIP String
    Starting IP address for the IP Pool
    endIP string
    Ending IP address for the IP Pool
    startIP string
    Starting IP address for the IP Pool
    end_ip str
    Ending IP address for the IP Pool
    start_ip str
    Starting IP address for the IP Pool
    endIP String
    Ending IP address for the IP Pool
    startIP String
    Starting IP address for the IP Pool

    VirtualNetworkResponseExtendedLocation, VirtualNetworkResponseExtendedLocationArgs

    Extended location pointing to the underlying infrastructure
    Name string
    ARM Id of the extended location.
    Type string
    The extended location type. Allowed value: 'CustomLocation'
    Name string
    ARM Id of the extended location.
    Type string
    The extended location type. Allowed value: 'CustomLocation'
    name string
    ARM Id of the extended location.
    type string
    The extended location type. Allowed value: 'CustomLocation'
    name String
    ARM Id of the extended location.
    type String
    The extended location type. Allowed value: 'CustomLocation'
    name string
    ARM Id of the extended location.
    type string
    The extended location type. Allowed value: 'CustomLocation'
    name str
    ARM Id of the extended location.
    type str
    The extended location type. Allowed value: 'CustomLocation'
    name String
    ARM Id of the extended location.
    type String
    The extended location type. Allowed value: 'CustomLocation'

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:hybridcontainerservice:VirtualNetworkRetrieve test-vnet-static /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridContainerService/virtualNetworks/{virtualNetworkName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.25.0
    published on Wednesday, Aug 5, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial