1. Packages
  2. Azure Native v2
  3. API Docs
  4. network
  5. NetworkVirtualAppliance
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.network.NetworkVirtualAppliance

Explore with Pulumi AI

NetworkVirtualAppliance Resource. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.

Other available API versions: 2020-04-01, 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01, 2024-05-01.

Example Usage

Create SaaS NetworkVirtualAppliance

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var networkVirtualAppliance = new AzureNative.Network.NetworkVirtualAppliance("networkVirtualAppliance", new()
    {
        Delegation = new AzureNative.Network.Inputs.DelegationPropertiesArgs
        {
            ServiceName = "PaloAltoNetworks.Cloudngfw/firewalls",
        },
        Location = "West US",
        NetworkVirtualApplianceName = "nva",
        ResourceGroupName = "rg1",
        Tags = 
        {
            { "key1", "value1" },
        },
        VirtualHub = new AzureNative.Network.Inputs.SubResourceArgs
        {
            Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
        },
    });

});
Copy
package main

import (
	network "github.com/pulumi/pulumi-azure-native-sdk/network/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := network.NewNetworkVirtualAppliance(ctx, "networkVirtualAppliance", &network.NetworkVirtualApplianceArgs{
			Delegation: &network.DelegationPropertiesArgs{
				ServiceName: pulumi.String("PaloAltoNetworks.Cloudngfw/firewalls"),
			},
			Location:                    pulumi.String("West US"),
			NetworkVirtualApplianceName: pulumi.String("nva"),
			ResourceGroupName:           pulumi.String("rg1"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("value1"),
			},
			VirtualHub: &network.SubResourceArgs{
				Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"),
			},
		})
		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.network.NetworkVirtualAppliance;
import com.pulumi.azurenative.network.NetworkVirtualApplianceArgs;
import com.pulumi.azurenative.network.inputs.DelegationPropertiesArgs;
import com.pulumi.azurenative.network.inputs.SubResourceArgs;
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 networkVirtualAppliance = new NetworkVirtualAppliance("networkVirtualAppliance", NetworkVirtualApplianceArgs.builder()
            .delegation(DelegationPropertiesArgs.builder()
                .serviceName("PaloAltoNetworks.Cloudngfw/firewalls")
                .build())
            .location("West US")
            .networkVirtualApplianceName("nva")
            .resourceGroupName("rg1")
            .tags(Map.of("key1", "value1"))
            .virtualHub(SubResourceArgs.builder()
                .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const networkVirtualAppliance = new azure_native.network.NetworkVirtualAppliance("networkVirtualAppliance", {
    delegation: {
        serviceName: "PaloAltoNetworks.Cloudngfw/firewalls",
    },
    location: "West US",
    networkVirtualApplianceName: "nva",
    resourceGroupName: "rg1",
    tags: {
        key1: "value1",
    },
    virtualHub: {
        id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

network_virtual_appliance = azure_native.network.NetworkVirtualAppliance("networkVirtualAppliance",
    delegation={
        "service_name": "PaloAltoNetworks.Cloudngfw/firewalls",
    },
    location="West US",
    network_virtual_appliance_name="nva",
    resource_group_name="rg1",
    tags={
        "key1": "value1",
    },
    virtual_hub={
        "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
    })
Copy
resources:
  networkVirtualAppliance:
    type: azure-native:network:NetworkVirtualAppliance
    properties:
      delegation:
        serviceName: PaloAltoNetworks.Cloudngfw/firewalls
      location: West US
      networkVirtualApplianceName: nva
      resourceGroupName: rg1
      tags:
        key1: value1
      virtualHub:
        id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1
Copy

Create NetworkVirtualAppliance Resource

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

Constructor syntax

new NetworkVirtualAppliance(name: string, args: NetworkVirtualApplianceArgs, opts?: CustomResourceOptions);
@overload
def NetworkVirtualAppliance(resource_name: str,
                            args: NetworkVirtualApplianceArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def NetworkVirtualAppliance(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            resource_group_name: Optional[str] = None,
                            identity: Optional[ManagedServiceIdentityArgs] = None,
                            network_virtual_appliance_name: Optional[str] = None,
                            cloud_init_configuration_blobs: Optional[Sequence[str]] = None,
                            delegation: Optional[DelegationPropertiesArgs] = None,
                            id: Optional[str] = None,
                            additional_nics: Optional[Sequence[VirtualApplianceAdditionalNicPropertiesArgs]] = None,
                            location: Optional[str] = None,
                            cloud_init_configuration: Optional[str] = None,
                            nva_sku: Optional[VirtualApplianceSkuPropertiesArgs] = None,
                            boot_strap_configuration_blobs: Optional[Sequence[str]] = None,
                            ssh_public_key: Optional[str] = None,
                            tags: Optional[Mapping[str, str]] = None,
                            virtual_appliance_asn: Optional[float] = None,
                            virtual_hub: Optional[SubResourceArgs] = None)
func NewNetworkVirtualAppliance(ctx *Context, name string, args NetworkVirtualApplianceArgs, opts ...ResourceOption) (*NetworkVirtualAppliance, error)
public NetworkVirtualAppliance(string name, NetworkVirtualApplianceArgs args, CustomResourceOptions? opts = null)
public NetworkVirtualAppliance(String name, NetworkVirtualApplianceArgs args)
public NetworkVirtualAppliance(String name, NetworkVirtualApplianceArgs args, CustomResourceOptions options)
type: azure-native:network:NetworkVirtualAppliance
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. NetworkVirtualApplianceArgs
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. NetworkVirtualApplianceArgs
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. NetworkVirtualApplianceArgs
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. NetworkVirtualApplianceArgs
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. NetworkVirtualApplianceArgs
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 networkVirtualApplianceResource = new AzureNative.Network.NetworkVirtualAppliance("networkVirtualApplianceResource", new()
{
    ResourceGroupName = "string",
    Identity = 
    {
        { "type", "SystemAssigned" },
        { "userAssignedIdentities", new[]
        {
            "string",
        } },
    },
    NetworkVirtualApplianceName = "string",
    CloudInitConfigurationBlobs = new[]
    {
        "string",
    },
    Delegation = 
    {
        { "serviceName", "string" },
    },
    Id = "string",
    AdditionalNics = new[]
    {
        
        {
            { "hasPublicIp", false },
            { "name", "string" },
        },
    },
    Location = "string",
    CloudInitConfiguration = "string",
    NvaSku = 
    {
        { "bundledScaleUnit", "string" },
        { "marketPlaceVersion", "string" },
        { "vendor", "string" },
    },
    BootStrapConfigurationBlobs = new[]
    {
        "string",
    },
    SshPublicKey = "string",
    Tags = 
    {
        { "string", "string" },
    },
    VirtualApplianceAsn = 0,
    VirtualHub = 
    {
        { "id", "string" },
    },
});
Copy
example, err := network.NewNetworkVirtualAppliance(ctx, "networkVirtualApplianceResource", &network.NetworkVirtualApplianceArgs{
	ResourceGroupName: "string",
	Identity: map[string]interface{}{
		"type": "SystemAssigned",
		"userAssignedIdentities": []string{
			"string",
		},
	},
	NetworkVirtualApplianceName: "string",
	CloudInitConfigurationBlobs: []string{
		"string",
	},
	Delegation: map[string]interface{}{
		"serviceName": "string",
	},
	Id: "string",
	AdditionalNics: []map[string]interface{}{
		map[string]interface{}{
			"hasPublicIp": false,
			"name":        "string",
		},
	},
	Location:               "string",
	CloudInitConfiguration: "string",
	NvaSku: map[string]interface{}{
		"bundledScaleUnit":   "string",
		"marketPlaceVersion": "string",
		"vendor":             "string",
	},
	BootStrapConfigurationBlobs: []string{
		"string",
	},
	SshPublicKey: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	VirtualApplianceAsn: 0,
	VirtualHub: map[string]interface{}{
		"id": "string",
	},
})
Copy
var networkVirtualApplianceResource = new NetworkVirtualAppliance("networkVirtualApplianceResource", NetworkVirtualApplianceArgs.builder()
    .resourceGroupName("string")
    .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .networkVirtualApplianceName("string")
    .cloudInitConfigurationBlobs("string")
    .delegation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .id("string")
    .additionalNics(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .cloudInitConfiguration("string")
    .nvaSku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .bootStrapConfigurationBlobs("string")
    .sshPublicKey("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .virtualApplianceAsn(0)
    .virtualHub(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
network_virtual_appliance_resource = azure_native.network.NetworkVirtualAppliance("networkVirtualApplianceResource",
    resource_group_name=string,
    identity={
        type: SystemAssigned,
        userAssignedIdentities: [string],
    },
    network_virtual_appliance_name=string,
    cloud_init_configuration_blobs=[string],
    delegation={
        serviceName: string,
    },
    id=string,
    additional_nics=[{
        hasPublicIp: False,
        name: string,
    }],
    location=string,
    cloud_init_configuration=string,
    nva_sku={
        bundledScaleUnit: string,
        marketPlaceVersion: string,
        vendor: string,
    },
    boot_strap_configuration_blobs=[string],
    ssh_public_key=string,
    tags={
        string: string,
    },
    virtual_appliance_asn=0,
    virtual_hub={
        id: string,
    })
Copy
const networkVirtualApplianceResource = new azure_native.network.NetworkVirtualAppliance("networkVirtualApplianceResource", {
    resourceGroupName: "string",
    identity: {
        type: "SystemAssigned",
        userAssignedIdentities: ["string"],
    },
    networkVirtualApplianceName: "string",
    cloudInitConfigurationBlobs: ["string"],
    delegation: {
        serviceName: "string",
    },
    id: "string",
    additionalNics: [{
        hasPublicIp: false,
        name: "string",
    }],
    location: "string",
    cloudInitConfiguration: "string",
    nvaSku: {
        bundledScaleUnit: "string",
        marketPlaceVersion: "string",
        vendor: "string",
    },
    bootStrapConfigurationBlobs: ["string"],
    sshPublicKey: "string",
    tags: {
        string: "string",
    },
    virtualApplianceAsn: 0,
    virtualHub: {
        id: "string",
    },
});
Copy
type: azure-native:network:NetworkVirtualAppliance
properties:
    additionalNics:
        - hasPublicIp: false
          name: string
    bootStrapConfigurationBlobs:
        - string
    cloudInitConfiguration: string
    cloudInitConfigurationBlobs:
        - string
    delegation:
        serviceName: string
    id: string
    identity:
        type: SystemAssigned
        userAssignedIdentities:
            - string
    location: string
    networkVirtualApplianceName: string
    nvaSku:
        bundledScaleUnit: string
        marketPlaceVersion: string
        vendor: string
    resourceGroupName: string
    sshPublicKey: string
    tags:
        string: string
    virtualApplianceAsn: 0
    virtualHub:
        id: string
Copy

NetworkVirtualAppliance 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 NetworkVirtualAppliance 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.
AdditionalNics List<Pulumi.AzureNative.Network.Inputs.VirtualApplianceAdditionalNicProperties>
Details required for Additional Network Interface.
BootStrapConfigurationBlobs List<string>
BootStrapConfigurationBlobs storage URLs.
CloudInitConfiguration string
CloudInitConfiguration string in plain text.
CloudInitConfigurationBlobs List<string>
CloudInitConfigurationBlob storage URLs.
Delegation Pulumi.AzureNative.Network.Inputs.DelegationProperties
The delegation for the Virtual Appliance
Id string
Resource ID.
Identity Pulumi.AzureNative.Network.Inputs.ManagedServiceIdentity
The service principal that has read access to cloud-init and config blob.
Location string
Resource location.
NetworkVirtualApplianceName Changes to this property will trigger replacement. string
The name of Network Virtual Appliance.
NvaSku Pulumi.AzureNative.Network.Inputs.VirtualApplianceSkuProperties
Network Virtual Appliance SKU.
SshPublicKey string
Public key for SSH login.
Tags Dictionary<string, string>
Resource tags.
VirtualApplianceAsn double
VirtualAppliance ASN. Microsoft private, public and IANA reserved ASN are not supported.
VirtualHub Pulumi.AzureNative.Network.Inputs.SubResource
The Virtual Hub where Network Virtual Appliance is being deployed.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
AdditionalNics []VirtualApplianceAdditionalNicPropertiesArgs
Details required for Additional Network Interface.
BootStrapConfigurationBlobs []string
BootStrapConfigurationBlobs storage URLs.
CloudInitConfiguration string
CloudInitConfiguration string in plain text.
CloudInitConfigurationBlobs []string
CloudInitConfigurationBlob storage URLs.
Delegation DelegationPropertiesArgs
The delegation for the Virtual Appliance
Id string
Resource ID.
Identity ManagedServiceIdentityArgs
The service principal that has read access to cloud-init and config blob.
Location string
Resource location.
NetworkVirtualApplianceName Changes to this property will trigger replacement. string
The name of Network Virtual Appliance.
NvaSku VirtualApplianceSkuPropertiesArgs
Network Virtual Appliance SKU.
SshPublicKey string
Public key for SSH login.
Tags map[string]string
Resource tags.
VirtualApplianceAsn float64
VirtualAppliance ASN. Microsoft private, public and IANA reserved ASN are not supported.
VirtualHub SubResourceArgs
The Virtual Hub where Network Virtual Appliance is being deployed.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
additionalNics List<VirtualApplianceAdditionalNicProperties>
Details required for Additional Network Interface.
bootStrapConfigurationBlobs List<String>
BootStrapConfigurationBlobs storage URLs.
cloudInitConfiguration String
CloudInitConfiguration string in plain text.
cloudInitConfigurationBlobs List<String>
CloudInitConfigurationBlob storage URLs.
delegation DelegationProperties
The delegation for the Virtual Appliance
id String
Resource ID.
identity ManagedServiceIdentity
The service principal that has read access to cloud-init and config blob.
location String
Resource location.
networkVirtualApplianceName Changes to this property will trigger replacement. String
The name of Network Virtual Appliance.
nvaSku VirtualApplianceSkuProperties
Network Virtual Appliance SKU.
sshPublicKey String
Public key for SSH login.
tags Map<String,String>
Resource tags.
virtualApplianceAsn Double
VirtualAppliance ASN. Microsoft private, public and IANA reserved ASN are not supported.
virtualHub SubResource
The Virtual Hub where Network Virtual Appliance is being deployed.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
additionalNics VirtualApplianceAdditionalNicProperties[]
Details required for Additional Network Interface.
bootStrapConfigurationBlobs string[]
BootStrapConfigurationBlobs storage URLs.
cloudInitConfiguration string
CloudInitConfiguration string in plain text.
cloudInitConfigurationBlobs string[]
CloudInitConfigurationBlob storage URLs.
delegation DelegationProperties
The delegation for the Virtual Appliance
id string
Resource ID.
identity ManagedServiceIdentity
The service principal that has read access to cloud-init and config blob.
location string
Resource location.
networkVirtualApplianceName Changes to this property will trigger replacement. string
The name of Network Virtual Appliance.
nvaSku VirtualApplianceSkuProperties
Network Virtual Appliance SKU.
sshPublicKey string
Public key for SSH login.
tags {[key: string]: string}
Resource tags.
virtualApplianceAsn number
VirtualAppliance ASN. Microsoft private, public and IANA reserved ASN are not supported.
virtualHub SubResource
The Virtual Hub where Network Virtual Appliance is being deployed.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
additional_nics Sequence[VirtualApplianceAdditionalNicPropertiesArgs]
Details required for Additional Network Interface.
boot_strap_configuration_blobs Sequence[str]
BootStrapConfigurationBlobs storage URLs.
cloud_init_configuration str
CloudInitConfiguration string in plain text.
cloud_init_configuration_blobs Sequence[str]
CloudInitConfigurationBlob storage URLs.
delegation DelegationPropertiesArgs
The delegation for the Virtual Appliance
id str
Resource ID.
identity ManagedServiceIdentityArgs
The service principal that has read access to cloud-init and config blob.
location str
Resource location.
network_virtual_appliance_name Changes to this property will trigger replacement. str
The name of Network Virtual Appliance.
nva_sku VirtualApplianceSkuPropertiesArgs
Network Virtual Appliance SKU.
ssh_public_key str
Public key for SSH login.
tags Mapping[str, str]
Resource tags.
virtual_appliance_asn float
VirtualAppliance ASN. Microsoft private, public and IANA reserved ASN are not supported.
virtual_hub SubResourceArgs
The Virtual Hub where Network Virtual Appliance is being deployed.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
additionalNics List<Property Map>
Details required for Additional Network Interface.
bootStrapConfigurationBlobs List<String>
BootStrapConfigurationBlobs storage URLs.
cloudInitConfiguration String
CloudInitConfiguration string in plain text.
cloudInitConfigurationBlobs List<String>
CloudInitConfigurationBlob storage URLs.
delegation Property Map
The delegation for the Virtual Appliance
id String
Resource ID.
identity Property Map
The service principal that has read access to cloud-init and config blob.
location String
Resource location.
networkVirtualApplianceName Changes to this property will trigger replacement. String
The name of Network Virtual Appliance.
nvaSku Property Map
Network Virtual Appliance SKU.
sshPublicKey String
Public key for SSH login.
tags Map<String>
Resource tags.
virtualApplianceAsn Number
VirtualAppliance ASN. Microsoft private, public and IANA reserved ASN are not supported.
virtualHub Property Map
The Virtual Hub where Network Virtual Appliance is being deployed.

Outputs

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

AddressPrefix string
Address Prefix.
DeploymentType string
The deployment type. PartnerManaged for the SaaS NVA
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
InboundSecurityRules List<Pulumi.AzureNative.Network.Outputs.SubResourceResponse>
List of references to InboundSecurityRules.
Name string
Resource name.
ProvisioningState string
The provisioning state of the resource.
Type string
Resource type.
VirtualApplianceNics List<Pulumi.AzureNative.Network.Outputs.VirtualApplianceNicPropertiesResponse>
List of Virtual Appliance Network Interfaces.
VirtualApplianceSites List<Pulumi.AzureNative.Network.Outputs.SubResourceResponse>
List of references to VirtualApplianceSite.
PartnerManagedResource Pulumi.AzureNative.Network.Outputs.PartnerManagedResourcePropertiesResponse
The delegation for the Virtual Appliance
AddressPrefix string
Address Prefix.
DeploymentType string
The deployment type. PartnerManaged for the SaaS NVA
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
InboundSecurityRules []SubResourceResponse
List of references to InboundSecurityRules.
Name string
Resource name.
ProvisioningState string
The provisioning state of the resource.
Type string
Resource type.
VirtualApplianceNics []VirtualApplianceNicPropertiesResponse
List of Virtual Appliance Network Interfaces.
VirtualApplianceSites []SubResourceResponse
List of references to VirtualApplianceSite.
PartnerManagedResource PartnerManagedResourcePropertiesResponse
The delegation for the Virtual Appliance
addressPrefix String
Address Prefix.
deploymentType String
The deployment type. PartnerManaged for the SaaS NVA
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
inboundSecurityRules List<SubResourceResponse>
List of references to InboundSecurityRules.
name String
Resource name.
provisioningState String
The provisioning state of the resource.
type String
Resource type.
virtualApplianceNics List<VirtualApplianceNicPropertiesResponse>
List of Virtual Appliance Network Interfaces.
virtualApplianceSites List<SubResourceResponse>
List of references to VirtualApplianceSite.
partnerManagedResource PartnerManagedResourcePropertiesResponse
The delegation for the Virtual Appliance
addressPrefix string
Address Prefix.
deploymentType string
The deployment type. PartnerManaged for the SaaS NVA
etag string
A unique read-only string that changes whenever the resource is updated.
id string
The provider-assigned unique ID for this managed resource.
inboundSecurityRules SubResourceResponse[]
List of references to InboundSecurityRules.
name string
Resource name.
provisioningState string
The provisioning state of the resource.
type string
Resource type.
virtualApplianceNics VirtualApplianceNicPropertiesResponse[]
List of Virtual Appliance Network Interfaces.
virtualApplianceSites SubResourceResponse[]
List of references to VirtualApplianceSite.
partnerManagedResource PartnerManagedResourcePropertiesResponse
The delegation for the Virtual Appliance
address_prefix str
Address Prefix.
deployment_type str
The deployment type. PartnerManaged for the SaaS NVA
etag str
A unique read-only string that changes whenever the resource is updated.
id str
The provider-assigned unique ID for this managed resource.
inbound_security_rules Sequence[SubResourceResponse]
List of references to InboundSecurityRules.
name str
Resource name.
provisioning_state str
The provisioning state of the resource.
type str
Resource type.
virtual_appliance_nics Sequence[VirtualApplianceNicPropertiesResponse]
List of Virtual Appliance Network Interfaces.
virtual_appliance_sites Sequence[SubResourceResponse]
List of references to VirtualApplianceSite.
partner_managed_resource PartnerManagedResourcePropertiesResponse
The delegation for the Virtual Appliance
addressPrefix String
Address Prefix.
deploymentType String
The deployment type. PartnerManaged for the SaaS NVA
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
inboundSecurityRules List<Property Map>
List of references to InboundSecurityRules.
name String
Resource name.
provisioningState String
The provisioning state of the resource.
type String
Resource type.
virtualApplianceNics List<Property Map>
List of Virtual Appliance Network Interfaces.
virtualApplianceSites List<Property Map>
List of references to VirtualApplianceSite.
partnerManagedResource Property Map
The delegation for the Virtual Appliance

Supporting Types

DelegationProperties
, DelegationPropertiesArgs

ServiceName string
The service name to which the NVA is delegated.
ServiceName string
The service name to which the NVA is delegated.
serviceName String
The service name to which the NVA is delegated.
serviceName string
The service name to which the NVA is delegated.
service_name str
The service name to which the NVA is delegated.
serviceName String
The service name to which the NVA is delegated.

DelegationPropertiesResponse
, DelegationPropertiesResponseArgs

ProvisioningState This property is required. string
The current provisioning state.
ServiceName string
The service name to which the NVA is delegated.
ProvisioningState This property is required. string
The current provisioning state.
ServiceName string
The service name to which the NVA is delegated.
provisioningState This property is required. String
The current provisioning state.
serviceName String
The service name to which the NVA is delegated.
provisioningState This property is required. string
The current provisioning state.
serviceName string
The service name to which the NVA is delegated.
provisioning_state This property is required. str
The current provisioning state.
service_name str
The service name to which the NVA is delegated.
provisioningState This property is required. String
The current provisioning state.
serviceName String
The service name to which the NVA is delegated.

ManagedServiceIdentity
, ManagedServiceIdentityArgs

Type Pulumi.AzureNative.Network.ResourceIdentityType
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
UserAssignedIdentities List<string>
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
Type ResourceIdentityType
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
UserAssignedIdentities []string
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
type ResourceIdentityType
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
userAssignedIdentities List<String>
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
type ResourceIdentityType
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
userAssignedIdentities string[]
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
type ResourceIdentityType
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
user_assigned_identities Sequence[str]
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
type "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned" | "None"
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
userAssignedIdentities List<String>
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

ManagedServiceIdentityResponse
, ManagedServiceIdentityResponseArgs

PrincipalId This property is required. string
The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.
Type string
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Network.Inputs.ManagedServiceIdentityResponseUserAssignedIdentities>
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
PrincipalId This property is required. string
The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.
Type string
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
UserAssignedIdentities map[string]ManagedServiceIdentityResponseUserAssignedIdentities
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId This property is required. String
The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.
type String
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
userAssignedIdentities Map<String,ManagedServiceIdentityResponseUserAssignedIdentities>
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId This property is required. string
The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.
type string
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
userAssignedIdentities {[key: string]: ManagedServiceIdentityResponseUserAssignedIdentities}
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principal_id This property is required. str
The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.
type str
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
user_assigned_identities Mapping[str, ManagedServiceIdentityResponseUserAssignedIdentities]
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId This property is required. String
The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant id of the system assigned identity. This property will only be provided for a system assigned identity.
type String
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
userAssignedIdentities Map<Property Map>
The list of user identities associated with resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

ManagedServiceIdentityResponseUserAssignedIdentities
, ManagedServiceIdentityResponseUserAssignedIdentitiesArgs

ClientId This property is required. string
The client id of user assigned identity.
PrincipalId This property is required. string
The principal id of user assigned identity.
ClientId This property is required. string
The client id of user assigned identity.
PrincipalId This property is required. string
The principal id of user assigned identity.
clientId This property is required. String
The client id of user assigned identity.
principalId This property is required. String
The principal id of user assigned identity.
clientId This property is required. string
The client id of user assigned identity.
principalId This property is required. string
The principal id of user assigned identity.
client_id This property is required. str
The client id of user assigned identity.
principal_id This property is required. str
The principal id of user assigned identity.
clientId This property is required. String
The client id of user assigned identity.
principalId This property is required. String
The principal id of user assigned identity.

PartnerManagedResourcePropertiesResponse
, PartnerManagedResourcePropertiesResponseArgs

Id This property is required. string
The partner managed resource id.
InternalLoadBalancerId This property is required. string
The partner managed ILB resource id
StandardLoadBalancerId This property is required. string
The partner managed SLB resource id
Id This property is required. string
The partner managed resource id.
InternalLoadBalancerId This property is required. string
The partner managed ILB resource id
StandardLoadBalancerId This property is required. string
The partner managed SLB resource id
id This property is required. String
The partner managed resource id.
internalLoadBalancerId This property is required. String
The partner managed ILB resource id
standardLoadBalancerId This property is required. String
The partner managed SLB resource id
id This property is required. string
The partner managed resource id.
internalLoadBalancerId This property is required. string
The partner managed ILB resource id
standardLoadBalancerId This property is required. string
The partner managed SLB resource id
id This property is required. str
The partner managed resource id.
internal_load_balancer_id This property is required. str
The partner managed ILB resource id
standard_load_balancer_id This property is required. str
The partner managed SLB resource id
id This property is required. String
The partner managed resource id.
internalLoadBalancerId This property is required. String
The partner managed ILB resource id
standardLoadBalancerId This property is required. String
The partner managed SLB resource id

ResourceIdentityType
, ResourceIdentityTypeArgs

SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
None
None
ResourceIdentityTypeSystemAssigned
SystemAssigned
ResourceIdentityTypeUserAssigned
UserAssigned
ResourceIdentityType_SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
ResourceIdentityTypeNone
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
None
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned, UserAssigned
NONE
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned, UserAssigned"
SystemAssigned, UserAssigned
"None"
None

SubResource
, SubResourceArgs

Id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
Id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id String
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id str
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id String
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.

SubResourceResponse
, SubResourceResponseArgs

Id This property is required. string
Resource ID.
Id This property is required. string
Resource ID.
id This property is required. String
Resource ID.
id This property is required. string
Resource ID.
id This property is required. str
Resource ID.
id This property is required. String
Resource ID.

VirtualApplianceAdditionalNicProperties
, VirtualApplianceAdditionalNicPropertiesArgs

HasPublicIp bool
Flag (true or false) for Intent for Public Ip on additional nic
Name string
Name of additional nic
HasPublicIp bool
Flag (true or false) for Intent for Public Ip on additional nic
Name string
Name of additional nic
hasPublicIp Boolean
Flag (true or false) for Intent for Public Ip on additional nic
name String
Name of additional nic
hasPublicIp boolean
Flag (true or false) for Intent for Public Ip on additional nic
name string
Name of additional nic
has_public_ip bool
Flag (true or false) for Intent for Public Ip on additional nic
name str
Name of additional nic
hasPublicIp Boolean
Flag (true or false) for Intent for Public Ip on additional nic
name String
Name of additional nic

VirtualApplianceAdditionalNicPropertiesResponse
, VirtualApplianceAdditionalNicPropertiesResponseArgs

HasPublicIp bool
Flag (true or false) for Intent for Public Ip on additional nic
Name string
Name of additional nic
HasPublicIp bool
Flag (true or false) for Intent for Public Ip on additional nic
Name string
Name of additional nic
hasPublicIp Boolean
Flag (true or false) for Intent for Public Ip on additional nic
name String
Name of additional nic
hasPublicIp boolean
Flag (true or false) for Intent for Public Ip on additional nic
name string
Name of additional nic
has_public_ip bool
Flag (true or false) for Intent for Public Ip on additional nic
name str
Name of additional nic
hasPublicIp Boolean
Flag (true or false) for Intent for Public Ip on additional nic
name String
Name of additional nic

VirtualApplianceNicPropertiesResponse
, VirtualApplianceNicPropertiesResponseArgs

InstanceName This property is required. string
Instance on which nic is attached.
Name This property is required. string
NIC name.
PrivateIpAddress This property is required. string
Private IP address.
PublicIpAddress This property is required. string
Public IP address.
InstanceName This property is required. string
Instance on which nic is attached.
Name This property is required. string
NIC name.
PrivateIpAddress This property is required. string
Private IP address.
PublicIpAddress This property is required. string
Public IP address.
instanceName This property is required. String
Instance on which nic is attached.
name This property is required. String
NIC name.
privateIpAddress This property is required. String
Private IP address.
publicIpAddress This property is required. String
Public IP address.
instanceName This property is required. string
Instance on which nic is attached.
name This property is required. string
NIC name.
privateIpAddress This property is required. string
Private IP address.
publicIpAddress This property is required. string
Public IP address.
instance_name This property is required. str
Instance on which nic is attached.
name This property is required. str
NIC name.
private_ip_address This property is required. str
Private IP address.
public_ip_address This property is required. str
Public IP address.
instanceName This property is required. String
Instance on which nic is attached.
name This property is required. String
NIC name.
privateIpAddress This property is required. String
Private IP address.
publicIpAddress This property is required. String
Public IP address.

VirtualApplianceSkuProperties
, VirtualApplianceSkuPropertiesArgs

BundledScaleUnit string
Virtual Appliance Scale Unit.
MarketPlaceVersion string
Virtual Appliance Version.
Vendor string
Virtual Appliance Vendor.
BundledScaleUnit string
Virtual Appliance Scale Unit.
MarketPlaceVersion string
Virtual Appliance Version.
Vendor string
Virtual Appliance Vendor.
bundledScaleUnit String
Virtual Appliance Scale Unit.
marketPlaceVersion String
Virtual Appliance Version.
vendor String
Virtual Appliance Vendor.
bundledScaleUnit string
Virtual Appliance Scale Unit.
marketPlaceVersion string
Virtual Appliance Version.
vendor string
Virtual Appliance Vendor.
bundled_scale_unit str
Virtual Appliance Scale Unit.
market_place_version str
Virtual Appliance Version.
vendor str
Virtual Appliance Vendor.
bundledScaleUnit String
Virtual Appliance Scale Unit.
marketPlaceVersion String
Virtual Appliance Version.
vendor String
Virtual Appliance Vendor.

VirtualApplianceSkuPropertiesResponse
, VirtualApplianceSkuPropertiesResponseArgs

BundledScaleUnit string
Virtual Appliance Scale Unit.
MarketPlaceVersion string
Virtual Appliance Version.
Vendor string
Virtual Appliance Vendor.
BundledScaleUnit string
Virtual Appliance Scale Unit.
MarketPlaceVersion string
Virtual Appliance Version.
Vendor string
Virtual Appliance Vendor.
bundledScaleUnit String
Virtual Appliance Scale Unit.
marketPlaceVersion String
Virtual Appliance Version.
vendor String
Virtual Appliance Vendor.
bundledScaleUnit string
Virtual Appliance Scale Unit.
marketPlaceVersion string
Virtual Appliance Version.
vendor string
Virtual Appliance Vendor.
bundled_scale_unit str
Virtual Appliance Scale Unit.
market_place_version str
Virtual Appliance Version.
vendor str
Virtual Appliance Vendor.
bundledScaleUnit String
Virtual Appliance Scale Unit.
marketPlaceVersion String
Virtual Appliance Version.
vendor String
Virtual Appliance Vendor.

Import

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

$ pulumi import azure-native:network:NetworkVirtualAppliance nva /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkVirtualAppliances/{networkVirtualApplianceName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0