azure-native.mission.EnclaveEndpoint
Explore with Pulumi AI
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Rule
Collection List<Pulumi.Azure Native. Mission. Inputs. Enclave Endpoint Destination Rule> - Enclave Endpoint Rule Collection.
- Virtual
Enclave stringName - The name of the enclaveResource Resource
- Enclave
Endpoint stringName - The name of the Enclave Endpoint Resource
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Rule
Collection []EnclaveEndpoint Destination Rule Args - Enclave Endpoint Rule Collection.
- Virtual
Enclave stringName - The name of the enclaveResource Resource
- Enclave
Endpoint stringName - The name of the Enclave Endpoint Resource
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- rule
Collection List<EnclaveEndpoint Destination Rule> - Enclave Endpoint Rule Collection.
- virtual
Enclave StringName - The name of the enclaveResource Resource
- enclave
Endpoint StringName - The name of the Enclave Endpoint Resource
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- rule
Collection EnclaveEndpoint Destination Rule[] - Enclave Endpoint Rule Collection.
- virtual
Enclave stringName - The name of the enclaveResource Resource
- enclave
Endpoint stringName - The name of the Enclave Endpoint Resource
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- rule_
collection Sequence[EnclaveEndpoint Destination Rule Args] - Enclave Endpoint Rule Collection.
- virtual_
enclave_ strname - The name of the enclaveResource Resource
- enclave_
endpoint_ strname - The name of the Enclave Endpoint Resource
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- rule
Collection List<Property Map> - Enclave Endpoint Rule Collection.
- virtual
Enclave StringName - The name of the enclaveResource Resource
- enclave
Endpoint StringName - The name of the Enclave 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 EnclaveEndpoint 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
EnclaveEndpointDestinationRule, EnclaveEndpointDestinationRuleArgs
- Destination string
- Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
- 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. Enclave Endpoint Protocol>> - 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.
- 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.
- destination String
- Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
- 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,Enclave
Endpoint Protocol>> - 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.
- 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 | Enclave
Endpoint Protocol)[] - 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_ 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, Enclave
Endpoint Protocol]] - 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.
- 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">
- 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.
- 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.
- Destination string
- Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
- 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.
- destination String
- Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
- 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.
- destination string
- Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
- 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.
- destination str
- Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
- 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.
- destination String
- Destination address. Can include multiple CIDR/IP Addresses or fqdn tags or fqdns (for community endpoint) separated by commas.
- 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.
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
- Enclave
Endpoint Protocol ANY - ANYEndpointProtocol Type ANY
- Enclave
Endpoint Protocol TCP - TCPEndpointProtocol Type TCP
- Enclave
Endpoint Protocol UDP - UDPEndpointProtocol Type UDP
- Enclave
Endpoint Protocol ICMP - ICMPEndpointProtocol Type ICMP
- Enclave
Endpoint Protocol ESP - ESPEndpointProtocol Type ESP
- Enclave
Endpoint Protocol 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
- "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
- 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: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