1. Packages
  2. Azure Native
  3. API Docs
  4. hybridcontainerservice
  5. VirtualNetworkRetrieve
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.hybridcontainerservice.VirtualNetworkRetrieve

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

The virtualNetworks resource definition.

Uses Azure REST API version 2022-09-01-preview.

Other available API versions: 2023-11-15-preview, 2024-01-01. 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.VirtualNetworksExtendedLocationArgs
        {
            Name = "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
            Type = "CustomLocation",
        },
        Location = "westus",
        Properties = new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesArgs
        {
            InfraVnetProfile = new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesInfraVnetProfileArgs
            {
                Hci = new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesHciArgs
                {
                    MocGroup = "target-group",
                    MocLocation = "MocLocation",
                    MocVnetName = "test-vnet",
                },
            },
            VipPool = new[]
            {
                new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesVipPoolArgs
                {
                    EndIP = "192.168.0.50",
                    StartIP = "192.168.0.10",
                },
            },
            VmipPool = new[]
            {
                new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesVmipPoolArgs
                {
                    EndIP = "192.168.0.130",
                    StartIP = "192.168.0.110",
                },
            },
        },
        ResourceGroupName = "test-arcappliance-resgrp",
        VirtualNetworksName = "test-vnet-static",
    });

});
Copy
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.VirtualNetworksExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation"),
				Type: pulumi.String("CustomLocation"),
			},
			Location: pulumi.String("westus"),
			Properties: &hybridcontainerservice.VirtualNetworksPropertiesArgs{
				InfraVnetProfile: &hybridcontainerservice.VirtualNetworksPropertiesInfraVnetProfileArgs{
					Hci: &hybridcontainerservice.VirtualNetworksPropertiesHciArgs{
						MocGroup:    pulumi.String("target-group"),
						MocLocation: pulumi.String("MocLocation"),
						MocVnetName: pulumi.String("test-vnet"),
					},
				},
				VipPool: hybridcontainerservice.VirtualNetworksPropertiesVipPoolArray{
					&hybridcontainerservice.VirtualNetworksPropertiesVipPoolArgs{
						EndIP:   pulumi.String("192.168.0.50"),
						StartIP: pulumi.String("192.168.0.10"),
					},
				},
				VmipPool: hybridcontainerservice.VirtualNetworksPropertiesVmipPoolArray{
					&hybridcontainerservice.VirtualNetworksPropertiesVmipPoolArgs{
						EndIP:   pulumi.String("192.168.0.130"),
						StartIP: pulumi.String("192.168.0.110"),
					},
				},
			},
			ResourceGroupName:   pulumi.String("test-arcappliance-resgrp"),
			VirtualNetworksName: pulumi.String("test-vnet-static"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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.VirtualNetworksExtendedLocationArgs;
import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesArgs;
import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesInfraVnetProfileArgs;
import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesHciArgs;
import java.util.List;
import java.util.ArrayList;
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(VirtualNetworksExtendedLocationArgs.builder()
                .name("/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation")
                .type("CustomLocation")
                .build())
            .location("westus")
            .properties(VirtualNetworksPropertiesArgs.builder()
                .infraVnetProfile(VirtualNetworksPropertiesInfraVnetProfileArgs.builder()
                    .hci(VirtualNetworksPropertiesHciArgs.builder()
                        .mocGroup("target-group")
                        .mocLocation("MocLocation")
                        .mocVnetName("test-vnet")
                        .build())
                    .build())
                .vipPool(VirtualNetworksPropertiesVipPoolArgs.builder()
                    .endIP("192.168.0.50")
                    .startIP("192.168.0.10")
                    .build())
                .vmipPool(VirtualNetworksPropertiesVmipPoolArgs.builder()
                    .endIP("192.168.0.130")
                    .startIP("192.168.0.110")
                    .build())
                .build())
            .resourceGroupName("test-arcappliance-resgrp")
            .virtualNetworksName("test-vnet-static")
            .build());

    }
}
Copy
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: "CustomLocation",
    },
    location: "westus",
    properties: {
        infraVnetProfile: {
            hci: {
                mocGroup: "target-group",
                mocLocation: "MocLocation",
                mocVnetName: "test-vnet",
            },
        },
        vipPool: [{
            endIP: "192.168.0.50",
            startIP: "192.168.0.10",
        }],
        vmipPool: [{
            endIP: "192.168.0.130",
            startIP: "192.168.0.110",
        }],
    },
    resourceGroupName: "test-arcappliance-resgrp",
    virtualNetworksName: "test-vnet-static",
});
Copy
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": "CustomLocation",
    },
    location="westus",
    properties={
        "infra_vnet_profile": {
            "hci": {
                "moc_group": "target-group",
                "moc_location": "MocLocation",
                "moc_vnet_name": "test-vnet",
            },
        },
        "vip_pool": [{
            "end_ip": "192.168.0.50",
            "start_ip": "192.168.0.10",
        }],
        "vmip_pool": [{
            "end_ip": "192.168.0.130",
            "start_ip": "192.168.0.110",
        }],
    },
    resource_group_name="test-arcappliance-resgrp",
    virtual_networks_name="test-vnet-static")
Copy
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:
        infraVnetProfile:
          hci:
            mocGroup: target-group
            mocLocation: MocLocation
            mocVnetName: test-vnet
        vipPool:
          - endIP: 192.168.0.50
            startIP: 192.168.0.10
        vmipPool:
          - endIP: 192.168.0.130
            startIP: 192.168.0.110
      resourceGroupName: test-arcappliance-resgrp
      virtualNetworksName: test-vnet-static
Copy

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[VirtualNetworksExtendedLocationArgs] = None,
                           location: Optional[str] = None,
                           properties: Optional[VirtualNetworksPropertiesArgs] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           virtual_networks_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.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VirtualNetworkRetrieveArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. VirtualNetworkRetrieveArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VirtualNetworkRetrieveArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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.VirtualNetworksExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    Location = "string",
    Properties = new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesArgs
    {
        DnsServers = new[]
        {
            "string",
        },
        Gateway = "string",
        InfraVnetProfile = new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesInfraVnetProfileArgs
        {
            Hci = new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesHciArgs
            {
                MocGroup = "string",
                MocLocation = "string",
                MocVnetName = "string",
            },
            NetworkCloud = new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesNetworkCloudArgs
            {
                NetworkId = "string",
            },
            Vmware = new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesVmwareArgs
            {
                SegmentName = "string",
            },
        },
        IpAddressPrefix = "string",
        VipPool = new[]
        {
            new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesVipPoolArgs
            {
                EndIP = "string",
                StartIP = "string",
            },
        },
        VmipPool = new[]
        {
            new AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesVmipPoolArgs
            {
                EndIP = "string",
                StartIP = "string",
            },
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
    VirtualNetworksName = "string",
});
Copy
example, err := hybridcontainerservice.NewVirtualNetworkRetrieve(ctx, "virtualNetworkRetrieveResource", &hybridcontainerservice.VirtualNetworkRetrieveArgs{
	ResourceGroupName: pulumi.String("string"),
	ExtendedLocation: &hybridcontainerservice.VirtualNetworksExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Properties: &hybridcontainerservice.VirtualNetworksPropertiesArgs{
		DnsServers: pulumi.StringArray{
			pulumi.String("string"),
		},
		Gateway: pulumi.String("string"),
		InfraVnetProfile: &hybridcontainerservice.VirtualNetworksPropertiesInfraVnetProfileArgs{
			Hci: &hybridcontainerservice.VirtualNetworksPropertiesHciArgs{
				MocGroup:    pulumi.String("string"),
				MocLocation: pulumi.String("string"),
				MocVnetName: pulumi.String("string"),
			},
			NetworkCloud: &hybridcontainerservice.VirtualNetworksPropertiesNetworkCloudArgs{
				NetworkId: pulumi.String("string"),
			},
			Vmware: &hybridcontainerservice.VirtualNetworksPropertiesVmwareArgs{
				SegmentName: pulumi.String("string"),
			},
		},
		IpAddressPrefix: pulumi.String("string"),
		VipPool: hybridcontainerservice.VirtualNetworksPropertiesVipPoolArray{
			&hybridcontainerservice.VirtualNetworksPropertiesVipPoolArgs{
				EndIP:   pulumi.String("string"),
				StartIP: pulumi.String("string"),
			},
		},
		VmipPool: hybridcontainerservice.VirtualNetworksPropertiesVmipPoolArray{
			&hybridcontainerservice.VirtualNetworksPropertiesVmipPoolArgs{
				EndIP:   pulumi.String("string"),
				StartIP: pulumi.String("string"),
			},
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	VirtualNetworksName: pulumi.String("string"),
})
Copy
var virtualNetworkRetrieveResource = new VirtualNetworkRetrieve("virtualNetworkRetrieveResource", VirtualNetworkRetrieveArgs.builder()
    .resourceGroupName("string")
    .extendedLocation(VirtualNetworksExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .location("string")
    .properties(VirtualNetworksPropertiesArgs.builder()
        .dnsServers("string")
        .gateway("string")
        .infraVnetProfile(VirtualNetworksPropertiesInfraVnetProfileArgs.builder()
            .hci(VirtualNetworksPropertiesHciArgs.builder()
                .mocGroup("string")
                .mocLocation("string")
                .mocVnetName("string")
                .build())
            .networkCloud(VirtualNetworksPropertiesNetworkCloudArgs.builder()
                .networkId("string")
                .build())
            .vmware(VirtualNetworksPropertiesVmwareArgs.builder()
                .segmentName("string")
                .build())
            .build())
        .ipAddressPrefix("string")
        .vipPool(VirtualNetworksPropertiesVipPoolArgs.builder()
            .endIP("string")
            .startIP("string")
            .build())
        .vmipPool(VirtualNetworksPropertiesVmipPoolArgs.builder()
            .endIP("string")
            .startIP("string")
            .build())
        .build())
    .tags(Map.of("string", "string"))
    .virtualNetworksName("string")
    .build());
Copy
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",
            },
            "network_cloud": {
                "network_id": "string",
            },
            "vmware": {
                "segment_name": "string",
            },
        },
        "ip_address_prefix": "string",
        "vip_pool": [{
            "end_ip": "string",
            "start_ip": "string",
        }],
        "vmip_pool": [{
            "end_ip": "string",
            "start_ip": "string",
        }],
    },
    tags={
        "string": "string",
    },
    virtual_networks_name="string")
Copy
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",
            },
            networkCloud: {
                networkId: "string",
            },
            vmware: {
                segmentName: "string",
            },
        },
        ipAddressPrefix: "string",
        vipPool: [{
            endIP: "string",
            startIP: "string",
        }],
        vmipPool: [{
            endIP: "string",
            startIP: "string",
        }],
    },
    tags: {
        string: "string",
    },
    virtualNetworksName: "string",
});
Copy
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
            networkCloud:
                networkId: string
            vmware:
                segmentName: string
        ipAddressPrefix: string
        vipPool:
            - endIP: string
              startIP: string
        vmipPool:
            - endIP: string
              startIP: string
    resourceGroupName: string
    tags:
        string: string
    virtualNetworksName: string
Copy

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
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ExtendedLocation Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksExtendedLocation
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksProperties
HybridAKSNetworkSpec defines the desired state of HybridAKSNetwork
Tags Dictionary<string, string>
Resource tags.
VirtualNetworksName Changes to this property will trigger replacement. string
Parameter for the name of the virtual network
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ExtendedLocation VirtualNetworksExtendedLocationArgs
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties VirtualNetworksPropertiesArgs
HybridAKSNetworkSpec defines the desired state of HybridAKSNetwork
Tags map[string]string
Resource tags.
VirtualNetworksName Changes to this property will trigger replacement. string
Parameter for the name of the virtual network
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
extendedLocation VirtualNetworksExtendedLocation
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties VirtualNetworksProperties
HybridAKSNetworkSpec defines the desired state of HybridAKSNetwork
tags Map<String,String>
Resource tags.
virtualNetworksName Changes to this property will trigger replacement. String
Parameter for the name of the virtual network
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
extendedLocation VirtualNetworksExtendedLocation
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
properties VirtualNetworksProperties
HybridAKSNetworkSpec defines the desired state of HybridAKSNetwork
tags {[key: string]: string}
Resource tags.
virtualNetworksName Changes to this property will trigger replacement. string
Parameter for the name of the virtual network
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
extended_location VirtualNetworksExtendedLocationArgs
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
properties VirtualNetworksPropertiesArgs
HybridAKSNetworkSpec defines the desired state of HybridAKSNetwork
tags Mapping[str, str]
Resource tags.
virtual_networks_name Changes to this property will trigger replacement. str
Parameter for the name of the virtual network
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
extendedLocation Property Map
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties Property Map
HybridAKSNetworkSpec defines the desired state of HybridAKSNetwork
tags Map<String>
Resource tags.
virtualNetworksName Changes to this property will trigger replacement. 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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

SystemDataResponse
, SystemDataResponseArgs

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.
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.

VirtualNetworksExtendedLocation
, VirtualNetworksExtendedLocationArgs

Name string
The extended location name.
Type string
The extended location type.
Name string
The extended location name.
Type string
The extended location type.
name String
The extended location name.
type String
The extended location type.
name string
The extended location name.
type string
The extended location type.
name str
The extended location name.
type str
The extended location type.
name String
The extended location name.
type String
The extended location type.

VirtualNetworksProperties
, VirtualNetworksPropertiesArgs

DnsServers List<string>
Address of the DNS servers associated with the network
Gateway string
Address of the Gateway associated with the network
InfraVnetProfile Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesInfraVnetProfile
IpAddressPrefix string
IP Address Prefix of the network
VipPool List<Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesVipPool>
Virtual IP Pool for Kubernetes
VmipPool List<Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesVmipPool>
IP Pool for Virtual Machines
DnsServers []string
Address of the DNS servers associated with the network
Gateway string
Address of the Gateway associated with the network
InfraVnetProfile VirtualNetworksPropertiesInfraVnetProfile
IpAddressPrefix string
IP Address Prefix of the network
VipPool []VirtualNetworksPropertiesVipPool
Virtual IP Pool for Kubernetes
VmipPool []VirtualNetworksPropertiesVmipPool
IP Pool for Virtual Machines
dnsServers List<String>
Address of the DNS servers associated with the network
gateway String
Address of the Gateway associated with the network
infraVnetProfile VirtualNetworksPropertiesInfraVnetProfile
ipAddressPrefix String
IP Address Prefix of the network
vipPool List<VirtualNetworksPropertiesVipPool>
Virtual IP Pool for Kubernetes
vmipPool List<VirtualNetworksPropertiesVmipPool>
IP Pool for Virtual Machines
dnsServers string[]
Address of the DNS servers associated with the network
gateway string
Address of the Gateway associated with the network
infraVnetProfile VirtualNetworksPropertiesInfraVnetProfile
ipAddressPrefix string
IP Address Prefix of the network
vipPool VirtualNetworksPropertiesVipPool[]
Virtual IP Pool for Kubernetes
vmipPool VirtualNetworksPropertiesVmipPool[]
IP Pool for Virtual Machines
dns_servers Sequence[str]
Address of the DNS servers associated with the network
gateway str
Address of the Gateway associated with the network
infra_vnet_profile VirtualNetworksPropertiesInfraVnetProfile
ip_address_prefix str
IP Address Prefix of the network
vip_pool Sequence[VirtualNetworksPropertiesVipPool]
Virtual IP Pool for Kubernetes
vmip_pool Sequence[VirtualNetworksPropertiesVmipPool]
IP Pool for Virtual Machines
dnsServers List<String>
Address of the DNS servers associated with the network
gateway String
Address of the Gateway associated with the network
infraVnetProfile Property Map
ipAddressPrefix String
IP Address Prefix of the network
vipPool List<Property Map>
Virtual IP Pool for Kubernetes
vmipPool List<Property Map>
IP Pool for Virtual Machines

VirtualNetworksPropertiesHci
, VirtualNetworksPropertiesHciArgs

MocGroup string
Resource 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
Resource 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
Resource 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
Resource 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
Resource 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
Resource 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)

VirtualNetworksPropertiesInfraVnetProfile
, VirtualNetworksPropertiesInfraVnetProfileArgs

Hci VirtualNetworksPropertiesHci
Infra network profile for HCI platform
NetworkCloud VirtualNetworksPropertiesNetworkCloud
Infra network profile for the NetworkCloud platform
Vmware VirtualNetworksPropertiesVmware
Infra network profile for VMware platform
hci VirtualNetworksPropertiesHci
Infra network profile for HCI platform
networkCloud VirtualNetworksPropertiesNetworkCloud
Infra network profile for the NetworkCloud platform
vmware VirtualNetworksPropertiesVmware
Infra network profile for VMware platform
hci VirtualNetworksPropertiesHci
Infra network profile for HCI platform
networkCloud VirtualNetworksPropertiesNetworkCloud
Infra network profile for the NetworkCloud platform
vmware VirtualNetworksPropertiesVmware
Infra network profile for VMware platform
hci VirtualNetworksPropertiesHci
Infra network profile for HCI platform
network_cloud VirtualNetworksPropertiesNetworkCloud
Infra network profile for the NetworkCloud platform
vmware VirtualNetworksPropertiesVmware
Infra network profile for VMware platform
hci Property Map
Infra network profile for HCI platform
networkCloud Property Map
Infra network profile for the NetworkCloud platform
vmware Property Map
Infra network profile for VMware platform

VirtualNetworksPropertiesNetworkCloud
, VirtualNetworksPropertiesNetworkCloudArgs

NetworkId string
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
NetworkId string
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
networkId String
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
networkId string
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
network_id str
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
networkId String
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork

VirtualNetworksPropertiesResponse
, VirtualNetworksPropertiesResponseArgs

DhcpServers This property is required. List<string>
Address of the DHCP servers associated with the network
ProvisioningState This property is required. string
Status This property is required. Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesResponseStatus
HybridAKSNetworkStatus defines the observed state of HybridAKSNetwork
VlanID This property is required. string
VLAN Id used by the network
DnsServers List<string>
Address of the DNS servers associated with the network
Gateway string
Address of the Gateway associated with the network
InfraVnetProfile Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesResponseInfraVnetProfile
IpAddressPrefix string
IP Address Prefix of the network
VipPool List<Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesResponseVipPool>
Virtual IP Pool for Kubernetes
VmipPool List<Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesResponseVmipPool>
IP Pool for Virtual Machines
DhcpServers This property is required. []string
Address of the DHCP servers associated with the network
ProvisioningState This property is required. string
Status This property is required. VirtualNetworksPropertiesResponseStatus
HybridAKSNetworkStatus defines the observed state of HybridAKSNetwork
VlanID This property is required. string
VLAN Id used by the network
DnsServers []string
Address of the DNS servers associated with the network
Gateway string
Address of the Gateway associated with the network
InfraVnetProfile VirtualNetworksPropertiesResponseInfraVnetProfile
IpAddressPrefix string
IP Address Prefix of the network
VipPool []VirtualNetworksPropertiesResponseVipPool
Virtual IP Pool for Kubernetes
VmipPool []VirtualNetworksPropertiesResponseVmipPool
IP Pool for Virtual Machines
dhcpServers This property is required. List<String>
Address of the DHCP servers associated with the network
provisioningState This property is required. String
status This property is required. VirtualNetworksPropertiesResponseStatus
HybridAKSNetworkStatus defines the observed state of HybridAKSNetwork
vlanID This property is required. String
VLAN Id used by the network
dnsServers List<String>
Address of the DNS servers associated with the network
gateway String
Address of the Gateway associated with the network
infraVnetProfile VirtualNetworksPropertiesResponseInfraVnetProfile
ipAddressPrefix String
IP Address Prefix of the network
vipPool List<VirtualNetworksPropertiesResponseVipPool>
Virtual IP Pool for Kubernetes
vmipPool List<VirtualNetworksPropertiesResponseVmipPool>
IP Pool for Virtual Machines
dhcpServers This property is required. string[]
Address of the DHCP servers associated with the network
provisioningState This property is required. string
status This property is required. VirtualNetworksPropertiesResponseStatus
HybridAKSNetworkStatus defines the observed state of HybridAKSNetwork
vlanID This property is required. string
VLAN Id used by the network
dnsServers string[]
Address of the DNS servers associated with the network
gateway string
Address of the Gateway associated with the network
infraVnetProfile VirtualNetworksPropertiesResponseInfraVnetProfile
ipAddressPrefix string
IP Address Prefix of the network
vipPool VirtualNetworksPropertiesResponseVipPool[]
Virtual IP Pool for Kubernetes
vmipPool VirtualNetworksPropertiesResponseVmipPool[]
IP Pool for Virtual Machines
dhcp_servers This property is required. Sequence[str]
Address of the DHCP servers associated with the network
provisioning_state This property is required. str
status This property is required. VirtualNetworksPropertiesResponseStatus
HybridAKSNetworkStatus defines the observed state of HybridAKSNetwork
vlan_id This property is required. str
VLAN Id used by the network
dns_servers Sequence[str]
Address of the DNS servers associated with the network
gateway str
Address of the Gateway associated with the network
infra_vnet_profile VirtualNetworksPropertiesResponseInfraVnetProfile
ip_address_prefix str
IP Address Prefix of the network
vip_pool Sequence[VirtualNetworksPropertiesResponseVipPool]
Virtual IP Pool for Kubernetes
vmip_pool Sequence[VirtualNetworksPropertiesResponseVmipPool]
IP Pool for Virtual Machines
dhcpServers This property is required. List<String>
Address of the DHCP servers associated with the network
provisioningState This property is required. String
status This property is required. Property Map
HybridAKSNetworkStatus defines the observed state of HybridAKSNetwork
vlanID This property is required. String
VLAN Id used by the network
dnsServers List<String>
Address of the DNS servers associated with the network
gateway String
Address of the Gateway associated with the network
infraVnetProfile Property Map
ipAddressPrefix String
IP Address Prefix of the network
vipPool List<Property Map>
Virtual IP Pool for Kubernetes
vmipPool List<Property Map>
IP Pool for Virtual Machines

VirtualNetworksPropertiesResponseError
, VirtualNetworksPropertiesResponseErrorArgs

Code string
Message string
Code string
Message string
code String
message String
code string
message string
code str
message str
code String
message String

VirtualNetworksPropertiesResponseHci
, VirtualNetworksPropertiesResponseHciArgs

MocGroup string
Resource 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
Resource 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
Resource 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
Resource 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
Resource 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
Resource 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)

VirtualNetworksPropertiesResponseInfraVnetProfile
, VirtualNetworksPropertiesResponseInfraVnetProfileArgs

Hci VirtualNetworksPropertiesResponseHci
Infra network profile for HCI platform
NetworkCloud VirtualNetworksPropertiesResponseNetworkCloud
Infra network profile for the NetworkCloud platform
Vmware VirtualNetworksPropertiesResponseVmware
Infra network profile for VMware platform
hci VirtualNetworksPropertiesResponseHci
Infra network profile for HCI platform
networkCloud VirtualNetworksPropertiesResponseNetworkCloud
Infra network profile for the NetworkCloud platform
vmware VirtualNetworksPropertiesResponseVmware
Infra network profile for VMware platform
hci VirtualNetworksPropertiesResponseHci
Infra network profile for HCI platform
networkCloud VirtualNetworksPropertiesResponseNetworkCloud
Infra network profile for the NetworkCloud platform
vmware VirtualNetworksPropertiesResponseVmware
Infra network profile for VMware platform
hci VirtualNetworksPropertiesResponseHci
Infra network profile for HCI platform
network_cloud VirtualNetworksPropertiesResponseNetworkCloud
Infra network profile for the NetworkCloud platform
vmware VirtualNetworksPropertiesResponseVmware
Infra network profile for VMware platform
hci Property Map
Infra network profile for HCI platform
networkCloud Property Map
Infra network profile for the NetworkCloud platform
vmware Property Map
Infra network profile for VMware platform

VirtualNetworksPropertiesResponseNetworkCloud
, VirtualNetworksPropertiesResponseNetworkCloudArgs

NetworkId string
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
NetworkId string
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
networkId String
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
networkId string
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
network_id str
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork
networkId String
The ARM ID of Network Cloud Network Resource to Associate with this VirtualNetwork

VirtualNetworksPropertiesResponseProvisioningStatus
, VirtualNetworksPropertiesResponseProvisioningStatusArgs

Error Pulumi.AzureNative.HybridContainerService.Inputs.VirtualNetworksPropertiesResponseError
OperationId string
Phase string
Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
Status string
Error VirtualNetworksPropertiesResponseError
OperationId string
Phase string
Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
Status string
error VirtualNetworksPropertiesResponseError
operationId String
phase String
Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
status String
error VirtualNetworksPropertiesResponseError
operationId string
phase string
Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
status string
error VirtualNetworksPropertiesResponseError
operation_id str
phase str
Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
status str
error Property Map
operationId String
phase String
Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
status String

VirtualNetworksPropertiesResponseStatus
, VirtualNetworksPropertiesResponseStatusArgs

provisioningStatus Property Map
Contains Provisioning errors

VirtualNetworksPropertiesResponseVipPool
, VirtualNetworksPropertiesResponseVipPoolArgs

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
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

VirtualNetworksPropertiesResponseVmipPool
, VirtualNetworksPropertiesResponseVmipPoolArgs

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
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

VirtualNetworksPropertiesResponseVmware
, VirtualNetworksPropertiesResponseVmwareArgs

SegmentName string
Name of the network segment in VSphere
SegmentName string
Name of the network segment in VSphere
segmentName String
Name of the network segment in VSphere
segmentName string
Name of the network segment in VSphere
segment_name str
Name of the network segment in VSphere
segmentName String
Name of the network segment in VSphere

VirtualNetworksPropertiesVipPool
, VirtualNetworksPropertiesVipPoolArgs

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
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

VirtualNetworksPropertiesVmipPool
, VirtualNetworksPropertiesVmipPoolArgs

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
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

VirtualNetworksPropertiesVmware
, VirtualNetworksPropertiesVmwareArgs

SegmentName string
Name of the network segment in VSphere
SegmentName string
Name of the network segment in VSphere
segmentName String
Name of the network segment in VSphere
segmentName string
Name of the network segment in VSphere
segment_name str
Name of the network segment in VSphere
segmentName String
Name of the network segment in VSphere

VirtualNetworksResponseExtendedLocation
, VirtualNetworksResponseExtendedLocationArgs

Name string
The extended location name.
Type string
The extended location type.
Name string
The extended location name.
Type string
The extended location type.
name String
The extended location name.
type String
The extended location type.
name string
The extended location name.
type string
The extended location type.
name str
The extended location name.
type str
The extended location type.
name String
The extended location name.
type String
The extended location type.

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/{virtualNetworksName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi