azure-native.managednetworkfabric.AccessControlList
Explore with Pulumi AI
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 (
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 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.
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=[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:
- Address
Family 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Access
Control 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.
- Address
Family string | AddressFamily - IP address family. Example: ipv4 | ipv6.
- Conditions
[]Access
Control List Condition Properties Args - Access Control List conditions.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Access
Control 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.
- address
Family String | AddressFamily - IP address family. Example: ipv4 | ipv6.
- conditions
List<Access
Control List Condition Properties> - Access Control List conditions.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- access
Control 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.
- address
Family string | AddressFamily - IP address family. Example: ipv4 | ipv6.
- conditions
Access
Control List Condition Properties[] - Access Control List conditions.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- access
Control 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[Access
Control 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.
- address
Family String | "ipv4" | "ipv6" - IP address family. Example: ipv4 | ipv6.
- conditions List<Property Map>
- Access Control List conditions.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- access
Control 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
- Provisioning
State string - Gets the provisioning state of the resource.
- System
Data Pulumi.Azure Native. Managed Network Fabric. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Gets the provisioning state of the resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Gets the provisioning state of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Gets the provisioning state of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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
- provisioning
State String - Gets the provisioning state of the resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AccessControlListConditionProperties, AccessControlListConditionPropertiesArgs
- Action
string | Pulumi.
Azure Native. Managed Network Fabric. Condition Action Type - action. Example: allow | deny.
- Destination
Address string - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- Destination
Port string - 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 string - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- Source
Port string - sourcePort. Example: any | 1253
- Annotation string
- Switch configuration description.
- Action
string | Condition
Action Type - action. Example: allow | deny.
- Destination
Address string - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- Destination
Port string - 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 string - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- Source
Port string - sourcePort. Example: any | 1253
- Annotation string
- Switch configuration description.
- action
String | Condition
Action Type - action. Example: allow | deny.
- destination
Address String - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- destination
Port String - destinationPort. Example: any | 1253
- protocol Integer
- TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
- sequence
Number Integer - sequenceNumber of the Access Control List.
- source
Address String - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- source
Port String - sourcePort. Example: any | 1253
- annotation String
- Switch configuration description.
- action
string | Condition
Action Type - action. Example: allow | deny.
- destination
Address string - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- destination
Port string - destinationPort. Example: any | 1253
- protocol number
- TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
- sequence
Number number - sequenceNumber of the Access Control List.
- source
Address string - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- source
Port string - sourcePort. Example: any | 1253
- annotation string
- Switch configuration description.
- action
str | Condition
Action 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.
- destination
Address String - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- destination
Port String - destinationPort. Example: any | 1253
- protocol Number
- TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
- sequence
Number Number - sequenceNumber of the Access Control List.
- source
Address String - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- source
Port String - sourcePort. Example: any | 1253
- annotation String
- Switch configuration description.
AccessControlListConditionPropertiesResponse, AccessControlListConditionPropertiesResponseArgs
- Action string
- action. Example: allow | deny.
- Destination
Address string - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- Destination
Port string - 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 string - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- Source
Port string - sourcePort. Example: any | 1253
- Annotation string
- Switch configuration description.
- Action string
- action. Example: allow | deny.
- Destination
Address string - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- Destination
Port string - 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 string - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- Source
Port string - sourcePort. Example: any | 1253
- Annotation string
- Switch configuration description.
- action String
- action. Example: allow | deny.
- destination
Address String - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- destination
Port String - destinationPort. Example: any | 1253
- protocol Integer
- TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
- sequence
Number Integer - sequenceNumber of the Access Control List.
- source
Address String - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- source
Port String - sourcePort. Example: any | 1253
- annotation String
- Switch configuration description.
- action string
- action. Example: allow | deny.
- destination
Address string - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- destination
Port string - destinationPort. Example: any | 1253
- protocol number
- TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
- sequence
Number number - sequenceNumber of the Access Control List.
- source
Address string - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- source
Port 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.
- destination
Address String - destinationAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- destination
Port String - destinationPort. Example: any | 1253
- protocol Number
- TCP/IP protocol as defined in the list of IP protocol numbers. Example: 255 (any) | 0 | 1.
- sequence
Number Number - sequenceNumber of the Access Control List.
- source
Address String - sourceAddress. Example: any | 1.1.1.0/24 | 1.1.10.10
- source
Port String - sourcePort. Example: any | 1253
- annotation String
- Switch configuration description.
AddressFamily, AddressFamilyArgs
- Ipv4
- ipv4
- Ipv6
- ipv6
- Address
Family Ipv4 - ipv4
- Address
Family Ipv6 - ipv6
- Ipv4
- ipv4
- Ipv6
- ipv6
- Ipv4
- ipv4
- Ipv6
- ipv6
- IPV4
- ipv4
- IPV6
- ipv6
- "ipv4"
- ipv4
- "ipv6"
- ipv6
ConditionActionType, ConditionActionTypeArgs
- Allow
- allow
- Deny
- deny
- Condition
Action Type Allow - allow
- Condition
Action Type Deny - deny
- Allow
- allow
- Deny
- deny
- Allow
- allow
- Deny
- deny
- ALLOW
- allow
- DENY
- deny
- "allow"
- allow
- "deny"
- deny
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:managednetworkfabric: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