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 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",
})
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",
},
});
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=[{
"destinationId": "string",
"destinationType": "string",
"name": "string",
"destinationTapRuleId": "string",
"isolationDomainProperties": {
"encapsulation": "string",
"neighborGroupIds": ["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
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.
- Network
Packet stringBroker Id - ARM resource ID of the Network Packet Broker.
- Resource
Group 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
- Network
Tap stringName - Name of the Network Tap.
- Polling
Type string | Pulumi.Azure Native. Managed Network Fabric. Polling Type - Polling type.
- Dictionary<string, string>
- Resource tags.
- Destinations
[]Network
Tap Properties Destinations Args - List of destinations to send the filter traffic.
- Network
Packet stringBroker Id - ARM resource ID of the Network Packet Broker.
- Resource
Group 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
- Network
Tap stringName - Name of the Network Tap.
- Polling
Type string | PollingType - Polling type.
- map[string]string
- Resource tags.
- destinations
List<Network
Tap Properties Destinations> - List of destinations to send the filter traffic.
- network
Packet StringBroker Id - ARM resource ID of the Network Packet Broker.
- resource
Group 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
- network
Tap StringName - Name of the Network Tap.
- polling
Type String | PollingType - Polling type.
- Map<String,String>
- Resource tags.
- destinations
Network
Tap Properties Destinations[] - List of destinations to send the filter traffic.
- network
Packet stringBroker Id - ARM resource ID of the Network Packet Broker.
- resource
Group 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
- network
Tap stringName - Name of the Network Tap.
- polling
Type string | PollingType - Polling type.
- {[key: string]: string}
- Resource tags.
- destinations
Sequence[Network
Tap 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.
- network
Packet StringBroker Id - ARM resource ID of the Network Packet Broker.
- resource
Group 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
- network
Tap StringName - Name of the Network Tap.
- polling
Type 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:
- Administrative
State string - Administrative state of the resource. Example -Enabled/Disabled
- Configuration
State 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
- Provisioning
State 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.
- Source
Tap stringRule Id - Source Tap Rule Id. ARM Resource ID of the Network Tap Rule.
- System
Data 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"
- Administrative
State string - Administrative state of the resource. Example -Enabled/Disabled
- Configuration
State 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
- Provisioning
State 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.
- Source
Tap stringRule 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 string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- administrative
State String - Administrative state of the resource. Example -Enabled/Disabled
- configuration
State 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
- provisioning
State 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.
- source
Tap StringRule 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 String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- administrative
State string - Administrative state of the resource. Example -Enabled/Disabled
- configuration
State 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
- provisioning
State 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.
- source
Tap stringRule 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 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"
- administrative
State String - Administrative state of the resource. Example -Enabled/Disabled
- configuration
State 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
- provisioning
State 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.
- source
Tap StringRule Id - Source Tap Rule Id. ARM Resource ID of the Network Tap Rule.
- system
Data 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
- Isolation
Domain - IsolationDomain
- Direct
- Direct
- Destination
Type Isolation Domain - IsolationDomain
- Destination
Type Direct - Direct
- Isolation
Domain - IsolationDomain
- Direct
- Direct
- Isolation
Domain - IsolationDomain
- Direct
- Direct
- ISOLATION_DOMAIN
- IsolationDomain
- DIRECT
- Direct
- "Isolation
Domain" - IsolationDomain
- "Direct"
- Direct
Encapsulation, EncapsulationArgs
- None
- None
- GRE
- GRE
- Encapsulation
None - None
- Encapsulation
GRE - 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.
- Neighbor
Group List<string>Ids - List of Neighbor Group IDs.
- Encapsulation string | Encapsulation
- Type of encapsulation.
- Neighbor
Group []stringIds - List of Neighbor Group IDs.
- encapsulation String | Encapsulation
- Type of encapsulation.
- neighbor
Group List<String>Ids - List of Neighbor Group IDs.
- encapsulation string | Encapsulation
- Type of encapsulation.
- neighbor
Group 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.
- neighbor
Group List<String>Ids - List of Neighbor Group IDs.
IsolationDomainPropertiesResponse, IsolationDomainPropertiesResponseArgs
- Encapsulation string
- Type of encapsulation.
- Neighbor
Group List<string>Ids - List of Neighbor Group IDs.
- Encapsulation string
- Type of encapsulation.
- Neighbor
Group []stringIds - List of Neighbor Group IDs.
- encapsulation String
- Type of encapsulation.
- neighbor
Group List<String>Ids - List of Neighbor Group IDs.
- encapsulation string
- Type of encapsulation.
- neighbor
Group 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.
- neighbor
Group List<String>Ids - List of Neighbor Group IDs.
NetworkTapPropertiesDestinations, NetworkTapPropertiesDestinationsArgs
- Destination
Id string - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- Destination
Type string | Pulumi.Azure Native. Managed Network Fabric. Destination Type - Type of destination. Input can be IsolationDomain or Direct.
- Name string
- Destination name.
- Destination
Tap stringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- Isolation
Domain Pulumi.Properties Azure Native. Managed Network Fabric. Inputs. Isolation Domain Properties - Isolation Domain Properties.
- Destination
Id string - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- Destination
Type string | DestinationType - Type of destination. Input can be IsolationDomain or Direct.
- Name string
- Destination name.
- Destination
Tap stringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- Isolation
Domain IsolationProperties Domain Properties - Isolation Domain Properties.
- destination
Id String - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destination
Type String | DestinationType - Type of destination. Input can be IsolationDomain or Direct.
- name String
- Destination name.
- destination
Tap StringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- isolation
Domain IsolationProperties Domain Properties - Isolation Domain Properties.
- destination
Id string - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destination
Type string | DestinationType - Type of destination. Input can be IsolationDomain or Direct.
- name string
- Destination name.
- destination
Tap stringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- isolation
Domain 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.
- destination
Id String - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destination
Type String | "IsolationDomain" | "Direct" - Type of destination. Input can be IsolationDomain or Direct.
- name String
- Destination name.
- destination
Tap StringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- isolation
Domain Property MapProperties - Isolation Domain Properties.
NetworkTapPropertiesResponseDestinations, NetworkTapPropertiesResponseDestinationsArgs
- Destination
Id string - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- Destination
Type string - Type of destination. Input can be IsolationDomain or Direct.
- Name string
- Destination name.
- Destination
Tap stringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- Isolation
Domain Pulumi.Properties Azure Native. Managed Network Fabric. Inputs. Isolation Domain Properties Response - Isolation Domain Properties.
- Destination
Id string - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- Destination
Type string - Type of destination. Input can be IsolationDomain or Direct.
- Name string
- Destination name.
- Destination
Tap stringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- Isolation
Domain IsolationProperties Domain Properties Response - Isolation Domain Properties.
- destination
Id String - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destination
Type String - Type of destination. Input can be IsolationDomain or Direct.
- name String
- Destination name.
- destination
Tap StringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- isolation
Domain IsolationProperties Domain Properties Response - Isolation Domain Properties.
- destination
Id string - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destination
Type string - Type of destination. Input can be IsolationDomain or Direct.
- name string
- Destination name.
- destination
Tap stringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- isolation
Domain 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.
- destination
Id String - The destination Id. ARM Resource ID of either NNI or Internal Networks.
- destination
Type String - Type of destination. Input can be IsolationDomain or Direct.
- name String
- Destination name.
- destination
Tap StringRule Id - ARM Resource ID of destination Tap Rule that contains match configurations.
- isolation
Domain Property MapProperties - Isolation Domain Properties.
PollingType, PollingTypeArgs
- Pull
- Pull
- Push
- Push
- Polling
Type Pull - Pull
- Polling
Type Push - Push
- Pull
- Pull
- Push
- Push
- Pull
- Pull
- Push
- Push
- PULL
- Pull
- PUSH
- Push
- "Pull"
- Pull
- "Push"
- Push
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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 stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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