1. Packages
  2. Azure Native
  3. API Docs
  4. mission
  5. EnclaveEndpoint
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

azure-native.mission.EnclaveEndpoint

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

    EnclaveEndpoint Model Resource

    Uses Azure REST API version 2025-05-01-preview.

    Other available API versions: 2024-06-01-preview, 2024-12-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native mission [ApiVersion]. See the version guide for details.

    Example Usage

    EnclaveEndpoints_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var enclaveEndpoint = new AzureNative.Mission.EnclaveEndpoint("enclaveEndpoint", new()
        {
            EnclaveEndpointName = "TestMyEnclaveEndpoint",
            Location = "West US",
            ResourceGroupName = "rgopenapi",
            RuleCollection = new[]
            {
                new AzureNative.Mission.Inputs.EnclaveEndpointDestinationRuleArgs
                {
                    Destination = "10.0.0.0/24",
                    EndpointRuleName = "54CEECEF-2C30-488E-946F-D20F414D99BA",
                    Ports = "443",
                    Protocols = new[]
                    {
                        AzureNative.Mission.EnclaveEndpointProtocol.TCP,
                    },
                },
            },
            Tags = 
            {
                { "sampletag", "samplevalue" },
            },
            VirtualEnclaveName = "TestMyEnclave",
        });
    
    });
    
    package main
    
    import (
    	mission "github.com/pulumi/pulumi-azure-native-sdk/mission/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mission.NewEnclaveEndpoint(ctx, "enclaveEndpoint", &mission.EnclaveEndpointArgs{
    			EnclaveEndpointName: pulumi.String("TestMyEnclaveEndpoint"),
    			Location:            pulumi.String("West US"),
    			ResourceGroupName:   pulumi.String("rgopenapi"),
    			RuleCollection: mission.EnclaveEndpointDestinationRuleArray{
    				&mission.EnclaveEndpointDestinationRuleArgs{
    					Destination:      pulumi.String("10.0.0.0/24"),
    					EndpointRuleName: pulumi.String("54CEECEF-2C30-488E-946F-D20F414D99BA"),
    					Ports:            pulumi.String("443"),
    					Protocols: pulumi.StringArray{
    						pulumi.String(mission.EnclaveEndpointProtocolTCP),
    					},
    				},
    			},
    			Tags: pulumi.StringMap{
    				"sampletag": pulumi.String("samplevalue"),
    			},
    			VirtualEnclaveName: pulumi.String("TestMyEnclave"),
    		})
    		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.mission.EnclaveEndpoint;
    import com.pulumi.azurenative.mission.EnclaveEndpointArgs;
    import com.pulumi.azurenative.mission.inputs.EnclaveEndpointDestinationRuleArgs;
    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 enclaveEndpoint = new EnclaveEndpoint("enclaveEndpoint", EnclaveEndpointArgs.builder()
                .enclaveEndpointName("TestMyEnclaveEndpoint")
                .location("West US")
                .resourceGroupName("rgopenapi")
                .ruleCollection(EnclaveEndpointDestinationRuleArgs.builder()
                    .destination("10.0.0.0/24")
                    .endpointRuleName("54CEECEF-2C30-488E-946F-D20F414D99BA")
                    .ports("443")
                    .protocols("TCP")
                    .build())
                .tags(Map.of("sampletag", "samplevalue"))
                .virtualEnclaveName("TestMyEnclave")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const enclaveEndpoint = new azure_native.mission.EnclaveEndpoint("enclaveEndpoint", {
        enclaveEndpointName: "TestMyEnclaveEndpoint",
        location: "West US",
        resourceGroupName: "rgopenapi",
        ruleCollection: [{
            destination: "10.0.0.0/24",
            endpointRuleName: "54CEECEF-2C30-488E-946F-D20F414D99BA",
            ports: "443",
            protocols: [azure_native.mission.EnclaveEndpointProtocol.TCP],
        }],
        tags: {
            sampletag: "samplevalue",
        },
        virtualEnclaveName: "TestMyEnclave",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    enclave_endpoint = azure_native.mission.EnclaveEndpoint("enclaveEndpoint",
        enclave_endpoint_name="TestMyEnclaveEndpoint",
        location="West US",
        resource_group_name="rgopenapi",
        rule_collection=[{
            "destination": "10.0.0.0/24",
            "endpoint_rule_name": "54CEECEF-2C30-488E-946F-D20F414D99BA",
            "ports": "443",
            "protocols": [azure_native.mission.EnclaveEndpointProtocol.TCP],
        }],
        tags={
            "sampletag": "samplevalue",
        },
        virtual_enclave_name="TestMyEnclave")
    
    resources:
      enclaveEndpoint:
        type: azure-native:mission:EnclaveEndpoint
        properties:
          enclaveEndpointName: TestMyEnclaveEndpoint
          location: West US
          resourceGroupName: rgopenapi
          ruleCollection:
            - destination: 10.0.0.0/24
              endpointRuleName: 54CEECEF-2C30-488E-946F-D20F414D99BA
              ports: '443'
              protocols:
                - TCP
          tags:
            sampletag: samplevalue
          virtualEnclaveName: TestMyEnclave
    

    Create EnclaveEndpoint Resource

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

    Constructor syntax

    new EnclaveEndpoint(name: string, args: EnclaveEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def EnclaveEndpoint(resource_name: str,
                        args: EnclaveEndpointArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def EnclaveEndpoint(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        resource_group_name: Optional[str] = None,
                        rule_collection: Optional[Sequence[EnclaveEndpointDestinationRuleArgs]] = None,
                        virtual_enclave_name: Optional[str] = None,
                        enclave_endpoint_name: Optional[str] = None,
                        location: Optional[str] = None,
                        tags: Optional[Mapping[str, str]] = None)
    func NewEnclaveEndpoint(ctx *Context, name string, args EnclaveEndpointArgs, opts ...ResourceOption) (*EnclaveEndpoint, error)
    public EnclaveEndpoint(string name, EnclaveEndpointArgs args, CustomResourceOptions? opts = null)
    public EnclaveEndpoint(String name, EnclaveEndpointArgs args)
    public EnclaveEndpoint(String name, EnclaveEndpointArgs args, CustomResourceOptions options)
    
    type: azure-native:mission:EnclaveEndpoint
    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 EnclaveEndpointArgs
    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 EnclaveEndpointArgs
    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 EnclaveEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnclaveEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnclaveEndpointArgs
    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 enclaveEndpointResource = new AzureNative.Mission.EnclaveEndpoint("enclaveEndpointResource", new()
    {
        ResourceGroupName = "string",
        RuleCollection = new[]
        {
            new AzureNative.Mission.Inputs.EnclaveEndpointDestinationRuleArgs
            {
                Destination = "string",
                EndpointRuleName = "string",
                Ports = "string",
                Protocols = new[]
                {
                    "string",
                },
            },
        },
        VirtualEnclaveName = "string",
        EnclaveEndpointName = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := mission.NewEnclaveEndpoint(ctx, "enclaveEndpointResource", &mission.EnclaveEndpointArgs{
    	ResourceGroupName: pulumi.String("string"),
    	RuleCollection: mission.EnclaveEndpointDestinationRuleArray{
    		&mission.EnclaveEndpointDestinationRuleArgs{
    			Destination:      pulumi.String("string"),
    			EndpointRuleName: pulumi.String("string"),
    			Ports:            pulumi.String("string"),
    			Protocols: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	VirtualEnclaveName:  pulumi.String("string"),
    	EnclaveEndpointName: pulumi.String("string"),
    	Location:            pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var enclaveEndpointResource = new EnclaveEndpoint("enclaveEndpointResource", EnclaveEndpointArgs.builder()
        .resourceGroupName("string")
        .ruleCollection(EnclaveEndpointDestinationRuleArgs.builder()
            .destination("string")
            .endpointRuleName("string")
            .ports("string")
            .protocols("string")
            .build())
        .virtualEnclaveName("string")
        .enclaveEndpointName("string")
        .location("string")
        .tags(Map.of("string", "string"))
        .build());
    
    enclave_endpoint_resource = azure_native.mission.EnclaveEndpoint("enclaveEndpointResource",
        resource_group_name="string",
        rule_collection=[{
            "destination": "string",
            "endpoint_rule_name": "string",
            "ports": "string",
            "protocols": ["string"],
        }],
        virtual_enclave_name="string",
        enclave_endpoint_name="string",
        location="string",
        tags={
            "string": "string",
        })
    
    const enclaveEndpointResource = new azure_native.mission.EnclaveEndpoint("enclaveEndpointResource", {
        resourceGroupName: "string",
        ruleCollection: [{
            destination: "string",
            endpointRuleName: "string",
            ports: "string",
            protocols: ["string"],
        }],
        virtualEnclaveName: "string",
        enclaveEndpointName: "string",
        location: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:mission:EnclaveEndpoint
    properties:
        enclaveEndpointName: string
        location: string
        resourceGroupName: string
        ruleCollection:
            - destination: string
              endpointRuleName: string
              ports: string
              protocols:
                - string
        tags:
            string: string
        virtualEnclaveName: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    RuleCollection List<Pulumi.AzureNative.Mission.Inputs.EnclaveEndpointDestinationRule>
    Enclave Endpoint Rule Collection.
    VirtualEnclaveName string
    The name of the enclaveResource Resource
    EnclaveEndpointName string
    The name of the Enclave Endpoint Resource
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    RuleCollection []EnclaveEndpointDestinationRuleArgs
    Enclave Endpoint Rule Collection.
    VirtualEnclaveName string
    The name of the enclaveResource Resource
    EnclaveEndpointName string
    The name of the Enclave Endpoint Resource
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    ruleCollection List<EnclaveEndpointDestinationRule>
    Enclave Endpoint Rule Collection.
    virtualEnclaveName String
    The name of the enclaveResource Resource
    enclaveEndpointName String
    The name of the Enclave Endpoint Resource
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    ruleCollection EnclaveEndpointDestinationRule[]
    Enclave Endpoint Rule Collection.
    virtualEnclaveName string
    The name of the enclaveResource Resource
    enclaveEndpointName string
    The name of the Enclave Endpoint Resource
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    rule_collection Sequence[EnclaveEndpointDestinationRuleArgs]
    Enclave Endpoint Rule Collection.
    virtual_enclave_name str
    The name of the enclaveResource Resource
    enclave_endpoint_name str
    The name of the Enclave Endpoint Resource
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    ruleCollection List<Property Map>
    Enclave Endpoint Rule Collection.
    virtualEnclaveName String
    The name of the enclaveResource Resource
    enclaveEndpointName String
    The name of the Enclave Endpoint Resource
    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 EnclaveEndpoint resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning State.
    ResourceCollection List<string>
    List of resource ids created by community endpoint.
    SystemData Pulumi.AzureNative.Mission.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"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning State.
    ResourceCollection []string
    List of resource ids created by community endpoint.
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning State.
    resourceCollection List<String>
    List of resource ids created by community endpoint.
    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"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    Provisioning State.
    resourceCollection string[]
    List of resource ids created by community endpoint.
    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"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    Provisioning State.
    resource_collection Sequence[str]
    List of resource ids created by community endpoint.
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning State.
    resourceCollection List<String>
    List of resource ids created by community endpoint.
    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

    EnclaveEndpointDestinationRule, EnclaveEndpointDestinationRuleArgs

    Destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    EndpointRuleName string
    Endpoint Rule Name.
    Ports string
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    Protocols List<Union<string, Pulumi.AzureNative.Mission.EnclaveEndpointProtocol>>
    Protocols. Options specified by Endpoint Protocol Enum.
    Destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    EndpointRuleName string
    Endpoint Rule Name.
    Ports string
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    Protocols []string
    Protocols. Options specified by Endpoint Protocol Enum.
    destination String
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    endpointRuleName String
    Endpoint Rule Name.
    ports String
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    protocols List<Either<String,EnclaveEndpointProtocol>>
    Protocols. Options specified by Endpoint Protocol Enum.
    destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    endpointRuleName string
    Endpoint Rule Name.
    ports string
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    protocols (string | EnclaveEndpointProtocol)[]
    Protocols. Options specified by Endpoint Protocol Enum.
    destination str
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    endpoint_rule_name str
    Endpoint Rule Name.
    ports str
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    protocols Sequence[Union[str, EnclaveEndpointProtocol]]
    Protocols. Options specified by Endpoint Protocol Enum.
    destination String
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    endpointRuleName String
    Endpoint Rule Name.
    ports String
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    protocols List<String | "ANY" | "TCP" | "UDP" | "ICMP" | "ESP" | "AH">
    Protocols. Options specified by Endpoint Protocol Enum.

    EnclaveEndpointDestinationRuleResponse, EnclaveEndpointDestinationRuleResponseArgs

    Destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    EndpointRuleName string
    Endpoint Rule Name.
    Ports string
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    Protocols List<string>
    Protocols. Options specified by Endpoint Protocol Enum.
    Destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    EndpointRuleName string
    Endpoint Rule Name.
    Ports string
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    Protocols []string
    Protocols. Options specified by Endpoint Protocol Enum.
    destination String
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    endpointRuleName String
    Endpoint Rule Name.
    ports String
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    protocols List<String>
    Protocols. Options specified by Endpoint Protocol Enum.
    destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    endpointRuleName string
    Endpoint Rule Name.
    ports string
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    protocols string[]
    Protocols. Options specified by Endpoint Protocol Enum.
    destination str
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    endpoint_rule_name str
    Endpoint Rule Name.
    ports str
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    protocols Sequence[str]
    Protocols. Options specified by Endpoint Protocol Enum.
    destination String
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    endpointRuleName String
    Endpoint Rule Name.
    ports String
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    protocols List<String>
    Protocols. Options specified by Endpoint Protocol Enum.

    EnclaveEndpointProtocol, EnclaveEndpointProtocolArgs

    ANY
    ANYEndpointProtocol Type ANY
    TCP
    TCPEndpointProtocol Type TCP
    UDP
    UDPEndpointProtocol Type UDP
    ICMP
    ICMPEndpointProtocol Type ICMP
    ESP
    ESPEndpointProtocol Type ESP
    AH
    AHEndpointProtocol Type AH
    EnclaveEndpointProtocolANY
    ANYEndpointProtocol Type ANY
    EnclaveEndpointProtocolTCP
    TCPEndpointProtocol Type TCP
    EnclaveEndpointProtocolUDP
    UDPEndpointProtocol Type UDP
    EnclaveEndpointProtocolICMP
    ICMPEndpointProtocol Type ICMP
    EnclaveEndpointProtocolESP
    ESPEndpointProtocol Type ESP
    EnclaveEndpointProtocolAH
    AHEndpointProtocol Type AH
    ANY
    ANYEndpointProtocol Type ANY
    TCP
    TCPEndpointProtocol Type TCP
    UDP
    UDPEndpointProtocol Type UDP
    ICMP
    ICMPEndpointProtocol Type ICMP
    ESP
    ESPEndpointProtocol Type ESP
    AH
    AHEndpointProtocol Type AH
    ANY
    ANYEndpointProtocol Type ANY
    TCP
    TCPEndpointProtocol Type TCP
    UDP
    UDPEndpointProtocol Type UDP
    ICMP
    ICMPEndpointProtocol Type ICMP
    ESP
    ESPEndpointProtocol Type ESP
    AH
    AHEndpointProtocol Type AH
    ANY
    ANYEndpointProtocol Type ANY
    TCP
    TCPEndpointProtocol Type TCP
    UDP
    UDPEndpointProtocol Type UDP
    ICMP
    ICMPEndpointProtocol Type ICMP
    ESP
    ESPEndpointProtocol Type ESP
    AH
    AHEndpointProtocol Type AH
    "ANY"
    ANYEndpointProtocol Type ANY
    "TCP"
    TCPEndpointProtocol Type TCP
    "UDP"
    UDPEndpointProtocol Type UDP
    "ICMP"
    ICMPEndpointProtocol Type ICMP
    "ESP"
    ESPEndpointProtocol Type ESP
    "AH"
    AHEndpointProtocol Type AH

    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:mission:EnclaveEndpoint TestMyEnclaveEndpoint /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Mission/virtualEnclaves/{virtualEnclaveName}/enclaveEndpoints/{enclaveEndpointName} 
    

    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 v2 docs if using the v2 version of this package.
    Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi