We recommend using Azure Native.
Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Use this data source to access information about an existing Digital Twins instance.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Azure.DigitalTwins.GetInstance.InvokeAsync(new Azure.DigitalTwins.GetInstanceArgs
{
Name = "existing-digital-twins",
ResourceGroupName = "existing-resgroup",
}));
this.Id = example.Apply(example => example.Id);
}
[Output("id")]
public Output<string> Id { get; set; }
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/digitaltwins"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := digitaltwins.LookupInstance(ctx, &digitaltwins.LookupInstanceArgs{
Name: "existing-digital-twins",
ResourceGroupName: "existing-resgroup",
}, nil)
if err != nil {
return err
}
ctx.Export("id", example.Id)
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.digitaltwins.getInstance({
name: "existing-digital-twins",
resourceGroupName: "existing-resgroup",
});
export const id = example.then(example => example.id);
import pulumi
import pulumi_azure as azure
example = azure.digitaltwins.get_instance(name="existing-digital-twins",
resource_group_name="existing-resgroup")
pulumi.export("id", example.id)
Example coming soon!
Using getInstance
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getInstance(args: GetInstanceArgs, opts?: InvokeOptions): Promise<GetInstanceResult>
function getInstanceOutput(args: GetInstanceOutputArgs, opts?: InvokeOptions): Output<GetInstanceResult>def get_instance(name: Optional[str] = None,
resource_group_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInstanceResult
def get_instance_output(name: Optional[pulumi.Input[str]] = None,
resource_group_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInstanceResult]func LookupInstance(ctx *Context, args *LookupInstanceArgs, opts ...InvokeOption) (*LookupInstanceResult, error)
func LookupInstanceOutput(ctx *Context, args *LookupInstanceOutputArgs, opts ...InvokeOption) LookupInstanceResultOutput> Note: This function is named LookupInstance in the Go SDK.
public static class GetInstance
{
public static Task<GetInstanceResult> InvokeAsync(GetInstanceArgs args, InvokeOptions? opts = null)
public static Output<GetInstanceResult> Invoke(GetInstanceInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetInstanceResult> getInstance(GetInstanceArgs args, InvokeOptions options)
public static Output<GetInstanceResult> getInstance(GetInstanceArgs args, InvokeOptions options)
fn::invoke:
function: azure:digitaltwins/getInstance:getInstance
arguments:
# arguments dictionaryThe following arguments are supported:
- Name string
- The name of this Digital Twins instance.
- Resource
Group stringName - The name of the Resource Group where the Digital Twins instance exists.
- Name string
- The name of this Digital Twins instance.
- Resource
Group stringName - The name of the Resource Group where the Digital Twins instance exists.
- name String
- The name of this Digital Twins instance.
- resource
Group StringName - The name of the Resource Group where the Digital Twins instance exists.
- name string
- The name of this Digital Twins instance.
- resource
Group stringName - The name of the Resource Group where the Digital Twins instance exists.
- name str
- The name of this Digital Twins instance.
- resource_
group_ strname - The name of the Resource Group where the Digital Twins instance exists.
- name String
- The name of this Digital Twins instance.
- resource
Group StringName - The name of the Resource Group where the Digital Twins instance exists.
getInstance Result
The following output properties are available:
- Host
Name string - The Api endpoint to work with this Digital Twins instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- The Azure Region where the Digital Twins instance exists.
- Name string
- Resource
Group stringName - Dictionary<string, string>
- A mapping of tags assigned to the Digital Twins instance.
- Host
Name string - The Api endpoint to work with this Digital Twins instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- The Azure Region where the Digital Twins instance exists.
- Name string
- Resource
Group stringName - map[string]string
- A mapping of tags assigned to the Digital Twins instance.
- host
Name String - The Api endpoint to work with this Digital Twins instance.
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- The Azure Region where the Digital Twins instance exists.
- name String
- resource
Group StringName - Map<String,String>
- A mapping of tags assigned to the Digital Twins instance.
- host
Name string - The Api endpoint to work with this Digital Twins instance.
- id string
- The provider-assigned unique ID for this managed resource.
- location string
- The Azure Region where the Digital Twins instance exists.
- name string
- resource
Group stringName - {[key: string]: string}
- A mapping of tags assigned to the Digital Twins instance.
- host_
name str - The Api endpoint to work with this Digital Twins instance.
- id str
- The provider-assigned unique ID for this managed resource.
- location str
- The Azure Region where the Digital Twins instance exists.
- name str
- resource_
group_ strname - Mapping[str, str]
- A mapping of tags assigned to the Digital Twins instance.
- host
Name String - The Api endpoint to work with this Digital Twins instance.
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- The Azure Region where the Digital Twins instance exists.
- name String
- resource
Group StringName - Map<String>
- A mapping of tags assigned to the Digital Twins instance.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi