azure-native.azurestackhci.NetworkInterface
Explore with Pulumi AI
The network interface resource definition. Azure REST API version: 2022-12-15-preview.
Other available API versions: 2023-07-01-preview, 2023-09-01-preview, 2024-01-01, 2024-02-01-preview, 2024-05-01-preview, 2024-07-15-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01-preview.
Example Usage
PutNetworkInterface
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var networkInterface = new AzureNative.AzureStackHCI.NetworkInterface("networkInterface", new()
    {
        ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
            Type = AzureNative.AzureStackHCI.ExtendedLocationTypes.CustomLocation,
        },
        IpConfigurations = new[]
        {
            new AzureNative.AzureStackHCI.Inputs.IPConfigurationArgs
            {
                Name = "ipconfig-sample",
                Properties = new AzureNative.AzureStackHCI.Inputs.IPConfigurationPropertiesArgs
                {
                    Subnet = new AzureNative.AzureStackHCI.Inputs.IPConfigurationSubnetArgs
                    {
                        Id = "test-vnet",
                    },
                },
            },
        },
        Location = "West US2",
        NetworkInterfaceName = "test-nic",
        ResourceGroupName = "test-rg",
    });
});
package main
import (
	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := azurestackhci.NewNetworkInterface(ctx, "networkInterface", &azurestackhci.NetworkInterfaceArgs{
			ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"),
				Type: pulumi.String(azurestackhci.ExtendedLocationTypesCustomLocation),
			},
			IpConfigurations: azurestackhci.IPConfigurationArray{
				&azurestackhci.IPConfigurationArgs{
					Name: pulumi.String("ipconfig-sample"),
					Properties: &azurestackhci.IPConfigurationPropertiesArgs{
						Subnet: &azurestackhci.IPConfigurationSubnetArgs{
							Id: pulumi.String("test-vnet"),
						},
					},
				},
			},
			Location:             pulumi.String("West US2"),
			NetworkInterfaceName: pulumi.String("test-nic"),
			ResourceGroupName:    pulumi.String("test-rg"),
		})
		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.azurestackhci.NetworkInterface;
import com.pulumi.azurenative.azurestackhci.NetworkInterfaceArgs;
import com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.azurestackhci.inputs.IPConfigurationArgs;
import com.pulumi.azurenative.azurestackhci.inputs.IPConfigurationPropertiesArgs;
import com.pulumi.azurenative.azurestackhci.inputs.IPConfigurationSubnetArgs;
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 networkInterface = new NetworkInterface("networkInterface", NetworkInterfaceArgs.builder()
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location")
                .type("CustomLocation")
                .build())
            .ipConfigurations(IPConfigurationArgs.builder()
                .name("ipconfig-sample")
                .properties(IPConfigurationPropertiesArgs.builder()
                    .subnet(IPConfigurationSubnetArgs.builder()
                        .id("test-vnet")
                        .build())
                    .build())
                .build())
            .location("West US2")
            .networkInterfaceName("test-nic")
            .resourceGroupName("test-rg")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const networkInterface = new azure_native.azurestackhci.NetworkInterface("networkInterface", {
    extendedLocation: {
        name: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        type: azure_native.azurestackhci.ExtendedLocationTypes.CustomLocation,
    },
    ipConfigurations: [{
        name: "ipconfig-sample",
        properties: {
            subnet: {
                id: "test-vnet",
            },
        },
    }],
    location: "West US2",
    networkInterfaceName: "test-nic",
    resourceGroupName: "test-rg",
});
import pulumi
import pulumi_azure_native as azure_native
network_interface = azure_native.azurestackhci.NetworkInterface("networkInterface",
    extended_location={
        "name": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        "type": azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
    },
    ip_configurations=[{
        "name": "ipconfig-sample",
        "properties": {
            "subnet": {
                "id": "test-vnet",
            },
        },
    }],
    location="West US2",
    network_interface_name="test-nic",
    resource_group_name="test-rg")
resources:
  networkInterface:
    type: azure-native:azurestackhci:NetworkInterface
    properties:
      extendedLocation:
        name: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location
        type: CustomLocation
      ipConfigurations:
        - name: ipconfig-sample
          properties:
            subnet:
              id: test-vnet
      location: West US2
      networkInterfaceName: test-nic
      resourceGroupName: test-rg
Create NetworkInterface Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkInterface(name: string, args: NetworkInterfaceArgs, opts?: CustomResourceOptions);@overload
def NetworkInterface(resource_name: str,
                     args: NetworkInterfaceArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def NetworkInterface(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     resource_group_name: Optional[str] = None,
                     dns_settings: Optional[InterfaceDNSSettingsArgs] = None,
                     extended_location: Optional[ExtendedLocationArgs] = None,
                     ip_configurations: Optional[Sequence[IPConfigurationArgs]] = None,
                     location: Optional[str] = None,
                     mac_address: Optional[str] = None,
                     network_interface_name: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)func NewNetworkInterface(ctx *Context, name string, args NetworkInterfaceArgs, opts ...ResourceOption) (*NetworkInterface, error)public NetworkInterface(string name, NetworkInterfaceArgs args, CustomResourceOptions? opts = null)
public NetworkInterface(String name, NetworkInterfaceArgs args)
public NetworkInterface(String name, NetworkInterfaceArgs args, CustomResourceOptions options)
type: azure-native:azurestackhci:NetworkInterface
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 NetworkInterfaceArgs
- 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 NetworkInterfaceArgs
- 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 NetworkInterfaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkInterfaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkInterfaceArgs
- 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 networkInterfaceResource = new AzureNative.AzureStackHCI.NetworkInterface("networkInterfaceResource", new()
{
    ResourceGroupName = "string",
    DnsSettings = new AzureNative.AzureStackHCI.Inputs.InterfaceDNSSettingsArgs
    {
        DnsServers = new[]
        {
            "string",
        },
    },
    ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    IpConfigurations = new[]
    {
        new AzureNative.AzureStackHCI.Inputs.IPConfigurationArgs
        {
            Name = "string",
            Properties = new AzureNative.AzureStackHCI.Inputs.IPConfigurationPropertiesArgs
            {
                PrefixLength = "string",
                PrivateIPAddress = "string",
                PrivateIPAllocationMethod = "string",
                Subnet = new AzureNative.AzureStackHCI.Inputs.IPConfigurationSubnetArgs
                {
                    Id = "string",
                },
            },
        },
    },
    Location = "string",
    MacAddress = "string",
    NetworkInterfaceName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := azurestackhci.NewNetworkInterface(ctx, "networkInterfaceResource", &azurestackhci.NetworkInterfaceArgs{
	ResourceGroupName: pulumi.String("string"),
	DnsSettings: &azurestackhci.InterfaceDNSSettingsArgs{
		DnsServers: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	IpConfigurations: azurestackhci.IPConfigurationArray{
		&azurestackhci.IPConfigurationArgs{
			Name: pulumi.String("string"),
			Properties: &azurestackhci.IPConfigurationPropertiesArgs{
				PrefixLength:              pulumi.String("string"),
				PrivateIPAddress:          pulumi.String("string"),
				PrivateIPAllocationMethod: pulumi.String("string"),
				Subnet: &azurestackhci.IPConfigurationSubnetArgs{
					Id: pulumi.String("string"),
				},
			},
		},
	},
	Location:             pulumi.String("string"),
	MacAddress:           pulumi.String("string"),
	NetworkInterfaceName: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var networkInterfaceResource = new NetworkInterface("networkInterfaceResource", NetworkInterfaceArgs.builder()
    .resourceGroupName("string")
    .dnsSettings(InterfaceDNSSettingsArgs.builder()
        .dnsServers("string")
        .build())
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .ipConfigurations(IPConfigurationArgs.builder()
        .name("string")
        .properties(IPConfigurationPropertiesArgs.builder()
            .prefixLength("string")
            .privateIPAddress("string")
            .privateIPAllocationMethod("string")
            .subnet(IPConfigurationSubnetArgs.builder()
                .id("string")
                .build())
            .build())
        .build())
    .location("string")
    .macAddress("string")
    .networkInterfaceName("string")
    .tags(Map.of("string", "string"))
    .build());
network_interface_resource = azure_native.azurestackhci.NetworkInterface("networkInterfaceResource",
    resource_group_name="string",
    dns_settings={
        "dns_servers": ["string"],
    },
    extended_location={
        "name": "string",
        "type": "string",
    },
    ip_configurations=[{
        "name": "string",
        "properties": {
            "prefix_length": "string",
            "private_ip_address": "string",
            "private_ip_allocation_method": "string",
            "subnet": {
                "id": "string",
            },
        },
    }],
    location="string",
    mac_address="string",
    network_interface_name="string",
    tags={
        "string": "string",
    })
const networkInterfaceResource = new azure_native.azurestackhci.NetworkInterface("networkInterfaceResource", {
    resourceGroupName: "string",
    dnsSettings: {
        dnsServers: ["string"],
    },
    extendedLocation: {
        name: "string",
        type: "string",
    },
    ipConfigurations: [{
        name: "string",
        properties: {
            prefixLength: "string",
            privateIPAddress: "string",
            privateIPAllocationMethod: "string",
            subnet: {
                id: "string",
            },
        },
    }],
    location: "string",
    macAddress: "string",
    networkInterfaceName: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:azurestackhci:NetworkInterface
properties:
    dnsSettings:
        dnsServers:
            - string
    extendedLocation:
        name: string
        type: string
    ipConfigurations:
        - name: string
          properties:
            prefixLength: string
            privateIPAddress: string
            privateIPAllocationMethod: string
            subnet:
                id: string
    location: string
    macAddress: string
    networkInterfaceName: string
    resourceGroupName: string
    tags:
        string: string
NetworkInterface 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 NetworkInterface resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- DnsSettings Pulumi.Azure Native. Azure Stack HCI. Inputs. Interface DNSSettings 
- DNS Settings for the interface
- ExtendedLocation Pulumi.Azure Native. Azure Stack HCI. Inputs. Extended Location 
- The extendedLocation of the resource.
- IpConfigurations List<Pulumi.Azure Native. Azure Stack HCI. Inputs. IPConfiguration> 
- IPConfigurations - A list of IPConfigurations of the network interface.
- Location string
- The geo-location where the resource lives
- MacAddress string
- MacAddress - The MAC address of the network interface.
- NetworkInterface stringName 
- Name of the network interface
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- DnsSettings InterfaceDNSSettings Args 
- DNS Settings for the interface
- ExtendedLocation ExtendedLocation Args 
- The extendedLocation of the resource.
- IpConfigurations []IPConfigurationArgs 
- IPConfigurations - A list of IPConfigurations of the network interface.
- Location string
- The geo-location where the resource lives
- MacAddress string
- MacAddress - The MAC address of the network interface.
- NetworkInterface stringName 
- Name of the network interface
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- dnsSettings InterfaceDNSSettings 
- DNS Settings for the interface
- extendedLocation ExtendedLocation 
- The extendedLocation of the resource.
- ipConfigurations List<IPConfiguration>
- IPConfigurations - A list of IPConfigurations of the network interface.
- location String
- The geo-location where the resource lives
- macAddress String
- MacAddress - The MAC address of the network interface.
- networkInterface StringName 
- Name of the network interface
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- dnsSettings InterfaceDNSSettings 
- DNS Settings for the interface
- extendedLocation ExtendedLocation 
- The extendedLocation of the resource.
- ipConfigurations IPConfiguration[]
- IPConfigurations - A list of IPConfigurations of the network interface.
- location string
- The geo-location where the resource lives
- macAddress string
- MacAddress - The MAC address of the network interface.
- networkInterface stringName 
- Name of the network interface
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- dns_settings InterfaceDNSSettings Args 
- DNS Settings for the interface
- extended_location ExtendedLocation Args 
- The extendedLocation of the resource.
- ip_configurations Sequence[IPConfigurationArgs] 
- IPConfigurations - A list of IPConfigurations of the network interface.
- location str
- The geo-location where the resource lives
- mac_address str
- MacAddress - The MAC address of the network interface.
- network_interface_ strname 
- Name of the network interface
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- dnsSettings Property Map
- DNS Settings for the interface
- extendedLocation Property Map
- The extendedLocation of the resource.
- ipConfigurations List<Property Map>
- IPConfigurations - A list of IPConfigurations of the network interface.
- location String
- The geo-location where the resource lives
- macAddress String
- MacAddress - The MAC address of the network interface.
- networkInterface StringName 
- Name of the network interface
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkInterface resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the network interface.
- Status
Pulumi.Azure Native. Azure Stack HCI. Outputs. Network Interface Status Response 
- The observed state of network interfaces
- SystemData Pulumi.Azure Native. Azure Stack HCI. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the network interface.
- Status
NetworkInterface Status Response 
- The observed state of network interfaces
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the network interface.
- status
NetworkInterface Status Response 
- The observed state of network interfaces
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioningState string
- Provisioning state of the network interface.
- status
NetworkInterface Status Response 
- The observed state of network interfaces
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_state str
- Provisioning state of the network interface.
- status
NetworkInterface Status Response 
- The observed state of network interfaces
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the network interface.
- status Property Map
- The observed state of network interfaces
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ExtendedLocation, ExtendedLocationArgs    
- Name string
- The name of the extended location.
- Type
string | Pulumi.Azure Native. Azure Stack HCI. Extended Location Types 
- The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | ExtendedLocation Types 
- The type of the extended location.
- name string
- The name of the extended location.
- type
string | ExtendedLocation Types 
- The type of the extended location.
- name str
- The name of the extended location.
- type
str | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | "CustomLocation" 
- The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs      
ExtendedLocationTypes, ExtendedLocationTypesArgs      
- CustomLocation 
- CustomLocation
- ExtendedLocation Types Custom Location 
- CustomLocation
- CustomLocation 
- CustomLocation
- CustomLocation 
- CustomLocation
- CUSTOM_LOCATION
- CustomLocation
- "CustomLocation" 
- CustomLocation
IPConfiguration, IPConfigurationArgs  
- Name string
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Properties
Pulumi.Azure Native. Azure Stack HCI. Inputs. IPConfiguration Properties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- Name string
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Properties
IPConfigurationProperties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- name String
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- properties
IPConfigurationProperties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- name string
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- properties
IPConfigurationProperties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- name str
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- properties
IPConfigurationProperties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- name String
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- properties Property Map
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
IPConfigurationProperties, IPConfigurationPropertiesArgs    
- PrefixLength string
- prefixLength for network interface
- PrivateIPAddress string
- PrivateIPAddress - Private IP address of the IP configuration.
- PrivateIPAllocation string | Pulumi.Method Azure Native. Azure Stack HCI. Private IPAllocation Method Enum 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- Subnet
Pulumi.Azure Native. Azure Stack HCI. Inputs. IPConfiguration Subnet 
- Subnet - Name of Subnet bound to the IP configuration.
- PrefixLength string
- prefixLength for network interface
- PrivateIPAddress string
- PrivateIPAddress - Private IP address of the IP configuration.
- PrivateIPAllocation string | PrivateMethod IPAllocation Method Enum 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- Subnet
IPConfigurationSubnet 
- Subnet - Name of Subnet bound to the IP configuration.
- prefixLength String
- prefixLength for network interface
- privateIPAddress String
- PrivateIPAddress - Private IP address of the IP configuration.
- privateIPAllocation String | PrivateMethod IPAllocation Method Enum 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- subnet
IPConfigurationSubnet 
- Subnet - Name of Subnet bound to the IP configuration.
- prefixLength string
- prefixLength for network interface
- privateIPAddress string
- PrivateIPAddress - Private IP address of the IP configuration.
- privateIPAllocation string | PrivateMethod IPAllocation Method Enum 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- subnet
IPConfigurationSubnet 
- Subnet - Name of Subnet bound to the IP configuration.
- prefix_length str
- prefixLength for network interface
- private_ip_ straddress 
- PrivateIPAddress - Private IP address of the IP configuration.
- private_ip_ str | Privateallocation_ method IPAllocation Method Enum 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- subnet
IPConfigurationSubnet 
- Subnet - Name of Subnet bound to the IP configuration.
- prefixLength String
- prefixLength for network interface
- privateIPAddress String
- PrivateIPAddress - Private IP address of the IP configuration.
- privateIPAllocation String | "Dynamic" | "Static"Method 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- subnet Property Map
- Subnet - Name of Subnet bound to the IP configuration.
IPConfigurationResponse, IPConfigurationResponseArgs    
- Name string
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Properties
Pulumi.Azure Native. Azure Stack HCI. Inputs. IPConfiguration Response Properties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- Name string
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Properties
IPConfigurationResponse Properties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- name String
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- properties
IPConfigurationResponse Properties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- name string
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- properties
IPConfigurationResponse Properties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- name str
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- properties
IPConfigurationResponse Properties 
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
- name String
- Name - The name of the resource that is unique within a resource group. This name can be used to access the resource.
- properties Property Map
- InterfaceIPConfigurationPropertiesFormat properties of IP configuration.
IPConfigurationResponseProperties, IPConfigurationResponsePropertiesArgs      
- PrefixLength string
- prefixLength for network interface
- PrivateIPAddress string
- PrivateIPAddress - Private IP address of the IP configuration.
- PrivateIPAllocation stringMethod 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- Subnet
Pulumi.Azure Native. Azure Stack HCI. Inputs. IPConfiguration Response Subnet 
- Subnet - Name of Subnet bound to the IP configuration.
- PrefixLength string
- prefixLength for network interface
- PrivateIPAddress string
- PrivateIPAddress - Private IP address of the IP configuration.
- PrivateIPAllocation stringMethod 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- Subnet
IPConfigurationResponse Subnet 
- Subnet - Name of Subnet bound to the IP configuration.
- prefixLength String
- prefixLength for network interface
- privateIPAddress String
- PrivateIPAddress - Private IP address of the IP configuration.
- privateIPAllocation StringMethod 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- subnet
IPConfigurationResponse Subnet 
- Subnet - Name of Subnet bound to the IP configuration.
- prefixLength string
- prefixLength for network interface
- privateIPAddress string
- PrivateIPAddress - Private IP address of the IP configuration.
- privateIPAllocation stringMethod 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- subnet
IPConfigurationResponse Subnet 
- Subnet - Name of Subnet bound to the IP configuration.
- prefix_length str
- prefixLength for network interface
- private_ip_ straddress 
- PrivateIPAddress - Private IP address of the IP configuration.
- private_ip_ strallocation_ method 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- subnet
IPConfigurationResponse Subnet 
- Subnet - Name of Subnet bound to the IP configuration.
- prefixLength String
- prefixLength for network interface
- privateIPAddress String
- PrivateIPAddress - Private IP address of the IP configuration.
- privateIPAllocation StringMethod 
- PrivateIPAllocationMethod - The private IP address allocation method. Possible values include: 'Static', 'Dynamic'
- subnet Property Map
- Subnet - Name of Subnet bound to the IP configuration.
IPConfigurationResponseSubnet, IPConfigurationResponseSubnetArgs      
- Id string
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- Id string
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- id String
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- id string
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- id str
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- id String
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
IPConfigurationSubnet, IPConfigurationSubnetArgs    
- Id string
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- Id string
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- id String
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- id string
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- id str
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
- id String
- ID - The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
InterfaceDNSSettings, InterfaceDNSSettingsArgs    
- DnsServers List<string>
- List of DNS server IP Addresses for the interface
- DnsServers []string
- List of DNS server IP Addresses for the interface
- dnsServers List<String>
- List of DNS server IP Addresses for the interface
- dnsServers string[]
- List of DNS server IP Addresses for the interface
- dns_servers Sequence[str]
- List of DNS server IP Addresses for the interface
- dnsServers List<String>
- List of DNS server IP Addresses for the interface
InterfaceDNSSettingsResponse, InterfaceDNSSettingsResponseArgs      
- DnsServers List<string>
- List of DNS server IP Addresses for the interface
- DnsServers []string
- List of DNS server IP Addresses for the interface
- dnsServers List<String>
- List of DNS server IP Addresses for the interface
- dnsServers string[]
- List of DNS server IP Addresses for the interface
- dns_servers Sequence[str]
- List of DNS server IP Addresses for the interface
- dnsServers List<String>
- List of DNS server IP Addresses for the interface
NetworkInterfaceStatusResponse, NetworkInterfaceStatusResponseArgs        
- ErrorCode string
- NetworkInterface provisioning error code
- ErrorMessage string
- Descriptive error message
- ProvisioningStatus Pulumi.Azure Native. Azure Stack HCI. Inputs. Network Interface Status Response Provisioning Status 
- ErrorCode string
- NetworkInterface provisioning error code
- ErrorMessage string
- Descriptive error message
- ProvisioningStatus NetworkInterface Status Response Provisioning Status 
- errorCode String
- NetworkInterface provisioning error code
- errorMessage String
- Descriptive error message
- provisioningStatus NetworkInterface Status Response Provisioning Status 
- errorCode string
- NetworkInterface provisioning error code
- errorMessage string
- Descriptive error message
- provisioningStatus NetworkInterface Status Response Provisioning Status 
- error_code str
- NetworkInterface provisioning error code
- error_message str
- Descriptive error message
- provisioning_status NetworkInterface Status Response Provisioning Status 
- errorCode String
- NetworkInterface provisioning error code
- errorMessage String
- Descriptive error message
- provisioningStatus Property Map
NetworkInterfaceStatusResponseProvisioningStatus, NetworkInterfaceStatusResponseProvisioningStatusArgs            
- OperationId string
- The ID of the operation performed on the network interface
- Status string
- The status of the operation performed on the network interface [Succeeded, Failed, InProgress]
- OperationId string
- The ID of the operation performed on the network interface
- Status string
- The status of the operation performed on the network interface [Succeeded, Failed, InProgress]
- operationId String
- The ID of the operation performed on the network interface
- status String
- The status of the operation performed on the network interface [Succeeded, Failed, InProgress]
- operationId string
- The ID of the operation performed on the network interface
- status string
- The status of the operation performed on the network interface [Succeeded, Failed, InProgress]
- operation_id str
- The ID of the operation performed on the network interface
- status str
- The status of the operation performed on the network interface [Succeeded, Failed, InProgress]
- operationId String
- The ID of the operation performed on the network interface
- status String
- The status of the operation performed on the network interface [Succeeded, Failed, InProgress]
PrivateIPAllocationMethodEnum, PrivateIPAllocationMethodEnumArgs        
- Dynamic
- Dynamic
- Static
- Static
- PrivateIPAllocation Method Enum Dynamic 
- Dynamic
- PrivateIPAllocation Method Enum Static 
- Static
- Dynamic
- Dynamic
- Static
- Static
- Dynamic
- Dynamic
- Static
- Static
- DYNAMIC
- Dynamic
- STATIC
- Static
- "Dynamic"
- Dynamic
- "Static"
- Static
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurestackhci:NetworkInterface test-nic /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/networkInterfaces/{networkInterfaceName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0