azure-native.managednetworkfabric.NetworkTapRule
Explore with Pulumi AI
The NetworkTapRule resource definition. Azure REST API version: 2023-06-15.
Example Usage
NetworkTapRules_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var networkTapRule = new AzureNative.ManagedNetworkFabric.NetworkTapRule("networkTapRule", new()
{
Annotation = "annotation",
ConfigurationType = AzureNative.ManagedNetworkFabric.ConfigurationType.File,
DynamicMatchConfigurations = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.CommonDynamicMatchConfigurationArgs
{
IpGroups = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.IpGroupPropertiesArgs
{
IpAddressType = AzureNative.ManagedNetworkFabric.IPAddressType.IPv4,
IpPrefixes = new[]
{
"10.10.10.10/30",
},
Name = "example-ipGroup1",
},
},
PortGroups = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.PortGroupPropertiesArgs
{
Name = "example-portGroup1",
Ports = new[]
{
"100-200",
},
},
new AzureNative.ManagedNetworkFabric.Inputs.PortGroupPropertiesArgs
{
Name = "example-portGroup2",
Ports = new[]
{
"900",
"1000-2000",
},
},
},
VlanGroups = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.VlanGroupPropertiesArgs
{
Name = "exmaple-vlanGroup",
Vlans = new[]
{
"10",
"100-200",
},
},
},
},
},
Location = "eastus",
MatchConfigurations = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.NetworkTapRuleMatchConfigurationArgs
{
Actions = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.NetworkTapRuleActionArgs
{
DestinationId = "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup",
IsTimestampEnabled = AzureNative.ManagedNetworkFabric.BooleanEnumProperty.True,
MatchConfigurationName = "match1",
Truncate = "100",
Type = AzureNative.ManagedNetworkFabric.TapRuleActionType.Drop,
},
},
IpAddressType = AzureNative.ManagedNetworkFabric.IPAddressType.IPv4,
MatchConditions = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.NetworkTapRuleMatchConditionArgs
{
EncapsulationType = AzureNative.ManagedNetworkFabric.EncapsulationType.None,
IpCondition = new AzureNative.ManagedNetworkFabric.Inputs.IpMatchConditionArgs
{
IpGroupNames = new[]
{
"example-ipGroup",
},
IpPrefixValues = new[]
{
"10.10.10.10/20",
},
PrefixType = AzureNative.ManagedNetworkFabric.PrefixType.Prefix,
Type = AzureNative.ManagedNetworkFabric.SourceDestinationType.SourceIP,
},
PortCondition = new AzureNative.ManagedNetworkFabric.Inputs.PortConditionArgs
{
Layer4Protocol = AzureNative.ManagedNetworkFabric.Layer4Protocol.TCP,
PortGroupNames = new[]
{
"example-portGroup1",
},
PortType = AzureNative.ManagedNetworkFabric.PortType.SourcePort,
Ports = new[]
{
"100",
},
},
ProtocolTypes = new[]
{
"TCP",
},
VlanMatchCondition = new AzureNative.ManagedNetworkFabric.Inputs.VlanMatchConditionArgs
{
InnerVlans = new[]
{
"11-20",
},
VlanGroupNames = new[]
{
"exmaple-vlanGroup",
},
Vlans = new[]
{
"10",
},
},
},
},
MatchConfigurationName = "config1",
SequenceNumber = 10,
},
},
NetworkTapRuleName = "example-tapRule",
PollingIntervalInSeconds = 30,
ResourceGroupName = "example-rg",
Tags =
{
{ "keyID", "keyValue" },
},
TapRulesUrl = "https://microsoft.com/a",
});
});
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.NewNetworkTapRule(ctx, "networkTapRule", &managednetworkfabric.NetworkTapRuleArgs{
Annotation: pulumi.String("annotation"),
ConfigurationType: pulumi.String(managednetworkfabric.ConfigurationTypeFile),
DynamicMatchConfigurations: managednetworkfabric.CommonDynamicMatchConfigurationArray{
&managednetworkfabric.CommonDynamicMatchConfigurationArgs{
IpGroups: managednetworkfabric.IpGroupPropertiesArray{
&managednetworkfabric.IpGroupPropertiesArgs{
IpAddressType: pulumi.String(managednetworkfabric.IPAddressTypeIPv4),
IpPrefixes: pulumi.StringArray{
pulumi.String("10.10.10.10/30"),
},
Name: pulumi.String("example-ipGroup1"),
},
},
PortGroups: managednetworkfabric.PortGroupPropertiesArray{
&managednetworkfabric.PortGroupPropertiesArgs{
Name: pulumi.String("example-portGroup1"),
Ports: pulumi.StringArray{
pulumi.String("100-200"),
},
},
&managednetworkfabric.PortGroupPropertiesArgs{
Name: pulumi.String("example-portGroup2"),
Ports: pulumi.StringArray{
pulumi.String("900"),
pulumi.String("1000-2000"),
},
},
},
VlanGroups: managednetworkfabric.VlanGroupPropertiesArray{
&managednetworkfabric.VlanGroupPropertiesArgs{
Name: pulumi.String("exmaple-vlanGroup"),
Vlans: pulumi.StringArray{
pulumi.String("10"),
pulumi.String("100-200"),
},
},
},
},
},
Location: pulumi.String("eastus"),
MatchConfigurations: managednetworkfabric.NetworkTapRuleMatchConfigurationArray{
&managednetworkfabric.NetworkTapRuleMatchConfigurationArgs{
Actions: managednetworkfabric.NetworkTapRuleActionArray{
&managednetworkfabric.NetworkTapRuleActionArgs{
DestinationId: pulumi.String("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup"),
IsTimestampEnabled: pulumi.String(managednetworkfabric.BooleanEnumPropertyTrue),
MatchConfigurationName: pulumi.String("match1"),
Truncate: pulumi.String("100"),
Type: pulumi.String(managednetworkfabric.TapRuleActionTypeDrop),
},
},
IpAddressType: pulumi.String(managednetworkfabric.IPAddressTypeIPv4),
MatchConditions: managednetworkfabric.NetworkTapRuleMatchConditionArray{
&managednetworkfabric.NetworkTapRuleMatchConditionArgs{
EncapsulationType: pulumi.String(managednetworkfabric.EncapsulationTypeNone),
IpCondition: &managednetworkfabric.IpMatchConditionArgs{
IpGroupNames: pulumi.StringArray{
pulumi.String("example-ipGroup"),
},
IpPrefixValues: pulumi.StringArray{
pulumi.String("10.10.10.10/20"),
},
PrefixType: pulumi.String(managednetworkfabric.PrefixTypePrefix),
Type: pulumi.String(managednetworkfabric.SourceDestinationTypeSourceIP),
},
PortCondition: &managednetworkfabric.PortConditionArgs{
Layer4Protocol: pulumi.String(managednetworkfabric.Layer4ProtocolTCP),
PortGroupNames: pulumi.StringArray{
pulumi.String("example-portGroup1"),
},
PortType: pulumi.String(managednetworkfabric.PortTypeSourcePort),
Ports: pulumi.StringArray{
pulumi.String("100"),
},
},
ProtocolTypes: pulumi.StringArray{
pulumi.String("TCP"),
},
VlanMatchCondition: &managednetworkfabric.VlanMatchConditionArgs{
InnerVlans: pulumi.StringArray{
pulumi.String("11-20"),
},
VlanGroupNames: pulumi.StringArray{
pulumi.String("exmaple-vlanGroup"),
},
Vlans: pulumi.StringArray{
pulumi.String("10"),
},
},
},
},
MatchConfigurationName: pulumi.String("config1"),
SequenceNumber: pulumi.Float64(10),
},
},
NetworkTapRuleName: pulumi.String("example-tapRule"),
PollingIntervalInSeconds: pulumi.Int(30),
ResourceGroupName: pulumi.String("example-rg"),
Tags: pulumi.StringMap{
"keyID": pulumi.String("keyValue"),
},
TapRulesUrl: pulumi.String("https://microsoft.com/a"),
})
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.NetworkTapRule;
import com.pulumi.azurenative.managednetworkfabric.NetworkTapRuleArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.CommonDynamicMatchConfigurationArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.NetworkTapRuleMatchConfigurationArgs;
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 networkTapRule = new NetworkTapRule("networkTapRule", NetworkTapRuleArgs.builder()
.annotation("annotation")
.configurationType("File")
.dynamicMatchConfigurations(CommonDynamicMatchConfigurationArgs.builder()
.ipGroups(IpGroupPropertiesArgs.builder()
.ipAddressType("IPv4")
.ipPrefixes("10.10.10.10/30")
.name("example-ipGroup1")
.build())
.portGroups(
PortGroupPropertiesArgs.builder()
.name("example-portGroup1")
.ports("100-200")
.build(),
PortGroupPropertiesArgs.builder()
.name("example-portGroup2")
.ports(
"900",
"1000-2000")
.build())
.vlanGroups(VlanGroupPropertiesArgs.builder()
.name("exmaple-vlanGroup")
.vlans(
"10",
"100-200")
.build())
.build())
.location("eastus")
.matchConfigurations(NetworkTapRuleMatchConfigurationArgs.builder()
.actions(NetworkTapRuleActionArgs.builder()
.destinationId("/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup")
.isTimestampEnabled("True")
.matchConfigurationName("match1")
.truncate("100")
.type("Drop")
.build())
.ipAddressType("IPv4")
.matchConditions(NetworkTapRuleMatchConditionArgs.builder()
.encapsulationType("None")
.ipCondition(IpMatchConditionArgs.builder()
.ipGroupNames("example-ipGroup")
.ipPrefixValues("10.10.10.10/20")
.prefixType("Prefix")
.type("SourceIP")
.build())
.portCondition(PortConditionArgs.builder()
.layer4Protocol("TCP")
.portGroupNames("example-portGroup1")
.portType("SourcePort")
.ports("100")
.build())
.protocolTypes("TCP")
.vlanMatchCondition(VlanMatchConditionArgs.builder()
.innerVlans("11-20")
.vlanGroupNames("exmaple-vlanGroup")
.vlans("10")
.build())
.build())
.matchConfigurationName("config1")
.sequenceNumber(10)
.build())
.networkTapRuleName("example-tapRule")
.pollingIntervalInSeconds(30)
.resourceGroupName("example-rg")
.tags(Map.of("keyID", "keyValue"))
.tapRulesUrl("https://microsoft.com/a")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
network_tap_rule = azure_native.managednetworkfabric.NetworkTapRule("networkTapRule",
annotation="annotation",
configuration_type=azure_native.managednetworkfabric.ConfigurationType.FILE,
dynamic_match_configurations=[{
"ip_groups": [{
"ip_address_type": azure_native.managednetworkfabric.IPAddressType.I_PV4,
"ip_prefixes": ["10.10.10.10/30"],
"name": "example-ipGroup1",
}],
"port_groups": [
{
"name": "example-portGroup1",
"ports": ["100-200"],
},
{
"name": "example-portGroup2",
"ports": [
"900",
"1000-2000",
],
},
],
"vlan_groups": [{
"name": "exmaple-vlanGroup",
"vlans": [
"10",
"100-200",
],
}],
}],
location="eastus",
match_configurations=[{
"actions": [{
"destination_id": "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup",
"is_timestamp_enabled": azure_native.managednetworkfabric.BooleanEnumProperty.TRUE,
"match_configuration_name": "match1",
"truncate": "100",
"type": azure_native.managednetworkfabric.TapRuleActionType.DROP,
}],
"ip_address_type": azure_native.managednetworkfabric.IPAddressType.I_PV4,
"match_conditions": [{
"encapsulation_type": azure_native.managednetworkfabric.EncapsulationType.NONE,
"ip_condition": {
"ip_group_names": ["example-ipGroup"],
"ip_prefix_values": ["10.10.10.10/20"],
"prefix_type": azure_native.managednetworkfabric.PrefixType.PREFIX,
"type": azure_native.managednetworkfabric.SourceDestinationType.SOURCE_IP,
},
"port_condition": {
"layer4_protocol": azure_native.managednetworkfabric.Layer4Protocol.TCP,
"port_group_names": ["example-portGroup1"],
"port_type": azure_native.managednetworkfabric.PortType.SOURCE_PORT,
"ports": ["100"],
},
"protocol_types": ["TCP"],
"vlan_match_condition": {
"inner_vlans": ["11-20"],
"vlan_group_names": ["exmaple-vlanGroup"],
"vlans": ["10"],
},
}],
"match_configuration_name": "config1",
"sequence_number": 10,
}],
network_tap_rule_name="example-tapRule",
polling_interval_in_seconds=30,
resource_group_name="example-rg",
tags={
"keyID": "keyValue",
},
tap_rules_url="https://microsoft.com/a")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const networkTapRule = new azure_native.managednetworkfabric.NetworkTapRule("networkTapRule", {
annotation: "annotation",
configurationType: azure_native.managednetworkfabric.ConfigurationType.File,
dynamicMatchConfigurations: [{
ipGroups: [{
ipAddressType: azure_native.managednetworkfabric.IPAddressType.IPv4,
ipPrefixes: ["10.10.10.10/30"],
name: "example-ipGroup1",
}],
portGroups: [
{
name: "example-portGroup1",
ports: ["100-200"],
},
{
name: "example-portGroup2",
ports: [
"900",
"1000-2000",
],
},
],
vlanGroups: [{
name: "exmaple-vlanGroup",
vlans: [
"10",
"100-200",
],
}],
}],
location: "eastus",
matchConfigurations: [{
actions: [{
destinationId: "/subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup",
isTimestampEnabled: azure_native.managednetworkfabric.BooleanEnumProperty.True,
matchConfigurationName: "match1",
truncate: "100",
type: azure_native.managednetworkfabric.TapRuleActionType.Drop,
}],
ipAddressType: azure_native.managednetworkfabric.IPAddressType.IPv4,
matchConditions: [{
encapsulationType: azure_native.managednetworkfabric.EncapsulationType.None,
ipCondition: {
ipGroupNames: ["example-ipGroup"],
ipPrefixValues: ["10.10.10.10/20"],
prefixType: azure_native.managednetworkfabric.PrefixType.Prefix,
type: azure_native.managednetworkfabric.SourceDestinationType.SourceIP,
},
portCondition: {
layer4Protocol: azure_native.managednetworkfabric.Layer4Protocol.TCP,
portGroupNames: ["example-portGroup1"],
portType: azure_native.managednetworkfabric.PortType.SourcePort,
ports: ["100"],
},
protocolTypes: ["TCP"],
vlanMatchCondition: {
innerVlans: ["11-20"],
vlanGroupNames: ["exmaple-vlanGroup"],
vlans: ["10"],
},
}],
matchConfigurationName: "config1",
sequenceNumber: 10,
}],
networkTapRuleName: "example-tapRule",
pollingIntervalInSeconds: 30,
resourceGroupName: "example-rg",
tags: {
keyID: "keyValue",
},
tapRulesUrl: "https://microsoft.com/a",
});
resources:
networkTapRule:
type: azure-native:managednetworkfabric:NetworkTapRule
properties:
annotation: annotation
configurationType: File
dynamicMatchConfigurations:
- ipGroups:
- ipAddressType: IPv4
ipPrefixes:
- 10.10.10.10/30
name: example-ipGroup1
portGroups:
- name: example-portGroup1
ports:
- 100-200
- name: example-portGroup2
ports:
- '900'
- 1000-2000
vlanGroups:
- name: exmaple-vlanGroup
vlans:
- '10'
- 100-200
location: eastus
matchConfigurations:
- actions:
- destinationId: /subscriptions/1234ABCD-0A1B-1234-5678-123456ABCDEF/resourcegroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup
isTimestampEnabled: True
matchConfigurationName: match1
truncate: '100'
type: Drop
ipAddressType: IPv4
matchConditions:
- encapsulationType: None
ipCondition:
ipGroupNames:
- example-ipGroup
ipPrefixValues:
- 10.10.10.10/20
prefixType: Prefix
type: SourceIP
portCondition:
layer4Protocol: TCP
portGroupNames:
- example-portGroup1
portType: SourcePort
ports:
- '100'
protocolTypes:
- TCP
vlanMatchCondition:
innerVlans:
- 11-20
vlanGroupNames:
- exmaple-vlanGroup
vlans:
- '10'
matchConfigurationName: config1
sequenceNumber: 10
networkTapRuleName: example-tapRule
pollingIntervalInSeconds: 30
resourceGroupName: example-rg
tags:
keyID: keyValue
tapRulesUrl: https://microsoft.com/a
Create NetworkTapRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkTapRule(name: string, args: NetworkTapRuleArgs, opts?: CustomResourceOptions);
@overload
def NetworkTapRule(resource_name: str,
args: NetworkTapRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkTapRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration_type: Optional[Union[str, ConfigurationType]] = None,
resource_group_name: Optional[str] = None,
annotation: Optional[str] = None,
dynamic_match_configurations: Optional[Sequence[CommonDynamicMatchConfigurationArgs]] = None,
location: Optional[str] = None,
match_configurations: Optional[Sequence[NetworkTapRuleMatchConfigurationArgs]] = None,
network_tap_rule_name: Optional[str] = None,
polling_interval_in_seconds: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None,
tap_rules_url: Optional[str] = None)
func NewNetworkTapRule(ctx *Context, name string, args NetworkTapRuleArgs, opts ...ResourceOption) (*NetworkTapRule, error)
public NetworkTapRule(string name, NetworkTapRuleArgs args, CustomResourceOptions? opts = null)
public NetworkTapRule(String name, NetworkTapRuleArgs args)
public NetworkTapRule(String name, NetworkTapRuleArgs args, CustomResourceOptions options)
type: azure-native:managednetworkfabric:NetworkTapRule
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 NetworkTapRuleArgs
- 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 NetworkTapRuleArgs
- 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 NetworkTapRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkTapRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkTapRuleArgs
- 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 networkTapRuleResource = new AzureNative.ManagedNetworkFabric.NetworkTapRule("networkTapRuleResource", new()
{
ConfigurationType = "string",
ResourceGroupName = "string",
Annotation = "string",
DynamicMatchConfigurations = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.CommonDynamicMatchConfigurationArgs
{
IpGroups = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.IpGroupPropertiesArgs
{
IpAddressType = "string",
IpPrefixes = new[]
{
"string",
},
Name = "string",
},
},
PortGroups = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.PortGroupPropertiesArgs
{
Name = "string",
Ports = new[]
{
"string",
},
},
},
VlanGroups = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.VlanGroupPropertiesArgs
{
Name = "string",
Vlans = new[]
{
"string",
},
},
},
},
},
Location = "string",
MatchConfigurations = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.NetworkTapRuleMatchConfigurationArgs
{
Actions = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.NetworkTapRuleActionArgs
{
DestinationId = "string",
IsTimestampEnabled = "string",
MatchConfigurationName = "string",
Truncate = "string",
Type = "string",
},
},
IpAddressType = "string",
MatchConditions = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.NetworkTapRuleMatchConditionArgs
{
EncapsulationType = "string",
IpCondition = new AzureNative.ManagedNetworkFabric.Inputs.IpMatchConditionArgs
{
IpGroupNames = new[]
{
"string",
},
IpPrefixValues = new[]
{
"string",
},
PrefixType = "string",
Type = "string",
},
PortCondition = new AzureNative.ManagedNetworkFabric.Inputs.PortConditionArgs
{
Layer4Protocol = "string",
PortGroupNames = new[]
{
"string",
},
PortType = "string",
Ports = new[]
{
"string",
},
},
ProtocolTypes = new[]
{
"string",
},
VlanMatchCondition = new AzureNative.ManagedNetworkFabric.Inputs.VlanMatchConditionArgs
{
InnerVlans = new[]
{
"string",
},
VlanGroupNames = new[]
{
"string",
},
Vlans = new[]
{
"string",
},
},
},
},
MatchConfigurationName = "string",
SequenceNumber = 0,
},
},
NetworkTapRuleName = "string",
PollingIntervalInSeconds = 0,
Tags =
{
{ "string", "string" },
},
TapRulesUrl = "string",
});
example, err := managednetworkfabric.NewNetworkTapRule(ctx, "networkTapRuleResource", &managednetworkfabric.NetworkTapRuleArgs{
ConfigurationType: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Annotation: pulumi.String("string"),
DynamicMatchConfigurations: managednetworkfabric.CommonDynamicMatchConfigurationArray{
&managednetworkfabric.CommonDynamicMatchConfigurationArgs{
IpGroups: managednetworkfabric.IpGroupPropertiesArray{
&managednetworkfabric.IpGroupPropertiesArgs{
IpAddressType: pulumi.String("string"),
IpPrefixes: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
},
},
PortGroups: managednetworkfabric.PortGroupPropertiesArray{
&managednetworkfabric.PortGroupPropertiesArgs{
Name: pulumi.String("string"),
Ports: pulumi.StringArray{
pulumi.String("string"),
},
},
},
VlanGroups: managednetworkfabric.VlanGroupPropertiesArray{
&managednetworkfabric.VlanGroupPropertiesArgs{
Name: pulumi.String("string"),
Vlans: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
Location: pulumi.String("string"),
MatchConfigurations: managednetworkfabric.NetworkTapRuleMatchConfigurationArray{
&managednetworkfabric.NetworkTapRuleMatchConfigurationArgs{
Actions: managednetworkfabric.NetworkTapRuleActionArray{
&managednetworkfabric.NetworkTapRuleActionArgs{
DestinationId: pulumi.String("string"),
IsTimestampEnabled: pulumi.String("string"),
MatchConfigurationName: pulumi.String("string"),
Truncate: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
IpAddressType: pulumi.String("string"),
MatchConditions: managednetworkfabric.NetworkTapRuleMatchConditionArray{
&managednetworkfabric.NetworkTapRuleMatchConditionArgs{
EncapsulationType: pulumi.String("string"),
IpCondition: &managednetworkfabric.IpMatchConditionArgs{
IpGroupNames: pulumi.StringArray{
pulumi.String("string"),
},
IpPrefixValues: pulumi.StringArray{
pulumi.String("string"),
},
PrefixType: pulumi.String("string"),
Type: pulumi.String("string"),
},
PortCondition: &managednetworkfabric.PortConditionArgs{
Layer4Protocol: pulumi.String("string"),
PortGroupNames: pulumi.StringArray{
pulumi.String("string"),
},
PortType: pulumi.String("string"),
Ports: pulumi.StringArray{
pulumi.String("string"),
},
},
ProtocolTypes: pulumi.StringArray{
pulumi.String("string"),
},
VlanMatchCondition: &managednetworkfabric.VlanMatchConditionArgs{
InnerVlans: pulumi.StringArray{
pulumi.String("string"),
},
VlanGroupNames: pulumi.StringArray{
pulumi.String("string"),
},
Vlans: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
MatchConfigurationName: pulumi.String("string"),
SequenceNumber: pulumi.Float64(0),
},
},
NetworkTapRuleName: pulumi.String("string"),
PollingIntervalInSeconds: pulumi.Int(0),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TapRulesUrl: pulumi.String("string"),
})
var networkTapRuleResource = new NetworkTapRule("networkTapRuleResource", NetworkTapRuleArgs.builder()
.configurationType("string")
.resourceGroupName("string")
.annotation("string")
.dynamicMatchConfigurations(CommonDynamicMatchConfigurationArgs.builder()
.ipGroups(IpGroupPropertiesArgs.builder()
.ipAddressType("string")
.ipPrefixes("string")
.name("string")
.build())
.portGroups(PortGroupPropertiesArgs.builder()
.name("string")
.ports("string")
.build())
.vlanGroups(VlanGroupPropertiesArgs.builder()
.name("string")
.vlans("string")
.build())
.build())
.location("string")
.matchConfigurations(NetworkTapRuleMatchConfigurationArgs.builder()
.actions(NetworkTapRuleActionArgs.builder()
.destinationId("string")
.isTimestampEnabled("string")
.matchConfigurationName("string")
.truncate("string")
.type("string")
.build())
.ipAddressType("string")
.matchConditions(NetworkTapRuleMatchConditionArgs.builder()
.encapsulationType("string")
.ipCondition(IpMatchConditionArgs.builder()
.ipGroupNames("string")
.ipPrefixValues("string")
.prefixType("string")
.type("string")
.build())
.portCondition(PortConditionArgs.builder()
.layer4Protocol("string")
.portGroupNames("string")
.portType("string")
.ports("string")
.build())
.protocolTypes("string")
.vlanMatchCondition(VlanMatchConditionArgs.builder()
.innerVlans("string")
.vlanGroupNames("string")
.vlans("string")
.build())
.build())
.matchConfigurationName("string")
.sequenceNumber(0)
.build())
.networkTapRuleName("string")
.pollingIntervalInSeconds(0)
.tags(Map.of("string", "string"))
.tapRulesUrl("string")
.build());
network_tap_rule_resource = azure_native.managednetworkfabric.NetworkTapRule("networkTapRuleResource",
configuration_type="string",
resource_group_name="string",
annotation="string",
dynamic_match_configurations=[{
"ipGroups": [{
"ipAddressType": "string",
"ipPrefixes": ["string"],
"name": "string",
}],
"portGroups": [{
"name": "string",
"ports": ["string"],
}],
"vlanGroups": [{
"name": "string",
"vlans": ["string"],
}],
}],
location="string",
match_configurations=[{
"actions": [{
"destinationId": "string",
"isTimestampEnabled": "string",
"matchConfigurationName": "string",
"truncate": "string",
"type": "string",
}],
"ipAddressType": "string",
"matchConditions": [{
"encapsulationType": "string",
"ipCondition": {
"ipGroupNames": ["string"],
"ipPrefixValues": ["string"],
"prefixType": "string",
"type": "string",
},
"portCondition": {
"layer4Protocol": "string",
"portGroupNames": ["string"],
"portType": "string",
"ports": ["string"],
},
"protocolTypes": ["string"],
"vlanMatchCondition": {
"innerVlans": ["string"],
"vlanGroupNames": ["string"],
"vlans": ["string"],
},
}],
"matchConfigurationName": "string",
"sequenceNumber": 0,
}],
network_tap_rule_name="string",
polling_interval_in_seconds=0,
tags={
"string": "string",
},
tap_rules_url="string")
const networkTapRuleResource = new azure_native.managednetworkfabric.NetworkTapRule("networkTapRuleResource", {
configurationType: "string",
resourceGroupName: "string",
annotation: "string",
dynamicMatchConfigurations: [{
ipGroups: [{
ipAddressType: "string",
ipPrefixes: ["string"],
name: "string",
}],
portGroups: [{
name: "string",
ports: ["string"],
}],
vlanGroups: [{
name: "string",
vlans: ["string"],
}],
}],
location: "string",
matchConfigurations: [{
actions: [{
destinationId: "string",
isTimestampEnabled: "string",
matchConfigurationName: "string",
truncate: "string",
type: "string",
}],
ipAddressType: "string",
matchConditions: [{
encapsulationType: "string",
ipCondition: {
ipGroupNames: ["string"],
ipPrefixValues: ["string"],
prefixType: "string",
type: "string",
},
portCondition: {
layer4Protocol: "string",
portGroupNames: ["string"],
portType: "string",
ports: ["string"],
},
protocolTypes: ["string"],
vlanMatchCondition: {
innerVlans: ["string"],
vlanGroupNames: ["string"],
vlans: ["string"],
},
}],
matchConfigurationName: "string",
sequenceNumber: 0,
}],
networkTapRuleName: "string",
pollingIntervalInSeconds: 0,
tags: {
string: "string",
},
tapRulesUrl: "string",
});
type: azure-native:managednetworkfabric:NetworkTapRule
properties:
annotation: string
configurationType: string
dynamicMatchConfigurations:
- ipGroups:
- ipAddressType: string
ipPrefixes:
- string
name: string
portGroups:
- name: string
ports:
- string
vlanGroups:
- name: string
vlans:
- string
location: string
matchConfigurations:
- actions:
- destinationId: string
isTimestampEnabled: string
matchConfigurationName: string
truncate: string
type: string
ipAddressType: string
matchConditions:
- encapsulationType: string
ipCondition:
ipGroupNames:
- string
ipPrefixValues:
- string
prefixType: string
type: string
portCondition:
layer4Protocol: string
portGroupNames:
- string
portType: string
ports:
- string
protocolTypes:
- string
vlanMatchCondition:
innerVlans:
- string
vlanGroupNames:
- string
vlans:
- string
matchConfigurationName: string
sequenceNumber: 0
networkTapRuleName: string
pollingIntervalInSeconds: 0
resourceGroupName: string
tags:
string: string
tapRulesUrl: string
NetworkTapRule 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 NetworkTapRule resource accepts the following input properties:
- Configuration
Type string | Pulumi.Azure Native. Managed Network Fabric. Configuration Type - Input method to configure Network Tap Rule.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Annotation string
- Switch configuration description.
- Dynamic
Match List<Pulumi.Configurations Azure Native. Managed Network Fabric. Inputs. Common Dynamic Match Configuration> - List of dynamic match configurations.
- Location string
- The geo-location where the resource lives
- Match
Configurations List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Network Tap Rule Match Configuration> - List of match configurations.
- Network
Tap stringRule Name - Name of the Network Tap Rule.
- Polling
Interval intIn Seconds - Polling interval in seconds.
- Dictionary<string, string>
- Resource tags.
- Tap
Rules stringUrl - Network Tap Rules file URL.
- Configuration
Type string | ConfigurationType - Input method to configure Network Tap Rule.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Annotation string
- Switch configuration description.
- Dynamic
Match []CommonConfigurations Dynamic Match Configuration Args - List of dynamic match configurations.
- Location string
- The geo-location where the resource lives
- Match
Configurations []NetworkTap Rule Match Configuration Args - List of match configurations.
- Network
Tap stringRule Name - Name of the Network Tap Rule.
- Polling
Interval intIn Seconds - Polling interval in seconds.
- map[string]string
- Resource tags.
- Tap
Rules stringUrl - Network Tap Rules file URL.
- configuration
Type String | ConfigurationType - Input method to configure Network Tap Rule.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- annotation String
- Switch configuration description.
- dynamic
Match List<CommonConfigurations Dynamic Match Configuration> - List of dynamic match configurations.
- location String
- The geo-location where the resource lives
- match
Configurations List<NetworkTap Rule Match Configuration> - List of match configurations.
- network
Tap StringRule Name - Name of the Network Tap Rule.
- polling
Interval IntegerIn Seconds - Polling interval in seconds.
- Map<String,String>
- Resource tags.
- tap
Rules StringUrl - Network Tap Rules file URL.
- configuration
Type string | ConfigurationType - Input method to configure Network Tap Rule.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- annotation string
- Switch configuration description.
- dynamic
Match CommonConfigurations Dynamic Match Configuration[] - List of dynamic match configurations.
- location string
- The geo-location where the resource lives
- match
Configurations NetworkTap Rule Match Configuration[] - List of match configurations.
- network
Tap stringRule Name - Name of the Network Tap Rule.
- polling
Interval numberIn Seconds - Polling interval in seconds.
- {[key: string]: string}
- Resource tags.
- tap
Rules stringUrl - Network Tap Rules file URL.
- configuration_
type str | ConfigurationType - Input method to configure Network Tap Rule.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- annotation str
- Switch configuration description.
- dynamic_
match_ Sequence[Commonconfigurations Dynamic Match Configuration Args] - List of dynamic match configurations.
- location str
- The geo-location where the resource lives
- match_
configurations Sequence[NetworkTap Rule Match Configuration Args] - List of match configurations.
- network_
tap_ strrule_ name - Name of the Network Tap Rule.
- polling_
interval_ intin_ seconds - Polling interval in seconds.
- Mapping[str, str]
- Resource tags.
- tap_
rules_ strurl - Network Tap Rules file URL.
- configuration
Type String | "File" | "Inline" - Input method to configure Network Tap Rule.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- annotation String
- Switch configuration description.
- dynamic
Match List<Property Map>Configurations - List of dynamic match configurations.
- location String
- The geo-location where the resource lives
- match
Configurations List<Property Map> - List of match configurations.
- network
Tap StringRule Name - Name of the Network Tap Rule.
- polling
Interval NumberIn Seconds - Polling interval in seconds.
- Map<String>
- Resource tags.
- tap
Rules StringUrl - Network Tap Rules file URL.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkTapRule resource produces the following output properties:
- Administrative
State string - Administrative state of the resource.
- Configuration
State string - Configuration state of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Synced stringTime - The last sync timestamp.
- Name string
- The name of the resource
- Network
Tap stringId - The ARM resource Id of the NetworkTap.
- Provisioning
State string - Provisioning state of the resource.
- 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.
- Configuration
State string - Configuration state of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Synced stringTime - The last sync timestamp.
- Name string
- The name of the resource
- Network
Tap stringId - The ARM resource Id of the NetworkTap.
- Provisioning
State string - Provisioning state of the resource.
- 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.
- configuration
State String - Configuration state of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Synced StringTime - The last sync timestamp.
- name String
- The name of the resource
- network
Tap StringId - The ARM resource Id of the NetworkTap.
- provisioning
State String - Provisioning state of the resource.
- 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.
- configuration
State string - Configuration state of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Synced stringTime - The last sync timestamp.
- name string
- The name of the resource
- network
Tap stringId - The ARM resource Id of the NetworkTap.
- provisioning
State string - Provisioning state of the resource.
- 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.
- configuration_
state str - Configuration state of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
synced_ strtime - The last sync timestamp.
- name str
- The name of the resource
- network_
tap_ strid - The ARM resource Id of the NetworkTap.
- provisioning_
state str - Provisioning state of the resource.
- 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.
- configuration
State String - Configuration state of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Synced StringTime - The last sync timestamp.
- name String
- The name of the resource
- network
Tap StringId - The ARM resource Id of the NetworkTap.
- provisioning
State String - Provisioning state of the resource.
- 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
BooleanEnumProperty, BooleanEnumPropertyArgs
- True
- True
- False
- False
- Boolean
Enum Property True - True
- Boolean
Enum Property False - False
- True
- True
- False
- False
- True
- True
- False
- False
- TRUE
- True
- FALSE
- False
- "True"
- True
- "False"
- False
CommonDynamicMatchConfiguration, CommonDynamicMatchConfigurationArgs
- Ip
Groups List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Ip Group Properties> - List of IP Groups.
- Port
Groups List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Port Group Properties> - List of the port groups.
- Vlan
Groups List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Vlan Group Properties> - List of vlan groups.
- Ip
Groups []IpGroup Properties - List of IP Groups.
- Port
Groups []PortGroup Properties - List of the port groups.
- Vlan
Groups []VlanGroup Properties - List of vlan groups.
- ip
Groups List<IpGroup Properties> - List of IP Groups.
- port
Groups List<PortGroup Properties> - List of the port groups.
- vlan
Groups List<VlanGroup Properties> - List of vlan groups.
- ip
Groups IpGroup Properties[] - List of IP Groups.
- port
Groups PortGroup Properties[] - List of the port groups.
- vlan
Groups VlanGroup Properties[] - List of vlan groups.
- ip_
groups Sequence[IpGroup Properties] - List of IP Groups.
- port_
groups Sequence[PortGroup Properties] - List of the port groups.
- vlan_
groups Sequence[VlanGroup Properties] - List of vlan groups.
- ip
Groups List<Property Map> - List of IP Groups.
- port
Groups List<Property Map> - List of the port groups.
- vlan
Groups List<Property Map> - List of vlan groups.
CommonDynamicMatchConfigurationResponse, CommonDynamicMatchConfigurationResponseArgs
- Ip
Groups List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Ip Group Properties Response> - List of IP Groups.
- Port
Groups List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Port Group Properties Response> - List of the port groups.
- Vlan
Groups List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Vlan Group Properties Response> - List of vlan groups.
- Ip
Groups []IpGroup Properties Response - List of IP Groups.
- Port
Groups []PortGroup Properties Response - List of the port groups.
- Vlan
Groups []VlanGroup Properties Response - List of vlan groups.
- ip
Groups List<IpGroup Properties Response> - List of IP Groups.
- port
Groups List<PortGroup Properties Response> - List of the port groups.
- vlan
Groups List<VlanGroup Properties Response> - List of vlan groups.
- ip
Groups IpGroup Properties Response[] - List of IP Groups.
- port
Groups PortGroup Properties Response[] - List of the port groups.
- vlan
Groups VlanGroup Properties Response[] - List of vlan groups.
- ip_
groups Sequence[IpGroup Properties Response] - List of IP Groups.
- port_
groups Sequence[PortGroup Properties Response] - List of the port groups.
- vlan_
groups Sequence[VlanGroup Properties Response] - List of vlan groups.
- ip
Groups List<Property Map> - List of IP Groups.
- port
Groups List<Property Map> - List of the port groups.
- vlan
Groups List<Property Map> - List of vlan groups.
ConfigurationType, ConfigurationTypeArgs
- File
- File
- Inline
- Inline
- Configuration
Type File - File
- Configuration
Type Inline - Inline
- File
- File
- Inline
- Inline
- File
- File
- Inline
- Inline
- FILE
- File
- INLINE
- Inline
- "File"
- File
- "Inline"
- Inline
EncapsulationType, EncapsulationTypeArgs
- None
- None
- GTPv1
- GTPv1
- Encapsulation
Type None - None
- Encapsulation
Type GTPv1 - GTPv1
- None
- None
- GTPv1
- GTPv1
- None
- None
- GTPv1
- GTPv1
- NONE
- None
- GT_PV1
- GTPv1
- "None"
- None
- "GTPv1"
- GTPv1
IPAddressType, IPAddressTypeArgs
- IPv4
- IPv4
- IPv6
- IPv6
- IPAddress
Type IPv4 - IPv4
- IPAddress
Type IPv6 - IPv6
- IPv4
- IPv4
- IPv6
- IPv6
- IPv4
- IPv4
- IPv6
- IPv6
- I_PV4
- IPv4
- I_PV6
- IPv6
- "IPv4"
- IPv4
- "IPv6"
- IPv6
IpGroupProperties, IpGroupPropertiesArgs
- Ip
Address string | Pulumi.Type Azure Native. Managed Network Fabric. IPAddress Type - IP Address type.
- Ip
Prefixes List<string> - List of IP Prefixes.
- Name string
- IP Group name.
- Ip
Address string | IPAddressType Type - IP Address type.
- Ip
Prefixes []string - List of IP Prefixes.
- Name string
- IP Group name.
- ip
Address String | IPAddressType Type - IP Address type.
- ip
Prefixes List<String> - List of IP Prefixes.
- name String
- IP Group name.
- ip
Address string | IPAddressType Type - IP Address type.
- ip
Prefixes string[] - List of IP Prefixes.
- name string
- IP Group name.
- ip_
address_ str | IPAddresstype Type - IP Address type.
- ip_
prefixes Sequence[str] - List of IP Prefixes.
- name str
- IP Group name.
- ip
Address String | "IPv4" | "IPv6"Type - IP Address type.
- ip
Prefixes List<String> - List of IP Prefixes.
- name String
- IP Group name.
IpGroupPropertiesResponse, IpGroupPropertiesResponseArgs
- Ip
Address stringType - IP Address type.
- Ip
Prefixes List<string> - List of IP Prefixes.
- Name string
- IP Group name.
- Ip
Address stringType - IP Address type.
- Ip
Prefixes []string - List of IP Prefixes.
- Name string
- IP Group name.
- ip
Address StringType - IP Address type.
- ip
Prefixes List<String> - List of IP Prefixes.
- name String
- IP Group name.
- ip
Address stringType - IP Address type.
- ip
Prefixes string[] - List of IP Prefixes.
- name string
- IP Group name.
- ip_
address_ strtype - IP Address type.
- ip_
prefixes Sequence[str] - List of IP Prefixes.
- name str
- IP Group name.
- ip
Address StringType - IP Address type.
- ip
Prefixes List<String> - List of IP Prefixes.
- name String
- IP Group name.
IpMatchCondition, IpMatchConditionArgs
- Ip
Group List<string>Names - The List of IP Group Names that need to be matched.
- Ip
Prefix List<string>Values - The list of IP Prefixes that need to be matched.
- Prefix
Type string | Pulumi.Azure Native. Managed Network Fabric. Prefix Type - IP Prefix Type that needs to be matched.
- Type
string | Pulumi.
Azure Native. Managed Network Fabric. Source Destination Type - IP Address type that needs to be matched.
- Ip
Group []stringNames - The List of IP Group Names that need to be matched.
- Ip
Prefix []stringValues - The list of IP Prefixes that need to be matched.
- Prefix
Type string | PrefixType - IP Prefix Type that needs to be matched.
- Type
string | Source
Destination Type - IP Address type that needs to be matched.
- ip
Group List<String>Names - The List of IP Group Names that need to be matched.
- ip
Prefix List<String>Values - The list of IP Prefixes that need to be matched.
- prefix
Type String | PrefixType - IP Prefix Type that needs to be matched.
- type
String | Source
Destination Type - IP Address type that needs to be matched.
- ip
Group string[]Names - The List of IP Group Names that need to be matched.
- ip
Prefix string[]Values - The list of IP Prefixes that need to be matched.
- prefix
Type string | PrefixType - IP Prefix Type that needs to be matched.
- type
string | Source
Destination Type - IP Address type that needs to be matched.
- ip_
group_ Sequence[str]names - The List of IP Group Names that need to be matched.
- ip_
prefix_ Sequence[str]values - The list of IP Prefixes that need to be matched.
- prefix_
type str | PrefixType - IP Prefix Type that needs to be matched.
- type
str | Source
Destination Type - IP Address type that needs to be matched.
- ip
Group List<String>Names - The List of IP Group Names that need to be matched.
- ip
Prefix List<String>Values - The list of IP Prefixes that need to be matched.
- prefix
Type String | "Prefix" | "LongestPrefix" - IP Prefix Type that needs to be matched.
- type
String | "Source
IP" | "Destination IP" - IP Address type that needs to be matched.
IpMatchConditionResponse, IpMatchConditionResponseArgs
- Ip
Group List<string>Names - The List of IP Group Names that need to be matched.
- Ip
Prefix List<string>Values - The list of IP Prefixes that need to be matched.
- Prefix
Type string - IP Prefix Type that needs to be matched.
- Type string
- IP Address type that needs to be matched.
- Ip
Group []stringNames - The List of IP Group Names that need to be matched.
- Ip
Prefix []stringValues - The list of IP Prefixes that need to be matched.
- Prefix
Type string - IP Prefix Type that needs to be matched.
- Type string
- IP Address type that needs to be matched.
- ip
Group List<String>Names - The List of IP Group Names that need to be matched.
- ip
Prefix List<String>Values - The list of IP Prefixes that need to be matched.
- prefix
Type String - IP Prefix Type that needs to be matched.
- type String
- IP Address type that needs to be matched.
- ip
Group string[]Names - The List of IP Group Names that need to be matched.
- ip
Prefix string[]Values - The list of IP Prefixes that need to be matched.
- prefix
Type string - IP Prefix Type that needs to be matched.
- type string
- IP Address type that needs to be matched.
- ip_
group_ Sequence[str]names - The List of IP Group Names that need to be matched.
- ip_
prefix_ Sequence[str]values - The list of IP Prefixes that need to be matched.
- prefix_
type str - IP Prefix Type that needs to be matched.
- type str
- IP Address type that needs to be matched.
- ip
Group List<String>Names - The List of IP Group Names that need to be matched.
- ip
Prefix List<String>Values - The list of IP Prefixes that need to be matched.
- prefix
Type String - IP Prefix Type that needs to be matched.
- type String
- IP Address type that needs to be matched.
Layer4Protocol, Layer4ProtocolArgs
- TCP
- TCP
- UDP
- UDP
- Layer4Protocol
TCP - TCP
- Layer4Protocol
UDP - UDP
- TCP
- TCP
- UDP
- UDP
- TCP
- TCP
- UDP
- UDP
- TCP
- TCP
- UDP
- UDP
- "TCP"
- TCP
- "UDP"
- UDP
NetworkTapRuleAction, NetworkTapRuleActionArgs
- Destination
Id string - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- Is
Timestamp string | Pulumi.Enabled Azure Native. Managed Network Fabric. Boolean Enum Property - The parameter to enable or disable the timestamp.
- Match
Configuration stringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- Truncate string
- Truncate. 0 indicates do not truncate.
- Type
string | Pulumi.
Azure Native. Managed Network Fabric. Tap Rule Action Type - Type of actions that can be performed.
- Destination
Id string - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- Is
Timestamp string | BooleanEnabled Enum Property - The parameter to enable or disable the timestamp.
- Match
Configuration stringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- Truncate string
- Truncate. 0 indicates do not truncate.
- Type
string | Tap
Rule Action Type - Type of actions that can be performed.
- destination
Id String - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- is
Timestamp String | BooleanEnabled Enum Property - The parameter to enable or disable the timestamp.
- match
Configuration StringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- truncate String
- Truncate. 0 indicates do not truncate.
- type
String | Tap
Rule Action Type - Type of actions that can be performed.
- destination
Id string - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- is
Timestamp string | BooleanEnabled Enum Property - The parameter to enable or disable the timestamp.
- match
Configuration stringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- truncate string
- Truncate. 0 indicates do not truncate.
- type
string | Tap
Rule Action Type - Type of actions that can be performed.
- destination_
id str - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- is_
timestamp_ str | Booleanenabled Enum Property - The parameter to enable or disable the timestamp.
- match_
configuration_ strname - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- truncate str
- Truncate. 0 indicates do not truncate.
- type
str | Tap
Rule Action Type - Type of actions that can be performed.
- destination
Id String - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- is
Timestamp String | "True" | "False"Enabled - The parameter to enable or disable the timestamp.
- match
Configuration StringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- truncate String
- Truncate. 0 indicates do not truncate.
- type String | "Drop" | "Count" | "Log" | "Replicate" | "Goto" | "Redirect" | "Mirror"
- Type of actions that can be performed.
NetworkTapRuleActionResponse, NetworkTapRuleActionResponseArgs
- Destination
Id string - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- Is
Timestamp stringEnabled - The parameter to enable or disable the timestamp.
- Match
Configuration stringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- Truncate string
- Truncate. 0 indicates do not truncate.
- Type string
- Type of actions that can be performed.
- Destination
Id string - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- Is
Timestamp stringEnabled - The parameter to enable or disable the timestamp.
- Match
Configuration stringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- Truncate string
- Truncate. 0 indicates do not truncate.
- Type string
- Type of actions that can be performed.
- destination
Id String - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- is
Timestamp StringEnabled - The parameter to enable or disable the timestamp.
- match
Configuration StringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- truncate String
- Truncate. 0 indicates do not truncate.
- type String
- Type of actions that can be performed.
- destination
Id string - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- is
Timestamp stringEnabled - The parameter to enable or disable the timestamp.
- match
Configuration stringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- truncate string
- Truncate. 0 indicates do not truncate.
- type string
- Type of actions that can be performed.
- destination_
id str - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- is_
timestamp_ strenabled - The parameter to enable or disable the timestamp.
- match_
configuration_ strname - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- truncate str
- Truncate. 0 indicates do not truncate.
- type str
- Type of actions that can be performed.
- destination
Id String - Destination Id. The ARM resource Id may be either Network To Network Interconnect or NeighborGroup.
- is
Timestamp StringEnabled - The parameter to enable or disable the timestamp.
- match
Configuration StringName - The name of the match configuration. This is used when Goto type is provided. If Goto type is selected and no match configuration name is provided. It goes to next configuration.
- truncate String
- Truncate. 0 indicates do not truncate.
- type String
- Type of actions that can be performed.
NetworkTapRuleMatchCondition, NetworkTapRuleMatchConditionArgs
- Encapsulation
Type string | Pulumi.Azure Native. Managed Network Fabric. Encapsulation Type - Encapsulation Type that needs to be matched.
- Ip
Condition Pulumi.Azure Native. Managed Network Fabric. Inputs. Ip Match Condition - IP condition that needs to be matched.
- Port
Condition Pulumi.Azure Native. Managed Network Fabric. Inputs. Port Condition - Defines the port condition that needs to be matched.
- Protocol
Types List<string> - List of the protocols that need to be matched.
- Vlan
Match Pulumi.Condition Azure Native. Managed Network Fabric. Inputs. Vlan Match Condition - Vlan match condition that needs to be matched.
- Encapsulation
Type string | EncapsulationType - Encapsulation Type that needs to be matched.
- Ip
Condition IpMatch Condition - IP condition that needs to be matched.
- Port
Condition PortCondition - Defines the port condition that needs to be matched.
- Protocol
Types []string - List of the protocols that need to be matched.
- Vlan
Match VlanCondition Match Condition - Vlan match condition that needs to be matched.
- encapsulation
Type String | EncapsulationType - Encapsulation Type that needs to be matched.
- ip
Condition IpMatch Condition - IP condition that needs to be matched.
- port
Condition PortCondition - Defines the port condition that needs to be matched.
- protocol
Types List<String> - List of the protocols that need to be matched.
- vlan
Match VlanCondition Match Condition - Vlan match condition that needs to be matched.
- encapsulation
Type string | EncapsulationType - Encapsulation Type that needs to be matched.
- ip
Condition IpMatch Condition - IP condition that needs to be matched.
- port
Condition PortCondition - Defines the port condition that needs to be matched.
- protocol
Types string[] - List of the protocols that need to be matched.
- vlan
Match VlanCondition Match Condition - Vlan match condition that needs to be matched.
- encapsulation_
type str | EncapsulationType - Encapsulation Type that needs to be matched.
- ip_
condition IpMatch Condition - IP condition that needs to be matched.
- port_
condition PortCondition - Defines the port condition that needs to be matched.
- protocol_
types Sequence[str] - List of the protocols that need to be matched.
- vlan_
match_ Vlancondition Match Condition - Vlan match condition that needs to be matched.
- encapsulation
Type String | "None" | "GTPv1" - Encapsulation Type that needs to be matched.
- ip
Condition Property Map - IP condition that needs to be matched.
- port
Condition Property Map - Defines the port condition that needs to be matched.
- protocol
Types List<String> - List of the protocols that need to be matched.
- vlan
Match Property MapCondition - Vlan match condition that needs to be matched.
NetworkTapRuleMatchConditionResponse, NetworkTapRuleMatchConditionResponseArgs
- Encapsulation
Type string - Encapsulation Type that needs to be matched.
- Ip
Condition Pulumi.Azure Native. Managed Network Fabric. Inputs. Ip Match Condition Response - IP condition that needs to be matched.
- Port
Condition Pulumi.Azure Native. Managed Network Fabric. Inputs. Port Condition Response - Defines the port condition that needs to be matched.
- Protocol
Types List<string> - List of the protocols that need to be matched.
- Vlan
Match Pulumi.Condition Azure Native. Managed Network Fabric. Inputs. Vlan Match Condition Response - Vlan match condition that needs to be matched.
- Encapsulation
Type string - Encapsulation Type that needs to be matched.
- Ip
Condition IpMatch Condition Response - IP condition that needs to be matched.
- Port
Condition PortCondition Response - Defines the port condition that needs to be matched.
- Protocol
Types []string - List of the protocols that need to be matched.
- Vlan
Match VlanCondition Match Condition Response - Vlan match condition that needs to be matched.
- encapsulation
Type String - Encapsulation Type that needs to be matched.
- ip
Condition IpMatch Condition Response - IP condition that needs to be matched.
- port
Condition PortCondition Response - Defines the port condition that needs to be matched.
- protocol
Types List<String> - List of the protocols that need to be matched.
- vlan
Match VlanCondition Match Condition Response - Vlan match condition that needs to be matched.
- encapsulation
Type string - Encapsulation Type that needs to be matched.
- ip
Condition IpMatch Condition Response - IP condition that needs to be matched.
- port
Condition PortCondition Response - Defines the port condition that needs to be matched.
- protocol
Types string[] - List of the protocols that need to be matched.
- vlan
Match VlanCondition Match Condition Response - Vlan match condition that needs to be matched.
- encapsulation_
type str - Encapsulation Type that needs to be matched.
- ip_
condition IpMatch Condition Response - IP condition that needs to be matched.
- port_
condition PortCondition Response - Defines the port condition that needs to be matched.
- protocol_
types Sequence[str] - List of the protocols that need to be matched.
- vlan_
match_ Vlancondition Match Condition Response - Vlan match condition that needs to be matched.
- encapsulation
Type String - Encapsulation Type that needs to be matched.
- ip
Condition Property Map - IP condition that needs to be matched.
- port
Condition Property Map - Defines the port condition that needs to be matched.
- protocol
Types List<String> - List of the protocols that need to be matched.
- vlan
Match Property MapCondition - Vlan match condition that needs to be matched.
NetworkTapRuleMatchConfiguration, NetworkTapRuleMatchConfigurationArgs
- Actions
List<Pulumi.
Azure Native. Managed Network Fabric. Inputs. Network Tap Rule Action> - List of actions that need to be performed for the matched conditions.
- Ip
Address string | Pulumi.Type Azure Native. Managed Network Fabric. IPAddress Type - Type of IP Address. IPv4 or IPv6
- Match
Conditions List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Network Tap Rule Match Condition> - List of the match conditions.
- Match
Configuration stringName - The name of the match configuration.
- Sequence
Number double - Sequence Number of the match configuration..
- Actions
[]Network
Tap Rule Action - List of actions that need to be performed for the matched conditions.
- Ip
Address string | IPAddressType Type - Type of IP Address. IPv4 or IPv6
- Match
Conditions []NetworkTap Rule Match Condition - List of the match conditions.
- Match
Configuration stringName - The name of the match configuration.
- Sequence
Number float64 - Sequence Number of the match configuration..
- actions
List<Network
Tap Rule Action> - List of actions that need to be performed for the matched conditions.
- ip
Address String | IPAddressType Type - Type of IP Address. IPv4 or IPv6
- match
Conditions List<NetworkTap Rule Match Condition> - List of the match conditions.
- match
Configuration StringName - The name of the match configuration.
- sequence
Number Double - Sequence Number of the match configuration..
- actions
Network
Tap Rule Action[] - List of actions that need to be performed for the matched conditions.
- ip
Address string | IPAddressType Type - Type of IP Address. IPv4 or IPv6
- match
Conditions NetworkTap Rule Match Condition[] - List of the match conditions.
- match
Configuration stringName - The name of the match configuration.
- sequence
Number number - Sequence Number of the match configuration..
- actions
Sequence[Network
Tap Rule Action] - List of actions that need to be performed for the matched conditions.
- ip_
address_ str | IPAddresstype Type - Type of IP Address. IPv4 or IPv6
- match_
conditions Sequence[NetworkTap Rule Match Condition] - List of the match conditions.
- match_
configuration_ strname - The name of the match configuration.
- sequence_
number float - Sequence Number of the match configuration..
- actions List<Property Map>
- List of actions that need to be performed for the matched conditions.
- ip
Address String | "IPv4" | "IPv6"Type - Type of IP Address. IPv4 or IPv6
- match
Conditions List<Property Map> - List of the match conditions.
- match
Configuration StringName - The name of the match configuration.
- sequence
Number Number - Sequence Number of the match configuration..
NetworkTapRuleMatchConfigurationResponse, NetworkTapRuleMatchConfigurationResponseArgs
- Actions
List<Pulumi.
Azure Native. Managed Network Fabric. Inputs. Network Tap Rule Action Response> - List of actions that need to be performed for the matched conditions.
- Ip
Address stringType - Type of IP Address. IPv4 or IPv6
- Match
Conditions List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Network Tap Rule Match Condition Response> - List of the match conditions.
- Match
Configuration stringName - The name of the match configuration.
- Sequence
Number double - Sequence Number of the match configuration..
- Actions
[]Network
Tap Rule Action Response - List of actions that need to be performed for the matched conditions.
- Ip
Address stringType - Type of IP Address. IPv4 or IPv6
- Match
Conditions []NetworkTap Rule Match Condition Response - List of the match conditions.
- Match
Configuration stringName - The name of the match configuration.
- Sequence
Number float64 - Sequence Number of the match configuration..
- actions
List<Network
Tap Rule Action Response> - List of actions that need to be performed for the matched conditions.
- ip
Address StringType - Type of IP Address. IPv4 or IPv6
- match
Conditions List<NetworkTap Rule Match Condition Response> - List of the match conditions.
- match
Configuration StringName - The name of the match configuration.
- sequence
Number Double - Sequence Number of the match configuration..
- actions
Network
Tap Rule Action Response[] - List of actions that need to be performed for the matched conditions.
- ip
Address stringType - Type of IP Address. IPv4 or IPv6
- match
Conditions NetworkTap Rule Match Condition Response[] - List of the match conditions.
- match
Configuration stringName - The name of the match configuration.
- sequence
Number number - Sequence Number of the match configuration..
- actions
Sequence[Network
Tap Rule Action Response] - List of actions that need to be performed for the matched conditions.
- ip_
address_ strtype - Type of IP Address. IPv4 or IPv6
- match_
conditions Sequence[NetworkTap Rule Match Condition Response] - List of the match conditions.
- match_
configuration_ strname - The name of the match configuration.
- sequence_
number float - Sequence Number of the match configuration..
- actions List<Property Map>
- List of actions that need to be performed for the matched conditions.
- ip
Address StringType - Type of IP Address. IPv4 or IPv6
- match
Conditions List<Property Map> - List of the match conditions.
- match
Configuration StringName - The name of the match configuration.
- sequence
Number Number - Sequence Number of the match configuration..
PortCondition, PortConditionArgs
- Layer4Protocol
string | Pulumi.
Azure Native. Managed Network Fabric. Layer4Protocol - Layer4 protocol type that needs to be matched.
- Port
Group List<string>Names - List of the port Group Names that need to be matched.
- Port
Type string | Pulumi.Azure Native. Managed Network Fabric. Port Type - Port type that needs to be matched.
- Ports List<string>
- List of the Ports that need to be matched.
- Layer4Protocol string | Layer4Protocol
- Layer4 protocol type that needs to be matched.
- Port
Group []stringNames - List of the port Group Names that need to be matched.
- Port
Type string | PortType - Port type that needs to be matched.
- Ports []string
- List of the Ports that need to be matched.
- layer4Protocol String | Layer4Protocol
- Layer4 protocol type that needs to be matched.
- port
Group List<String>Names - List of the port Group Names that need to be matched.
- port
Type String | PortType - Port type that needs to be matched.
- ports List<String>
- List of the Ports that need to be matched.
- layer4Protocol string | Layer4Protocol
- Layer4 protocol type that needs to be matched.
- port
Group string[]Names - List of the port Group Names that need to be matched.
- port
Type string | PortType - Port type that needs to be matched.
- ports string[]
- List of the Ports that need to be matched.
- layer4_
protocol str | Layer4Protocol - Layer4 protocol type that needs to be matched.
- port_
group_ Sequence[str]names - List of the port Group Names that need to be matched.
- port_
type str | PortType - Port type that needs to be matched.
- ports Sequence[str]
- List of the Ports that need to be matched.
- layer4Protocol String | "TCP" | "UDP"
- Layer4 protocol type that needs to be matched.
- port
Group List<String>Names - List of the port Group Names that need to be matched.
- port
Type String | "SourcePort" | "Destination Port" - Port type that needs to be matched.
- ports List<String>
- List of the Ports that need to be matched.
PortConditionResponse, PortConditionResponseArgs
- Layer4Protocol string
- Layer4 protocol type that needs to be matched.
- Port
Group List<string>Names - List of the port Group Names that need to be matched.
- Port
Type string - Port type that needs to be matched.
- Ports List<string>
- List of the Ports that need to be matched.
- Layer4Protocol string
- Layer4 protocol type that needs to be matched.
- Port
Group []stringNames - List of the port Group Names that need to be matched.
- Port
Type string - Port type that needs to be matched.
- Ports []string
- List of the Ports that need to be matched.
- layer4Protocol String
- Layer4 protocol type that needs to be matched.
- port
Group List<String>Names - List of the port Group Names that need to be matched.
- port
Type String - Port type that needs to be matched.
- ports List<String>
- List of the Ports that need to be matched.
- layer4Protocol string
- Layer4 protocol type that needs to be matched.
- port
Group string[]Names - List of the port Group Names that need to be matched.
- port
Type string - Port type that needs to be matched.
- ports string[]
- List of the Ports that need to be matched.
- layer4_
protocol str - Layer4 protocol type that needs to be matched.
- port_
group_ Sequence[str]names - List of the port Group Names that need to be matched.
- port_
type str - Port type that needs to be matched.
- ports Sequence[str]
- List of the Ports that need to be matched.
- layer4Protocol String
- Layer4 protocol type that needs to be matched.
- port
Group List<String>Names - List of the port Group Names that need to be matched.
- port
Type String - Port type that needs to be matched.
- ports List<String>
- List of the Ports that need to be matched.
PortGroupProperties, PortGroupPropertiesArgs
PortGroupPropertiesResponse, PortGroupPropertiesResponseArgs
PortType, PortTypeArgs
- Source
Port - SourcePort
- Destination
Port - DestinationPort
- Port
Type Source Port - SourcePort
- Port
Type Destination Port - DestinationPort
- Source
Port - SourcePort
- Destination
Port - DestinationPort
- Source
Port - SourcePort
- Destination
Port - DestinationPort
- SOURCE_PORT
- SourcePort
- DESTINATION_PORT
- DestinationPort
- "Source
Port" - SourcePort
- "Destination
Port" - DestinationPort
PrefixType, PrefixTypeArgs
- Prefix
- Prefix
- Longest
Prefix - LongestPrefix
- Prefix
Type Prefix - Prefix
- Prefix
Type Longest Prefix - LongestPrefix
- Prefix
- Prefix
- Longest
Prefix - LongestPrefix
- Prefix
- Prefix
- Longest
Prefix - LongestPrefix
- PREFIX
- Prefix
- LONGEST_PREFIX
- LongestPrefix
- "Prefix"
- Prefix
- "Longest
Prefix" - LongestPrefix
SourceDestinationType, SourceDestinationTypeArgs
- Source
IP - SourceIP
- Destination
IP - DestinationIP
- Source
Destination Type Source IP - SourceIP
- Source
Destination Type Destination IP - DestinationIP
- Source
IP - SourceIP
- Destination
IP - DestinationIP
- Source
IP - SourceIP
- Destination
IP - DestinationIP
- SOURCE_IP
- SourceIP
- DESTINATION_IP
- DestinationIP
- "Source
IP" - SourceIP
- "Destination
IP" - DestinationIP
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.
TapRuleActionType, TapRuleActionTypeArgs
- Drop
- Drop
- Count
- Count
- Log
- Log
- Replicate
- Replicate
- Goto
- Goto
- Redirect
- Redirect
- Mirror
- Mirror
- Tap
Rule Action Type Drop - Drop
- Tap
Rule Action Type Count - Count
- Tap
Rule Action Type Log - Log
- Tap
Rule Action Type Replicate - Replicate
- Tap
Rule Action Type Goto - Goto
- Tap
Rule Action Type Redirect - Redirect
- Tap
Rule Action Type Mirror - Mirror
- Drop
- Drop
- Count
- Count
- Log
- Log
- Replicate
- Replicate
- Goto
- Goto
- Redirect
- Redirect
- Mirror
- Mirror
- Drop
- Drop
- Count
- Count
- Log
- Log
- Replicate
- Replicate
- Goto
- Goto
- Redirect
- Redirect
- Mirror
- Mirror
- DROP
- Drop
- COUNT
- Count
- LOG
- Log
- REPLICATE
- Replicate
- GOTO
- Goto
- REDIRECT
- Redirect
- MIRROR
- Mirror
- "Drop"
- Drop
- "Count"
- Count
- "Log"
- Log
- "Replicate"
- Replicate
- "Goto"
- Goto
- "Redirect"
- Redirect
- "Mirror"
- Mirror
VlanGroupProperties, VlanGroupPropertiesArgs
VlanGroupPropertiesResponse, VlanGroupPropertiesResponseArgs
VlanMatchCondition, VlanMatchConditionArgs
- Inner
Vlans List<string> - List of inner vlans that need to be matched.
- Vlan
Group List<string>Names - List of vlan group names that need to be matched.
- Vlans List<string>
- List of vlans that need to be matched.
- Inner
Vlans []string - List of inner vlans that need to be matched.
- Vlan
Group []stringNames - List of vlan group names that need to be matched.
- Vlans []string
- List of vlans that need to be matched.
- inner
Vlans List<String> - List of inner vlans that need to be matched.
- vlan
Group List<String>Names - List of vlan group names that need to be matched.
- vlans List<String>
- List of vlans that need to be matched.
- inner
Vlans string[] - List of inner vlans that need to be matched.
- vlan
Group string[]Names - List of vlan group names that need to be matched.
- vlans string[]
- List of vlans that need to be matched.
- inner_
vlans Sequence[str] - List of inner vlans that need to be matched.
- vlan_
group_ Sequence[str]names - List of vlan group names that need to be matched.
- vlans Sequence[str]
- List of vlans that need to be matched.
- inner
Vlans List<String> - List of inner vlans that need to be matched.
- vlan
Group List<String>Names - List of vlan group names that need to be matched.
- vlans List<String>
- List of vlans that need to be matched.
VlanMatchConditionResponse, VlanMatchConditionResponseArgs
- Inner
Vlans List<string> - List of inner vlans that need to be matched.
- Vlan
Group List<string>Names - List of vlan group names that need to be matched.
- Vlans List<string>
- List of vlans that need to be matched.
- Inner
Vlans []string - List of inner vlans that need to be matched.
- Vlan
Group []stringNames - List of vlan group names that need to be matched.
- Vlans []string
- List of vlans that need to be matched.
- inner
Vlans List<String> - List of inner vlans that need to be matched.
- vlan
Group List<String>Names - List of vlan group names that need to be matched.
- vlans List<String>
- List of vlans that need to be matched.
- inner
Vlans string[] - List of inner vlans that need to be matched.
- vlan
Group string[]Names - List of vlan group names that need to be matched.
- vlans string[]
- List of vlans that need to be matched.
- inner_
vlans Sequence[str] - List of inner vlans that need to be matched.
- vlan_
group_ Sequence[str]names - List of vlan group names that need to be matched.
- vlans Sequence[str]
- List of vlans that need to be matched.
- inner
Vlans List<String> - List of inner vlans that need to be matched.
- vlan
Group List<String>Names - List of vlan group names that need to be matched.
- vlans List<String>
- List of vlans that need to be matched.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:managednetworkfabric:NetworkTapRule example-tapRule /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkTapRules/{networkTapRuleName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0