azure-native.managednetworkfabric.AccessControlList
Explore with Pulumi AI
The AccessControlList resource definition.
Uses Azure REST API version 2023-02-01-preview. In version 1.x of the Azure Native provider, it used API version 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 (
	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.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 * 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",
});
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=[{
        "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")
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.
Constructor 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=[{
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AccessControlList resource accepts the following input properties:
- AddressFamily string | Pulumi.Azure Native. Managed Network Fabric. Address Family 
- IP address family. Example: ipv4 | ipv6.
- Conditions
List<Pulumi.Azure Native. Managed Network Fabric. Inputs. Access Control List Condition Properties> 
- Access Control List conditions.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AccessControl stringList Name 
- Name of the Access Control List
- Annotation string
- Switch configuration description.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- AddressFamily string | AddressFamily 
- IP address family. Example: ipv4 | ipv6.
- Conditions
[]AccessControl List Condition Properties Args 
- Access Control List conditions.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AccessControl stringList Name 
- Name of the Access Control List
- Annotation string
- Switch configuration description.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- addressFamily String | AddressFamily 
- IP address family. Example: ipv4 | ipv6.
- conditions
List<AccessControl List Condition Properties> 
- Access Control List conditions.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- accessControl StringList Name 
- Name of the Access Control List
- annotation String
- Switch configuration description.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- addressFamily string | AddressFamily 
- IP address family. Example: ipv4 | ipv6.
- conditions
AccessControl List Condition Properties[] 
- Access Control List conditions.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- accessControl stringList Name 
- Name of the Access Control List
- annotation string
- Switch configuration description.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- address_family str | AddressFamily 
- IP address family. Example: ipv4 | ipv6.
- conditions
Sequence[AccessControl List Condition Properties Args] 
- Access Control List conditions.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- access_control_ strlist_ name 
- Name of the Access Control List
- annotation str
- Switch configuration description.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- addressFamily String | "ipv4" | "ipv6"
- IP address family. Example: ipv4 | ipv6.
- conditions List<Property Map>
- Access Control List conditions.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- accessControl StringList Name 
- Name of the Access Control List
- annotation String
- Switch configuration description.
- location String
- The geo-location where the resource lives
- 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.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"
- 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 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"
- 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 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"
- 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 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"
- 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 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"
- 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.Azure Native. Managed Network Fabric. Condition Action Type 
- 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 | ConditionAction Type 
- 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 | ConditionAction Type 
- 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 | ConditionAction Type 
- 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 | ConditionAction Type 
- 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
- AddressFamily Ipv4 
- ipv4
- AddressFamily Ipv6 
- ipv6
- Ipv4
- ipv4
- Ipv6
- ipv6
- Ipv4
- ipv4
- Ipv6
- ipv6
- IPV4
- ipv4
- IPV6
- ipv6
- "ipv4"
- ipv4
- "ipv6"
- ipv6
ConditionActionType, ConditionActionTypeArgs      
- Allow
- allow
- Deny
- deny
- ConditionAction Type Allow 
- allow
- ConditionAction Type Deny 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:managednetworkfabric: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