azure-native.mission.CommunityEndpoint
Explore with Pulumi AI
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:
- Community
Name string - The name of the communityResource Resource
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Rule
Collection List<Pulumi.Azure Native. Mission. Inputs. Community Endpoint Destination Rule> - Community Endpoint Rule Collection.
- Community
Endpoint stringName - The name of the Community Endpoint Resource
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Community
Name string - The name of the communityResource Resource
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Rule
Collection []CommunityEndpoint Destination Rule Args - Community Endpoint Rule Collection.
- Community
Endpoint stringName - The name of the Community Endpoint Resource
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- community
Name String - The name of the communityResource Resource
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- rule
Collection List<CommunityEndpoint Destination Rule> - Community Endpoint Rule Collection.
- community
Endpoint StringName - The name of the Community Endpoint Resource
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- community
Name string - The name of the communityResource Resource
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- rule
Collection CommunityEndpoint Destination Rule[] - Community Endpoint Rule Collection.
- community
Endpoint stringName - The name of the Community Endpoint Resource
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- community_
name str - The name of the communityResource Resource
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- rule_
collection Sequence[CommunityEndpoint Destination Rule Args] - Community Endpoint Rule Collection.
- community_
endpoint_ strname - The name of the Community Endpoint Resource
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- community
Name String - The name of the communityResource Resource
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- rule
Collection List<Property Map> - Community Endpoint Rule Collection.
- community
Endpoint StringName - The name of the Community Endpoint Resource
- 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 CommunityEndpoint resource produces the following output properties:
- Azure
Api stringVersion - 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
- Provisioning
State string - Provisioning State.
- Resource
Collection List<string> - List of resource ids created by community endpoint.
- System
Data Pulumi.Azure Native. Mission. 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"
- Azure
Api stringVersion - 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
- Provisioning
State string - Provisioning State.
- Resource
Collection []string - List of resource ids created by community endpoint.
- 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"
- azure
Api StringVersion - 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
- provisioning
State String - Provisioning State.
- resource
Collection List<String> - List of resource ids created by community endpoint.
- 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"
- azure
Api stringVersion - 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
- provisioning
State string - Provisioning State.
- resource
Collection string[] - List of resource ids created by community endpoint.
- 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"
- azure_
api_ strversion - 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 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"
- azure
Api StringVersion - 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
- provisioning
State String - Provisioning State.
- resource
Collection List<String> - List of resource ids created by community endpoint.
- 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
CommunityEndpointDestinationRule, CommunityEndpointDestinationRuleArgs
- Destination string
- Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
- Destination
Type string | Pulumi.Azure Native. Mission. Destination Type - Destination Type.
- Endpoint
Rule stringName - 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.
Azure Native. Mission. Community Endpoint Protocol>> - Protocols. Options specified by Endpoint Protocol Enum.
- Transit
Hub stringResource Id - 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.
- Destination
Type string | DestinationType - Destination Type.
- Endpoint
Rule stringName - 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.
- Transit
Hub stringResource Id - 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.
- destination
Type String | DestinationType - Destination Type.
- endpoint
Rule StringName - Endpoint Rule Name.
- ports String
- Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
- protocols
List<Either<String,Community
Endpoint Protocol>> - Protocols. Options specified by Endpoint Protocol Enum.
- transit
Hub StringResource Id - 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.
- destination
Type string | DestinationType - Destination Type.
- endpoint
Rule stringName - Endpoint Rule Name.
- ports string
- Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
- protocols
(string | Community
Endpoint Protocol)[] - Protocols. Options specified by Endpoint Protocol Enum.
- transit
Hub stringResource Id - 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_ strname - Endpoint Rule Name.
- ports str
- Port. Can include multiple ports separated by commas or a range indicated by a hyphen.
- protocols
Sequence[Union[str, Community
Endpoint Protocol]] - Protocols. Options specified by Endpoint Protocol Enum.
- transit_
hub_ strresource_ id - 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.
- destination
Type String | "FQDN" | "FQDNTag" | "IPAddress" | "PrivateNetwork" - Destination Type.
- endpoint
Rule StringName - 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.
- transit
Hub StringResource Id - 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.
- Destination
Type string - Destination Type.
- Endpoint
Rule stringName - 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.
- Transit
Hub stringResource Id - 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.
- Destination
Type string - Destination Type.
- Endpoint
Rule stringName - 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.
- Transit
Hub stringResource Id - 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.
- destination
Type String - Destination Type.
- endpoint
Rule StringName - 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.
- transit
Hub StringResource Id - 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.
- destination
Type string - Destination Type.
- endpoint
Rule stringName - 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.
- transit
Hub stringResource Id - 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_ strname - 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_ strresource_ id - 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.
- destination
Type String - Destination Type.
- endpoint
Rule StringName - 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.
- transit
Hub StringResource Id - 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
- Community
Endpoint Protocol ANY - ANYCommunityEndpointProtocol Type ANY
- Community
Endpoint Protocol TCP - TCPCommunityEndpointProtocol Type TCP
- Community
Endpoint Protocol UDP - UDPCommunityEndpointProtocol Type UDP
- Community
Endpoint Protocol ICMP - ICMPCommunityEndpointProtocol Type ICMP
- Community
Endpoint Protocol ESP - ESPCommunityEndpointProtocol Type ESP
- Community
Endpoint Protocol AH - AHCommunityEndpointProtocol Type AH
- Community
Endpoint Protocol HTTPS - HTTPSCommunityEndpointProtocol Type HTTPS
- Community
Endpoint Protocol 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
- "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
- Private
Network - PrivateNetworkDestinationType Type PrivateNetwork
- Destination
Type FQDN - FQDNDestinationType Type FQDN
- Destination
Type FQDNTag - FQDNTagDestinationType Type FQDNTag
- Destination
Type IPAddress - IPAddressDestinationType Type IPAddress
- Destination
Type Private Network - PrivateNetworkDestinationType Type PrivateNetwork
- FQDN
- FQDNDestinationType Type FQDN
- FQDNTag
- FQDNTagDestinationType Type FQDNTag
- IPAddress
- IPAddressDestinationType Type IPAddress
- Private
Network - PrivateNetworkDestinationType Type PrivateNetwork
- FQDN
- FQDNDestinationType Type FQDN
- FQDNTag
- FQDNTagDestinationType Type FQDNTag
- IPAddress
- IPAddressDestinationType Type IPAddress
- Private
Network - 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
- "Private
Network" - PrivateNetworkDestinationType Type PrivateNetwork
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: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