We recommend using Azure Native.
azure.digitaltwins.Instance
Explore with Pulumi AI
Manages a Digital Twins instance.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example_resources",
location: "West Europe",
});
const exampleInstance = new azure.digitaltwins.Instance("example", {
name: "example-DT",
resourceGroupName: example.name,
location: example.location,
tags: {
foo: "bar",
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example_resources",
location="West Europe")
example_instance = azure.digitaltwins.Instance("example",
name="example-DT",
resource_group_name=example.name,
location=example.location,
tags={
"foo": "bar",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/digitaltwins"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example_resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = digitaltwins.NewInstance(ctx, "example", &digitaltwins.InstanceArgs{
Name: pulumi.String("example-DT"),
ResourceGroupName: example.Name,
Location: example.Location,
Tags: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example_resources",
Location = "West Europe",
});
var exampleInstance = new Azure.DigitalTwins.Instance("example", new()
{
Name = "example-DT",
ResourceGroupName = example.Name,
Location = example.Location,
Tags =
{
{ "foo", "bar" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.digitaltwins.Instance;
import com.pulumi.azure.digitaltwins.InstanceArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example_resources")
.location("West Europe")
.build());
var exampleInstance = new Instance("exampleInstance", InstanceArgs.builder()
.name("example-DT")
.resourceGroupName(example.name())
.location(example.location())
.tags(Map.of("foo", "bar"))
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example_resources
location: West Europe
exampleInstance:
type: azure:digitaltwins:Instance
name: example
properties:
name: example-DT
resourceGroupName: ${example.name}
location: ${example.location}
tags:
foo: bar
Create Instance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
@overload
def Instance(resource_name: str,
args: InstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Instance(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
identity: Optional[InstanceIdentityArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
public Instance(String name, InstanceArgs args)
public Instance(String name, InstanceArgs args, CustomResourceOptions options)
type: azure:digitaltwins:Instance
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 InstanceArgs
- 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 InstanceArgs
- 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 InstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InstanceArgs
- 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 instanceResource = new Azure.DigitalTwins.Instance("instanceResource", new()
{
ResourceGroupName = "string",
Identity = new Azure.DigitalTwins.Inputs.InstanceIdentityArgs
{
Type = "string",
IdentityIds = new[]
{
"string",
},
PrincipalId = "string",
TenantId = "string",
},
Location = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := digitaltwins.NewInstance(ctx, "instanceResource", &digitaltwins.InstanceArgs{
ResourceGroupName: pulumi.String("string"),
Identity: &digitaltwins.InstanceIdentityArgs{
Type: pulumi.String("string"),
IdentityIds: pulumi.StringArray{
pulumi.String("string"),
},
PrincipalId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var instanceResource = new Instance("instanceResource", InstanceArgs.builder()
.resourceGroupName("string")
.identity(InstanceIdentityArgs.builder()
.type("string")
.identityIds("string")
.principalId("string")
.tenantId("string")
.build())
.location("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
instance_resource = azure.digitaltwins.Instance("instanceResource",
resource_group_name="string",
identity={
"type": "string",
"identityIds": ["string"],
"principalId": "string",
"tenantId": "string",
},
location="string",
name="string",
tags={
"string": "string",
})
const instanceResource = new azure.digitaltwins.Instance("instanceResource", {
resourceGroupName: "string",
identity: {
type: "string",
identityIds: ["string"],
principalId: "string",
tenantId: "string",
},
location: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:digitaltwins:Instance
properties:
identity:
identityIds:
- string
principalId: string
tenantId: string
type: string
location: string
name: string
resourceGroupName: string
tags:
string: string
Instance 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 Instance resource accepts the following input properties:
- Resource
Group stringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Identity
Instance
Identity - An
identity
block as defined below. - Location string
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Name string
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Digital Twins instance.
- Resource
Group stringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Identity
Instance
Identity Args - An
identity
block as defined below. - Location string
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Name string
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- map[string]string
- A mapping of tags which should be assigned to the Digital Twins instance.
- resource
Group StringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- identity
Instance
Identity - An
identity
block as defined below. - location String
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- name String
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Digital Twins instance.
- resource
Group stringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- identity
Instance
Identity - An
identity
block as defined below. - location string
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- name string
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Digital Twins instance.
- resource_
group_ strname - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- identity
Instance
Identity Args - An
identity
block as defined below. - location str
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- name str
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Digital Twins instance.
- resource
Group StringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- identity Property Map
- An
identity
block as defined below. - location String
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- name String
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- Map<String>
- A mapping of tags which should be assigned to the Digital Twins instance.
Outputs
All input properties are implicitly available as output properties. Additionally, the Instance resource produces the following output properties:
Look up Existing Instance Resource
Get an existing Instance resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: InstanceState, opts?: CustomResourceOptions): Instance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
host_name: Optional[str] = None,
identity: Optional[InstanceIdentityArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> Instance
func GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)
public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)
public static Instance get(String name, Output<String> id, InstanceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Host
Name string - The API endpoint to work with this Digital Twins instance.
- Identity
Instance
Identity - An
identity
block as defined below. - Location string
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Name string
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- Resource
Group stringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Digital Twins instance.
- Host
Name string - The API endpoint to work with this Digital Twins instance.
- Identity
Instance
Identity Args - An
identity
block as defined below. - Location string
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Name string
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- Resource
Group stringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- map[string]string
- A mapping of tags which should be assigned to the Digital Twins instance.
- host
Name String - The API endpoint to work with this Digital Twins instance.
- identity
Instance
Identity - An
identity
block as defined below. - location String
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- name String
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- resource
Group StringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Digital Twins instance.
- host
Name string - The API endpoint to work with this Digital Twins instance.
- identity
Instance
Identity - An
identity
block as defined below. - location string
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- name string
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- resource
Group stringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Digital Twins instance.
- host_
name str - The API endpoint to work with this Digital Twins instance.
- identity
Instance
Identity Args - An
identity
block as defined below. - location str
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- name str
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- resource_
group_ strname - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Digital Twins instance.
- host
Name String - The API endpoint to work with this Digital Twins instance.
- identity Property Map
- An
identity
block as defined below. - location String
- The Azure Region where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- name String
- The name which should be used for this Digital Twins instance. Changing this forces a new Digital Twins instance to be created.
- resource
Group StringName - The name of the Resource Group where the Digital Twins instance should exist. Changing this forces a new Digital Twins instance to be created.
- Map<String>
- A mapping of tags which should be assigned to the Digital Twins instance.
Supporting Types
InstanceIdentity, InstanceIdentityArgs
- Type string
- Specifies the type of Managed Service Identity that should be configured on this Digital Twins instance. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both). - Identity
Ids List<string> A list of User Assigned Managed Identity IDs to be assigned to this Digital Twins instance.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id string - The Tenant ID associated with this Managed Service Identity.
- Type string
- Specifies the type of Managed Service Identity that should be configured on this Digital Twins instance. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both). - Identity
Ids []string A list of User Assigned Managed Identity IDs to be assigned to this Digital Twins instance.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id string - The Tenant ID associated with this Managed Service Identity.
- type String
- Specifies the type of Managed Service Identity that should be configured on this Digital Twins instance. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both). - identity
Ids List<String> A list of User Assigned Managed Identity IDs to be assigned to this Digital Twins instance.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id String - The Tenant ID associated with this Managed Service Identity.
- type string
- Specifies the type of Managed Service Identity that should be configured on this Digital Twins instance. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both). - identity
Ids string[] A list of User Assigned Managed Identity IDs to be assigned to this Digital Twins instance.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal
Id string - The Principal ID associated with this Managed Service Identity.
- tenant
Id string - The Tenant ID associated with this Managed Service Identity.
- type str
- Specifies the type of Managed Service Identity that should be configured on this Digital Twins instance. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both). - identity_
ids Sequence[str] A list of User Assigned Managed Identity IDs to be assigned to this Digital Twins instance.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal_
id str - The Principal ID associated with this Managed Service Identity.
- tenant_
id str - The Tenant ID associated with this Managed Service Identity.
- type String
- Specifies the type of Managed Service Identity that should be configured on this Digital Twins instance. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both). - identity
Ids List<String> A list of User Assigned Managed Identity IDs to be assigned to this Digital Twins instance.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id String - The Tenant ID associated with this Managed Service Identity.
Import
Digital Twins instances can be imported using the resource id
, e.g.
$ pulumi import azure:digitaltwins/instance:Instance example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DigitalTwins/digitalTwinsInstances/dt1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.