1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. managednetworkfabric
  6. NetworkBootstrapInterface
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi

    Defines the NetworkBootstrapInterface resource.

    Uses Azure REST API version 2025-07-15.

    Example Usage

    NetworkBootstrapInterfaces_Create_MaximumSet - generated by [MaximumSet] rule - generated by [MaximumSet] rule

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var networkBootstrapInterface = new AzureNative.ManagedNetworkFabric.NetworkBootstrapInterface("networkBootstrapInterface", new()
        {
            AdditionalDescription = "additionalDescription",
            Annotation = "annotation",
            NetworkBootstrapDeviceName = "example-device",
            NetworkBootstrapInterfaceName = "example-interface",
            ResourceGroupName = "example-rg",
            SerialNumber = "Vendor;DCS-7280XXX-24;12.05;JPE2111XXXX",
        });
    
    });
    
    package main
    
    import (
    	managednetworkfabric "github.com/pulumi/pulumi-azure-native-sdk/managednetworkfabric/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := managednetworkfabric.NewNetworkBootstrapInterface(ctx, "networkBootstrapInterface", &managednetworkfabric.NetworkBootstrapInterfaceArgs{
    			AdditionalDescription:         pulumi.String("additionalDescription"),
    			Annotation:                    pulumi.String("annotation"),
    			NetworkBootstrapDeviceName:    pulumi.String("example-device"),
    			NetworkBootstrapInterfaceName: pulumi.String("example-interface"),
    			ResourceGroupName:             pulumi.String("example-rg"),
    			SerialNumber:                  pulumi.String("Vendor;DCS-7280XXX-24;12.05;JPE2111XXXX"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_managednetworkfabric_networkbootstrapinterface" "networkBootstrapInterface" {
      additional_description           = "additionalDescription"
      annotation                       = "annotation"
      network_bootstrap_device_name    = "example-device"
      network_bootstrap_interface_name = "example-interface"
      resource_group_name              = "example-rg"
      serial_number                    = "Vendor;DCS-7280XXX-24;12.05;JPE2111XXXX"
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.managednetworkfabric.NetworkBootstrapInterface;
    import com.pulumi.azurenative.managednetworkfabric.NetworkBootstrapInterfaceArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var networkBootstrapInterface = new NetworkBootstrapInterface("networkBootstrapInterface", NetworkBootstrapInterfaceArgs.builder()
                .additionalDescription("additionalDescription")
                .annotation("annotation")
                .networkBootstrapDeviceName("example-device")
                .networkBootstrapInterfaceName("example-interface")
                .resourceGroupName("example-rg")
                .serialNumber("Vendor;DCS-7280XXX-24;12.05;JPE2111XXXX")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const networkBootstrapInterface = new azure_native.managednetworkfabric.NetworkBootstrapInterface("networkBootstrapInterface", {
        additionalDescription: "additionalDescription",
        annotation: "annotation",
        networkBootstrapDeviceName: "example-device",
        networkBootstrapInterfaceName: "example-interface",
        resourceGroupName: "example-rg",
        serialNumber: "Vendor;DCS-7280XXX-24;12.05;JPE2111XXXX",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    network_bootstrap_interface = azure_native.managednetworkfabric.NetworkBootstrapInterface("networkBootstrapInterface",
        additional_description="additionalDescription",
        annotation="annotation",
        network_bootstrap_device_name="example-device",
        network_bootstrap_interface_name="example-interface",
        resource_group_name="example-rg",
        serial_number="Vendor;DCS-7280XXX-24;12.05;JPE2111XXXX")
    
    resources:
      networkBootstrapInterface:
        type: azure-native:managednetworkfabric:NetworkBootstrapInterface
        properties:
          additionalDescription: additionalDescription
          annotation: annotation
          networkBootstrapDeviceName: example-device
          networkBootstrapInterfaceName: example-interface
          resourceGroupName: example-rg
          serialNumber: Vendor;DCS-7280XXX-24;12.05;JPE2111XXXX
    

    Create NetworkBootstrapInterface Resource

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

    Constructor syntax

    new NetworkBootstrapInterface(name: string, args: NetworkBootstrapInterfaceArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkBootstrapInterface(resource_name: str,
                                  args: NetworkBootstrapInterfaceArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkBootstrapInterface(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  network_bootstrap_device_name: Optional[str] = None,
                                  resource_group_name: Optional[str] = None,
                                  additional_description: Optional[str] = None,
                                  annotation: Optional[str] = None,
                                  network_bootstrap_interface_name: Optional[str] = None,
                                  serial_number: Optional[str] = None)
    func NewNetworkBootstrapInterface(ctx *Context, name string, args NetworkBootstrapInterfaceArgs, opts ...ResourceOption) (*NetworkBootstrapInterface, error)
    public NetworkBootstrapInterface(string name, NetworkBootstrapInterfaceArgs args, CustomResourceOptions? opts = null)
    public NetworkBootstrapInterface(String name, NetworkBootstrapInterfaceArgs args)
    public NetworkBootstrapInterface(String name, NetworkBootstrapInterfaceArgs args, CustomResourceOptions options)
    
    type: azure-native:managednetworkfabric:NetworkBootstrapInterface
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_managednetworkfabric_network_bootstrap_interface" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args NetworkBootstrapInterfaceArgs
    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 NetworkBootstrapInterfaceArgs
    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 NetworkBootstrapInterfaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkBootstrapInterfaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkBootstrapInterfaceArgs
    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 networkBootstrapInterfaceResource = new AzureNative.ManagedNetworkFabric.NetworkBootstrapInterface("networkBootstrapInterfaceResource", new()
    {
        NetworkBootstrapDeviceName = "string",
        ResourceGroupName = "string",
        AdditionalDescription = "string",
        Annotation = "string",
        NetworkBootstrapInterfaceName = "string",
        SerialNumber = "string",
    });
    
    example, err := managednetworkfabric.NewNetworkBootstrapInterface(ctx, "networkBootstrapInterfaceResource", &managednetworkfabric.NetworkBootstrapInterfaceArgs{
    	NetworkBootstrapDeviceName:    pulumi.String("string"),
    	ResourceGroupName:             pulumi.String("string"),
    	AdditionalDescription:         pulumi.String("string"),
    	Annotation:                    pulumi.String("string"),
    	NetworkBootstrapInterfaceName: pulumi.String("string"),
    	SerialNumber:                  pulumi.String("string"),
    })
    
    resource "azure-native_managednetworkfabric_network_bootstrap_interface" "networkBootstrapInterfaceResource" {
      lifecycle {
        create_before_destroy = true
      }
      network_bootstrap_device_name    = "string"
      resource_group_name              = "string"
      additional_description           = "string"
      annotation                       = "string"
      network_bootstrap_interface_name = "string"
      serial_number                    = "string"
    }
    
    var networkBootstrapInterfaceResource = new NetworkBootstrapInterface("networkBootstrapInterfaceResource", NetworkBootstrapInterfaceArgs.builder()
        .networkBootstrapDeviceName("string")
        .resourceGroupName("string")
        .additionalDescription("string")
        .annotation("string")
        .networkBootstrapInterfaceName("string")
        .serialNumber("string")
        .build());
    
    network_bootstrap_interface_resource = azure_native.managednetworkfabric.NetworkBootstrapInterface("networkBootstrapInterfaceResource",
        network_bootstrap_device_name="string",
        resource_group_name="string",
        additional_description="string",
        annotation="string",
        network_bootstrap_interface_name="string",
        serial_number="string")
    
    const networkBootstrapInterfaceResource = new azure_native.managednetworkfabric.NetworkBootstrapInterface("networkBootstrapInterfaceResource", {
        networkBootstrapDeviceName: "string",
        resourceGroupName: "string",
        additionalDescription: "string",
        annotation: "string",
        networkBootstrapInterfaceName: "string",
        serialNumber: "string",
    });
    
    type: azure-native:managednetworkfabric:NetworkBootstrapInterface
    properties:
        additionalDescription: string
        annotation: string
        networkBootstrapDeviceName: string
        networkBootstrapInterfaceName: string
        resourceGroupName: string
        serialNumber: string
    

    NetworkBootstrapInterface 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 NetworkBootstrapInterface resource accepts the following input properties:

    NetworkBootstrapDeviceName string
    Name of the Network Bootstrap Device.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AdditionalDescription string
    Additional description of the interface.
    Annotation string
    Switch configuration description.
    NetworkBootstrapInterfaceName string
    Name of the Network Bootstrap Interface.
    SerialNumber string
    Serial number of the interface. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    NetworkBootstrapDeviceName string
    Name of the Network Bootstrap Device.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AdditionalDescription string
    Additional description of the interface.
    Annotation string
    Switch configuration description.
    NetworkBootstrapInterfaceName string
    Name of the Network Bootstrap Interface.
    SerialNumber string
    Serial number of the interface. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    network_bootstrap_device_name string
    Name of the Network Bootstrap Device.
    resource_group_name string
    The name of the resource group. The name is case insensitive.
    additional_description string
    Additional description of the interface.
    annotation string
    Switch configuration description.
    network_bootstrap_interface_name string
    Name of the Network Bootstrap Interface.
    serial_number string
    Serial number of the interface. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    networkBootstrapDeviceName String
    Name of the Network Bootstrap Device.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    additionalDescription String
    Additional description of the interface.
    annotation String
    Switch configuration description.
    networkBootstrapInterfaceName String
    Name of the Network Bootstrap Interface.
    serialNumber String
    Serial number of the interface. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    networkBootstrapDeviceName string
    Name of the Network Bootstrap Device.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    additionalDescription string
    Additional description of the interface.
    annotation string
    Switch configuration description.
    networkBootstrapInterfaceName string
    Name of the Network Bootstrap Interface.
    serialNumber string
    Serial number of the interface. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    network_bootstrap_device_name str
    Name of the Network Bootstrap Device.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    additional_description str
    Additional description of the interface.
    annotation str
    Switch configuration description.
    network_bootstrap_interface_name str
    Name of the Network Bootstrap Interface.
    serial_number str
    Serial number of the interface. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.
    networkBootstrapDeviceName String
    Name of the Network Bootstrap Device.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    additionalDescription String
    Additional description of the interface.
    annotation String
    Switch configuration description.
    networkBootstrapInterfaceName String
    Name of the Network Bootstrap Interface.
    serialNumber String
    Serial number of the interface. Format of serial Number - Make;Model;HardwareRevisionId;SerialNumber.

    Outputs

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

    AdministrativeState string
    Administrative state of the resource.
    AzureApiVersion string
    The Azure API version of the resource.
    ConfigurationState string
    Configuration state of the resource.
    ConnectedTo string
    Connected to information of the device.
    Description string
    Description of the interface.
    Id string
    The provider-assigned unique ID for this managed resource.
    InterfaceType string
    Type of the interface.
    Ipv4Address string
    IPv4Address of the interface.
    Ipv6Address string
    IPv6Address of the interface.
    Name string
    The name of the resource
    PhysicalIdentifier string
    Physical identifier of the device.
    ProvisioningState string
    Provisioning state of the resource.
    SystemData Pulumi.AzureNative.ManagedNetworkFabric.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AdministrativeState string
    Administrative state of the resource.
    AzureApiVersion string
    The Azure API version of the resource.
    ConfigurationState string
    Configuration state of the resource.
    ConnectedTo string
    Connected to information of the device.
    Description string
    Description of the interface.
    Id string
    The provider-assigned unique ID for this managed resource.
    InterfaceType string
    Type of the interface.
    Ipv4Address string
    IPv4Address of the interface.
    Ipv6Address string
    IPv6Address of the interface.
    Name string
    The name of the resource
    PhysicalIdentifier string
    Physical identifier of the device.
    ProvisioningState string
    Provisioning state of the resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    administrative_state string
    Administrative state of the resource.
    azure_api_version string
    The Azure API version of the resource.
    configuration_state string
    Configuration state of the resource.
    connected_to string
    Connected to information of the device.
    description string
    Description of the interface.
    id string
    The provider-assigned unique ID for this managed resource.
    interface_type string
    Type of the interface.
    ipv4_address string
    IPv4Address of the interface.
    ipv6_address string
    IPv6Address of the interface.
    name string
    The name of the resource
    physical_identifier string
    Physical identifier of the device.
    provisioning_state string
    Provisioning state of the resource.
    system_data object
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    administrativeState String
    Administrative state of the resource.
    azureApiVersion String
    The Azure API version of the resource.
    configurationState String
    Configuration state of the resource.
    connectedTo String
    Connected to information of the device.
    description String
    Description of the interface.
    id String
    The provider-assigned unique ID for this managed resource.
    interfaceType String
    Type of the interface.
    ipv4Address String
    IPv4Address of the interface.
    ipv6Address String
    IPv6Address of the interface.
    name String
    The name of the resource
    physicalIdentifier String
    Physical identifier of the device.
    provisioningState String
    Provisioning state of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    administrativeState string
    Administrative state of the resource.
    azureApiVersion string
    The Azure API version of the resource.
    configurationState string
    Configuration state of the resource.
    connectedTo string
    Connected to information of the device.
    description string
    Description of the interface.
    id string
    The provider-assigned unique ID for this managed resource.
    interfaceType string
    Type of the interface.
    ipv4Address string
    IPv4Address of the interface.
    ipv6Address string
    IPv6Address of the interface.
    name string
    The name of the resource
    physicalIdentifier string
    Physical identifier of the device.
    provisioningState string
    Provisioning state of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    administrative_state str
    Administrative state of the resource.
    azure_api_version str
    The Azure API version of the resource.
    configuration_state str
    Configuration state of the resource.
    connected_to str
    Connected to information of the device.
    description str
    Description of the interface.
    id str
    The provider-assigned unique ID for this managed resource.
    interface_type str
    Type of the interface.
    ipv4_address str
    IPv4Address of the interface.
    ipv6_address str
    IPv6Address of the interface.
    name str
    The name of the resource
    physical_identifier str
    Physical identifier of the device.
    provisioning_state str
    Provisioning state of the resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    administrativeState String
    Administrative state of the resource.
    azureApiVersion String
    The Azure API version of the resource.
    configurationState String
    Configuration state of the resource.
    connectedTo String
    Connected to information of the device.
    description String
    Description of the interface.
    id String
    The provider-assigned unique ID for this managed resource.
    interfaceType String
    Type of the interface.
    ipv4Address String
    IPv4Address of the interface.
    ipv6Address String
    IPv6Address of the interface.
    name String
    The name of the resource
    physicalIdentifier String
    Physical identifier of the device.
    provisioningState String
    Provisioning state of the resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    SystemDataResponse, SystemDataResponseArgs

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

    Import

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

    $ pulumi import azure-native:managednetworkfabric:NetworkBootstrapInterface example-interface /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkBootstrapDevices/{networkBootstrapDeviceName}/networkBootstrapInterfaces/{networkBootstrapInterfaceName} 
    

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

    Package Details

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

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial