1. Packages
  2. Azure Native
  3. API Docs
  4. network
  5. RouteFilter
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.network.RouteFilter

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    Route Filter Resource. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.

    Other available API versions: 2019-08-01, 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01.

    Example Usage

    RouteFilterCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var routeFilter = new AzureNative.Network.RouteFilter("routeFilter", new()
        {
            Location = "West US",
            ResourceGroupName = "rg1",
            RouteFilterName = "filterName",
            Rules = new[]
            {
                new AzureNative.Network.Inputs.RouteFilterRuleArgs
                {
                    Access = AzureNative.Network.Access.Allow,
                    Communities = new[]
                    {
                        "12076:5030",
                        "12076:5040",
                    },
                    Name = "ruleName",
                    RouteFilterRuleType = AzureNative.Network.RouteFilterRuleType.Community,
                },
            },
            Tags = 
            {
                { "key1", "value1" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/network/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := network.NewRouteFilter(ctx, "routeFilter", &network.RouteFilterArgs{
    			Location:          pulumi.String("West US"),
    			ResourceGroupName: pulumi.String("rg1"),
    			RouteFilterName:   pulumi.String("filterName"),
    			Rules: network.RouteFilterRuleTypeArray{
    				&network.RouteFilterRuleTypeArgs{
    					Access: pulumi.String(network.AccessAllow),
    					Communities: pulumi.StringArray{
    						pulumi.String("12076:5030"),
    						pulumi.String("12076:5040"),
    					},
    					Name:                pulumi.String("ruleName"),
    					RouteFilterRuleType: pulumi.String(network.RouteFilterRuleTypeCommunity),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"key1": pulumi.String("value1"),
    			},
    		})
    		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.network.RouteFilter;
    import com.pulumi.azurenative.network.RouteFilterArgs;
    import com.pulumi.azurenative.network.inputs.RouteFilterRuleArgs;
    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 routeFilter = new RouteFilter("routeFilter", RouteFilterArgs.builder()        
                .location("West US")
                .resourceGroupName("rg1")
                .routeFilterName("filterName")
                .rules(RouteFilterRuleArgs.builder()
                    .access("Allow")
                    .communities(                
                        "12076:5030",
                        "12076:5040")
                    .name("ruleName")
                    .routeFilterRuleType("Community")
                    .build())
                .tags(Map.of("key1", "value1"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    route_filter = azure_native.network.RouteFilter("routeFilter",
        location="West US",
        resource_group_name="rg1",
        route_filter_name="filterName",
        rules=[azure_native.network.RouteFilterRuleArgs(
            access=azure_native.network.Access.ALLOW,
            communities=[
                "12076:5030",
                "12076:5040",
            ],
            name="ruleName",
            route_filter_rule_type=azure_native.network.RouteFilterRuleType.COMMUNITY,
        )],
        tags={
            "key1": "value1",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const routeFilter = new azure_native.network.RouteFilter("routeFilter", {
        location: "West US",
        resourceGroupName: "rg1",
        routeFilterName: "filterName",
        rules: [{
            access: azure_native.network.Access.Allow,
            communities: [
                "12076:5030",
                "12076:5040",
            ],
            name: "ruleName",
            routeFilterRuleType: azure_native.network.RouteFilterRuleType.Community,
        }],
        tags: {
            key1: "value1",
        },
    });
    
    resources:
      routeFilter:
        type: azure-native:network:RouteFilter
        properties:
          location: West US
          resourceGroupName: rg1
          routeFilterName: filterName
          rules:
            - access: Allow
              communities:
                - 12076:5030
                - 12076:5040
              name: ruleName
              routeFilterRuleType: Community
          tags:
            key1: value1
    

    Create RouteFilter Resource

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

    Constructor syntax

    new RouteFilter(name: string, args: RouteFilterArgs, opts?: CustomResourceOptions);
    @overload
    def RouteFilter(resource_name: str,
                    args: RouteFilterArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def RouteFilter(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    resource_group_name: Optional[str] = None,
                    id: Optional[str] = None,
                    location: Optional[str] = None,
                    route_filter_name: Optional[str] = None,
                    rules: Optional[Sequence[RouteFilterRuleArgs]] = None,
                    tags: Optional[Mapping[str, str]] = None)
    func NewRouteFilter(ctx *Context, name string, args RouteFilterArgs, opts ...ResourceOption) (*RouteFilter, error)
    public RouteFilter(string name, RouteFilterArgs args, CustomResourceOptions? opts = null)
    public RouteFilter(String name, RouteFilterArgs args)
    public RouteFilter(String name, RouteFilterArgs args, CustomResourceOptions options)
    
    type: azure-native:network:RouteFilter
    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 RouteFilterArgs
    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 RouteFilterArgs
    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 RouteFilterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RouteFilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RouteFilterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var routeFilterResource = new AzureNative.Network.RouteFilter("routeFilterResource", new()
    {
        ResourceGroupName = "string",
        Id = "string",
        Location = "string",
        RouteFilterName = "string",
        Rules = new[]
        {
            new AzureNative.Network.Inputs.RouteFilterRuleArgs
            {
                Access = "string",
                Communities = new[]
                {
                    "string",
                },
                RouteFilterRuleType = "string",
                Id = "string",
                Location = "string",
                Name = "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := network.NewRouteFilter(ctx, "routeFilterResource", &network.RouteFilterArgs{
    ResourceGroupName: pulumi.String("string"),
    Id: pulumi.String("string"),
    Location: pulumi.String("string"),
    RouteFilterName: pulumi.String("string"),
    Rules: network.RouteFilterRuleTypeArray{
    &network.RouteFilterRuleTypeArgs{
    Access: pulumi.String("string"),
    Communities: pulumi.StringArray{
    pulumi.String("string"),
    },
    RouteFilterRuleType: pulumi.String("string"),
    Id: pulumi.String("string"),
    Location: pulumi.String("string"),
    Name: pulumi.String("string"),
    },
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var routeFilterResource = new RouteFilter("routeFilterResource", RouteFilterArgs.builder()        
        .resourceGroupName("string")
        .id("string")
        .location("string")
        .routeFilterName("string")
        .rules(RouteFilterRuleArgs.builder()
            .access("string")
            .communities("string")
            .routeFilterRuleType("string")
            .id("string")
            .location("string")
            .name("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    route_filter_resource = azure_native.network.RouteFilter("routeFilterResource",
        resource_group_name="string",
        id="string",
        location="string",
        route_filter_name="string",
        rules=[azure_native.network.RouteFilterRuleArgs(
            access="string",
            communities=["string"],
            route_filter_rule_type="string",
            id="string",
            location="string",
            name="string",
        )],
        tags={
            "string": "string",
        })
    
    const routeFilterResource = new azure_native.network.RouteFilter("routeFilterResource", {
        resourceGroupName: "string",
        id: "string",
        location: "string",
        routeFilterName: "string",
        rules: [{
            access: "string",
            communities: ["string"],
            routeFilterRuleType: "string",
            id: "string",
            location: "string",
            name: "string",
        }],
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:network:RouteFilter
    properties:
        id: string
        location: string
        resourceGroupName: string
        routeFilterName: string
        rules:
            - access: string
              communities:
                - string
              id: string
              location: string
              name: string
              routeFilterRuleType: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group.
    Id string
    Resource ID.
    Location string
    Resource location.
    RouteFilterName string
    The name of the route filter.
    Rules List<Pulumi.AzureNative.Network.Inputs.RouteFilterRule>
    Collection of RouteFilterRules contained within a route filter. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group.
    Id string
    Resource ID.
    Location string
    Resource location.
    RouteFilterName string
    The name of the route filter.
    Rules []RouteFilterRuleTypeArgs
    Collection of RouteFilterRules contained within a route filter. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group.
    id String
    Resource ID.
    location String
    Resource location.
    routeFilterName String
    The name of the route filter.
    rules List<RouteFilterRule>
    Collection of RouteFilterRules contained within a route filter. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group.
    id string
    Resource ID.
    location string
    Resource location.
    routeFilterName string
    The name of the route filter.
    rules RouteFilterRule[]
    Collection of RouteFilterRules contained within a route filter. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group.
    id str
    Resource ID.
    location str
    Resource location.
    route_filter_name str
    The name of the route filter.
    rules Sequence[RouteFilterRuleArgs]
    Collection of RouteFilterRules contained within a route filter. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group.
    id String
    Resource ID.
    location String
    Resource location.
    routeFilterName String
    The name of the route filter.
    rules List<Property Map>
    Collection of RouteFilterRules contained within a route filter. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
    tags Map<String>
    Resource tags.

    Outputs

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

    Etag string
    A unique read-only string that changes whenever the resource is updated.
    Id string
    The provider-assigned unique ID for this managed resource.
    Ipv6Peerings List<Pulumi.AzureNative.Network.Outputs.ExpressRouteCircuitPeeringResponse>
    A collection of references to express route circuit ipv6 peerings.
    Name string
    Resource name.
    Peerings List<Pulumi.AzureNative.Network.Outputs.ExpressRouteCircuitPeeringResponse>
    A collection of references to express route circuit peerings.
    ProvisioningState string
    The provisioning state of the route filter resource.
    Type string
    Resource type.
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    Id string
    The provider-assigned unique ID for this managed resource.
    Ipv6Peerings []ExpressRouteCircuitPeeringResponse
    A collection of references to express route circuit ipv6 peerings.
    Name string
    Resource name.
    Peerings []ExpressRouteCircuitPeeringResponse
    A collection of references to express route circuit peerings.
    ProvisioningState string
    The provisioning state of the route filter resource.
    Type string
    Resource type.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    id String
    The provider-assigned unique ID for this managed resource.
    ipv6Peerings List<ExpressRouteCircuitPeeringResponse>
    A collection of references to express route circuit ipv6 peerings.
    name String
    Resource name.
    peerings List<ExpressRouteCircuitPeeringResponse>
    A collection of references to express route circuit peerings.
    provisioningState String
    The provisioning state of the route filter resource.
    type String
    Resource type.
    etag string
    A unique read-only string that changes whenever the resource is updated.
    id string
    The provider-assigned unique ID for this managed resource.
    ipv6Peerings ExpressRouteCircuitPeeringResponse[]
    A collection of references to express route circuit ipv6 peerings.
    name string
    Resource name.
    peerings ExpressRouteCircuitPeeringResponse[]
    A collection of references to express route circuit peerings.
    provisioningState string
    The provisioning state of the route filter resource.
    type string
    Resource type.
    etag str
    A unique read-only string that changes whenever the resource is updated.
    id str
    The provider-assigned unique ID for this managed resource.
    ipv6_peerings Sequence[ExpressRouteCircuitPeeringResponse]
    A collection of references to express route circuit ipv6 peerings.
    name str
    Resource name.
    peerings Sequence[ExpressRouteCircuitPeeringResponse]
    A collection of references to express route circuit peerings.
    provisioning_state str
    The provisioning state of the route filter resource.
    type str
    Resource type.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    id String
    The provider-assigned unique ID for this managed resource.
    ipv6Peerings List<Property Map>
    A collection of references to express route circuit ipv6 peerings.
    name String
    Resource name.
    peerings List<Property Map>
    A collection of references to express route circuit peerings.
    provisioningState String
    The provisioning state of the route filter resource.
    type String
    Resource type.

    Supporting Types

    Access, AccessArgs

    Allow
    Allow
    Deny
    Deny
    AccessAllow
    Allow
    AccessDeny
    Deny
    Allow
    Allow
    Deny
    Deny
    Allow
    Allow
    Deny
    Deny
    ALLOW
    Allow
    DENY
    Deny
    "Allow"
    Allow
    "Deny"
    Deny

    ExpressRouteCircuitConnectionResponse, ExpressRouteCircuitConnectionResponseArgs

    CircuitConnectionStatus string
    Express Route Circuit connection state.
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    ProvisioningState string
    The provisioning state of the express route circuit connection resource.
    Type string
    Type of the resource.
    AddressPrefix string
    /29 IP address space to carve out Customer addresses for tunnels.
    AuthorizationKey string
    The authorization key.
    ExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
    Id string
    Resource ID.
    Ipv6CircuitConnectionConfig Pulumi.AzureNative.Network.Inputs.Ipv6CircuitConnectionConfigResponse
    IPv6 Address PrefixProperties of the express route circuit connection.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    PeerExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    CircuitConnectionStatus string
    Express Route Circuit connection state.
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    ProvisioningState string
    The provisioning state of the express route circuit connection resource.
    Type string
    Type of the resource.
    AddressPrefix string
    /29 IP address space to carve out Customer addresses for tunnels.
    AuthorizationKey string
    The authorization key.
    ExpressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
    Id string
    Resource ID.
    Ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfigResponse
    IPv6 Address PrefixProperties of the express route circuit connection.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    PeerExpressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    circuitConnectionStatus String
    Express Route Circuit connection state.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    provisioningState String
    The provisioning state of the express route circuit connection resource.
    type String
    Type of the resource.
    addressPrefix String
    /29 IP address space to carve out Customer addresses for tunnels.
    authorizationKey String
    The authorization key.
    expressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
    id String
    Resource ID.
    ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfigResponse
    IPv6 Address PrefixProperties of the express route circuit connection.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peerExpressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    circuitConnectionStatus string
    Express Route Circuit connection state.
    etag string
    A unique read-only string that changes whenever the resource is updated.
    provisioningState string
    The provisioning state of the express route circuit connection resource.
    type string
    Type of the resource.
    addressPrefix string
    /29 IP address space to carve out Customer addresses for tunnels.
    authorizationKey string
    The authorization key.
    expressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
    id string
    Resource ID.
    ipv6CircuitConnectionConfig Ipv6CircuitConnectionConfigResponse
    IPv6 Address PrefixProperties of the express route circuit connection.
    name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peerExpressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    circuit_connection_status str
    Express Route Circuit connection state.
    etag str
    A unique read-only string that changes whenever the resource is updated.
    provisioning_state str
    The provisioning state of the express route circuit connection resource.
    type str
    Type of the resource.
    address_prefix str
    /29 IP address space to carve out Customer addresses for tunnels.
    authorization_key str
    The authorization key.
    express_route_circuit_peering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
    id str
    Resource ID.
    ipv6_circuit_connection_config Ipv6CircuitConnectionConfigResponse
    IPv6 Address PrefixProperties of the express route circuit connection.
    name str
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peer_express_route_circuit_peering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    circuitConnectionStatus String
    Express Route Circuit connection state.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    provisioningState String
    The provisioning state of the express route circuit connection resource.
    type String
    Type of the resource.
    addressPrefix String
    /29 IP address space to carve out Customer addresses for tunnels.
    authorizationKey String
    The authorization key.
    expressRouteCircuitPeering Property Map
    Reference to Express Route Circuit Private Peering Resource of the circuit initiating connection.
    id String
    Resource ID.
    ipv6CircuitConnectionConfig Property Map
    IPv6 Address PrefixProperties of the express route circuit connection.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peerExpressRouteCircuitPeering Property Map
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.

    ExpressRouteCircuitPeeringConfigResponse, ExpressRouteCircuitPeeringConfigResponseArgs

    AdvertisedPublicPrefixesState string
    The advertised public prefix state of the Peering resource.
    AdvertisedCommunities List<string>
    The communities of bgp peering. Specified for microsoft peering.
    AdvertisedPublicPrefixes List<string>
    The reference to AdvertisedPublicPrefixes.
    CustomerASN int
    The CustomerASN of the peering.
    LegacyMode int
    The legacy mode of the peering.
    RoutingRegistryName string
    The RoutingRegistryName of the configuration.
    AdvertisedPublicPrefixesState string
    The advertised public prefix state of the Peering resource.
    AdvertisedCommunities []string
    The communities of bgp peering. Specified for microsoft peering.
    AdvertisedPublicPrefixes []string
    The reference to AdvertisedPublicPrefixes.
    CustomerASN int
    The CustomerASN of the peering.
    LegacyMode int
    The legacy mode of the peering.
    RoutingRegistryName string
    The RoutingRegistryName of the configuration.
    advertisedPublicPrefixesState String
    The advertised public prefix state of the Peering resource.
    advertisedCommunities List<String>
    The communities of bgp peering. Specified for microsoft peering.
    advertisedPublicPrefixes List<String>
    The reference to AdvertisedPublicPrefixes.
    customerASN Integer
    The CustomerASN of the peering.
    legacyMode Integer
    The legacy mode of the peering.
    routingRegistryName String
    The RoutingRegistryName of the configuration.
    advertisedPublicPrefixesState string
    The advertised public prefix state of the Peering resource.
    advertisedCommunities string[]
    The communities of bgp peering. Specified for microsoft peering.
    advertisedPublicPrefixes string[]
    The reference to AdvertisedPublicPrefixes.
    customerASN number
    The CustomerASN of the peering.
    legacyMode number
    The legacy mode of the peering.
    routingRegistryName string
    The RoutingRegistryName of the configuration.
    advertised_public_prefixes_state str
    The advertised public prefix state of the Peering resource.
    advertised_communities Sequence[str]
    The communities of bgp peering. Specified for microsoft peering.
    advertised_public_prefixes Sequence[str]
    The reference to AdvertisedPublicPrefixes.
    customer_asn int
    The CustomerASN of the peering.
    legacy_mode int
    The legacy mode of the peering.
    routing_registry_name str
    The RoutingRegistryName of the configuration.
    advertisedPublicPrefixesState String
    The advertised public prefix state of the Peering resource.
    advertisedCommunities List<String>
    The communities of bgp peering. Specified for microsoft peering.
    advertisedPublicPrefixes List<String>
    The reference to AdvertisedPublicPrefixes.
    customerASN Number
    The CustomerASN of the peering.
    legacyMode Number
    The legacy mode of the peering.
    routingRegistryName String
    The RoutingRegistryName of the configuration.

    ExpressRouteCircuitPeeringResponse, ExpressRouteCircuitPeeringResponseArgs

    Etag string
    A unique read-only string that changes whenever the resource is updated.
    LastModifiedBy string
    Who was the last to modify the peering.
    PeeredConnections List<Pulumi.AzureNative.Network.Inputs.PeerExpressRouteCircuitConnectionResponse>
    The list of peered circuit connections associated with Azure Private Peering for this circuit.
    ProvisioningState string
    The provisioning state of the express route circuit peering resource.
    Type string
    Type of the resource.
    AzureASN int
    The Azure ASN.
    Connections List<Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitConnectionResponse>
    The list of circuit connections associated with Azure Private Peering for this circuit.
    ExpressRouteConnection Pulumi.AzureNative.Network.Inputs.ExpressRouteConnectionIdResponse
    The ExpressRoute connection.
    GatewayManagerEtag string
    The GatewayManager Etag.
    Id string
    Resource ID.
    Ipv6PeeringConfig Pulumi.AzureNative.Network.Inputs.Ipv6ExpressRouteCircuitPeeringConfigResponse
    The IPv6 peering configuration.
    MicrosoftPeeringConfig Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    PeerASN double
    The peer ASN.
    PeeringType string
    The peering type.
    PrimaryAzurePort string
    The primary port.
    PrimaryPeerAddressPrefix string
    The primary address prefix.
    RouteFilter Pulumi.AzureNative.Network.Inputs.SubResourceResponse
    The reference to the RouteFilter resource.
    SecondaryAzurePort string
    The secondary port.
    SecondaryPeerAddressPrefix string
    The secondary address prefix.
    SharedKey string
    The shared key.
    State string
    The peering state.
    Stats Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitStatsResponse
    The peering stats of express route circuit.
    VlanId int
    The VLAN ID.
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    LastModifiedBy string
    Who was the last to modify the peering.
    PeeredConnections []PeerExpressRouteCircuitConnectionResponse
    The list of peered circuit connections associated with Azure Private Peering for this circuit.
    ProvisioningState string
    The provisioning state of the express route circuit peering resource.
    Type string
    Type of the resource.
    AzureASN int
    The Azure ASN.
    Connections []ExpressRouteCircuitConnectionResponse
    The list of circuit connections associated with Azure Private Peering for this circuit.
    ExpressRouteConnection ExpressRouteConnectionIdResponse
    The ExpressRoute connection.
    GatewayManagerEtag string
    The GatewayManager Etag.
    Id string
    Resource ID.
    Ipv6PeeringConfig Ipv6ExpressRouteCircuitPeeringConfigResponse
    The IPv6 peering configuration.
    MicrosoftPeeringConfig ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    PeerASN float64
    The peer ASN.
    PeeringType string
    The peering type.
    PrimaryAzurePort string
    The primary port.
    PrimaryPeerAddressPrefix string
    The primary address prefix.
    RouteFilter SubResourceResponse
    The reference to the RouteFilter resource.
    SecondaryAzurePort string
    The secondary port.
    SecondaryPeerAddressPrefix string
    The secondary address prefix.
    SharedKey string
    The shared key.
    State string
    The peering state.
    Stats ExpressRouteCircuitStatsResponse
    The peering stats of express route circuit.
    VlanId int
    The VLAN ID.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    lastModifiedBy String
    Who was the last to modify the peering.
    peeredConnections List<PeerExpressRouteCircuitConnectionResponse>
    The list of peered circuit connections associated with Azure Private Peering for this circuit.
    provisioningState String
    The provisioning state of the express route circuit peering resource.
    type String
    Type of the resource.
    azureASN Integer
    The Azure ASN.
    connections List<ExpressRouteCircuitConnectionResponse>
    The list of circuit connections associated with Azure Private Peering for this circuit.
    expressRouteConnection ExpressRouteConnectionIdResponse
    The ExpressRoute connection.
    gatewayManagerEtag String
    The GatewayManager Etag.
    id String
    Resource ID.
    ipv6PeeringConfig Ipv6ExpressRouteCircuitPeeringConfigResponse
    The IPv6 peering configuration.
    microsoftPeeringConfig ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peerASN Double
    The peer ASN.
    peeringType String
    The peering type.
    primaryAzurePort String
    The primary port.
    primaryPeerAddressPrefix String
    The primary address prefix.
    routeFilter SubResourceResponse
    The reference to the RouteFilter resource.
    secondaryAzurePort String
    The secondary port.
    secondaryPeerAddressPrefix String
    The secondary address prefix.
    sharedKey String
    The shared key.
    state String
    The peering state.
    stats ExpressRouteCircuitStatsResponse
    The peering stats of express route circuit.
    vlanId Integer
    The VLAN ID.
    etag string
    A unique read-only string that changes whenever the resource is updated.
    lastModifiedBy string
    Who was the last to modify the peering.
    peeredConnections PeerExpressRouteCircuitConnectionResponse[]
    The list of peered circuit connections associated with Azure Private Peering for this circuit.
    provisioningState string
    The provisioning state of the express route circuit peering resource.
    type string
    Type of the resource.
    azureASN number
    The Azure ASN.
    connections ExpressRouteCircuitConnectionResponse[]
    The list of circuit connections associated with Azure Private Peering for this circuit.
    expressRouteConnection ExpressRouteConnectionIdResponse
    The ExpressRoute connection.
    gatewayManagerEtag string
    The GatewayManager Etag.
    id string
    Resource ID.
    ipv6PeeringConfig Ipv6ExpressRouteCircuitPeeringConfigResponse
    The IPv6 peering configuration.
    microsoftPeeringConfig ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peerASN number
    The peer ASN.
    peeringType string
    The peering type.
    primaryAzurePort string
    The primary port.
    primaryPeerAddressPrefix string
    The primary address prefix.
    routeFilter SubResourceResponse
    The reference to the RouteFilter resource.
    secondaryAzurePort string
    The secondary port.
    secondaryPeerAddressPrefix string
    The secondary address prefix.
    sharedKey string
    The shared key.
    state string
    The peering state.
    stats ExpressRouteCircuitStatsResponse
    The peering stats of express route circuit.
    vlanId number
    The VLAN ID.
    etag str
    A unique read-only string that changes whenever the resource is updated.
    last_modified_by str
    Who was the last to modify the peering.
    peered_connections Sequence[PeerExpressRouteCircuitConnectionResponse]
    The list of peered circuit connections associated with Azure Private Peering for this circuit.
    provisioning_state str
    The provisioning state of the express route circuit peering resource.
    type str
    Type of the resource.
    azure_asn int
    The Azure ASN.
    connections Sequence[ExpressRouteCircuitConnectionResponse]
    The list of circuit connections associated with Azure Private Peering for this circuit.
    express_route_connection ExpressRouteConnectionIdResponse
    The ExpressRoute connection.
    gateway_manager_etag str
    The GatewayManager Etag.
    id str
    Resource ID.
    ipv6_peering_config Ipv6ExpressRouteCircuitPeeringConfigResponse
    The IPv6 peering configuration.
    microsoft_peering_config ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    name str
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peer_asn float
    The peer ASN.
    peering_type str
    The peering type.
    primary_azure_port str
    The primary port.
    primary_peer_address_prefix str
    The primary address prefix.
    route_filter SubResourceResponse
    The reference to the RouteFilter resource.
    secondary_azure_port str
    The secondary port.
    secondary_peer_address_prefix str
    The secondary address prefix.
    shared_key str
    The shared key.
    state str
    The peering state.
    stats ExpressRouteCircuitStatsResponse
    The peering stats of express route circuit.
    vlan_id int
    The VLAN ID.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    lastModifiedBy String
    Who was the last to modify the peering.
    peeredConnections List<Property Map>
    The list of peered circuit connections associated with Azure Private Peering for this circuit.
    provisioningState String
    The provisioning state of the express route circuit peering resource.
    type String
    Type of the resource.
    azureASN Number
    The Azure ASN.
    connections List<Property Map>
    The list of circuit connections associated with Azure Private Peering for this circuit.
    expressRouteConnection Property Map
    The ExpressRoute connection.
    gatewayManagerEtag String
    The GatewayManager Etag.
    id String
    Resource ID.
    ipv6PeeringConfig Property Map
    The IPv6 peering configuration.
    microsoftPeeringConfig Property Map
    The Microsoft peering configuration.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peerASN Number
    The peer ASN.
    peeringType String
    The peering type.
    primaryAzurePort String
    The primary port.
    primaryPeerAddressPrefix String
    The primary address prefix.
    routeFilter Property Map
    The reference to the RouteFilter resource.
    secondaryAzurePort String
    The secondary port.
    secondaryPeerAddressPrefix String
    The secondary address prefix.
    sharedKey String
    The shared key.
    state String
    The peering state.
    stats Property Map
    The peering stats of express route circuit.
    vlanId Number
    The VLAN ID.

    ExpressRouteCircuitStatsResponse, ExpressRouteCircuitStatsResponseArgs

    PrimarybytesIn double
    The Primary BytesIn of the peering.
    PrimarybytesOut double
    The primary BytesOut of the peering.
    SecondarybytesIn double
    The secondary BytesIn of the peering.
    SecondarybytesOut double
    The secondary BytesOut of the peering.
    PrimarybytesIn float64
    The Primary BytesIn of the peering.
    PrimarybytesOut float64
    The primary BytesOut of the peering.
    SecondarybytesIn float64
    The secondary BytesIn of the peering.
    SecondarybytesOut float64
    The secondary BytesOut of the peering.
    primarybytesIn Double
    The Primary BytesIn of the peering.
    primarybytesOut Double
    The primary BytesOut of the peering.
    secondarybytesIn Double
    The secondary BytesIn of the peering.
    secondarybytesOut Double
    The secondary BytesOut of the peering.
    primarybytesIn number
    The Primary BytesIn of the peering.
    primarybytesOut number
    The primary BytesOut of the peering.
    secondarybytesIn number
    The secondary BytesIn of the peering.
    secondarybytesOut number
    The secondary BytesOut of the peering.
    primarybytes_in float
    The Primary BytesIn of the peering.
    primarybytes_out float
    The primary BytesOut of the peering.
    secondarybytes_in float
    The secondary BytesIn of the peering.
    secondarybytes_out float
    The secondary BytesOut of the peering.
    primarybytesIn Number
    The Primary BytesIn of the peering.
    primarybytesOut Number
    The primary BytesOut of the peering.
    secondarybytesIn Number
    The secondary BytesIn of the peering.
    secondarybytesOut Number
    The secondary BytesOut of the peering.

    ExpressRouteConnectionIdResponse, ExpressRouteConnectionIdResponseArgs

    Id string
    The ID of the ExpressRouteConnection.
    Id string
    The ID of the ExpressRouteConnection.
    id String
    The ID of the ExpressRouteConnection.
    id string
    The ID of the ExpressRouteConnection.
    id str
    The ID of the ExpressRouteConnection.
    id String
    The ID of the ExpressRouteConnection.

    Ipv6CircuitConnectionConfigResponse, Ipv6CircuitConnectionConfigResponseArgs

    CircuitConnectionStatus string
    Express Route Circuit connection state.
    AddressPrefix string
    /125 IP address space to carve out customer addresses for global reach.
    CircuitConnectionStatus string
    Express Route Circuit connection state.
    AddressPrefix string
    /125 IP address space to carve out customer addresses for global reach.
    circuitConnectionStatus String
    Express Route Circuit connection state.
    addressPrefix String
    /125 IP address space to carve out customer addresses for global reach.
    circuitConnectionStatus string
    Express Route Circuit connection state.
    addressPrefix string
    /125 IP address space to carve out customer addresses for global reach.
    circuit_connection_status str
    Express Route Circuit connection state.
    address_prefix str
    /125 IP address space to carve out customer addresses for global reach.
    circuitConnectionStatus String
    Express Route Circuit connection state.
    addressPrefix String
    /125 IP address space to carve out customer addresses for global reach.

    Ipv6ExpressRouteCircuitPeeringConfigResponse, Ipv6ExpressRouteCircuitPeeringConfigResponseArgs

    MicrosoftPeeringConfig Pulumi.AzureNative.Network.Inputs.ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    PrimaryPeerAddressPrefix string
    The primary address prefix.
    RouteFilter Pulumi.AzureNative.Network.Inputs.SubResourceResponse
    The reference to the RouteFilter resource.
    SecondaryPeerAddressPrefix string
    The secondary address prefix.
    State string
    The state of peering.
    MicrosoftPeeringConfig ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    PrimaryPeerAddressPrefix string
    The primary address prefix.
    RouteFilter SubResourceResponse
    The reference to the RouteFilter resource.
    SecondaryPeerAddressPrefix string
    The secondary address prefix.
    State string
    The state of peering.
    microsoftPeeringConfig ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    primaryPeerAddressPrefix String
    The primary address prefix.
    routeFilter SubResourceResponse
    The reference to the RouteFilter resource.
    secondaryPeerAddressPrefix String
    The secondary address prefix.
    state String
    The state of peering.
    microsoftPeeringConfig ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    primaryPeerAddressPrefix string
    The primary address prefix.
    routeFilter SubResourceResponse
    The reference to the RouteFilter resource.
    secondaryPeerAddressPrefix string
    The secondary address prefix.
    state string
    The state of peering.
    microsoft_peering_config ExpressRouteCircuitPeeringConfigResponse
    The Microsoft peering configuration.
    primary_peer_address_prefix str
    The primary address prefix.
    route_filter SubResourceResponse
    The reference to the RouteFilter resource.
    secondary_peer_address_prefix str
    The secondary address prefix.
    state str
    The state of peering.
    microsoftPeeringConfig Property Map
    The Microsoft peering configuration.
    primaryPeerAddressPrefix String
    The primary address prefix.
    routeFilter Property Map
    The reference to the RouteFilter resource.
    secondaryPeerAddressPrefix String
    The secondary address prefix.
    state String
    The state of peering.

    PeerExpressRouteCircuitConnectionResponse, PeerExpressRouteCircuitConnectionResponseArgs

    CircuitConnectionStatus string
    Express Route Circuit connection state.
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    ProvisioningState string
    The provisioning state of the peer express route circuit connection resource.
    Type string
    Type of the resource.
    AddressPrefix string
    /29 IP address space to carve out Customer addresses for tunnels.
    AuthResourceGuid string
    The resource guid of the authorization used for the express route circuit connection.
    ConnectionName string
    The name of the express route circuit connection resource.
    ExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit.
    Id string
    Resource ID.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    PeerExpressRouteCircuitPeering Pulumi.AzureNative.Network.Inputs.SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    CircuitConnectionStatus string
    Express Route Circuit connection state.
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    ProvisioningState string
    The provisioning state of the peer express route circuit connection resource.
    Type string
    Type of the resource.
    AddressPrefix string
    /29 IP address space to carve out Customer addresses for tunnels.
    AuthResourceGuid string
    The resource guid of the authorization used for the express route circuit connection.
    ConnectionName string
    The name of the express route circuit connection resource.
    ExpressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit.
    Id string
    Resource ID.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    PeerExpressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    circuitConnectionStatus String
    Express Route Circuit connection state.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    provisioningState String
    The provisioning state of the peer express route circuit connection resource.
    type String
    Type of the resource.
    addressPrefix String
    /29 IP address space to carve out Customer addresses for tunnels.
    authResourceGuid String
    The resource guid of the authorization used for the express route circuit connection.
    connectionName String
    The name of the express route circuit connection resource.
    expressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit.
    id String
    Resource ID.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peerExpressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    circuitConnectionStatus string
    Express Route Circuit connection state.
    etag string
    A unique read-only string that changes whenever the resource is updated.
    provisioningState string
    The provisioning state of the peer express route circuit connection resource.
    type string
    Type of the resource.
    addressPrefix string
    /29 IP address space to carve out Customer addresses for tunnels.
    authResourceGuid string
    The resource guid of the authorization used for the express route circuit connection.
    connectionName string
    The name of the express route circuit connection resource.
    expressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit.
    id string
    Resource ID.
    name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peerExpressRouteCircuitPeering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    circuit_connection_status str
    Express Route Circuit connection state.
    etag str
    A unique read-only string that changes whenever the resource is updated.
    provisioning_state str
    The provisioning state of the peer express route circuit connection resource.
    type str
    Type of the resource.
    address_prefix str
    /29 IP address space to carve out Customer addresses for tunnels.
    auth_resource_guid str
    The resource guid of the authorization used for the express route circuit connection.
    connection_name str
    The name of the express route circuit connection resource.
    express_route_circuit_peering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the circuit.
    id str
    Resource ID.
    name str
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peer_express_route_circuit_peering SubResourceResponse
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.
    circuitConnectionStatus String
    Express Route Circuit connection state.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    provisioningState String
    The provisioning state of the peer express route circuit connection resource.
    type String
    Type of the resource.
    addressPrefix String
    /29 IP address space to carve out Customer addresses for tunnels.
    authResourceGuid String
    The resource guid of the authorization used for the express route circuit connection.
    connectionName String
    The name of the express route circuit connection resource.
    expressRouteCircuitPeering Property Map
    Reference to Express Route Circuit Private Peering Resource of the circuit.
    id String
    Resource ID.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    peerExpressRouteCircuitPeering Property Map
    Reference to Express Route Circuit Private Peering Resource of the peered circuit.

    RouteFilterRule, RouteFilterRuleArgs

    Access string | Pulumi.AzureNative.Network.Access
    The access type of the rule.
    Communities List<string>
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    RouteFilterRuleType string | Pulumi.AzureNative.Network.RouteFilterRuleType
    The rule type of the rule.
    Id string
    Resource ID.
    Location string
    Resource location.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    Access string | Access
    The access type of the rule.
    Communities []string
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    RouteFilterRuleType string | RouteFilterRuleTypeEnum
    The rule type of the rule.
    Id string
    Resource ID.
    Location string
    Resource location.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    access String | Access
    The access type of the rule.
    communities List<String>
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    routeFilterRuleType String | RouteFilterRuleType
    The rule type of the rule.
    id String
    Resource ID.
    location String
    Resource location.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    access string | Access
    The access type of the rule.
    communities string[]
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    routeFilterRuleType string | RouteFilterRuleType
    The rule type of the rule.
    id string
    Resource ID.
    location string
    Resource location.
    name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    access str | Access
    The access type of the rule.
    communities Sequence[str]
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    route_filter_rule_type str | RouteFilterRuleType
    The rule type of the rule.
    id str
    Resource ID.
    location str
    Resource location.
    name str
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    access String | "Allow" | "Deny"
    The access type of the rule.
    communities List<String>
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    routeFilterRuleType String | "Community"
    The rule type of the rule.
    id String
    Resource ID.
    location String
    Resource location.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.

    RouteFilterRuleResponse, RouteFilterRuleResponseArgs

    Access string
    The access type of the rule.
    Communities List<string>
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    ProvisioningState string
    The provisioning state of the route filter rule resource.
    RouteFilterRuleType string
    The rule type of the rule.
    Id string
    Resource ID.
    Location string
    Resource location.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    Access string
    The access type of the rule.
    Communities []string
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    ProvisioningState string
    The provisioning state of the route filter rule resource.
    RouteFilterRuleType string
    The rule type of the rule.
    Id string
    Resource ID.
    Location string
    Resource location.
    Name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    access String
    The access type of the rule.
    communities List<String>
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    etag String
    A unique read-only string that changes whenever the resource is updated.
    provisioningState String
    The provisioning state of the route filter rule resource.
    routeFilterRuleType String
    The rule type of the rule.
    id String
    Resource ID.
    location String
    Resource location.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    access string
    The access type of the rule.
    communities string[]
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    etag string
    A unique read-only string that changes whenever the resource is updated.
    provisioningState string
    The provisioning state of the route filter rule resource.
    routeFilterRuleType string
    The rule type of the rule.
    id string
    Resource ID.
    location string
    Resource location.
    name string
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    access str
    The access type of the rule.
    communities Sequence[str]
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    etag str
    A unique read-only string that changes whenever the resource is updated.
    provisioning_state str
    The provisioning state of the route filter rule resource.
    route_filter_rule_type str
    The rule type of the rule.
    id str
    Resource ID.
    location str
    Resource location.
    name str
    The name of the resource that is unique within a resource group. This name can be used to access the resource.
    access String
    The access type of the rule.
    communities List<String>
    The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].
    etag String
    A unique read-only string that changes whenever the resource is updated.
    provisioningState String
    The provisioning state of the route filter rule resource.
    routeFilterRuleType String
    The rule type of the rule.
    id String
    Resource ID.
    location String
    Resource location.
    name String
    The name of the resource that is unique within a resource group. This name can be used to access the resource.

    RouteFilterRuleType, RouteFilterRuleTypeArgs

    Community
    Community
    RouteFilterRuleTypeCommunity
    Community
    Community
    Community
    Community
    Community
    COMMUNITY
    Community
    "Community"
    Community

    SubResourceResponse, SubResourceResponseArgs

    Id string
    Resource ID.
    Id string
    Resource ID.
    id String
    Resource ID.
    id string
    Resource ID.
    id str
    Resource ID.
    id String
    Resource ID.

    Import

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

    $ pulumi import azure-native:network:RouteFilter filterName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/routeFilters/{routeFilterName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi