1. Packages
  2. Azure Native
  3. API Docs
  4. mission
  5. CommunityEndpoint
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.CommunityEndpoint

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

    CommunityEndpoint 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

    CommunityEndpoints_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var communityEndpoint = new AzureNative.Mission.CommunityEndpoint("communityEndpoint", new()
        {
            CommunityEndpointName = "TestMyCommunityEndpoint",
            CommunityName = "TestMyCommunity",
            Location = "West US",
            ResourceGroupName = "rgopenapi",
            RuleCollection = new[]
            {
                new AzureNative.Mission.Inputs.CommunityEndpointDestinationRuleArgs
                {
                    Destination = "foo.example.com",
                    DestinationType = AzureNative.Mission.DestinationType.FQDNTag,
                    Ports = "443",
                    Protocols = new[]
                    {
                        AzureNative.Mission.CommunityEndpointProtocol.TCP,
                    },
                    TransitHubResourceId = "/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity/transitHubs/TestThName",
                },
            },
            Tags = 
            {
                { "sampletag", "samplevalue" },
            },
        });
    
    });
    
    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.NewCommunityEndpoint(ctx, "communityEndpoint", &mission.CommunityEndpointArgs{
    			CommunityEndpointName: pulumi.String("TestMyCommunityEndpoint"),
    			CommunityName:         pulumi.String("TestMyCommunity"),
    			Location:              pulumi.String("West US"),
    			ResourceGroupName:     pulumi.String("rgopenapi"),
    			RuleCollection: mission.CommunityEndpointDestinationRuleArray{
    				&mission.CommunityEndpointDestinationRuleArgs{
    					Destination:     pulumi.String("foo.example.com"),
    					DestinationType: pulumi.String(mission.DestinationTypeFQDNTag),
    					Ports:           pulumi.String("443"),
    					Protocols: pulumi.StringArray{
    						pulumi.String(mission.CommunityEndpointProtocolTCP),
    					},
    					TransitHubResourceId: pulumi.String("/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity/transitHubs/TestThName"),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"sampletag": pulumi.String("samplevalue"),
    			},
    		})
    		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.CommunityEndpoint;
    import com.pulumi.azurenative.mission.CommunityEndpointArgs;
    import com.pulumi.azurenative.mission.inputs.CommunityEndpointDestinationRuleArgs;
    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 communityEndpoint = new CommunityEndpoint("communityEndpoint", CommunityEndpointArgs.builder()
                .communityEndpointName("TestMyCommunityEndpoint")
                .communityName("TestMyCommunity")
                .location("West US")
                .resourceGroupName("rgopenapi")
                .ruleCollection(CommunityEndpointDestinationRuleArgs.builder()
                    .destination("foo.example.com")
                    .destinationType("FQDNTag")
                    .ports("443")
                    .protocols("TCP")
                    .transitHubResourceId("/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity/transitHubs/TestThName")
                    .build())
                .tags(Map.of("sampletag", "samplevalue"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const communityEndpoint = new azure_native.mission.CommunityEndpoint("communityEndpoint", {
        communityEndpointName: "TestMyCommunityEndpoint",
        communityName: "TestMyCommunity",
        location: "West US",
        resourceGroupName: "rgopenapi",
        ruleCollection: [{
            destination: "foo.example.com",
            destinationType: azure_native.mission.DestinationType.FQDNTag,
            ports: "443",
            protocols: [azure_native.mission.CommunityEndpointProtocol.TCP],
            transitHubResourceId: "/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity/transitHubs/TestThName",
        }],
        tags: {
            sampletag: "samplevalue",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    community_endpoint = azure_native.mission.CommunityEndpoint("communityEndpoint",
        community_endpoint_name="TestMyCommunityEndpoint",
        community_name="TestMyCommunity",
        location="West US",
        resource_group_name="rgopenapi",
        rule_collection=[{
            "destination": "foo.example.com",
            "destination_type": azure_native.mission.DestinationType.FQDN_TAG,
            "ports": "443",
            "protocols": [azure_native.mission.CommunityEndpointProtocol.TCP],
            "transit_hub_resource_id": "/subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity/transitHubs/TestThName",
        }],
        tags={
            "sampletag": "samplevalue",
        })
    
    resources:
      communityEndpoint:
        type: azure-native:mission:CommunityEndpoint
        properties:
          communityEndpointName: TestMyCommunityEndpoint
          communityName: TestMyCommunity
          location: West US
          resourceGroupName: rgopenapi
          ruleCollection:
            - destination: foo.example.com
              destinationType: FQDNTag
              ports: '443'
              protocols:
                - TCP
              transitHubResourceId: /subscriptions/c64f6eca-bdc5-4bc2-88d6-f8f1dc23f86c/resourceGroups/testrg/providers/Microsoft.Mission/communities/TestMyCommunity/transitHubs/TestThName
          tags:
            sampletag: samplevalue
    

    Create CommunityEndpoint Resource

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

    Constructor syntax

    new CommunityEndpoint(name: string, args: CommunityEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def CommunityEndpoint(resource_name: str,
                          args: CommunityEndpointArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def CommunityEndpoint(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          community_name: Optional[str] = None,
                          resource_group_name: Optional[str] = None,
                          rule_collection: Optional[Sequence[CommunityEndpointDestinationRuleArgs]] = None,
                          community_endpoint_name: Optional[str] = None,
                          location: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None)
    func NewCommunityEndpoint(ctx *Context, name string, args CommunityEndpointArgs, opts ...ResourceOption) (*CommunityEndpoint, error)
    public CommunityEndpoint(string name, CommunityEndpointArgs args, CustomResourceOptions? opts = null)
    public CommunityEndpoint(String name, CommunityEndpointArgs args)
    public CommunityEndpoint(String name, CommunityEndpointArgs args, CustomResourceOptions options)
    
    type: azure-native:mission:CommunityEndpoint
    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 CommunityEndpointArgs
    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 CommunityEndpointArgs
    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 CommunityEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CommunityEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CommunityEndpointArgs
    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 communityEndpointResource = new AzureNative.Mission.CommunityEndpoint("communityEndpointResource", new()
    {
        CommunityName = "string",
        ResourceGroupName = "string",
        RuleCollection = new[]
        {
            new AzureNative.Mission.Inputs.CommunityEndpointDestinationRuleArgs
            {
                Destination = "string",
                DestinationType = "string",
                EndpointRuleName = "string",
                Ports = "string",
                Protocols = new[]
                {
                    "string",
                },
                TransitHubResourceId = "string",
            },
        },
        CommunityEndpointName = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := mission.NewCommunityEndpoint(ctx, "communityEndpointResource", &mission.CommunityEndpointArgs{
    	CommunityName:     pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	RuleCollection: mission.CommunityEndpointDestinationRuleArray{
    		&mission.CommunityEndpointDestinationRuleArgs{
    			Destination:      pulumi.String("string"),
    			DestinationType:  pulumi.String("string"),
    			EndpointRuleName: pulumi.String("string"),
    			Ports:            pulumi.String("string"),
    			Protocols: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			TransitHubResourceId: pulumi.String("string"),
    		},
    	},
    	CommunityEndpointName: pulumi.String("string"),
    	Location:              pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var communityEndpointResource = new CommunityEndpoint("communityEndpointResource", CommunityEndpointArgs.builder()
        .communityName("string")
        .resourceGroupName("string")
        .ruleCollection(CommunityEndpointDestinationRuleArgs.builder()
            .destination("string")
            .destinationType("string")
            .endpointRuleName("string")
            .ports("string")
            .protocols("string")
            .transitHubResourceId("string")
            .build())
        .communityEndpointName("string")
        .location("string")
        .tags(Map.of("string", "string"))
        .build());
    
    community_endpoint_resource = azure_native.mission.CommunityEndpoint("communityEndpointResource",
        community_name="string",
        resource_group_name="string",
        rule_collection=[{
            "destination": "string",
            "destination_type": "string",
            "endpoint_rule_name": "string",
            "ports": "string",
            "protocols": ["string"],
            "transit_hub_resource_id": "string",
        }],
        community_endpoint_name="string",
        location="string",
        tags={
            "string": "string",
        })
    
    const communityEndpointResource = new azure_native.mission.CommunityEndpoint("communityEndpointResource", {
        communityName: "string",
        resourceGroupName: "string",
        ruleCollection: [{
            destination: "string",
            destinationType: "string",
            endpointRuleName: "string",
            ports: "string",
            protocols: ["string"],
            transitHubResourceId: "string",
        }],
        communityEndpointName: "string",
        location: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:mission:CommunityEndpoint
    properties:
        communityEndpointName: string
        communityName: string
        location: string
        resourceGroupName: string
        ruleCollection:
            - destination: string
              destinationType: string
              endpointRuleName: string
              ports: string
              protocols:
                - string
              transitHubResourceId: string
        tags:
            string: string
    

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

    CommunityName string
    The name of the communityResource Resource
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    RuleCollection List<Pulumi.AzureNative.Mission.Inputs.CommunityEndpointDestinationRule>
    Community Endpoint Rule Collection.
    CommunityEndpointName string
    The name of the Community Endpoint Resource
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    CommunityName string
    The name of the communityResource Resource
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    RuleCollection []CommunityEndpointDestinationRuleArgs
    Community Endpoint Rule Collection.
    CommunityEndpointName string
    The name of the Community Endpoint Resource
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    communityName String
    The name of the communityResource Resource
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    ruleCollection List<CommunityEndpointDestinationRule>
    Community Endpoint Rule Collection.
    communityEndpointName String
    The name of the Community Endpoint Resource
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    communityName string
    The name of the communityResource Resource
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    ruleCollection CommunityEndpointDestinationRule[]
    Community Endpoint Rule Collection.
    communityEndpointName string
    The name of the Community Endpoint Resource
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    community_name str
    The name of the communityResource Resource
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    rule_collection Sequence[CommunityEndpointDestinationRuleArgs]
    Community Endpoint Rule Collection.
    community_endpoint_name str
    The name of the Community Endpoint Resource
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    communityName String
    The name of the communityResource Resource
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    ruleCollection List<Property Map>
    Community Endpoint Rule Collection.
    communityEndpointName String
    The name of the Community 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 CommunityEndpoint 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

    CommunityEndpointDestinationRule, CommunityEndpointDestinationRuleArgs

    Destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    DestinationType string | Pulumi.AzureNative.Mission.DestinationType
    Destination Type.
    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.CommunityEndpointProtocol>>
    Protocols. Options specified by Endpoint Protocol Enum.
    TransitHubResourceId string
    Transit Hub Resource Id.
    Destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    DestinationType string | DestinationType
    Destination Type.
    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.
    TransitHubResourceId string
    Transit Hub Resource Id.
    destination String
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    destinationType String | DestinationType
    Destination Type.
    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,CommunityEndpointProtocol>>
    Protocols. Options specified by Endpoint Protocol Enum.
    transitHubResourceId String
    Transit Hub Resource Id.
    destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    destinationType string | DestinationType
    Destination Type.
    endpointRuleName string
    Endpoint Rule Name.
    ports string
    Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
    protocols (string | CommunityEndpointProtocol)[]
    Protocols. Options specified by Endpoint Protocol Enum.
    transitHubResourceId string
    Transit Hub Resource Id.
    destination str
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    destination_type str | DestinationType
    Destination Type.
    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, CommunityEndpointProtocol]]
    Protocols. Options specified by Endpoint Protocol Enum.
    transit_hub_resource_id str
    Transit Hub Resource Id.
    destination String
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    destinationType String | "FQDN" | "FQDNTag" | "IPAddress" | "PrivateNetwork"
    Destination Type.
    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" | "HTTPS" | "HTTP">
    Protocols. Options specified by Endpoint Protocol Enum.
    transitHubResourceId String
    Transit Hub Resource Id.

    CommunityEndpointDestinationRuleResponse, CommunityEndpointDestinationRuleResponseArgs

    Destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    DestinationType string
    Destination Type.
    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.
    TransitHubResourceId string
    Transit Hub Resource Id.
    Destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    DestinationType string
    Destination Type.
    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.
    TransitHubResourceId string
    Transit Hub Resource Id.
    destination String
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    destinationType String
    Destination Type.
    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.
    transitHubResourceId String
    Transit Hub Resource Id.
    destination string
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    destinationType string
    Destination Type.
    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.
    transitHubResourceId string
    Transit Hub Resource Id.
    destination str
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    destination_type str
    Destination Type.
    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.
    transit_hub_resource_id str
    Transit Hub Resource Id.
    destination String
    Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
    destinationType String
    Destination Type.
    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.
    transitHubResourceId String
    Transit Hub Resource Id.

    CommunityEndpointProtocol, CommunityEndpointProtocolArgs

    ANY
    ANYCommunityEndpointProtocol Type ANY
    TCP
    TCPCommunityEndpointProtocol Type TCP
    UDP
    UDPCommunityEndpointProtocol Type UDP
    ICMP
    ICMPCommunityEndpointProtocol Type ICMP
    ESP
    ESPCommunityEndpointProtocol Type ESP
    AH
    AHCommunityEndpointProtocol Type AH
    HTTPS
    HTTPSCommunityEndpointProtocol Type HTTPS
    HTTP
    HTTPCommunityEndpointProtocol Type HTTP
    CommunityEndpointProtocolANY
    ANYCommunityEndpointProtocol Type ANY
    CommunityEndpointProtocolTCP
    TCPCommunityEndpointProtocol Type TCP
    CommunityEndpointProtocolUDP
    UDPCommunityEndpointProtocol Type UDP
    CommunityEndpointProtocolICMP
    ICMPCommunityEndpointProtocol Type ICMP
    CommunityEndpointProtocolESP
    ESPCommunityEndpointProtocol Type ESP
    CommunityEndpointProtocolAH
    AHCommunityEndpointProtocol Type AH
    CommunityEndpointProtocolHTTPS
    HTTPSCommunityEndpointProtocol Type HTTPS
    CommunityEndpointProtocolHTTP
    HTTPCommunityEndpointProtocol Type HTTP
    ANY
    ANYCommunityEndpointProtocol Type ANY
    TCP
    TCPCommunityEndpointProtocol Type TCP
    UDP
    UDPCommunityEndpointProtocol Type UDP
    ICMP
    ICMPCommunityEndpointProtocol Type ICMP
    ESP
    ESPCommunityEndpointProtocol Type ESP
    AH
    AHCommunityEndpointProtocol Type AH
    HTTPS
    HTTPSCommunityEndpointProtocol Type HTTPS
    HTTP
    HTTPCommunityEndpointProtocol Type HTTP
    ANY
    ANYCommunityEndpointProtocol Type ANY
    TCP
    TCPCommunityEndpointProtocol Type TCP
    UDP
    UDPCommunityEndpointProtocol Type UDP
    ICMP
    ICMPCommunityEndpointProtocol Type ICMP
    ESP
    ESPCommunityEndpointProtocol Type ESP
    AH
    AHCommunityEndpointProtocol Type AH
    HTTPS
    HTTPSCommunityEndpointProtocol Type HTTPS
    HTTP
    HTTPCommunityEndpointProtocol Type HTTP
    ANY
    ANYCommunityEndpointProtocol Type ANY
    TCP
    TCPCommunityEndpointProtocol Type TCP
    UDP
    UDPCommunityEndpointProtocol Type UDP
    ICMP
    ICMPCommunityEndpointProtocol Type ICMP
    ESP
    ESPCommunityEndpointProtocol Type ESP
    AH
    AHCommunityEndpointProtocol Type AH
    HTTPS
    HTTPSCommunityEndpointProtocol Type HTTPS
    HTTP
    HTTPCommunityEndpointProtocol Type HTTP
    "ANY"
    ANYCommunityEndpointProtocol Type ANY
    "TCP"
    TCPCommunityEndpointProtocol Type TCP
    "UDP"
    UDPCommunityEndpointProtocol Type UDP
    "ICMP"
    ICMPCommunityEndpointProtocol Type ICMP
    "ESP"
    ESPCommunityEndpointProtocol Type ESP
    "AH"
    AHCommunityEndpointProtocol Type AH
    "HTTPS"
    HTTPSCommunityEndpointProtocol Type HTTPS
    "HTTP"
    HTTPCommunityEndpointProtocol Type HTTP

    DestinationType, DestinationTypeArgs

    FQDN
    FQDNDestinationType Type FQDN
    FQDNTag
    FQDNTagDestinationType Type FQDNTag
    IPAddress
    IPAddressDestinationType Type IPAddress
    PrivateNetwork
    PrivateNetworkDestinationType Type PrivateNetwork
    DestinationTypeFQDN
    FQDNDestinationType Type FQDN
    DestinationTypeFQDNTag
    FQDNTagDestinationType Type FQDNTag
    DestinationTypeIPAddress
    IPAddressDestinationType Type IPAddress
    DestinationTypePrivateNetwork
    PrivateNetworkDestinationType Type PrivateNetwork
    FQDN
    FQDNDestinationType Type FQDN
    FQDNTag
    FQDNTagDestinationType Type FQDNTag
    IPAddress
    IPAddressDestinationType Type IPAddress
    PrivateNetwork
    PrivateNetworkDestinationType Type PrivateNetwork
    FQDN
    FQDNDestinationType Type FQDN
    FQDNTag
    FQDNTagDestinationType Type FQDNTag
    IPAddress
    IPAddressDestinationType Type IPAddress
    PrivateNetwork
    PrivateNetworkDestinationType Type PrivateNetwork
    FQDN
    FQDNDestinationType Type FQDN
    FQDN_TAG
    FQDNTagDestinationType Type FQDNTag
    IP_ADDRESS
    IPAddressDestinationType Type IPAddress
    PRIVATE_NETWORK
    PrivateNetworkDestinationType Type PrivateNetwork
    "FQDN"
    FQDNDestinationType Type FQDN
    "FQDNTag"
    FQDNTagDestinationType Type FQDNTag
    "IPAddress"
    IPAddressDestinationType Type IPAddress
    "PrivateNetwork"
    PrivateNetworkDestinationType Type PrivateNetwork

    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:CommunityEndpoint TestMyCommunityEndpoint /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Mission/communities/{communityName}/communityEndpoints/{communityEndpointName} 
    

    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