1. Packages
  2. Azure Native v1
  3. API Docs
  4. digitaltwins
  5. DigitalTwin
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.digitaltwins.DigitalTwin

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    The description of the DigitalTwins service. API Version: 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"
    	"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 pulumi
    import pulumi_azure_native as azure_native
    
    digital_twin = azure_native.digitaltwins.DigitalTwin("digitalTwin",
        location="WestUS2",
        resource_group_name="resRg",
        resource_name_="myDigitalTwinsService")
    
    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",
    });
    
    resources:
      digitalTwin:
        type: azure-native:digitaltwins:DigitalTwin
        properties:
          location: WestUS2
          resourceGroupName: resRg
          resourceName: myDigitalTwinsService
    

    Put a DigitalTwinsInstance resource with identity

    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()
        {
            Identity = new AzureNative.DigitalTwins.Inputs.DigitalTwinsIdentityArgs
            {
                Type = "SystemAssigned",
            },
            Location = "WestUS2",
            ResourceGroupName = "resRg",
            ResourceName = "myDigitalTwinsService",
        });
    
    });
    
    package main
    
    import (
    	digitaltwins "github.com/pulumi/pulumi-azure-native-sdk/digitaltwins"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := digitaltwins.NewDigitalTwin(ctx, "digitalTwin", &digitaltwins.DigitalTwinArgs{
    			Identity: &digitaltwins.DigitalTwinsIdentityArgs{
    				Type: pulumi.String("SystemAssigned"),
    			},
    			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()        
                .identity(Map.of("type", "SystemAssigned"))
                .location("WestUS2")
                .resourceGroupName("resRg")
                .resourceName("myDigitalTwinsService")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    digital_twin = azure_native.digitaltwins.DigitalTwin("digitalTwin",
        identity=azure_native.digitaltwins.DigitalTwinsIdentityArgs(
            type="SystemAssigned",
        ),
        location="WestUS2",
        resource_group_name="resRg",
        resource_name_="myDigitalTwinsService")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const digitalTwin = new azure_native.digitaltwins.DigitalTwin("digitalTwin", {
        identity: {
            type: "SystemAssigned",
        },
        location: "WestUS2",
        resourceGroupName: "resRg",
        resourceName: "myDigitalTwinsService",
    });
    
    resources:
      digitalTwin:
        type: azure-native:digitaltwins:DigitalTwin
        properties:
          identity:
            type: SystemAssigned
          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 = "Enabled",
            ResourceGroupName = "resRg",
            ResourceName = "myDigitalTwinsService",
        });
    
    });
    
    package main
    
    import (
    	digitaltwins "github.com/pulumi/pulumi-azure-native-sdk/digitaltwins"
    	"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("Enabled"),
    			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 pulumi
    import pulumi_azure_native as azure_native
    
    digital_twin = azure_native.digitaltwins.DigitalTwin("digitalTwin",
        location="WestUS2",
        public_network_access="Enabled",
        resource_group_name="resRg",
        resource_name_="myDigitalTwinsService")
    
    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: "Enabled",
        resourceGroupName: "resRg",
        resourceName: "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 = 
        {
            { "type", "string" },
        },
        Location = "string",
        PrivateEndpointConnections = new[]
        {
            
            {
                { "properties", 
                {
                    { "groupIds", new[]
                    {
                        "string",
                    } },
                    { "privateLinkServiceConnectionState", 
                    {
                        { "description", "string" },
                        { "status", "string" },
                        { "actionsRequired", "string" },
                    } },
                } },
            },
        },
        PublicNetworkAccess = "string",
        ResourceName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := digitaltwins.NewDigitalTwin(ctx, "digitalTwinResource", &digitaltwins.DigitalTwinArgs{
    	ResourceGroupName: "string",
    	Identity: map[string]interface{}{
    		"type": "string",
    	},
    	Location: "string",
    	PrivateEndpointConnections: []map[string]interface{}{
    		map[string]interface{}{
    			"properties": map[string]interface{}{
    				"groupIds": []string{
    					"string",
    				},
    				"privateLinkServiceConnectionState": map[string]interface{}{
    					"description":     "string",
    					"status":          "string",
    					"actionsRequired": "string",
    				},
    			},
    		},
    	},
    	PublicNetworkAccess: "string",
    	ResourceName:        "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    })
    
    var digitalTwinResource = new DigitalTwin("digitalTwinResource", DigitalTwinArgs.builder()
        .resourceGroupName("string")
        .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .location("string")
        .privateEndpointConnections(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .publicNetworkAccess("string")
        .resourceName("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    digital_twin_resource = azure_native.digitaltwins.DigitalTwin("digitalTwinResource",
        resource_group_name=string,
        identity={
            type: string,
        },
        location=string,
        private_endpoint_connections=[{
            properties: {
                groupIds: [string],
                privateLinkServiceConnectionState: {
                    description: string,
                    status: string,
                    actionsRequired: string,
                },
            },
        }],
        public_network_access=string,
        resource_name_=string,
        tags={
            string: string,
        })
    
    const digitalTwinResource = new azure_native.digitaltwins.DigitalTwin("digitalTwinResource", {
        resourceGroupName: "string",
        identity: {
            type: "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
        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

    The DigitalTwin resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group that contains the DigitalTwinsInstance.
    Identity Pulumi.AzureNative.DigitalTwins.Inputs.DigitalTwinsIdentity
    The managed identity for the DigitalTwinsInstance.
    Location string
    The resource location.
    PrivateEndpointConnections List<Pulumi.AzureNative.DigitalTwins.Inputs.PrivateEndpointConnection>
    PublicNetworkAccess string | Pulumi.AzureNative.DigitalTwins.PublicNetworkAccess
    Public network access for the DigitalTwinsInstance.
    ResourceName string
    The name of the DigitalTwinsInstance.
    Tags Dictionary<string, string>
    The resource tags.
    ResourceGroupName string
    The name of the resource group that contains the DigitalTwinsInstance.
    Identity DigitalTwinsIdentityArgs
    The managed identity for the DigitalTwinsInstance.
    Location string
    The resource location.
    PrivateEndpointConnections []PrivateEndpointConnectionTypeArgs
    PublicNetworkAccess string | PublicNetworkAccess
    Public network access for the DigitalTwinsInstance.
    ResourceName string
    The name of the DigitalTwinsInstance.
    Tags map[string]string
    The resource tags.
    resourceGroupName String
    The name of the resource group that contains the DigitalTwinsInstance.
    identity DigitalTwinsIdentity
    The managed identity for the DigitalTwinsInstance.
    location String
    The resource location.
    privateEndpointConnections List<PrivateEndpointConnection>
    publicNetworkAccess String | PublicNetworkAccess
    Public network access for the DigitalTwinsInstance.
    resourceName String
    The name of the DigitalTwinsInstance.
    tags Map<String,String>
    The resource tags.
    resourceGroupName string
    The name of the resource group that contains the DigitalTwinsInstance.
    identity DigitalTwinsIdentity
    The managed identity for the DigitalTwinsInstance.
    location string
    The resource location.
    privateEndpointConnections PrivateEndpointConnection[]
    publicNetworkAccess string | PublicNetworkAccess
    Public network access for the DigitalTwinsInstance.
    resourceName string
    The name of the DigitalTwinsInstance.
    tags {[key: string]: string}
    The resource tags.
    resource_group_name str
    The name of the resource group that contains the DigitalTwinsInstance.
    identity DigitalTwinsIdentityArgs
    The managed identity for the DigitalTwinsInstance.
    location str
    The resource location.
    private_endpoint_connections Sequence[PrivateEndpointConnectionArgs]
    public_network_access str | PublicNetworkAccess
    Public network access for the DigitalTwinsInstance.
    resource_name str
    The name of the DigitalTwinsInstance.
    tags Mapping[str, str]
    The resource tags.
    resourceGroupName String
    The name of the resource group that contains the DigitalTwinsInstance.
    identity Property Map
    The managed identity for the DigitalTwinsInstance.
    location String
    The resource location.
    privateEndpointConnections List<Property Map>
    publicNetworkAccess String | "Enabled" | "Disabled"
    Public network access for the DigitalTwinsInstance.
    resourceName String
    The name of the DigitalTwinsInstance.
    tags 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.
    LastUpdatedTime string
    Time when DigitalTwinsInstance was updated.
    Name string
    The resource name.
    ProvisioningState string
    The provisioning state.
    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.
    LastUpdatedTime string
    Time when DigitalTwinsInstance was updated.
    Name string
    The resource name.
    ProvisioningState string
    The provisioning state.
    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.
    lastUpdatedTime String
    Time when DigitalTwinsInstance was updated.
    name String
    The resource name.
    provisioningState String
    The provisioning state.
    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.
    lastUpdatedTime string
    Time when DigitalTwinsInstance was updated.
    name string
    The resource name.
    provisioningState string
    The provisioning state.
    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_time str
    Time when DigitalTwinsInstance was updated.
    name str
    The resource name.
    provisioning_state str
    The provisioning state.
    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.
    lastUpdatedTime String
    Time when DigitalTwinsInstance was updated.
    name String
    The resource name.
    provisioningState String
    The provisioning state.
    type String
    The resource type.

    Supporting Types

    ConnectionPropertiesPrivateLinkServiceConnectionState, ConnectionPropertiesPrivateLinkServiceConnectionStateArgs

    Description string
    The description for the current state of a private endpoint connection.
    Status string | Pulumi.AzureNative.DigitalTwins.PrivateLinkServiceConnectionStatus
    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 | PrivateLinkServiceConnectionStatus
    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 | PrivateLinkServiceConnectionStatus
    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 | PrivateLinkServiceConnectionStatus
    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 | PrivateLinkServiceConnectionStatus
    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.

    ConnectionPropertiesResponsePrivateEndpoint, ConnectionPropertiesResponsePrivateEndpointArgs

    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.

    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.AzureNative.DigitalTwins.DigitalTwinsIdentityType
    The type of Managed Identity used by the DigitalTwinsInstance. Only SystemAssigned is supported.
    Type string | DigitalTwinsIdentityType
    The type of Managed Identity used by the DigitalTwinsInstance. Only SystemAssigned is supported.
    type String | DigitalTwinsIdentityType
    The type of Managed Identity used by the DigitalTwinsInstance. Only SystemAssigned is supported.
    type string | DigitalTwinsIdentityType
    The type of Managed Identity used by the DigitalTwinsInstance. Only SystemAssigned is supported.
    type str | DigitalTwinsIdentityType
    The type of Managed Identity used by the DigitalTwinsInstance. Only SystemAssigned is supported.
    type String | "None" | "SystemAssigned"
    The type of Managed Identity used by the DigitalTwinsInstance. Only SystemAssigned is supported.

    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. Only SystemAssigned is supported.
    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. Only SystemAssigned is supported.
    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. Only SystemAssigned is supported.
    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. Only SystemAssigned is supported.
    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. Only SystemAssigned is supported.
    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. Only SystemAssigned is supported.

    DigitalTwinsIdentityType, DigitalTwinsIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    DigitalTwinsIdentityTypeNone
    None
    DigitalTwinsIdentityTypeSystemAssigned
    SystemAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned

    PrivateEndpointConnection, PrivateEndpointConnectionArgs

    PrivateEndpointConnectionProperties, PrivateEndpointConnectionPropertiesArgs

    GroupIds []string
    The list of group ids for the private endpoint connection.
    PrivateLinkServiceConnectionState ConnectionPropertiesPrivateLinkServiceConnectionState
    groupIds List<String>
    The list of group ids for the private endpoint connection.
    privateLinkServiceConnectionState ConnectionPropertiesPrivateLinkServiceConnectionState
    groupIds string[]
    The list of group ids for the private endpoint connection.
    privateLinkServiceConnectionState ConnectionPropertiesPrivateLinkServiceConnectionState
    group_ids Sequence[str]
    The list of group ids for the private endpoint connection.
    private_link_service_connection_state ConnectionPropertiesPrivateLinkServiceConnectionState
    groupIds List<String>
    The list of group ids for the private endpoint connection.
    privateLinkServiceConnectionState Property Map

    PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs

    Id string
    The resource identifier.
    Name string
    The resource name.
    Properties Pulumi.AzureNative.DigitalTwins.Inputs.PrivateEndpointConnectionResponseProperties
    Type string
    The resource type.
    Id string
    The resource identifier.
    Name string
    The resource name.
    Properties PrivateEndpointConnectionResponseProperties
    Type string
    The resource type.
    id String
    The resource identifier.
    name String
    The resource name.
    properties PrivateEndpointConnectionResponseProperties
    type String
    The resource type.
    id string
    The resource identifier.
    name string
    The resource name.
    properties PrivateEndpointConnectionResponseProperties
    type string
    The resource type.
    id str
    The resource identifier.
    name str
    The resource name.
    properties PrivateEndpointConnectionResponseProperties
    type str
    The resource type.
    id String
    The resource identifier.
    name String
    The resource name.
    properties Property Map
    type String
    The resource type.

    PrivateEndpointConnectionResponseProperties, PrivateEndpointConnectionResponsePropertiesArgs

    provisioningState String
    The provisioning state.
    groupIds List<String>
    The list of group ids for the private endpoint connection.
    privateEndpoint Property Map
    privateLinkServiceConnectionState Property Map

    PrivateLinkServiceConnectionStatus, PrivateLinkServiceConnectionStatusArgs

    Pending
    Pending
    Approved
    Approved
    Rejected
    Rejected
    Disconnected
    Disconnected
    PrivateLinkServiceConnectionStatusPending
    Pending
    PrivateLinkServiceConnectionStatusApproved
    Approved
    PrivateLinkServiceConnectionStatusRejected
    Rejected
    PrivateLinkServiceConnectionStatusDisconnected
    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
    PublicNetworkAccessEnabled
    Enabled
    PublicNetworkAccessDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:digitaltwins:DigitalTwin myDigitalTwinsService /subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourcegroups/resRg/providers/Microsoft.DigitalTwins/digitalTwinsInstances/myDigitalTwinsService 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi