1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getIotDigitalTwinInstances
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.oci.getIotDigitalTwinInstances

Get Started
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

    This data source provides the list of Digital Twin Instances in Oracle Cloud Infrastructure Iot service.

    Retrieves a list of digital twin instances within the specified IoT domain.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDigitalTwinInstances = oci.oci.getIotDigitalTwinInstances({
        iotDomainId: testIotDomain.id,
        digitalTwinModelId: testDigitalTwinModel.id,
        digitalTwinModelSpecUri: digitalTwinInstanceDigitalTwinModelSpecUri,
        displayName: digitalTwinInstanceDisplayName,
        id: digitalTwinInstanceId,
        state: digitalTwinInstanceState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_digital_twin_instances = oci.oci.get_iot_digital_twin_instances(iot_domain_id=test_iot_domain["id"],
        digital_twin_model_id=test_digital_twin_model["id"],
        digital_twin_model_spec_uri=digital_twin_instance_digital_twin_model_spec_uri,
        display_name=digital_twin_instance_display_name,
        id=digital_twin_instance_id,
        state=digital_twin_instance_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.GetIotDigitalTwinInstances(ctx, &oci.GetIotDigitalTwinInstancesArgs{
    			IotDomainId:             testIotDomain.Id,
    			DigitalTwinModelId:      pulumi.StringRef(testDigitalTwinModel.Id),
    			DigitalTwinModelSpecUri: pulumi.StringRef(digitalTwinInstanceDigitalTwinModelSpecUri),
    			DisplayName:             pulumi.StringRef(digitalTwinInstanceDisplayName),
    			Id:                      pulumi.StringRef(digitalTwinInstanceId),
    			State:                   pulumi.StringRef(digitalTwinInstanceState),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testDigitalTwinInstances = Oci.Oci.GetIotDigitalTwinInstances.Invoke(new()
        {
            IotDomainId = testIotDomain.Id,
            DigitalTwinModelId = testDigitalTwinModel.Id,
            DigitalTwinModelSpecUri = digitalTwinInstanceDigitalTwinModelSpecUri,
            DisplayName = digitalTwinInstanceDisplayName,
            Id = digitalTwinInstanceId,
            State = digitalTwinInstanceState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.OciFunctions;
    import com.pulumi.oci.oci.inputs.GetIotDigitalTwinInstancesArgs;
    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) {
            final var testDigitalTwinInstances = OciFunctions.getIotDigitalTwinInstances(GetIotDigitalTwinInstancesArgs.builder()
                .iotDomainId(testIotDomain.id())
                .digitalTwinModelId(testDigitalTwinModel.id())
                .digitalTwinModelSpecUri(digitalTwinInstanceDigitalTwinModelSpecUri)
                .displayName(digitalTwinInstanceDisplayName)
                .id(digitalTwinInstanceId)
                .state(digitalTwinInstanceState)
                .build());
    
        }
    }
    
    variables:
      testDigitalTwinInstances:
        fn::invoke:
          function: oci:oci:getIotDigitalTwinInstances
          arguments:
            iotDomainId: ${testIotDomain.id}
            digitalTwinModelId: ${testDigitalTwinModel.id}
            digitalTwinModelSpecUri: ${digitalTwinInstanceDigitalTwinModelSpecUri}
            displayName: ${digitalTwinInstanceDisplayName}
            id: ${digitalTwinInstanceId}
            state: ${digitalTwinInstanceState}
    

    Using getIotDigitalTwinInstances

    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 getIotDigitalTwinInstances(args: GetIotDigitalTwinInstancesArgs, opts?: InvokeOptions): Promise<GetIotDigitalTwinInstancesResult>
    function getIotDigitalTwinInstancesOutput(args: GetIotDigitalTwinInstancesOutputArgs, opts?: InvokeOptions): Output<GetIotDigitalTwinInstancesResult>
    def get_iot_digital_twin_instances(digital_twin_model_id: Optional[str] = None,
                                       digital_twin_model_spec_uri: Optional[str] = None,
                                       display_name: Optional[str] = None,
                                       filters: Optional[Sequence[GetIotDigitalTwinInstancesFilter]] = None,
                                       id: Optional[str] = None,
                                       iot_domain_id: Optional[str] = None,
                                       state: Optional[str] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetIotDigitalTwinInstancesResult
    def get_iot_digital_twin_instances_output(digital_twin_model_id: Optional[pulumi.Input[str]] = None,
                                       digital_twin_model_spec_uri: Optional[pulumi.Input[str]] = None,
                                       display_name: Optional[pulumi.Input[str]] = None,
                                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetIotDigitalTwinInstancesFilterArgs]]]] = None,
                                       id: Optional[pulumi.Input[str]] = None,
                                       iot_domain_id: Optional[pulumi.Input[str]] = None,
                                       state: Optional[pulumi.Input[str]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetIotDigitalTwinInstancesResult]
    func GetIotDigitalTwinInstances(ctx *Context, args *GetIotDigitalTwinInstancesArgs, opts ...InvokeOption) (*GetIotDigitalTwinInstancesResult, error)
    func GetIotDigitalTwinInstancesOutput(ctx *Context, args *GetIotDigitalTwinInstancesOutputArgs, opts ...InvokeOption) GetIotDigitalTwinInstancesResultOutput

    > Note: This function is named GetIotDigitalTwinInstances in the Go SDK.

    public static class GetIotDigitalTwinInstances 
    {
        public static Task<GetIotDigitalTwinInstancesResult> InvokeAsync(GetIotDigitalTwinInstancesArgs args, InvokeOptions? opts = null)
        public static Output<GetIotDigitalTwinInstancesResult> Invoke(GetIotDigitalTwinInstancesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIotDigitalTwinInstancesResult> getIotDigitalTwinInstances(GetIotDigitalTwinInstancesArgs args, InvokeOptions options)
    public static Output<GetIotDigitalTwinInstancesResult> getIotDigitalTwinInstances(GetIotDigitalTwinInstancesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getIotDigitalTwinInstances:getIotDigitalTwinInstances
      arguments:
        # arguments dictionary

    The following arguments are supported:

    IotDomainId string
    The OCID of the IoT domain in which to list digital twin resources.
    DigitalTwinModelId string
    Filter resources that match the specified OCID of the digital twin model.
    DigitalTwinModelSpecUri string
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    DisplayName string
    Filter resources whose display name matches the specified value.
    Filters List<GetIotDigitalTwinInstancesFilter>
    Id string
    Filter resources by OCID. Must be a valid OCID of the resource type.
    State string
    Filter resources whose lifecycleState matches the specified value.
    IotDomainId string
    The OCID of the IoT domain in which to list digital twin resources.
    DigitalTwinModelId string
    Filter resources that match the specified OCID of the digital twin model.
    DigitalTwinModelSpecUri string
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    DisplayName string
    Filter resources whose display name matches the specified value.
    Filters []GetIotDigitalTwinInstancesFilter
    Id string
    Filter resources by OCID. Must be a valid OCID of the resource type.
    State string
    Filter resources whose lifecycleState matches the specified value.
    iotDomainId String
    The OCID of the IoT domain in which to list digital twin resources.
    digitalTwinModelId String
    Filter resources that match the specified OCID of the digital twin model.
    digitalTwinModelSpecUri String
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    displayName String
    Filter resources whose display name matches the specified value.
    filters List<GetIotDigitalTwinInstancesFilter>
    id String
    Filter resources by OCID. Must be a valid OCID of the resource type.
    state String
    Filter resources whose lifecycleState matches the specified value.
    iotDomainId string
    The OCID of the IoT domain in which to list digital twin resources.
    digitalTwinModelId string
    Filter resources that match the specified OCID of the digital twin model.
    digitalTwinModelSpecUri string
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    displayName string
    Filter resources whose display name matches the specified value.
    filters GetIotDigitalTwinInstancesFilter[]
    id string
    Filter resources by OCID. Must be a valid OCID of the resource type.
    state string
    Filter resources whose lifecycleState matches the specified value.
    iot_domain_id str
    The OCID of the IoT domain in which to list digital twin resources.
    digital_twin_model_id str
    Filter resources that match the specified OCID of the digital twin model.
    digital_twin_model_spec_uri str
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    display_name str
    Filter resources whose display name matches the specified value.
    filters Sequence[GetIotDigitalTwinInstancesFilter]
    id str
    Filter resources by OCID. Must be a valid OCID of the resource type.
    state str
    Filter resources whose lifecycleState matches the specified value.
    iotDomainId String
    The OCID of the IoT domain in which to list digital twin resources.
    digitalTwinModelId String
    Filter resources that match the specified OCID of the digital twin model.
    digitalTwinModelSpecUri String
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    displayName String
    Filter resources whose display name matches the specified value.
    filters List<Property Map>
    id String
    Filter resources by OCID. Must be a valid OCID of the resource type.
    state String
    Filter resources whose lifecycleState matches the specified value.

    getIotDigitalTwinInstances Result

    The following output properties are available:

    DigitalTwinInstanceCollections List<GetIotDigitalTwinInstancesDigitalTwinInstanceCollection>
    The list of digital_twin_instance_collection.
    IotDomainId string
    The OCID of the IoT domain.
    DigitalTwinModelId string
    The OCID of the digital twin model.
    DigitalTwinModelSpecUri string
    The URI of the digital twin model specification.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetIotDigitalTwinInstancesFilter>
    Id string
    The OCID of the resource.
    State string
    The current state of the digital twin instance.
    DigitalTwinInstanceCollections []GetIotDigitalTwinInstancesDigitalTwinInstanceCollection
    The list of digital_twin_instance_collection.
    IotDomainId string
    The OCID of the IoT domain.
    DigitalTwinModelId string
    The OCID of the digital twin model.
    DigitalTwinModelSpecUri string
    The URI of the digital twin model specification.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetIotDigitalTwinInstancesFilter
    Id string
    The OCID of the resource.
    State string
    The current state of the digital twin instance.
    digitalTwinInstanceCollections List<GetIotDigitalTwinInstancesDigitalTwinInstanceCollection>
    The list of digital_twin_instance_collection.
    iotDomainId String
    The OCID of the IoT domain.
    digitalTwinModelId String
    The OCID of the digital twin model.
    digitalTwinModelSpecUri String
    The URI of the digital twin model specification.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetIotDigitalTwinInstancesFilter>
    id String
    The OCID of the resource.
    state String
    The current state of the digital twin instance.
    digitalTwinInstanceCollections GetIotDigitalTwinInstancesDigitalTwinInstanceCollection[]
    The list of digital_twin_instance_collection.
    iotDomainId string
    The OCID of the IoT domain.
    digitalTwinModelId string
    The OCID of the digital twin model.
    digitalTwinModelSpecUri string
    The URI of the digital twin model specification.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetIotDigitalTwinInstancesFilter[]
    id string
    The OCID of the resource.
    state string
    The current state of the digital twin instance.
    digital_twin_instance_collections Sequence[GetIotDigitalTwinInstancesDigitalTwinInstanceCollection]
    The list of digital_twin_instance_collection.
    iot_domain_id str
    The OCID of the IoT domain.
    digital_twin_model_id str
    The OCID of the digital twin model.
    digital_twin_model_spec_uri str
    The URI of the digital twin model specification.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[GetIotDigitalTwinInstancesFilter]
    id str
    The OCID of the resource.
    state str
    The current state of the digital twin instance.
    digitalTwinInstanceCollections List<Property Map>
    The list of digital_twin_instance_collection.
    iotDomainId String
    The OCID of the IoT domain.
    digitalTwinModelId String
    The OCID of the digital twin model.
    digitalTwinModelSpecUri String
    The URI of the digital twin model specification.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>
    id String
    The OCID of the resource.
    state String
    The current state of the digital twin instance.

    Supporting Types

    GetIotDigitalTwinInstancesDigitalTwinInstanceCollection

    GetIotDigitalTwinInstancesDigitalTwinInstanceCollectionItem

    AuthId string
    The OCID of the resource (like VaultSecret, ClientCertificate etc.,) used to authenticate the digital twin instance.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    A short description of the resource.
    DigitalTwinAdapterId string
    The OCID of the digital twin adapter.
    DigitalTwinModelId string
    Filter resources that match the specified OCID of the digital twin model.
    DigitalTwinModelSpecUri string
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    DisplayName string
    Filter resources whose display name matches the specified value.
    ExternalKey string
    A unique identifier for the physical entity (typically an IoT device) represented by the digital twin instance. This could be a Bluetooth address, Ethernet MAC address, or serial number, depending on the use case. If not provided, the system will automatically generate one.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    Filter resources by OCID. Must be a valid OCID of the resource type.
    IotDomainId string
    The OCID of the IoT domain in which to list digital twin resources.
    State string
    Filter resources whose lifecycleState matches the specified value.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time when the resource was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time when the resource was last updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    AuthId string
    The OCID of the resource (like VaultSecret, ClientCertificate etc.,) used to authenticate the digital twin instance.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    A short description of the resource.
    DigitalTwinAdapterId string
    The OCID of the digital twin adapter.
    DigitalTwinModelId string
    Filter resources that match the specified OCID of the digital twin model.
    DigitalTwinModelSpecUri string
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    DisplayName string
    Filter resources whose display name matches the specified value.
    ExternalKey string
    A unique identifier for the physical entity (typically an IoT device) represented by the digital twin instance. This could be a Bluetooth address, Ethernet MAC address, or serial number, depending on the use case. If not provided, the system will automatically generate one.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    Filter resources by OCID. Must be a valid OCID of the resource type.
    IotDomainId string
    The OCID of the IoT domain in which to list digital twin resources.
    State string
    Filter resources whose lifecycleState matches the specified value.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time when the resource was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time when the resource was last updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    authId String
    The OCID of the resource (like VaultSecret, ClientCertificate etc.,) used to authenticate the digital twin instance.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    A short description of the resource.
    digitalTwinAdapterId String
    The OCID of the digital twin adapter.
    digitalTwinModelId String
    Filter resources that match the specified OCID of the digital twin model.
    digitalTwinModelSpecUri String
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    displayName String
    Filter resources whose display name matches the specified value.
    externalKey String
    A unique identifier for the physical entity (typically an IoT device) represented by the digital twin instance. This could be a Bluetooth address, Ethernet MAC address, or serial number, depending on the use case. If not provided, the system will automatically generate one.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    Filter resources by OCID. Must be a valid OCID of the resource type.
    iotDomainId String
    The OCID of the IoT domain in which to list digital twin resources.
    state String
    Filter resources whose lifecycleState matches the specified value.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time when the resource was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time when the resource was last updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    authId string
    The OCID of the resource (like VaultSecret, ClientCertificate etc.,) used to authenticate the digital twin instance.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    A short description of the resource.
    digitalTwinAdapterId string
    The OCID of the digital twin adapter.
    digitalTwinModelId string
    Filter resources that match the specified OCID of the digital twin model.
    digitalTwinModelSpecUri string
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    displayName string
    Filter resources whose display name matches the specified value.
    externalKey string
    A unique identifier for the physical entity (typically an IoT device) represented by the digital twin instance. This could be a Bluetooth address, Ethernet MAC address, or serial number, depending on the use case. If not provided, the system will automatically generate one.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    Filter resources by OCID. Must be a valid OCID of the resource type.
    iotDomainId string
    The OCID of the IoT domain in which to list digital twin resources.
    state string
    Filter resources whose lifecycleState matches the specified value.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time when the resource was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time when the resource was last updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    auth_id str
    The OCID of the resource (like VaultSecret, ClientCertificate etc.,) used to authenticate the digital twin instance.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    A short description of the resource.
    digital_twin_adapter_id str
    The OCID of the digital twin adapter.
    digital_twin_model_id str
    Filter resources that match the specified OCID of the digital twin model.
    digital_twin_model_spec_uri str
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    display_name str
    Filter resources whose display name matches the specified value.
    external_key str
    A unique identifier for the physical entity (typically an IoT device) represented by the digital twin instance. This could be a Bluetooth address, Ethernet MAC address, or serial number, depending on the use case. If not provided, the system will automatically generate one.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    Filter resources by OCID. Must be a valid OCID of the resource type.
    iot_domain_id str
    The OCID of the IoT domain in which to list digital twin resources.
    state str
    Filter resources whose lifecycleState matches the specified value.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time when the resource was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time when the resource was last updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    authId String
    The OCID of the resource (like VaultSecret, ClientCertificate etc.,) used to authenticate the digital twin instance.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    A short description of the resource.
    digitalTwinAdapterId String
    The OCID of the digital twin adapter.
    digitalTwinModelId String
    Filter resources that match the specified OCID of the digital twin model.
    digitalTwinModelSpecUri String
    Filter resources that match the specified URI (DTMI) of the digital twin model.
    displayName String
    Filter resources whose display name matches the specified value.
    externalKey String
    A unique identifier for the physical entity (typically an IoT device) represented by the digital twin instance. This could be a Bluetooth address, Ethernet MAC address, or serial number, depending on the use case. If not provided, the system will automatically generate one.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    Filter resources by OCID. Must be a valid OCID of the resource type.
    iotDomainId String
    The OCID of the IoT domain in which to list digital twin resources.
    state String
    Filter resources whose lifecycleState matches the specified value.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time when the resource was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time when the resource was last updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    GetIotDigitalTwinInstancesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate