azure-native.digitaltwins.DigitalTwin
Explore with Pulumi AI
The description of the DigitalTwins service. Azure REST API version: 2023-01-31. Prior API version in Azure Native 1.x: 2020-12-01.
Example Usage
Put a DigitalTwinsInstance resource
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var digitalTwin = new AzureNative.DigitalTwins.DigitalTwin("digitalTwin", new()
    {
        Location = "WestUS2",
        ResourceGroupName = "resRg",
        ResourceName = "myDigitalTwinsService",
    });
});
package main
import (
	digitaltwins "github.com/pulumi/pulumi-azure-native-sdk/digitaltwins/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := digitaltwins.NewDigitalTwin(ctx, "digitalTwin", &digitaltwins.DigitalTwinArgs{
			Location:          pulumi.String("WestUS2"),
			ResourceGroupName: pulumi.String("resRg"),
			ResourceName:      pulumi.String("myDigitalTwinsService"),
		})
		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.digitaltwins.DigitalTwin;
import com.pulumi.azurenative.digitaltwins.DigitalTwinArgs;
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 digitalTwin = new DigitalTwin("digitalTwin", DigitalTwinArgs.builder()
            .location("WestUS2")
            .resourceGroupName("resRg")
            .resourceName("myDigitalTwinsService")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const digitalTwin = new azure_native.digitaltwins.DigitalTwin("digitalTwin", {
    location: "WestUS2",
    resourceGroupName: "resRg",
    resourceName: "myDigitalTwinsService",
});
import pulumi
import pulumi_azure_native as azure_native
digital_twin = azure_native.digitaltwins.DigitalTwin("digitalTwin",
    location="WestUS2",
    resource_group_name="resRg",
    resource_name_="myDigitalTwinsService")
resources:
  digitalTwin:
    type: azure-native:digitaltwins:DigitalTwin
    properties:
      location: WestUS2
      resourceGroupName: resRg
      resourceName: myDigitalTwinsService
Put a DigitalTwinsInstance resource with publicNetworkAccess property
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var digitalTwin = new AzureNative.DigitalTwins.DigitalTwin("digitalTwin", new()
    {
        Location = "WestUS2",
        PublicNetworkAccess = AzureNative.DigitalTwins.PublicNetworkAccess.Enabled,
        ResourceGroupName = "resRg",
        ResourceName = "myDigitalTwinsService",
    });
});
package main
import (
	digitaltwins "github.com/pulumi/pulumi-azure-native-sdk/digitaltwins/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := digitaltwins.NewDigitalTwin(ctx, "digitalTwin", &digitaltwins.DigitalTwinArgs{
			Location:            pulumi.String("WestUS2"),
			PublicNetworkAccess: pulumi.String(digitaltwins.PublicNetworkAccessEnabled),
			ResourceGroupName:   pulumi.String("resRg"),
			ResourceName:        pulumi.String("myDigitalTwinsService"),
		})
		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.digitaltwins.DigitalTwin;
import com.pulumi.azurenative.digitaltwins.DigitalTwinArgs;
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 digitalTwin = new DigitalTwin("digitalTwin", DigitalTwinArgs.builder()
            .location("WestUS2")
            .publicNetworkAccess("Enabled")
            .resourceGroupName("resRg")
            .resourceName("myDigitalTwinsService")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const digitalTwin = new azure_native.digitaltwins.DigitalTwin("digitalTwin", {
    location: "WestUS2",
    publicNetworkAccess: azure_native.digitaltwins.PublicNetworkAccess.Enabled,
    resourceGroupName: "resRg",
    resourceName: "myDigitalTwinsService",
});
import pulumi
import pulumi_azure_native as azure_native
digital_twin = azure_native.digitaltwins.DigitalTwin("digitalTwin",
    location="WestUS2",
    public_network_access=azure_native.digitaltwins.PublicNetworkAccess.ENABLED,
    resource_group_name="resRg",
    resource_name_="myDigitalTwinsService")
resources:
  digitalTwin:
    type: azure-native:digitaltwins:DigitalTwin
    properties:
      location: WestUS2
      publicNetworkAccess: Enabled
      resourceGroupName: resRg
      resourceName: myDigitalTwinsService
Create DigitalTwin Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DigitalTwin(name: string, args: DigitalTwinArgs, opts?: CustomResourceOptions);@overload
def DigitalTwin(resource_name: str,
                args: DigitalTwinArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def DigitalTwin(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                identity: Optional[DigitalTwinsIdentityArgs] = None,
                location: Optional[str] = None,
                private_endpoint_connections: Optional[Sequence[PrivateEndpointConnectionArgs]] = None,
                public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
                resource_name_: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)func NewDigitalTwin(ctx *Context, name string, args DigitalTwinArgs, opts ...ResourceOption) (*DigitalTwin, error)public DigitalTwin(string name, DigitalTwinArgs args, CustomResourceOptions? opts = null)
public DigitalTwin(String name, DigitalTwinArgs args)
public DigitalTwin(String name, DigitalTwinArgs args, CustomResourceOptions options)
type: azure-native:digitaltwins:DigitalTwin
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 DigitalTwinArgs
- 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 DigitalTwinArgs
- 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 DigitalTwinArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DigitalTwinArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DigitalTwinArgs
- 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 digitalTwinResource = new AzureNative.DigitalTwins.DigitalTwin("digitalTwinResource", new()
{
    ResourceGroupName = "string",
    Identity = new AzureNative.DigitalTwins.Inputs.DigitalTwinsIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    PrivateEndpointConnections = new[]
    {
        new AzureNative.DigitalTwins.Inputs.PrivateEndpointConnectionArgs
        {
            Properties = new AzureNative.DigitalTwins.Inputs.ConnectionPropertiesArgs
            {
                GroupIds = new[]
                {
                    "string",
                },
                PrivateLinkServiceConnectionState = new AzureNative.DigitalTwins.Inputs.ConnectionPropertiesPrivateLinkServiceConnectionStateArgs
                {
                    Description = "string",
                    Status = "string",
                    ActionsRequired = "string",
                },
            },
        },
    },
    PublicNetworkAccess = "string",
    ResourceName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := digitaltwins.NewDigitalTwin(ctx, "digitalTwinResource", &digitaltwins.DigitalTwinArgs{
	ResourceGroupName: pulumi.String("string"),
	Identity: &digitaltwins.DigitalTwinsIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	PrivateEndpointConnections: digitaltwins.PrivateEndpointConnectionTypeArray{
		&digitaltwins.PrivateEndpointConnectionTypeArgs{
			Properties: &digitaltwins.ConnectionPropertiesArgs{
				GroupIds: pulumi.StringArray{
					pulumi.String("string"),
				},
				PrivateLinkServiceConnectionState: &digitaltwins.ConnectionPropertiesPrivateLinkServiceConnectionStateArgs{
					Description:     pulumi.String("string"),
					Status:          pulumi.String("string"),
					ActionsRequired: pulumi.String("string"),
				},
			},
		},
	},
	PublicNetworkAccess: pulumi.String("string"),
	ResourceName:        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var digitalTwinResource = new DigitalTwin("digitalTwinResource", DigitalTwinArgs.builder()
    .resourceGroupName("string")
    .identity(DigitalTwinsIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .privateEndpointConnections(PrivateEndpointConnectionArgs.builder()
        .properties(ConnectionPropertiesArgs.builder()
            .groupIds("string")
            .privateLinkServiceConnectionState(ConnectionPropertiesPrivateLinkServiceConnectionStateArgs.builder()
                .description("string")
                .status("string")
                .actionsRequired("string")
                .build())
            .build())
        .build())
    .publicNetworkAccess("string")
    .resourceName("string")
    .tags(Map.of("string", "string"))
    .build());
digital_twin_resource = azure_native.digitaltwins.DigitalTwin("digitalTwinResource",
    resource_group_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    location="string",
    private_endpoint_connections=[{
        "properties": {
            "group_ids": ["string"],
            "private_link_service_connection_state": {
                "description": "string",
                "status": "string",
                "actions_required": "string",
            },
        },
    }],
    public_network_access="string",
    resource_name_="string",
    tags={
        "string": "string",
    })
const digitalTwinResource = new azure_native.digitaltwins.DigitalTwin("digitalTwinResource", {
    resourceGroupName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    location: "string",
    privateEndpointConnections: [{
        properties: {
            groupIds: ["string"],
            privateLinkServiceConnectionState: {
                description: "string",
                status: "string",
                actionsRequired: "string",
            },
        },
    }],
    publicNetworkAccess: "string",
    resourceName: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:digitaltwins:DigitalTwin
properties:
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    privateEndpointConnections:
        - properties:
            groupIds:
                - string
            privateLinkServiceConnectionState:
                actionsRequired: string
                description: string
                status: string
    publicNetworkAccess: string
    resourceGroupName: string
    resourceName: string
    tags:
        string: string
DigitalTwin 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 DigitalTwin resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- Identity
Pulumi.Azure Native. Digital Twins. Inputs. Digital Twins Identity 
- The managed identity for the DigitalTwinsInstance.
- Location string
- The resource location.
- PrivateEndpoint List<Pulumi.Connections Azure Native. Digital Twins. Inputs. Private Endpoint Connection> 
- The private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- PublicNetwork string | Pulumi.Access Azure Native. Digital Twins. Public Network Access 
- Public network access for the DigitalTwinsInstance.
- ResourceName string
- The name of the DigitalTwinsInstance.
- Dictionary<string, string>
- The resource tags.
- ResourceGroup stringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- Identity
DigitalTwins Identity Args 
- The managed identity for the DigitalTwinsInstance.
- Location string
- The resource location.
- PrivateEndpoint []PrivateConnections Endpoint Connection Type Args 
- The private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- PublicNetwork string | PublicAccess Network Access 
- Public network access for the DigitalTwinsInstance.
- ResourceName string
- The name of the DigitalTwinsInstance.
- map[string]string
- The resource tags.
- resourceGroup StringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- identity
DigitalTwins Identity 
- The managed identity for the DigitalTwinsInstance.
- location String
- The resource location.
- privateEndpoint List<PrivateConnections Endpoint Connection> 
- The private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- publicNetwork String | PublicAccess Network Access 
- Public network access for the DigitalTwinsInstance.
- resourceName String
- The name of the DigitalTwinsInstance.
- Map<String,String>
- The resource tags.
- resourceGroup stringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- identity
DigitalTwins Identity 
- The managed identity for the DigitalTwinsInstance.
- location string
- The resource location.
- privateEndpoint PrivateConnections Endpoint Connection[] 
- The private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- publicNetwork string | PublicAccess Network Access 
- Public network access for the DigitalTwinsInstance.
- resourceName string
- The name of the DigitalTwinsInstance.
- {[key: string]: string}
- The resource tags.
- resource_group_ strname 
- The name of the resource group that contains the DigitalTwinsInstance.
- identity
DigitalTwins Identity Args 
- The managed identity for the DigitalTwinsInstance.
- location str
- The resource location.
- private_endpoint_ Sequence[Privateconnections Endpoint Connection Args] 
- The private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- public_network_ str | Publicaccess Network Access 
- Public network access for the DigitalTwinsInstance.
- resource_name str
- The name of the DigitalTwinsInstance.
- Mapping[str, str]
- The resource tags.
- resourceGroup StringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- identity Property Map
- The managed identity for the DigitalTwinsInstance.
- location String
- The resource location.
- privateEndpoint List<Property Map>Connections 
- The private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- publicNetwork String | "Enabled" | "Disabled"Access 
- Public network access for the DigitalTwinsInstance.
- resourceName String
- The name of the DigitalTwinsInstance.
- Map<String>
- The resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the DigitalTwin resource produces the following output properties:
- CreatedTime string
- Time when DigitalTwinsInstance was created.
- HostName string
- Api endpoint to work with DigitalTwinsInstance.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastUpdated stringTime 
- Time when DigitalTwinsInstance was updated.
- Name string
- The resource name.
- ProvisioningState string
- The provisioning state.
- SystemData Pulumi.Azure Native. Digital Twins. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of the DigitalTwinsInstance.
- Type string
- The resource type.
- CreatedTime string
- Time when DigitalTwinsInstance was created.
- HostName string
- Api endpoint to work with DigitalTwinsInstance.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastUpdated stringTime 
- Time when DigitalTwinsInstance was updated.
- Name string
- The resource name.
- ProvisioningState string
- The provisioning state.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the DigitalTwinsInstance.
- Type string
- The resource type.
- createdTime String
- Time when DigitalTwinsInstance was created.
- hostName String
- Api endpoint to work with DigitalTwinsInstance.
- id String
- The provider-assigned unique ID for this managed resource.
- lastUpdated StringTime 
- Time when DigitalTwinsInstance was updated.
- name String
- The resource name.
- provisioningState String
- The provisioning state.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the DigitalTwinsInstance.
- type String
- The resource type.
- createdTime string
- Time when DigitalTwinsInstance was created.
- hostName string
- Api endpoint to work with DigitalTwinsInstance.
- id string
- The provider-assigned unique ID for this managed resource.
- lastUpdated stringTime 
- Time when DigitalTwinsInstance was updated.
- name string
- The resource name.
- provisioningState string
- The provisioning state.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the DigitalTwinsInstance.
- type string
- The resource type.
- created_time str
- Time when DigitalTwinsInstance was created.
- host_name str
- Api endpoint to work with DigitalTwinsInstance.
- id str
- The provider-assigned unique ID for this managed resource.
- last_updated_ strtime 
- Time when DigitalTwinsInstance was updated.
- name str
- The resource name.
- provisioning_state str
- The provisioning state.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the DigitalTwinsInstance.
- type str
- The resource type.
- createdTime String
- Time when DigitalTwinsInstance was created.
- hostName String
- Api endpoint to work with DigitalTwinsInstance.
- id String
- The provider-assigned unique ID for this managed resource.
- lastUpdated StringTime 
- Time when DigitalTwinsInstance was updated.
- name String
- The resource name.
- provisioningState String
- The provisioning state.
- systemData Property Map
- Metadata pertaining to creation and last modification of the DigitalTwinsInstance.
- type String
- The resource type.
Supporting Types
ConnectionProperties, ConnectionPropertiesArgs    
- GroupIds List<string>
- The list of group ids for the private endpoint connection.
- PrivateLink Pulumi.Service Connection State Azure Native. Digital Twins. Inputs. Connection Properties Private Link Service Connection State 
- The connection state.
- GroupIds []string
- The list of group ids for the private endpoint connection.
- PrivateLink ConnectionService Connection State Properties Private Link Service Connection State 
- The connection state.
- groupIds List<String>
- The list of group ids for the private endpoint connection.
- privateLink ConnectionService Connection State Properties Private Link Service Connection State 
- The connection state.
- groupIds string[]
- The list of group ids for the private endpoint connection.
- privateLink ConnectionService Connection State Properties Private Link Service Connection State 
- The connection state.
- group_ids Sequence[str]
- The list of group ids for the private endpoint connection.
- private_link_ Connectionservice_ connection_ state Properties Private Link Service Connection State 
- The connection state.
- groupIds List<String>
- The list of group ids for the private endpoint connection.
- privateLink Property MapService Connection State 
- The connection state.
ConnectionPropertiesPrivateLinkServiceConnectionState, ConnectionPropertiesPrivateLinkServiceConnectionStateArgs              
- Description string
- The description for the current state of a private endpoint connection.
- Status
string | Pulumi.Azure Native. Digital Twins. Private Link Service Connection Status 
- The status of a private endpoint connection.
- ActionsRequired string
- Actions required for a private endpoint connection.
- Description string
- The description for the current state of a private endpoint connection.
- Status
string | PrivateLink Service Connection Status 
- The status of a private endpoint connection.
- ActionsRequired string
- Actions required for a private endpoint connection.
- description String
- The description for the current state of a private endpoint connection.
- status
String | PrivateLink Service Connection Status 
- The status of a private endpoint connection.
- actionsRequired String
- Actions required for a private endpoint connection.
- description string
- The description for the current state of a private endpoint connection.
- status
string | PrivateLink Service Connection Status 
- The status of a private endpoint connection.
- actionsRequired string
- Actions required for a private endpoint connection.
- description str
- The description for the current state of a private endpoint connection.
- status
str | PrivateLink Service Connection Status 
- The status of a private endpoint connection.
- actions_required str
- Actions required for a private endpoint connection.
- description String
- The description for the current state of a private endpoint connection.
- status String | "Pending" | "Approved" | "Rejected" | "Disconnected"
- The status of a private endpoint connection.
- actionsRequired String
- Actions required for a private endpoint connection.
ConnectionPropertiesResponse, ConnectionPropertiesResponseArgs      
- ProvisioningState string
- The provisioning state.
- GroupIds List<string>
- The list of group ids for the private endpoint connection.
- PrivateEndpoint Pulumi.Azure Native. Digital Twins. Inputs. Private Endpoint Response 
- The private endpoint.
- PrivateLink Pulumi.Service Connection State Azure Native. Digital Twins. Inputs. Connection Properties Response Private Link Service Connection State 
- The connection state.
- ProvisioningState string
- The provisioning state.
- GroupIds []string
- The list of group ids for the private endpoint connection.
- PrivateEndpoint PrivateEndpoint Response 
- The private endpoint.
- PrivateLink ConnectionService Connection State Properties Response Private Link Service Connection State 
- The connection state.
- provisioningState String
- The provisioning state.
- groupIds List<String>
- The list of group ids for the private endpoint connection.
- privateEndpoint PrivateEndpoint Response 
- The private endpoint.
- privateLink ConnectionService Connection State Properties Response Private Link Service Connection State 
- The connection state.
- provisioningState string
- The provisioning state.
- groupIds string[]
- The list of group ids for the private endpoint connection.
- privateEndpoint PrivateEndpoint Response 
- The private endpoint.
- privateLink ConnectionService Connection State Properties Response Private Link Service Connection State 
- The connection state.
- provisioning_state str
- The provisioning state.
- group_ids Sequence[str]
- The list of group ids for the private endpoint connection.
- private_endpoint PrivateEndpoint Response 
- The private endpoint.
- private_link_ Connectionservice_ connection_ state Properties Response Private Link Service Connection State 
- The connection state.
- provisioningState String
- The provisioning state.
- groupIds List<String>
- The list of group ids for the private endpoint connection.
- privateEndpoint Property Map
- The private endpoint.
- privateLink Property MapService Connection State 
- The connection state.
ConnectionPropertiesResponsePrivateLinkServiceConnectionState, ConnectionPropertiesResponsePrivateLinkServiceConnectionStateArgs                
- Description string
- The description for the current state of a private endpoint connection.
- Status string
- The status of a private endpoint connection.
- ActionsRequired string
- Actions required for a private endpoint connection.
- Description string
- The description for the current state of a private endpoint connection.
- Status string
- The status of a private endpoint connection.
- ActionsRequired string
- Actions required for a private endpoint connection.
- description String
- The description for the current state of a private endpoint connection.
- status String
- The status of a private endpoint connection.
- actionsRequired String
- Actions required for a private endpoint connection.
- description string
- The description for the current state of a private endpoint connection.
- status string
- The status of a private endpoint connection.
- actionsRequired string
- Actions required for a private endpoint connection.
- description str
- The description for the current state of a private endpoint connection.
- status str
- The status of a private endpoint connection.
- actions_required str
- Actions required for a private endpoint connection.
- description String
- The description for the current state of a private endpoint connection.
- status String
- The status of a private endpoint connection.
- actionsRequired String
- Actions required for a private endpoint connection.
DigitalTwinsIdentity, DigitalTwinsIdentityArgs      
- Type
string | Pulumi.Azure Native. Digital Twins. Digital Twins Identity Type 
- The type of Managed Identity used by the DigitalTwinsInstance.
- UserAssigned List<string>Identities 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- Type
string | DigitalTwins Identity Type 
- The type of Managed Identity used by the DigitalTwinsInstance.
- UserAssigned []stringIdentities 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- type
String | DigitalTwins Identity Type 
- The type of Managed Identity used by the DigitalTwinsInstance.
- userAssigned List<String>Identities 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- type
string | DigitalTwins Identity Type 
- The type of Managed Identity used by the DigitalTwinsInstance.
- userAssigned string[]Identities 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- type
str | DigitalTwins Identity Type 
- The type of Managed Identity used by the DigitalTwinsInstance.
- user_assigned_ Sequence[str]identities 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- type
String | "None" | "SystemAssigned" | "User Assigned" | "System Assigned,User Assigned" 
- The type of Managed Identity used by the DigitalTwinsInstance.
- userAssigned List<String>Identities 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
DigitalTwinsIdentityResponse, DigitalTwinsIdentityResponseArgs        
- PrincipalId string
- The object id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-identity-principal-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- TenantId string
- The tenant id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-client-tenant-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- Type string
- The type of Managed Identity used by the DigitalTwinsInstance.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Digital Twins. Inputs. User Assigned Identity Response> 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- PrincipalId string
- The object id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-identity-principal-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- TenantId string
- The tenant id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-client-tenant-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- Type string
- The type of Managed Identity used by the DigitalTwinsInstance.
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- principalId String
- The object id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-identity-principal-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- tenantId String
- The tenant id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-client-tenant-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- type String
- The type of Managed Identity used by the DigitalTwinsInstance.
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- principalId string
- The object id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-identity-principal-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- tenantId string
- The tenant id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-client-tenant-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- type string
- The type of Managed Identity used by the DigitalTwinsInstance.
- userAssigned {[key: string]: UserIdentities Assigned Identity Response} 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- principal_id str
- The object id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-identity-principal-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- tenant_id str
- The tenant id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-client-tenant-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- type str
- The type of Managed Identity used by the DigitalTwinsInstance.
- user_assigned_ Mapping[str, Useridentities Assigned Identity Response] 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
- principalId String
- The object id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-identity-principal-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- tenantId String
- The tenant id of the Managed Identity Resource. This will be sent to the RP from ARM via the x-ms-client-tenant-id header in the PUT request if the resource has a systemAssigned(implicit) identity
- type String
- The type of Managed Identity used by the DigitalTwinsInstance.
- userAssigned Map<Property Map>Identities 
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. .
DigitalTwinsIdentityType, DigitalTwinsIdentityTypeArgs        
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned,UserAssigned
- DigitalTwins Identity Type None 
- None
- DigitalTwins Identity Type System Assigned 
- SystemAssigned
- DigitalTwins Identity Type User Assigned 
- UserAssigned
- DigitalTwins Identity Type_System Assigned_User Assigned 
- SystemAssigned,UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned,UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned,User Assigned" 
- SystemAssigned,UserAssigned
PrivateEndpointConnection, PrivateEndpointConnectionArgs      
- Properties
Pulumi.Azure Native. Digital Twins. Inputs. Connection Properties 
- The connection properties.
- Properties
ConnectionProperties 
- The connection properties.
- properties
ConnectionProperties 
- The connection properties.
- properties
ConnectionProperties 
- The connection properties.
- properties
ConnectionProperties 
- The connection properties.
- properties Property Map
- The connection properties.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs        
- Id string
- The resource identifier.
- Name string
- The resource name.
- Properties
Pulumi.Azure Native. Digital Twins. Inputs. Connection Properties Response 
- The connection properties.
- SystemData Pulumi.Azure Native. Digital Twins. Inputs. System Data Response 
- Metadata pertaining to creation and last modification of the private endpoint connection.
- Type string
- The resource type.
- Id string
- The resource identifier.
- Name string
- The resource name.
- Properties
ConnectionProperties Response 
- The connection properties.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the private endpoint connection.
- Type string
- The resource type.
- id String
- The resource identifier.
- name String
- The resource name.
- properties
ConnectionProperties Response 
- The connection properties.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the private endpoint connection.
- type String
- The resource type.
- id string
- The resource identifier.
- name string
- The resource name.
- properties
ConnectionProperties Response 
- The connection properties.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the private endpoint connection.
- type string
- The resource type.
- id str
- The resource identifier.
- name str
- The resource name.
- properties
ConnectionProperties Response 
- The connection properties.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the private endpoint connection.
- type str
- The resource type.
- id String
- The resource identifier.
- name String
- The resource name.
- properties Property Map
- The connection properties.
- systemData Property Map
- Metadata pertaining to creation and last modification of the private endpoint connection.
- type String
- The resource type.
PrivateEndpointResponse, PrivateEndpointResponseArgs      
- Id string
- The resource identifier.
- Id string
- The resource identifier.
- id String
- The resource identifier.
- id string
- The resource identifier.
- id str
- The resource identifier.
- id String
- The resource identifier.
PrivateLinkServiceConnectionStatus, PrivateLinkServiceConnectionStatusArgs          
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- PrivateLink Service Connection Status Pending 
- Pending
- PrivateLink Service Connection Status Approved 
- Approved
- PrivateLink Service Connection Status Rejected 
- Rejected
- PrivateLink Service Connection Status Disconnected 
- Disconnected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- PENDING
- Pending
- APPROVED
- Approved
- REJECTED
- Rejected
- DISCONNECTED
- Disconnected
- "Pending"
- Pending
- "Approved"
- Approved
- "Rejected"
- Rejected
- "Disconnected"
- Disconnected
PublicNetworkAccess, PublicNetworkAccessArgs      
- Enabled
- Enabled
- Disabled
- Disabled
- PublicNetwork Access Enabled 
- Enabled
- PublicNetwork Access Disabled 
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs        
- ClientId string
- The client id of the User Assigned Identity Resource.
- PrincipalId string
- The object id of the User Assigned Identity Resource.
- ClientId string
- The client id of the User Assigned Identity Resource.
- PrincipalId string
- The object id of the User Assigned Identity Resource.
- clientId String
- The client id of the User Assigned Identity Resource.
- principalId String
- The object id of the User Assigned Identity Resource.
- clientId string
- The client id of the User Assigned Identity Resource.
- principalId string
- The object id of the User Assigned Identity Resource.
- client_id str
- The client id of the User Assigned Identity Resource.
- principal_id str
- The object id of the User Assigned Identity Resource.
- clientId String
- The client id of the User Assigned Identity Resource.
- principalId String
- The object id of the User Assigned Identity Resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:digitaltwins:DigitalTwin myDigitalTwinsService /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0