azure-native.network.NetworkVirtualAppliance
Explore with Pulumi AI
NetworkVirtualAppliance Resource. API Version: 2020-11-01.
Example Usage
Create 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()
{
BootStrapConfigurationBlobs = new[]
{
"https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrbootstrapconfig",
},
CloudInitConfigurationBlobs = new[]
{
"https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrcloudinitconfig",
},
Identity = new AzureNative.Network.Inputs.ManagedServiceIdentityArgs
{
Type = AzureNative.Network.ResourceIdentityType.UserAssigned,
UserAssignedIdentities =
{
{ "/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1", null },
},
},
Location = "West US",
NetworkVirtualApplianceName = "nva",
NvaSku = new AzureNative.Network.Inputs.VirtualApplianceSkuPropertiesArgs
{
BundledScaleUnit = "1",
MarketPlaceVersion = "12.1",
Vendor = "Cisco SDWAN",
},
ResourceGroupName = "rg1",
Tags =
{
{ "key1", "value1" },
},
VirtualApplianceAsn = 10000,
VirtualHub = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
},
});
});
package main
import (
network "github.com/pulumi/pulumi-azure-native-sdk/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := network.NewNetworkVirtualAppliance(ctx, "networkVirtualAppliance", &network.NetworkVirtualApplianceArgs{
BootStrapConfigurationBlobs: pulumi.StringArray{
pulumi.String("https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrbootstrapconfig"),
},
CloudInitConfigurationBlobs: pulumi.StringArray{
pulumi.String("https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrcloudinitconfig"),
},
Identity: &network.ManagedServiceIdentityArgs{
Type: network.ResourceIdentityTypeUserAssigned,
UserAssignedIdentities: pulumi.AnyMap{
"/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1": nil,
},
},
Location: pulumi.String("West US"),
NetworkVirtualApplianceName: pulumi.String("nva"),
NvaSku: &network.VirtualApplianceSkuPropertiesArgs{
BundledScaleUnit: pulumi.String("1"),
MarketPlaceVersion: pulumi.String("12.1"),
Vendor: pulumi.String("Cisco SDWAN"),
},
ResourceGroupName: pulumi.String("rg1"),
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
},
VirtualApplianceAsn: pulumi.Float64(10000),
VirtualHub: &network.SubResourceArgs{
Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"),
},
})
if err != nil {
return err
}
return nil
})
}
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 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()
.bootStrapConfigurationBlobs("https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrbootstrapconfig")
.cloudInitConfigurationBlobs("https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrcloudinitconfig")
.identity(Map.ofEntries(
Map.entry("type", "UserAssigned"),
Map.entry("userAssignedIdentities", Map.of("/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1", ))
))
.location("West US")
.networkVirtualApplianceName("nva")
.nvaSku(Map.ofEntries(
Map.entry("bundledScaleUnit", "1"),
Map.entry("marketPlaceVersion", "12.1"),
Map.entry("vendor", "Cisco SDWAN")
))
.resourceGroupName("rg1")
.tags(Map.of("key1", "value1"))
.virtualApplianceAsn(10000)
.virtualHub(Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
network_virtual_appliance = azure_native.network.NetworkVirtualAppliance("networkVirtualAppliance",
boot_strap_configuration_blobs=["https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrbootstrapconfig"],
cloud_init_configuration_blobs=["https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrcloudinitconfig"],
identity=azure_native.network.ManagedServiceIdentityArgs(
type=azure_native.network.ResourceIdentityType.USER_ASSIGNED,
user_assigned_identities={
"/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1": {},
},
),
location="West US",
network_virtual_appliance_name="nva",
nva_sku=azure_native.network.VirtualApplianceSkuPropertiesArgs(
bundled_scale_unit="1",
market_place_version="12.1",
vendor="Cisco SDWAN",
),
resource_group_name="rg1",
tags={
"key1": "value1",
},
virtual_appliance_asn=10000,
virtual_hub=azure_native.network.SubResourceArgs(
id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const networkVirtualAppliance = new azure_native.network.NetworkVirtualAppliance("networkVirtualAppliance", {
bootStrapConfigurationBlobs: ["https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrbootstrapconfig"],
cloudInitConfigurationBlobs: ["https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrcloudinitconfig"],
identity: {
type: azure_native.network.ResourceIdentityType.UserAssigned,
userAssignedIdentities: {
"/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1": {},
},
},
location: "West US",
networkVirtualApplianceName: "nva",
nvaSku: {
bundledScaleUnit: "1",
marketPlaceVersion: "12.1",
vendor: "Cisco SDWAN",
},
resourceGroupName: "rg1",
tags: {
key1: "value1",
},
virtualApplianceAsn: 10000,
virtualHub: {
id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
},
});
resources:
networkVirtualAppliance:
type: azure-native:network:NetworkVirtualAppliance
properties:
bootStrapConfigurationBlobs:
- https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrbootstrapconfig
cloudInitConfigurationBlobs:
- https://csrncvhdstorage1.blob.core.windows.net/csrncvhdstoragecont/csrcloudinitconfig
identity:
type: UserAssigned
userAssignedIdentities:
/subscriptions/subid/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1: {}
location: West US
networkVirtualApplianceName: nva
nvaSku:
bundledScaleUnit: '1'
marketPlaceVersion: '12.1'
vendor: Cisco SDWAN
resourceGroupName: rg1
tags:
key1: value1
virtualApplianceAsn: 10000
virtualHub:
id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1
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,
boot_strap_configuration_blobs: Optional[Sequence[str]] = None,
cloud_init_configuration: Optional[str] = None,
cloud_init_configuration_blobs: Optional[Sequence[str]] = None,
id: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
location: Optional[str] = None,
network_virtual_appliance_name: Optional[str] = None,
nva_sku: Optional[VirtualApplianceSkuPropertiesArgs] = 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 string
- The unique name of the resource.
- args NetworkVirtualApplianceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args NetworkVirtualApplianceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkVirtualApplianceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
BootStrapConfigurationBlobs = new[]
{
"string",
},
CloudInitConfiguration = "string",
CloudInitConfigurationBlobs = new[]
{
"string",
},
Id = "string",
Identity =
{
{ "type", "SystemAssigned" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
Location = "string",
NetworkVirtualApplianceName = "string",
NvaSku =
{
{ "bundledScaleUnit", "string" },
{ "marketPlaceVersion", "string" },
{ "vendor", "string" },
},
Tags =
{
{ "string", "string" },
},
VirtualApplianceAsn = 0,
VirtualHub =
{
{ "id", "string" },
},
});
example, err := network.NewNetworkVirtualAppliance(ctx, "networkVirtualApplianceResource", &network.NetworkVirtualApplianceArgs{
ResourceGroupName: "string",
BootStrapConfigurationBlobs: []string{
"string",
},
CloudInitConfiguration: "string",
CloudInitConfigurationBlobs: []string{
"string",
},
Id: "string",
Identity: map[string]interface{}{
"type": "SystemAssigned",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
Location: "string",
NetworkVirtualApplianceName: "string",
NvaSku: map[string]interface{}{
"bundledScaleUnit": "string",
"marketPlaceVersion": "string",
"vendor": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
VirtualApplianceAsn: 0,
VirtualHub: map[string]interface{}{
"id": "string",
},
})
var networkVirtualApplianceResource = new NetworkVirtualAppliance("networkVirtualApplianceResource", NetworkVirtualApplianceArgs.builder()
.resourceGroupName("string")
.bootStrapConfigurationBlobs("string")
.cloudInitConfiguration("string")
.cloudInitConfigurationBlobs("string")
.id("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.networkVirtualApplianceName("string")
.nvaSku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.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());
network_virtual_appliance_resource = azure_native.network.NetworkVirtualAppliance("networkVirtualApplianceResource",
resource_group_name=string,
boot_strap_configuration_blobs=[string],
cloud_init_configuration=string,
cloud_init_configuration_blobs=[string],
id=string,
identity={
type: SystemAssigned,
userAssignedIdentities: {
string: any,
},
},
location=string,
network_virtual_appliance_name=string,
nva_sku={
bundledScaleUnit: string,
marketPlaceVersion: string,
vendor: string,
},
tags={
string: string,
},
virtual_appliance_asn=0,
virtual_hub={
id: string,
})
const networkVirtualApplianceResource = new azure_native.network.NetworkVirtualAppliance("networkVirtualApplianceResource", {
resourceGroupName: "string",
bootStrapConfigurationBlobs: ["string"],
cloudInitConfiguration: "string",
cloudInitConfigurationBlobs: ["string"],
id: "string",
identity: {
type: "SystemAssigned",
userAssignedIdentities: {
string: "any",
},
},
location: "string",
networkVirtualApplianceName: "string",
nvaSku: {
bundledScaleUnit: "string",
marketPlaceVersion: "string",
vendor: "string",
},
tags: {
string: "string",
},
virtualApplianceAsn: 0,
virtualHub: {
id: "string",
},
});
type: azure-native:network:NetworkVirtualAppliance
properties:
bootStrapConfigurationBlobs:
- string
cloudInitConfiguration: string
cloudInitConfigurationBlobs:
- string
id: string
identity:
type: SystemAssigned
userAssignedIdentities:
string: any
location: string
networkVirtualApplianceName: string
nvaSku:
bundledScaleUnit: string
marketPlaceVersion: string
vendor: string
resourceGroupName: string
tags:
string: string
virtualApplianceAsn: 0
virtualHub:
id: string
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
The NetworkVirtualAppliance resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Boot
Strap List<string>Configuration Blobs - BootStrapConfigurationBlobs storage URLs.
- Cloud
Init stringConfiguration - CloudInitConfiguration string in plain text.
- Cloud
Init List<string>Configuration Blobs - CloudInitConfigurationBlob storage URLs.
- Id string
- Resource ID.
- Identity
Pulumi.
Azure Native. Network. Inputs. Managed Service Identity - The service principal that has read access to cloud-init and config blob.
- Location string
- Resource location.
- Network
Virtual stringAppliance Name - The name of Network Virtual Appliance.
- Nva
Sku Pulumi.Azure Native. Network. Inputs. Virtual Appliance Sku Properties - Network Virtual Appliance SKU.
- Dictionary<string, string>
- Resource tags.
- Virtual
Appliance doubleAsn - VirtualAppliance ASN.
- Virtual
Hub Pulumi.Azure Native. Network. Inputs. Sub Resource - The Virtual Hub where Network Virtual Appliance is being deployed.
- Resource
Group stringName - The name of the resource group.
- Boot
Strap []stringConfiguration Blobs - BootStrapConfigurationBlobs storage URLs.
- Cloud
Init stringConfiguration - CloudInitConfiguration string in plain text.
- Cloud
Init []stringConfiguration Blobs - CloudInitConfigurationBlob storage URLs.
- Id string
- Resource ID.
- Identity
Managed
Service Identity Args - The service principal that has read access to cloud-init and config blob.
- Location string
- Resource location.
- Network
Virtual stringAppliance Name - The name of Network Virtual Appliance.
- Nva
Sku VirtualAppliance Sku Properties Args - Network Virtual Appliance SKU.
- map[string]string
- Resource tags.
- Virtual
Appliance float64Asn - VirtualAppliance ASN.
- Virtual
Hub SubResource Args - The Virtual Hub where Network Virtual Appliance is being deployed.
- resource
Group StringName - The name of the resource group.
- boot
Strap List<String>Configuration Blobs - BootStrapConfigurationBlobs storage URLs.
- cloud
Init StringConfiguration - CloudInitConfiguration string in plain text.
- cloud
Init List<String>Configuration Blobs - CloudInitConfigurationBlob storage URLs.
- id String
- Resource ID.
- identity
Managed
Service Identity - The service principal that has read access to cloud-init and config blob.
- location String
- Resource location.
- network
Virtual StringAppliance Name - The name of Network Virtual Appliance.
- nva
Sku VirtualAppliance Sku Properties - Network Virtual Appliance SKU.
- Map<String,String>
- Resource tags.
- virtual
Appliance DoubleAsn - VirtualAppliance ASN.
- virtual
Hub SubResource - The Virtual Hub where Network Virtual Appliance is being deployed.
- resource
Group stringName - The name of the resource group.
- boot
Strap string[]Configuration Blobs - BootStrapConfigurationBlobs storage URLs.
- cloud
Init stringConfiguration - CloudInitConfiguration string in plain text.
- cloud
Init string[]Configuration Blobs - CloudInitConfigurationBlob storage URLs.
- id string
- Resource ID.
- identity
Managed
Service Identity - The service principal that has read access to cloud-init and config blob.
- location string
- Resource location.
- network
Virtual stringAppliance Name - The name of Network Virtual Appliance.
- nva
Sku VirtualAppliance Sku Properties - Network Virtual Appliance SKU.
- {[key: string]: string}
- Resource tags.
- virtual
Appliance numberAsn - VirtualAppliance ASN.
- virtual
Hub SubResource - The Virtual Hub where Network Virtual Appliance is being deployed.
- resource_
group_ strname - The name of the resource group.
- boot_
strap_ Sequence[str]configuration_ blobs - BootStrapConfigurationBlobs storage URLs.
- cloud_
init_ strconfiguration - CloudInitConfiguration string in plain text.
- cloud_
init_ Sequence[str]configuration_ blobs - CloudInitConfigurationBlob storage URLs.
- id str
- Resource ID.
- identity
Managed
Service Identity Args - The service principal that has read access to cloud-init and config blob.
- location str
- Resource location.
- network_
virtual_ strappliance_ name - The name of Network Virtual Appliance.
- nva_
sku VirtualAppliance Sku Properties Args - Network Virtual Appliance SKU.
- Mapping[str, str]
- Resource tags.
- virtual_
appliance_ floatasn - VirtualAppliance ASN.
- virtual_
hub SubResource Args - The Virtual Hub where Network Virtual Appliance is being deployed.
- resource
Group StringName - The name of the resource group.
- boot
Strap List<String>Configuration Blobs - BootStrapConfigurationBlobs storage URLs.
- cloud
Init StringConfiguration - CloudInitConfiguration string in plain text.
- cloud
Init List<String>Configuration Blobs - CloudInitConfigurationBlob storage URLs.
- id String
- Resource ID.
- identity Property Map
- The service principal that has read access to cloud-init and config blob.
- location String
- Resource location.
- network
Virtual StringAppliance Name - The name of Network Virtual Appliance.
- nva
Sku Property Map - Network Virtual Appliance SKU.
- Map<String>
- Resource tags.
- virtual
Appliance NumberAsn - VirtualAppliance ASN.
- virtual
Hub 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:
- Address
Prefix string - Address Prefix.
- 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.
- Inbound
Security List<Pulumi.Rules Azure Native. Network. Outputs. Sub Resource Response> - List of references to InboundSecurityRules.
- Name string
- Resource name.
- Provisioning
State string - The provisioning state of the resource.
- Type string
- Resource type.
- Virtual
Appliance List<Pulumi.Nics Azure Native. Network. Outputs. Virtual Appliance Nic Properties Response> - List of Virtual Appliance Network Interfaces.
- Virtual
Appliance List<Pulumi.Sites Azure Native. Network. Outputs. Sub Resource Response> - List of references to VirtualApplianceSite.
- Address
Prefix string - Address Prefix.
- 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.
- Inbound
Security []SubRules Resource Response - List of references to InboundSecurityRules.
- Name string
- Resource name.
- Provisioning
State string - The provisioning state of the resource.
- Type string
- Resource type.
- Virtual
Appliance []VirtualNics Appliance Nic Properties Response - List of Virtual Appliance Network Interfaces.
- Virtual
Appliance []SubSites Resource Response - List of references to VirtualApplianceSite.
- address
Prefix String - Address Prefix.
- 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.
- inbound
Security List<SubRules Resource Response> - List of references to InboundSecurityRules.
- name String
- Resource name.
- provisioning
State String - The provisioning state of the resource.
- type String
- Resource type.
- virtual
Appliance List<VirtualNics Appliance Nic Properties Response> - List of Virtual Appliance Network Interfaces.
- virtual
Appliance List<SubSites Resource Response> - List of references to VirtualApplianceSite.
- address
Prefix string - Address Prefix.
- 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.
- inbound
Security SubRules Resource Response[] - List of references to InboundSecurityRules.
- name string
- Resource name.
- provisioning
State string - The provisioning state of the resource.
- type string
- Resource type.
- virtual
Appliance VirtualNics Appliance Nic Properties Response[] - List of Virtual Appliance Network Interfaces.
- virtual
Appliance SubSites Resource Response[] - List of references to VirtualApplianceSite.
- address_
prefix str - Address Prefix.
- 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_ Sequence[Subrules Resource Response] - List of references to InboundSecurityRules.
- name str
- Resource name.
- provisioning_
state str - The provisioning state of the resource.
- type str
- Resource type.
- virtual_
appliance_ Sequence[Virtualnics Appliance Nic Properties Response] - List of Virtual Appliance Network Interfaces.
- virtual_
appliance_ Sequence[Subsites Resource Response] - List of references to VirtualApplianceSite.
- address
Prefix String - Address Prefix.
- 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.
- inbound
Security List<Property Map>Rules - List of references to InboundSecurityRules.
- name String
- Resource name.
- provisioning
State String - The provisioning state of the resource.
- type String
- Resource type.
- virtual
Appliance List<Property Map>Nics - List of Virtual Appliance Network Interfaces.
- virtual
Appliance List<Property Map>Sites - List of references to VirtualApplianceSite.
Supporting Types
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
Pulumi.
Azure Native. Network. Resource Identity Type - 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 Dictionary<string, object>Identities - 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
Resource
Identity Type - 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 map[string]interface{}Identities - 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
Resource
Identity Type - 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 Map<String,Object>Identities - 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
Resource
Identity Type - 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 {[key: string]: any}Identities - 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
Resource
Identity Type - 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_ Mapping[str, Any]identities - 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
"System
Assigned" | "User Assigned" | "System Assigned, User Assigned" | "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.
- user
Assigned Map<Any>Identities - 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
- Principal
Id string - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Network. Inputs. Managed Service Identity Response User Assigned Identities> - 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 string - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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.
- User
Assigned map[string]ManagedIdentities Service Identity Response User Assigned Identities - 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 String - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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.
- user
Assigned Map<String,ManagedIdentities Service Identity Response User Assigned Identities> - 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 string - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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.
- user
Assigned {[key: string]: ManagedIdentities Service Identity Response User Assigned Identities} - 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 str - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id 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_ Mapping[str, Managedidentities Service Identity Response User Assigned Identities] - 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 String - The principal id of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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.
- user
Assigned Map<Property Map>Identities - 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
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id string - The principal id of user assigned identity.
- client_
id str - The client id of user assigned identity.
- principal_
id str - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - 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 string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
VirtualApplianceNicPropertiesResponse, VirtualApplianceNicPropertiesResponseArgs
- Name string
- NIC name.
- Private
Ip stringAddress - Private IP address.
- Public
Ip stringAddress - Public IP address.
- Name string
- NIC name.
- Private
Ip stringAddress - Private IP address.
- Public
Ip stringAddress - Public IP address.
- name String
- NIC name.
- private
Ip StringAddress - Private IP address.
- public
Ip StringAddress - Public IP address.
- name string
- NIC name.
- private
Ip stringAddress - Private IP address.
- public
Ip stringAddress - Public IP address.
- name str
- NIC name.
- private_
ip_ straddress - Private IP address.
- public_
ip_ straddress - Public IP address.
- name String
- NIC name.
- private
Ip StringAddress - Private IP address.
- public
Ip StringAddress - Public IP address.
VirtualApplianceSkuProperties, VirtualApplianceSkuPropertiesArgs
- Bundled
Scale stringUnit - Virtual Appliance Scale Unit.
- Market
Place stringVersion - Virtual Appliance Version.
- Vendor string
- Virtual Appliance Vendor.
- Bundled
Scale stringUnit - Virtual Appliance Scale Unit.
- Market
Place stringVersion - Virtual Appliance Version.
- Vendor string
- Virtual Appliance Vendor.
- bundled
Scale StringUnit - Virtual Appliance Scale Unit.
- market
Place StringVersion - Virtual Appliance Version.
- vendor String
- Virtual Appliance Vendor.
- bundled
Scale stringUnit - Virtual Appliance Scale Unit.
- market
Place stringVersion - Virtual Appliance Version.
- vendor string
- Virtual Appliance Vendor.
- bundled_
scale_ strunit - Virtual Appliance Scale Unit.
- market_
place_ strversion - Virtual Appliance Version.
- vendor str
- Virtual Appliance Vendor.
- bundled
Scale StringUnit - Virtual Appliance Scale Unit.
- market
Place StringVersion - Virtual Appliance Version.
- vendor String
- Virtual Appliance Vendor.
VirtualApplianceSkuPropertiesResponse, VirtualApplianceSkuPropertiesResponseArgs
- Bundled
Scale stringUnit - Virtual Appliance Scale Unit.
- Market
Place stringVersion - Virtual Appliance Version.
- Vendor string
- Virtual Appliance Vendor.
- Bundled
Scale stringUnit - Virtual Appliance Scale Unit.
- Market
Place stringVersion - Virtual Appliance Version.
- Vendor string
- Virtual Appliance Vendor.
- bundled
Scale StringUnit - Virtual Appliance Scale Unit.
- market
Place StringVersion - Virtual Appliance Version.
- vendor String
- Virtual Appliance Vendor.
- bundled
Scale stringUnit - Virtual Appliance Scale Unit.
- market
Place stringVersion - Virtual Appliance Version.
- vendor string
- Virtual Appliance Vendor.
- bundled_
scale_ strunit - Virtual Appliance Scale Unit.
- market_
place_ strversion - Virtual Appliance Version.
- vendor str
- Virtual Appliance Vendor.
- bundled
Scale StringUnit - Virtual Appliance Scale Unit.
- market
Place StringVersion - 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/subid/resourceGroups/rg1/providers/Microsoft.Network/networkVirtualAppliances/nva
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0