azure-native.managednetworkfabric.NetworkTap
Explore with Pulumi AI
The Network Tap resource definition. Azure REST API version: 2023-06-15.
Example Usage
NetworkTaps_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var networkTap = new AzureNative.ManagedNetworkFabric.NetworkTap("networkTap", new()
    {
        Annotation = "annotation",
        Destinations = new[]
        {
            new AzureNative.ManagedNetworkFabric.Inputs.NetworkTapPropertiesDestinationsArgs
            {
                DestinationId = "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/l3IsloationDomains/example-l3Domain/internalNetworks/example-internalNetwork",
                DestinationTapRuleId = "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkTapRules/example-destinationTapRule",
                DestinationType = AzureNative.ManagedNetworkFabric.DestinationType.IsolationDomain,
                IsolationDomainProperties = new AzureNative.ManagedNetworkFabric.Inputs.IsolationDomainPropertiesArgs
                {
                    Encapsulation = AzureNative.ManagedNetworkFabric.Encapsulation.None,
                    NeighborGroupIds = new[]
                    {
                        "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup",
                    },
                },
                Name = "example-destinaionName",
            },
        },
        Location = "eastuseuap",
        NetworkPacketBrokerId = "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkPacketBrokers/example-networkPacketBroker",
        NetworkTapName = "example-networkTap",
        PollingType = AzureNative.ManagedNetworkFabric.PollingType.Pull,
        ResourceGroupName = "example-rg",
        Tags = 
        {
            { "key6024", "1234" },
        },
    });
});
package main
import (
	managednetworkfabric "github.com/pulumi/pulumi-azure-native-sdk/managednetworkfabric/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := managednetworkfabric.NewNetworkTap(ctx, "networkTap", &managednetworkfabric.NetworkTapArgs{
			Annotation: pulumi.String("annotation"),
			Destinations: managednetworkfabric.NetworkTapPropertiesDestinationsArray{
				&managednetworkfabric.NetworkTapPropertiesDestinationsArgs{
					DestinationId:        pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/l3IsloationDomains/example-l3Domain/internalNetworks/example-internalNetwork"),
					DestinationTapRuleId: pulumi.String("/subscriptions/xxxx-xxxx-xxxx-xxxx/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkTapRules/example-destinationTapRule"),
					DestinationType:      pulumi.String(managednetworkfabric.DestinationTypeIsolationDomain),
					IsolationDomainProperties: &managednetworkfabric.IsolationDomainPropertiesArgs{
						Encapsulation: pulumi.String(managednetworkfabric.EncapsulationNone),
						NeighborGroupIds: pulumi.StringArray{
							pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup"),
						},
					},
					Name: pulumi.String("example-destinaionName"),
				},
			},
			Location:              pulumi.String("eastuseuap"),
			NetworkPacketBrokerId: pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkPacketBrokers/example-networkPacketBroker"),
			NetworkTapName:        pulumi.String("example-networkTap"),
			PollingType:           pulumi.String(managednetworkfabric.PollingTypePull),
			ResourceGroupName:     pulumi.String("example-rg"),
			Tags: pulumi.StringMap{
				"key6024": pulumi.String("1234"),
			},
		})
		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.managednetworkfabric.NetworkTap;
import com.pulumi.azurenative.managednetworkfabric.NetworkTapArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.NetworkTapPropertiesDestinationsArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.IsolationDomainPropertiesArgs;
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 networkTap = new NetworkTap("networkTap", NetworkTapArgs.builder()
            .annotation("annotation")
            .destinations(NetworkTapPropertiesDestinationsArgs.builder()
                .destinationId("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/l3IsloationDomains/example-l3Domain/internalNetworks/example-internalNetwork")
                .destinationTapRuleId("/subscriptions/xxxx-xxxx-xxxx-xxxx/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkTapRules/example-destinationTapRule")
                .destinationType("IsolationDomain")
                .isolationDomainProperties(IsolationDomainPropertiesArgs.builder()
                    .encapsulation("None")
                    .neighborGroupIds("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup")
                    .build())
                .name("example-destinaionName")
                .build())
            .location("eastuseuap")
            .networkPacketBrokerId("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkPacketBrokers/example-networkPacketBroker")
            .networkTapName("example-networkTap")
            .pollingType("Pull")
            .resourceGroupName("example-rg")
            .tags(Map.of("key6024", "1234"))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const networkTap = new azure_native.managednetworkfabric.NetworkTap("networkTap", {
    annotation: "annotation",
    destinations: [{
        destinationId: "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/l3IsloationDomains/example-l3Domain/internalNetworks/example-internalNetwork",
        destinationTapRuleId: "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkTapRules/example-destinationTapRule",
        destinationType: azure_native.managednetworkfabric.DestinationType.IsolationDomain,
        isolationDomainProperties: {
            encapsulation: azure_native.managednetworkfabric.Encapsulation.None,
            neighborGroupIds: ["/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup"],
        },
        name: "example-destinaionName",
    }],
    location: "eastuseuap",
    networkPacketBrokerId: "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkPacketBrokers/example-networkPacketBroker",
    networkTapName: "example-networkTap",
    pollingType: azure_native.managednetworkfabric.PollingType.Pull,
    resourceGroupName: "example-rg",
    tags: {
        key6024: "1234",
    },
});
import pulumi
import pulumi_azure_native as azure_native
network_tap = azure_native.managednetworkfabric.NetworkTap("networkTap",
    annotation="annotation",
    destinations=[{
        "destination_id": "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/l3IsloationDomains/example-l3Domain/internalNetworks/example-internalNetwork",
        "destination_tap_rule_id": "/subscriptions/xxxx-xxxx-xxxx-xxxx/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkTapRules/example-destinationTapRule",
        "destination_type": azure_native.managednetworkfabric.DestinationType.ISOLATION_DOMAIN,
        "isolation_domain_properties": {
            "encapsulation": azure_native.managednetworkfabric.Encapsulation.NONE,
            "neighbor_group_ids": ["/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup"],
        },
        "name": "example-destinaionName",
    }],
    location="eastuseuap",
    network_packet_broker_id="/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkPacketBrokers/example-networkPacketBroker",
    network_tap_name="example-networkTap",
    polling_type=azure_native.managednetworkfabric.PollingType.PULL,
    resource_group_name="example-rg",
    tags={
        "key6024": "1234",
    })
resources:
  networkTap:
    type: azure-native:managednetworkfabric:NetworkTap
    properties:
      annotation: annotation
      destinations:
        - destinationId: /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/l3IsloationDomains/example-l3Domain/internalNetworks/example-internalNetwork
          destinationTapRuleId: /subscriptions/xxxx-xxxx-xxxx-xxxx/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkTapRules/example-destinationTapRule
          destinationType: IsolationDomain
          isolationDomainProperties:
            encapsulation: None
            neighborGroupIds:
              - /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup
          name: example-destinaionName
      location: eastuseuap
      networkPacketBrokerId: /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/networkPacketBrokers/example-networkPacketBroker
      networkTapName: example-networkTap
      pollingType: Pull
      resourceGroupName: example-rg
      tags:
        key6024: '1234'
Create NetworkTap Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkTap(name: string, args: NetworkTapArgs, opts?: CustomResourceOptions);@overload
def NetworkTap(resource_name: str,
               args: NetworkTapArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def NetworkTap(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               destinations: Optional[Sequence[NetworkTapPropertiesDestinationsArgs]] = None,
               network_packet_broker_id: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               annotation: Optional[str] = None,
               location: Optional[str] = None,
               network_tap_name: Optional[str] = None,
               polling_type: Optional[Union[str, PollingType]] = None,
               tags: Optional[Mapping[str, str]] = None)func NewNetworkTap(ctx *Context, name string, args NetworkTapArgs, opts ...ResourceOption) (*NetworkTap, error)public NetworkTap(string name, NetworkTapArgs args, CustomResourceOptions? opts = null)
public NetworkTap(String name, NetworkTapArgs args)
public NetworkTap(String name, NetworkTapArgs args, CustomResourceOptions options)
type: azure-native:managednetworkfabric:NetworkTap
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 NetworkTapArgs
- 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 NetworkTapArgs
- 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 NetworkTapArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkTapArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkTapArgs
- 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 networkTapResource = new AzureNative.ManagedNetworkFabric.NetworkTap("networkTapResource", new()
{
    Destinations = new[]
    {
        new AzureNative.ManagedNetworkFabric.Inputs.NetworkTapPropertiesDestinationsArgs
        {
            DestinationId = "string",
            DestinationType = "string",
            Name = "string",
            DestinationTapRuleId = "string",
            IsolationDomainProperties = new AzureNative.ManagedNetworkFabric.Inputs.IsolationDomainPropertiesArgs
            {
                Encapsulation = "string",
                NeighborGroupIds = new[]
                {
                    "string",
                },
            },
        },
    },
    NetworkPacketBrokerId = "string",
    ResourceGroupName = "string",
    Annotation = "string",
    Location = "string",
    NetworkTapName = "string",
    PollingType = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := managednetworkfabric.NewNetworkTap(ctx, "networkTapResource", &managednetworkfabric.NetworkTapArgs{
	Destinations: managednetworkfabric.NetworkTapPropertiesDestinationsArray{
		&managednetworkfabric.NetworkTapPropertiesDestinationsArgs{
			DestinationId:        pulumi.String("string"),
			DestinationType:      pulumi.String("string"),
			Name:                 pulumi.String("string"),
			DestinationTapRuleId: pulumi.String("string"),
			IsolationDomainProperties: &managednetworkfabric.IsolationDomainPropertiesArgs{
				Encapsulation: pulumi.String("string"),
				NeighborGroupIds: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	NetworkPacketBrokerId: pulumi.String("string"),
	ResourceGroupName:     pulumi.String("string"),
	Annotation:            pulumi.String("string"),
	Location:              pulumi.String("string"),
	NetworkTapName:        pulumi.String("string"),
	PollingType:           pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var networkTapResource = new NetworkTap("networkTapResource", NetworkTapArgs.builder()
    .destinations(NetworkTapPropertiesDestinationsArgs.builder()
        .destinationId("string")
        .destinationType("string")
        .name("string")
        .destinationTapRuleId("string")
        .isolationDomainProperties(IsolationDomainPropertiesArgs.builder()
            .encapsulation("string")
            .neighborGroupIds("string")
            .build())
        .build())
    .networkPacketBrokerId("string")
    .resourceGroupName("string")
    .annotation("string")
    .location("string")
    .networkTapName("string")
    .pollingType("string")
    .tags(Map.of("string", "string"))
    .build());
network_tap_resource = azure_native.managednetworkfabric.NetworkTap("networkTapResource",
    destinations=[{
        "destination_id": "string",
        "destination_type": "string",
        "name": "string",
        "destination_tap_rule_id": "string",
        "isolation_domain_properties": {
            "encapsulation": "string",
            "neighbor_group_ids": ["string"],
        },
    }],
    network_packet_broker_id="string",
    resource_group_name="string",
    annotation="string",
    location="string",
    network_tap_name="string",
    polling_type="string",
    tags={
        "string": "string",
    })
const networkTapResource = new azure_native.managednetworkfabric.NetworkTap("networkTapResource", {
    destinations: [{
        destinationId: "string",
        destinationType: "string",
        name: "string",
        destinationTapRuleId: "string",
        isolationDomainProperties: {
            encapsulation: "string",
            neighborGroupIds: ["string"],
        },
    }],
    networkPacketBrokerId: "string",
    resourceGroupName: "string",
    annotation: "string",
    location: "string",
    networkTapName: "string",
    pollingType: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:managednetworkfabric:NetworkTap
properties:
    annotation: string
    destinations:
        - destinationId: string
          destinationTapRuleId: string
          destinationType: string
          isolationDomainProperties:
            encapsulation: string
            neighborGroupIds:
                - string
          name: string
    location: string
    networkPacketBrokerId: string
    networkTapName: string
    pollingType: string
    resourceGroupName: string
    tags:
        string: string
NetworkTap 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 NetworkTap resource accepts the following input properties:
- Destinations
List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Network Tap Properties Destinations> 
- List of destinations to send the filter traffic.
- NetworkPacket stringBroker Id 
- ARM resource ID of the Network Packet Broker.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Annotation string
- Switch configuration description.
- Location string
- The geo-location where the resource lives
- NetworkTap stringName 
- Name of the Network Tap.
- PollingType string | Pulumi.Azure Native. Managed Network Fabric. Polling Type 
- Polling type.
- Dictionary<string, string>
- Resource tags.
- Destinations
[]NetworkTap Properties Destinations Args 
- List of destinations to send the filter traffic.
- NetworkPacket stringBroker Id 
- ARM resource ID of the Network Packet Broker.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Annotation string
- Switch configuration description.
- Location string
- The geo-location where the resource lives
- NetworkTap stringName 
- Name of the Network Tap.
- PollingType string | PollingType 
- Polling type.
- map[string]string
- Resource tags.
- destinations
List<NetworkTap Properties Destinations> 
- List of destinations to send the filter traffic.
- networkPacket StringBroker Id 
- ARM resource ID of the Network Packet Broker.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- annotation String
- Switch configuration description.
- location String
- The geo-location where the resource lives
- networkTap StringName 
- Name of the Network Tap.
- pollingType String | PollingType 
- Polling type.
- Map<String,String>
- Resource tags.
- destinations
NetworkTap Properties Destinations[] 
- List of destinations to send the filter traffic.
- networkPacket stringBroker Id 
- ARM resource ID of the Network Packet Broker.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- annotation string
- Switch configuration description.
- location string
- The geo-location where the resource lives
- networkTap stringName 
- Name of the Network Tap.
- pollingType string | PollingType 
- Polling type.
- {[key: string]: string}
- Resource tags.
- destinations
Sequence[NetworkTap Properties Destinations Args] 
- List of destinations to send the filter traffic.
- network_packet_ strbroker_ id 
- ARM resource ID of the Network Packet Broker.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- annotation str
- Switch configuration description.
- location str
- The geo-location where the resource lives
- network_tap_ strname 
- Name of the Network Tap.
- polling_type str | PollingType 
- Polling type.
- Mapping[str, str]
- Resource tags.
- destinations List<Property Map>
- List of destinations to send the filter traffic.
- networkPacket StringBroker Id 
- ARM resource ID of the Network Packet Broker.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- annotation String
- Switch configuration description.
- location String
- The geo-location where the resource lives
- networkTap StringName 
- Name of the Network Tap.
- pollingType String | "Pull" | "Push"
- Polling type.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkTap resource produces the following output properties:
- AdministrativeState string
- Administrative state of the resource. Example -Enabled/Disabled
- ConfigurationState string
- Gets the configurations state of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of Network Tap provisioning.
- SourceTap stringRule Id 
- Source Tap Rule Id. ARM Resource ID of the Network Tap Rule.
- SystemData Pulumi.Azure Native. Managed Network Fabric. 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"
- AdministrativeState string
- Administrative state of the resource. Example -Enabled/Disabled
- ConfigurationState string
- Gets the configurations state of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of Network Tap provisioning.
- SourceTap stringRule Id 
- Source Tap Rule Id. ARM Resource ID of the Network Tap Rule.
- 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"
- administrativeState String
- Administrative state of the resource. Example -Enabled/Disabled
- configurationState String
- Gets the configurations state of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of Network Tap provisioning.
- sourceTap StringRule Id 
- Source Tap Rule Id. ARM Resource ID of the Network Tap Rule.
- 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"
- administrativeState string
- Administrative state of the resource. Example -Enabled/Disabled
- configurationState string
- Gets the configurations state of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioningState string
- Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of Network Tap provisioning.
- sourceTap stringRule Id 
- Source Tap Rule Id. ARM Resource ID of the Network Tap Rule.
- 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"
- administrative_state str
- Administrative state of the resource. Example -Enabled/Disabled
- configuration_state str
- Gets the configurations state of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_state str
- Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of Network Tap provisioning.
- source_tap_ strrule_ id 
- Source Tap Rule Id. ARM Resource ID of the Network Tap Rule.
- 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"
- administrativeState String
- Administrative state of the resource. Example -Enabled/Disabled
- configurationState String
- Gets the configurations state of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of Network Tap provisioning.
- sourceTap StringRule Id 
- Source Tap Rule Id. ARM Resource ID of the Network Tap Rule.
- 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
DestinationType, DestinationTypeArgs    
- IsolationDomain 
- IsolationDomain
- Direct
- Direct
- DestinationType Isolation Domain 
- IsolationDomain
- DestinationType Direct 
- Direct
- IsolationDomain 
- IsolationDomain
- Direct
- Direct
- IsolationDomain 
- IsolationDomain
- Direct
- Direct
- ISOLATION_DOMAIN
- IsolationDomain
- DIRECT
- Direct
- "IsolationDomain" 
- IsolationDomain
- "Direct"
- Direct
Encapsulation, EncapsulationArgs  
- None
- None
- GRE
- GRE
- EncapsulationNone 
- None
- EncapsulationGRE 
- GRE
- None
- None
- GRE
- GRE
- None
- None
- GRE
- GRE
- NONE
- None
- GRE
- GRE
- "None"
- None
- "GRE"
- GRE
IsolationDomainProperties, IsolationDomainPropertiesArgs      
- Encapsulation
string | Pulumi.Azure Native. Managed Network Fabric. Encapsulation 
- Type of encapsulation.
- NeighborGroup List<string>Ids 
- List of Neighbor Group IDs.
- Encapsulation string | Encapsulation
- Type of encapsulation.
- NeighborGroup []stringIds 
- List of Neighbor Group IDs.
- encapsulation String | Encapsulation
- Type of encapsulation.
- neighborGroup List<String>Ids 
- List of Neighbor Group IDs.
- encapsulation string | Encapsulation
- Type of encapsulation.
- neighborGroup string[]Ids 
- List of Neighbor Group IDs.
- encapsulation str | Encapsulation
- Type of encapsulation.
- neighbor_group_ Sequence[str]ids 
- List of Neighbor Group IDs.
- encapsulation String | "None" | "GRE"
- Type of encapsulation.
- neighborGroup List<String>Ids 
- List of Neighbor Group IDs.
IsolationDomainPropertiesResponse, IsolationDomainPropertiesResponseArgs        
- Encapsulation string
- Type of encapsulation.
- NeighborGroup List<string>Ids 
- List of Neighbor Group IDs.
- Encapsulation string
- Type of encapsulation.
- NeighborGroup []stringIds 
- List of Neighbor Group IDs.
- encapsulation String
- Type of encapsulation.
- neighborGroup List<String>Ids 
- List of Neighbor Group IDs.
- encapsulation string
- Type of encapsulation.
- neighborGroup string[]Ids 
- List of Neighbor Group IDs.
- encapsulation str
- Type of encapsulation.
- neighbor_group_ Sequence[str]ids 
- List of Neighbor Group IDs.
- encapsulation String
- Type of encapsulation.
- neighborGroup List<String>Ids 
- List of Neighbor Group IDs.
NetworkTapPropertiesDestinations, NetworkTapPropertiesDestinationsArgs        
- DestinationId string
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- DestinationType string | Pulumi.Azure Native. Managed Network Fabric. Destination Type 
- Type of destination. Input can be IsolationDomain or Direct.
- Name string
- Destination name.
- DestinationTap stringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- IsolationDomain Pulumi.Properties Azure Native. Managed Network Fabric. Inputs. Isolation Domain Properties 
- Isolation Domain Properties.
- DestinationId string
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- DestinationType string | DestinationType 
- Type of destination. Input can be IsolationDomain or Direct.
- Name string
- Destination name.
- DestinationTap stringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- IsolationDomain IsolationProperties Domain Properties 
- Isolation Domain Properties.
- destinationId String
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destinationType String | DestinationType 
- Type of destination. Input can be IsolationDomain or Direct.
- name String
- Destination name.
- destinationTap StringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- isolationDomain IsolationProperties Domain Properties 
- Isolation Domain Properties.
- destinationId string
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destinationType string | DestinationType 
- Type of destination. Input can be IsolationDomain or Direct.
- name string
- Destination name.
- destinationTap stringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- isolationDomain IsolationProperties Domain Properties 
- Isolation Domain Properties.
- destination_id str
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destination_type str | DestinationType 
- Type of destination. Input can be IsolationDomain or Direct.
- name str
- Destination name.
- destination_tap_ strrule_ id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- isolation_domain_ Isolationproperties Domain Properties 
- Isolation Domain Properties.
- destinationId String
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destinationType String | "IsolationDomain" | "Direct" 
- Type of destination. Input can be IsolationDomain or Direct.
- name String
- Destination name.
- destinationTap StringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- isolationDomain Property MapProperties 
- Isolation Domain Properties.
NetworkTapPropertiesResponseDestinations, NetworkTapPropertiesResponseDestinationsArgs          
- DestinationId string
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- DestinationType string
- Type of destination. Input can be IsolationDomain or Direct.
- Name string
- Destination name.
- DestinationTap stringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- IsolationDomain Pulumi.Properties Azure Native. Managed Network Fabric. Inputs. Isolation Domain Properties Response 
- Isolation Domain Properties.
- DestinationId string
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- DestinationType string
- Type of destination. Input can be IsolationDomain or Direct.
- Name string
- Destination name.
- DestinationTap stringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- IsolationDomain IsolationProperties Domain Properties Response 
- Isolation Domain Properties.
- destinationId String
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destinationType String
- Type of destination. Input can be IsolationDomain or Direct.
- name String
- Destination name.
- destinationTap StringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- isolationDomain IsolationProperties Domain Properties Response 
- Isolation Domain Properties.
- destinationId string
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destinationType string
- Type of destination. Input can be IsolationDomain or Direct.
- name string
- Destination name.
- destinationTap stringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- isolationDomain IsolationProperties Domain Properties Response 
- Isolation Domain Properties.
- destination_id str
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destination_type str
- Type of destination. Input can be IsolationDomain or Direct.
- name str
- Destination name.
- destination_tap_ strrule_ id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- isolation_domain_ Isolationproperties Domain Properties Response 
- Isolation Domain Properties.
- destinationId String
- The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destinationType String
- Type of destination. Input can be IsolationDomain or Direct.
- name String
- Destination name.
- destinationTap StringRule Id 
- ARM Resource ID of destination Tap Rule that contains match configurations.
- isolationDomain Property MapProperties 
- Isolation Domain Properties.
PollingType, PollingTypeArgs    
- Pull
- Pull
- Push
- Push
- PollingType Pull 
- Pull
- PollingType Push 
- Push
- Pull
- Pull
- Push
- Push
- Pull
- Pull
- Push
- Push
- PULL
- Pull
- PUSH
- Push
- "Pull"
- Pull
- "Push"
- Push
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:managednetworkfabric:NetworkTap example-networkTap /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkTaps/{networkTapName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0