1. Packages
  2. Azure Native
  3. API Docs
  4. managednetworkfabric
  5. AccessControlList
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.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.managednetworkfabric.AccessControlList

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.41.0 published on Tuesday, May 14, 2024 by Pulumi

    The AccessControlList resource definition. Azure REST API version: 2023-02-01-preview. Prior API version in Azure Native 1.x: 2023-02-01-preview.

    Other available API versions: 2023-06-15.

    Example Usage

    AccessControlLists_Create_MinimumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var accessControlList = new AzureNative.ManagedNetworkFabric.AccessControlList("accessControlList", new()
        {
            AccessControlListName = "aclOne",
            AddressFamily = AzureNative.ManagedNetworkFabric.AddressFamily.Ipv4,
            Conditions = new[]
            {
                new AzureNative.ManagedNetworkFabric.Inputs.AccessControlListConditionPropertiesArgs
                {
                    Action = AzureNative.ManagedNetworkFabric.ConditionActionType.Allow,
                    DestinationAddress = "1.1.1.1",
                    DestinationPort = "21",
                    Protocol = 6,
                    SequenceNumber = 3,
                    SourceAddress = "2.2.2.2",
                    SourcePort = "65000",
                },
            },
            Location = "EastUs",
            ResourceGroupName = "resourceGroupName",
        });
    
    });
    
    package main
    
    import (
    	"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.NewAccessControlList(ctx, "accessControlList", &managednetworkfabric.AccessControlListArgs{
    			AccessControlListName: pulumi.String("aclOne"),
    			AddressFamily:         pulumi.String(managednetworkfabric.AddressFamilyIpv4),
    			Conditions: managednetworkfabric.AccessControlListConditionPropertiesArray{
    				&managednetworkfabric.AccessControlListConditionPropertiesArgs{
    					Action:             pulumi.String(managednetworkfabric.ConditionActionTypeAllow),
    					DestinationAddress: pulumi.String("1.1.1.1"),
    					DestinationPort:    pulumi.String("21"),
    					Protocol:           pulumi.Int(6),
    					SequenceNumber:     pulumi.Int(3),
    					SourceAddress:      pulumi.String("2.2.2.2"),
    					SourcePort:         pulumi.String("65000"),
    				},
    			},
    			Location:          pulumi.String("EastUs"),
    			ResourceGroupName: pulumi.String("resourceGroupName"),
    		})
    		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.AccessControlList;
    import com.pulumi.azurenative.managednetworkfabric.AccessControlListArgs;
    import com.pulumi.azurenative.managednetworkfabric.inputs.AccessControlListConditionPropertiesArgs;
    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 accessControlList = new AccessControlList("accessControlList", AccessControlListArgs.builder()        
                .accessControlListName("aclOne")
                .addressFamily("ipv4")
                .conditions(AccessControlListConditionPropertiesArgs.builder()
                    .action("allow")
                    .destinationAddress("1.1.1.1")
                    .destinationPort("21")
                    .protocol(6)
                    .sequenceNumber(3)
                    .sourceAddress("2.2.2.2")
                    .sourcePort("65000")
                    .build())
                .location("EastUs")
                .resourceGroupName("resourceGroupName")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    access_control_list = azure_native.managednetworkfabric.AccessControlList("accessControlList",
        access_control_list_name="aclOne",
        address_family=azure_native.managednetworkfabric.AddressFamily.IPV4,
        conditions=[azure_native.managednetworkfabric.AccessControlListConditionPropertiesArgs(
            action=azure_native.managednetworkfabric.ConditionActionType.ALLOW,
            destination_address="1.1.1.1",
            destination_port="21",
            protocol=6,
            sequence_number=3,
            source_address="2.2.2.2",
            source_port="65000",
        )],
        location="EastUs",
        resource_group_name="resourceGroupName")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const accessControlList = new azure_native.managednetworkfabric.AccessControlList("accessControlList", {
        accessControlListName: "aclOne",
        addressFamily: azure_native.managednetworkfabric.AddressFamily.Ipv4,
        conditions: [{
            action: azure_native.managednetworkfabric.ConditionActionType.Allow,
            destinationAddress: "1.1.1.1",
            destinationPort: "21",
            protocol: 6,
            sequenceNumber: 3,
            sourceAddress: "2.2.2.2",
            sourcePort: "65000",
        }],
        location: "EastUs",
        resourceGroupName: "resourceGroupName",
    });
    
    resources:
      accessControlList:
        type: azure-native:managednetworkfabric:AccessControlList
        properties:
          accessControlListName: aclOne
          addressFamily: ipv4
          conditions:
            - action: allow
              destinationAddress: 1.1.1.1
              destinationPort: '21'
              protocol: 6
              sequenceNumber: 3
              sourceAddress: 2.2.2.2
              sourcePort: '65000'
          location: EastUs
          resourceGroupName: resourceGroupName
    

    Create AccessControlList Resource

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

    Constructor syntax

    new AccessControlList(name: string, args: AccessControlListArgs, opts?: CustomResourceOptions);
    @overload
    def AccessControlList(resource_name: str,
                          args: AccessControlListArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def AccessControlList(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          address_family: Optional[Union[str, AddressFamily]] = None,
                          conditions: Optional[Sequence[AccessControlListConditionPropertiesArgs]] = None,
                          resource_group_name: Optional[str] = None,
                          access_control_list_name: Optional[str] = None,
                          annotation: Optional[str] = None,
                          location: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None)
    func NewAccessControlList(ctx *Context, name string, args AccessControlListArgs, opts ...ResourceOption) (*AccessControlList, error)
    public AccessControlList(string name, AccessControlListArgs args, CustomResourceOptions? opts = null)
    public AccessControlList(String name, AccessControlListArgs args)
    public AccessControlList(String name, AccessControlListArgs args, CustomResourceOptions options)
    
    type: azure-native:managednetworkfabric:AccessControlList
    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 AccessControlListArgs
    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 AccessControlListArgs
    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 AccessControlListArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccessControlListArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccessControlListArgs
    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 accessControlListResource = new AzureNative.ManagedNetworkFabric.AccessControlList("accessControlListResource", new()
    {
        AddressFamily = "string",
        Conditions = new[]
        {
            new AzureNative.ManagedNetworkFabric.Inputs.AccessControlListConditionPropertiesArgs
            {
                Action = "string",
                DestinationAddress = "string",
                DestinationPort = "string",
                Protocol = 0,
                SequenceNumber = 0,
                SourceAddress = "string",
                SourcePort = "string",
                Annotation = "string",
            },
        },
        ResourceGroupName = "string",
        AccessControlListName = "string",
        Annotation = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := managednetworkfabric.NewAccessControlList(ctx, "accessControlListResource", &managednetworkfabric.AccessControlListArgs{
    AddressFamily: pulumi.String("string"),
    Conditions: managednetworkfabric.AccessControlListConditionPropertiesArray{
    &managednetworkfabric.AccessControlListConditionPropertiesArgs{
    Action: pulumi.String("string"),
    DestinationAddress: pulumi.String("string"),
    DestinationPort: pulumi.String("string"),
    Protocol: pulumi.Int(0),
    SequenceNumber: pulumi.Int(0),
    SourceAddress: pulumi.String("string"),
    SourcePort: pulumi.String("string"),
    Annotation: pulumi.String("string"),
    },
    },
    ResourceGroupName: pulumi.String("string"),
    AccessControlListName: pulumi.String("string"),
    Annotation: pulumi.String("string"),
    Location: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var accessControlListResource = new AccessControlList("accessControlListResource", AccessControlListArgs.builder()        
        .addressFamily("string")
        .conditions(AccessControlListConditionPropertiesArgs.builder()
            .action("string")
            .destinationAddress("string")
            .destinationPort("string")
            .protocol(0)
            .sequenceNumber(0)
            .sourceAddress("string")
            .sourcePort("string")
            .annotation("string")
            .build())
        .resourceGroupName("string")
        .accessControlListName("string")
        .annotation("string")
        .location("string")
        .tags(Map.of("string", "string"))
        .build());
    
    access_control_list_resource = azure_native.managednetworkfabric.AccessControlList("accessControlListResource",
        address_family="string",
        conditions=[azure_native.managednetworkfabric.AccessControlListConditionPropertiesArgs(
            action="string",
            destination_address="string",
            destination_port="string",
            protocol=0,
            sequence_number=0,
            source_address="string",
            source_port="string",
            annotation="string",
        )],
        resource_group_name="string",
        access_control_list_name="string",
        annotation="string",
        location="string",
        tags={
            "string": "string",
        })
    
    const accessControlListResource = new azure_native.managednetworkfabric.AccessControlList("accessControlListResource", {
        addressFamily: "string",
        conditions: [{
            action: "string",
            destinationAddress: "string",
            destinationPort: "string",
            protocol: 0,
            sequenceNumber: 0,
            sourceAddress: "string",
            sourcePort: "string",
            annotation: "string",
        }],
        resourceGroupName: "string",
        accessControlListName: "string",
        annotation: "string",
        location: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:managednetworkfabric:AccessControlList
    properties:
        accessControlListName: string
        addressFamily: string
        annotation: string
        conditions:
            - action: string
              annotation: string
              destinationAddress: string
              destinationPort: string
              protocol: 0
              sequenceNumber: 0
              sourceAddress: string
              sourcePort: string
        location: string
        resourceGroupName: string
        tags:
            string: string
    

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

    AddressFamily string | Pulumi.AzureNative.ManagedNetworkFabric.AddressFamily
    IP address family. Example: ipv4 | ipv6.
    Conditions List<Pulumi.AzureNative.ManagedNetworkFabric.Inputs.AccessControlListConditionProperties>
    Access Control List conditions.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AccessControlListName string
    Name of the Access Control List
    Annotation string
    Switch configuration description.
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    AddressFamily string | AddressFamily
    IP address family. Example: ipv4 | ipv6.
    Conditions []AccessControlListConditionPropertiesArgs
    Access Control List conditions.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AccessControlListName string
    Name of the Access Control List
    Annotation string
    Switch configuration description.
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    addressFamily String | AddressFamily
    IP address family. Example: ipv4 | ipv6.
    conditions List<AccessControlListConditionProperties>
    Access Control List conditions.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    accessControlListName String
    Name of the Access Control List
    annotation String
    Switch configuration description.
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    addressFamily string | AddressFamily
    IP address family. Example: ipv4 | ipv6.
    conditions AccessControlListConditionProperties[]
    Access Control List conditions.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    accessControlListName string
    Name of the Access Control List
    annotation string
    Switch configuration description.
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    address_family str | AddressFamily
    IP address family. Example: ipv4 | ipv6.
    conditions Sequence[AccessControlListConditionPropertiesArgs]
    Access Control List conditions.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    access_control_list_name str
    Name of the Access Control List
    annotation str
    Switch configuration description.
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    addressFamily String | "ipv4" | "ipv6"
    IP address family. Example: ipv4 | ipv6.
    conditions List<Property Map>
    Access Control List conditions.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    accessControlListName String
    Name of the Access Control List
    annotation String
    Switch configuration description.
    location String
    The geo-location where the resource lives
    tags Map<String>
    Resource tags.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Gets the provisioning state of the resource.
    SystemData Pulumi.AzureNative.ManagedNetworkFabric.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Gets the provisioning state of the resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Gets the provisioning state of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    Gets the provisioning state of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    Gets the provisioning state of the resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Gets the provisioning state of the resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AccessControlListConditionProperties, AccessControlListConditionPropertiesArgs

    Action string | Pulumi.AzureNative.ManagedNetworkFabric.ConditionActionType
    action. Example: allow | deny.
    DestinationAddress string
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    DestinationPort string
    destinationPort. Example: any | 1253
    Protocol int
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    SequenceNumber int
    sequenceNumber of the Access Control List.
    SourceAddress string
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    SourcePort string
    sourcePort. Example: any | 1253
    Annotation string
    Switch configuration description.
    Action string | ConditionActionType
    action. Example: allow | deny.
    DestinationAddress string
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    DestinationPort string
    destinationPort. Example: any | 1253
    Protocol int
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    SequenceNumber int
    sequenceNumber of the Access Control List.
    SourceAddress string
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    SourcePort string
    sourcePort. Example: any | 1253
    Annotation string
    Switch configuration description.
    action String | ConditionActionType
    action. Example: allow | deny.
    destinationAddress String
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    destinationPort String
    destinationPort. Example: any | 1253
    protocol Integer
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    sequenceNumber Integer
    sequenceNumber of the Access Control List.
    sourceAddress String
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    sourcePort String
    sourcePort. Example: any | 1253
    annotation String
    Switch configuration description.
    action string | ConditionActionType
    action. Example: allow | deny.
    destinationAddress string
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    destinationPort string
    destinationPort. Example: any | 1253
    protocol number
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    sequenceNumber number
    sequenceNumber of the Access Control List.
    sourceAddress string
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    sourcePort string
    sourcePort. Example: any | 1253
    annotation string
    Switch configuration description.
    action str | ConditionActionType
    action. Example: allow | deny.
    destination_address str
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    destination_port str
    destinationPort. Example: any | 1253
    protocol int
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    sequence_number int
    sequenceNumber of the Access Control List.
    source_address str
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    source_port str
    sourcePort. Example: any | 1253
    annotation str
    Switch configuration description.
    action String | "allow" | "deny"
    action. Example: allow | deny.
    destinationAddress String
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    destinationPort String
    destinationPort. Example: any | 1253
    protocol Number
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    sequenceNumber Number
    sequenceNumber of the Access Control List.
    sourceAddress String
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    sourcePort String
    sourcePort. Example: any | 1253
    annotation String
    Switch configuration description.

    AccessControlListConditionPropertiesResponse, AccessControlListConditionPropertiesResponseArgs

    Action string
    action. Example: allow | deny.
    DestinationAddress string
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    DestinationPort string
    destinationPort. Example: any | 1253
    Protocol int
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    SequenceNumber int
    sequenceNumber of the Access Control List.
    SourceAddress string
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    SourcePort string
    sourcePort. Example: any | 1253
    Annotation string
    Switch configuration description.
    Action string
    action. Example: allow | deny.
    DestinationAddress string
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    DestinationPort string
    destinationPort. Example: any | 1253
    Protocol int
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    SequenceNumber int
    sequenceNumber of the Access Control List.
    SourceAddress string
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    SourcePort string
    sourcePort. Example: any | 1253
    Annotation string
    Switch configuration description.
    action String
    action. Example: allow | deny.
    destinationAddress String
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    destinationPort String
    destinationPort. Example: any | 1253
    protocol Integer
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    sequenceNumber Integer
    sequenceNumber of the Access Control List.
    sourceAddress String
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    sourcePort String
    sourcePort. Example: any | 1253
    annotation String
    Switch configuration description.
    action string
    action. Example: allow | deny.
    destinationAddress string
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    destinationPort string
    destinationPort. Example: any | 1253
    protocol number
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    sequenceNumber number
    sequenceNumber of the Access Control List.
    sourceAddress string
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    sourcePort string
    sourcePort. Example: any | 1253
    annotation string
    Switch configuration description.
    action str
    action. Example: allow | deny.
    destination_address str
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    destination_port str
    destinationPort. Example: any | 1253
    protocol int
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    sequence_number int
    sequenceNumber of the Access Control List.
    source_address str
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    source_port str
    sourcePort. Example: any | 1253
    annotation str
    Switch configuration description.
    action String
    action. Example: allow | deny.
    destinationAddress String
    destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    destinationPort String
    destinationPort. Example: any | 1253
    protocol Number
    TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
    sequenceNumber Number
    sequenceNumber of the Access Control List.
    sourceAddress String
    sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
    sourcePort String
    sourcePort. Example: any | 1253
    annotation String
    Switch configuration description.

    AddressFamily, AddressFamilyArgs

    Ipv4
    ipv4
    Ipv6
    ipv6
    AddressFamilyIpv4
    ipv4
    AddressFamilyIpv6
    ipv6
    Ipv4
    ipv4
    Ipv6
    ipv6
    Ipv4
    ipv4
    Ipv6
    ipv6
    IPV4
    ipv4
    IPV6
    ipv6
    "ipv4"
    ipv4
    "ipv6"
    ipv6

    ConditionActionType, ConditionActionTypeArgs

    Allow
    allow
    Deny
    deny
    ConditionActionTypeAllow
    allow
    ConditionActionTypeDeny
    deny
    Allow
    allow
    Deny
    deny
    Allow
    allow
    Deny
    deny
    ALLOW
    allow
    DENY
    deny
    "allow"
    allow
    "deny"
    deny

    SystemDataResponse, SystemDataResponseArgs

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

    Import

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

    $ pulumi import azure-native:managednetworkfabric:AccessControlList aaaaaaaaaaaaaa /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/accessControlLists/{accessControlListName} 
    

    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.41.0 published on Tuesday, May 14, 2024 by Pulumi