1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getIotDigitalTwinAdapters
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi

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

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDigitalTwinAdapters = oci.oci.getIotDigitalTwinAdapters({
        iotDomainId: testIotDomain.id,
        digitalTwinModelId: testDigitalTwinModel.id,
        digitalTwinModelSpecUri: digitalTwinAdapterDigitalTwinModelSpecUri,
        displayName: digitalTwinAdapterDisplayName,
        id: digitalTwinAdapterId,
        state: digitalTwinAdapterState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_digital_twin_adapters = oci.oci.get_iot_digital_twin_adapters(iot_domain_id=test_iot_domain["id"],
        digital_twin_model_id=test_digital_twin_model["id"],
        digital_twin_model_spec_uri=digital_twin_adapter_digital_twin_model_spec_uri,
        display_name=digital_twin_adapter_display_name,
        id=digital_twin_adapter_id,
        state=digital_twin_adapter_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.GetIotDigitalTwinAdapters(ctx, &oci.GetIotDigitalTwinAdaptersArgs{
    			IotDomainId:             testIotDomain.Id,
    			DigitalTwinModelId:      pulumi.StringRef(testDigitalTwinModel.Id),
    			DigitalTwinModelSpecUri: pulumi.StringRef(digitalTwinAdapterDigitalTwinModelSpecUri),
    			DisplayName:             pulumi.StringRef(digitalTwinAdapterDisplayName),
    			Id:                      pulumi.StringRef(digitalTwinAdapterId),
    			State:                   pulumi.StringRef(digitalTwinAdapterState),
    		}, 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 testDigitalTwinAdapters = Oci.Oci.GetIotDigitalTwinAdapters.Invoke(new()
        {
            IotDomainId = testIotDomain.Id,
            DigitalTwinModelId = testDigitalTwinModel.Id,
            DigitalTwinModelSpecUri = digitalTwinAdapterDigitalTwinModelSpecUri,
            DisplayName = digitalTwinAdapterDisplayName,
            Id = digitalTwinAdapterId,
            State = digitalTwinAdapterState,
        });
    
    });
    
    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.GetIotDigitalTwinAdaptersArgs;
    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 testDigitalTwinAdapters = OciFunctions.getIotDigitalTwinAdapters(GetIotDigitalTwinAdaptersArgs.builder()
                .iotDomainId(testIotDomain.id())
                .digitalTwinModelId(testDigitalTwinModel.id())
                .digitalTwinModelSpecUri(digitalTwinAdapterDigitalTwinModelSpecUri)
                .displayName(digitalTwinAdapterDisplayName)
                .id(digitalTwinAdapterId)
                .state(digitalTwinAdapterState)
                .build());
    
        }
    }
    
    variables:
      testDigitalTwinAdapters:
        fn::invoke:
          function: oci:oci:getIotDigitalTwinAdapters
          arguments:
            iotDomainId: ${testIotDomain.id}
            digitalTwinModelId: ${testDigitalTwinModel.id}
            digitalTwinModelSpecUri: ${digitalTwinAdapterDigitalTwinModelSpecUri}
            displayName: ${digitalTwinAdapterDisplayName}
            id: ${digitalTwinAdapterId}
            state: ${digitalTwinAdapterState}
    

    Using getIotDigitalTwinAdapters

    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 getIotDigitalTwinAdapters(args: GetIotDigitalTwinAdaptersArgs, opts?: InvokeOptions): Promise<GetIotDigitalTwinAdaptersResult>
    function getIotDigitalTwinAdaptersOutput(args: GetIotDigitalTwinAdaptersOutputArgs, opts?: InvokeOptions): Output<GetIotDigitalTwinAdaptersResult>
    def get_iot_digital_twin_adapters(digital_twin_model_id: Optional[str] = None,
                                      digital_twin_model_spec_uri: Optional[str] = None,
                                      display_name: Optional[str] = None,
                                      filters: Optional[Sequence[GetIotDigitalTwinAdaptersFilter]] = None,
                                      id: Optional[str] = None,
                                      iot_domain_id: Optional[str] = None,
                                      state: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetIotDigitalTwinAdaptersResult
    def get_iot_digital_twin_adapters_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[GetIotDigitalTwinAdaptersFilterArgs]]]] = 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[GetIotDigitalTwinAdaptersResult]
    func GetIotDigitalTwinAdapters(ctx *Context, args *GetIotDigitalTwinAdaptersArgs, opts ...InvokeOption) (*GetIotDigitalTwinAdaptersResult, error)
    func GetIotDigitalTwinAdaptersOutput(ctx *Context, args *GetIotDigitalTwinAdaptersOutputArgs, opts ...InvokeOption) GetIotDigitalTwinAdaptersResultOutput

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

    public static class GetIotDigitalTwinAdapters 
    {
        public static Task<GetIotDigitalTwinAdaptersResult> InvokeAsync(GetIotDigitalTwinAdaptersArgs args, InvokeOptions? opts = null)
        public static Output<GetIotDigitalTwinAdaptersResult> Invoke(GetIotDigitalTwinAdaptersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIotDigitalTwinAdaptersResult> getIotDigitalTwinAdapters(GetIotDigitalTwinAdaptersArgs args, InvokeOptions options)
    public static Output<GetIotDigitalTwinAdaptersResult> getIotDigitalTwinAdapters(GetIotDigitalTwinAdaptersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getIotDigitalTwinAdapters:getIotDigitalTwinAdapters
      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<GetIotDigitalTwinAdaptersFilter>
    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 []GetIotDigitalTwinAdaptersFilter
    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<GetIotDigitalTwinAdaptersFilter>
    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 GetIotDigitalTwinAdaptersFilter[]
    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[GetIotDigitalTwinAdaptersFilter]
    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.

    getIotDigitalTwinAdapters Result

    The following output properties are available:

    DigitalTwinAdapterCollections List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollection>
    The list of digital_twin_adapter_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<GetIotDigitalTwinAdaptersFilter>
    Id string
    The OCID of the resource.
    State string
    The current state of the digital twin adapter.
    DigitalTwinAdapterCollections []GetIotDigitalTwinAdaptersDigitalTwinAdapterCollection
    The list of digital_twin_adapter_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 []GetIotDigitalTwinAdaptersFilter
    Id string
    The OCID of the resource.
    State string
    The current state of the digital twin adapter.
    digitalTwinAdapterCollections List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollection>
    The list of digital_twin_adapter_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<GetIotDigitalTwinAdaptersFilter>
    id String
    The OCID of the resource.
    state String
    The current state of the digital twin adapter.
    digitalTwinAdapterCollections GetIotDigitalTwinAdaptersDigitalTwinAdapterCollection[]
    The list of digital_twin_adapter_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 GetIotDigitalTwinAdaptersFilter[]
    id string
    The OCID of the resource.
    state string
    The current state of the digital twin adapter.
    digital_twin_adapter_collections Sequence[GetIotDigitalTwinAdaptersDigitalTwinAdapterCollection]
    The list of digital_twin_adapter_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[GetIotDigitalTwinAdaptersFilter]
    id str
    The OCID of the resource.
    state str
    The current state of the digital twin adapter.
    digitalTwinAdapterCollections List<Property Map>
    The list of digital_twin_adapter_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 adapter.

    Supporting Types

    GetIotDigitalTwinAdaptersDigitalTwinAdapterCollection

    GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItem

    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
    Meaningful write up about the inbound route.
    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.
    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.
    InboundEnvelopes List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelope>
    Payload containing device-specific metadata and optional value mappings used to interpret or transform that metadata. This structure includes the device endpoint, the actual payload, and an optional envelope mapping that applies JQ expressions to extract or reshape the data as needed.
    InboundRoutes List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRoute>
    list of routes
    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
    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
    Meaningful write up about the inbound route.
    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.
    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.
    InboundEnvelopes []GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelope
    Payload containing device-specific metadata and optional value mappings used to interpret or transform that metadata. This structure includes the device endpoint, the actual payload, and an optional envelope mapping that applies JQ expressions to extract or reshape the data as needed.
    InboundRoutes []GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRoute
    list of routes
    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
    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
    Meaningful write up about the inbound route.
    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.
    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.
    inboundEnvelopes List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelope>
    Payload containing device-specific metadata and optional value mappings used to interpret or transform that metadata. This structure includes the device endpoint, the actual payload, and an optional envelope mapping that applies JQ expressions to extract or reshape the data as needed.
    inboundRoutes List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRoute>
    list of routes
    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
    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
    Meaningful write up about the inbound route.
    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.
    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.
    inboundEnvelopes GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelope[]
    Payload containing device-specific metadata and optional value mappings used to interpret or transform that metadata. This structure includes the device endpoint, the actual payload, and an optional envelope mapping that applies JQ expressions to extract or reshape the data as needed.
    inboundRoutes GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRoute[]
    list of routes
    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
    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
    Meaningful write up about the inbound route.
    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.
    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.
    inbound_envelopes Sequence[GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelope]
    Payload containing device-specific metadata and optional value mappings used to interpret or transform that metadata. This structure includes the device endpoint, the actual payload, and an optional envelope mapping that applies JQ expressions to extract or reshape the data as needed.
    inbound_routes Sequence[GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRoute]
    list of routes
    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
    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
    Meaningful write up about the inbound route.
    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.
    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.
    inboundEnvelopes List<Property Map>
    Payload containing device-specific metadata and optional value mappings used to interpret or transform that metadata. This structure includes the device endpoint, the actual payload, and an optional envelope mapping that applies JQ expressions to extract or reshape the data as needed.
    inboundRoutes List<Property Map>
    list of routes
    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

    GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelope

    EnvelopeMappings List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeEnvelopeMapping>
    Maps the metadata fields from the inbound payload using JQ. These mappings allow you to extract specific metadata such as timestamps using JQ expressions.
    ReferenceEndpoint string
    The device endpoint.
    ReferencePayloads List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeReferencePayload>
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    EnvelopeMappings []GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeEnvelopeMapping
    Maps the metadata fields from the inbound payload using JQ. These mappings allow you to extract specific metadata such as timestamps using JQ expressions.
    ReferenceEndpoint string
    The device endpoint.
    ReferencePayloads []GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeReferencePayload
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    envelopeMappings List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeEnvelopeMapping>
    Maps the metadata fields from the inbound payload using JQ. These mappings allow you to extract specific metadata such as timestamps using JQ expressions.
    referenceEndpoint String
    The device endpoint.
    referencePayloads List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeReferencePayload>
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    envelopeMappings GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeEnvelopeMapping[]
    Maps the metadata fields from the inbound payload using JQ. These mappings allow you to extract specific metadata such as timestamps using JQ expressions.
    referenceEndpoint string
    The device endpoint.
    referencePayloads GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeReferencePayload[]
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    envelope_mappings Sequence[GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeEnvelopeMapping]
    Maps the metadata fields from the inbound payload using JQ. These mappings allow you to extract specific metadata such as timestamps using JQ expressions.
    reference_endpoint str
    The device endpoint.
    reference_payloads Sequence[GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeReferencePayload]
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    envelopeMappings List<Property Map>
    Maps the metadata fields from the inbound payload using JQ. These mappings allow you to extract specific metadata such as timestamps using JQ expressions.
    referenceEndpoint String
    The device endpoint.
    referencePayloads List<Property Map>
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.

    GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeEnvelopeMapping

    TimeObserved string
    JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using timeReceived as the timestamp. Example: For payload {"time": "<timestamp>","temp": 65,"hum": 55} 'timeObserved' can be mapped as JQ Expression $.time.
    TimeObserved string
    JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using timeReceived as the timestamp. Example: For payload {"time": "<timestamp>","temp": 65,"hum": 55} 'timeObserved' can be mapped as JQ Expression $.time.
    timeObserved String
    JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using timeReceived as the timestamp. Example: For payload {"time": "<timestamp>","temp": 65,"hum": 55} 'timeObserved' can be mapped as JQ Expression $.time.
    timeObserved string
    JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using timeReceived as the timestamp. Example: For payload {"time": "<timestamp>","temp": 65,"hum": 55} 'timeObserved' can be mapped as JQ Expression $.time.
    time_observed str
    JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using timeReceived as the timestamp. Example: For payload {"time": "<timestamp>","temp": 65,"hum": 55} 'timeObserved' can be mapped as JQ Expression $.time.
    timeObserved String
    JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using timeReceived as the timestamp. Example: For payload {"time": "<timestamp>","temp": 65,"hum": 55} 'timeObserved' can be mapped as JQ Expression $.time.

    GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeReferencePayload

    Data Dictionary<string, string>
    JSON raw data.
    DataFormat string
    Data format of the payload.
    Data map[string]string
    JSON raw data.
    DataFormat string
    Data format of the payload.
    data Map<String,String>
    JSON raw data.
    dataFormat String
    Data format of the payload.
    data {[key: string]: string}
    JSON raw data.
    dataFormat string
    Data format of the payload.
    data Mapping[str, str]
    JSON raw data.
    data_format str
    Data format of the payload.
    data Map<String>
    JSON raw data.
    dataFormat String
    Data format of the payload.

    GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRoute

    Condition string
    A boolean expression used to determine whether the following transformation should be processed for the incoming payload. This expression is typically based on fields defined at the inbound Envelope and is evaluated before applying the payloadMapping.
    Description string
    Meaningful write up about the inbound route.
    PayloadMapping Dictionary<string, string>
    A set of key-value JQ expressions used to transform the incoming payload into a shape compatible with the digital twin model's context or schema.
    ReferencePayloads List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRouteReferencePayload>
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    Condition string
    A boolean expression used to determine whether the following transformation should be processed for the incoming payload. This expression is typically based on fields defined at the inbound Envelope and is evaluated before applying the payloadMapping.
    Description string
    Meaningful write up about the inbound route.
    PayloadMapping map[string]string
    A set of key-value JQ expressions used to transform the incoming payload into a shape compatible with the digital twin model's context or schema.
    ReferencePayloads []GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRouteReferencePayload
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    condition String
    A boolean expression used to determine whether the following transformation should be processed for the incoming payload. This expression is typically based on fields defined at the inbound Envelope and is evaluated before applying the payloadMapping.
    description String
    Meaningful write up about the inbound route.
    payloadMapping Map<String,String>
    A set of key-value JQ expressions used to transform the incoming payload into a shape compatible with the digital twin model's context or schema.
    referencePayloads List<GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRouteReferencePayload>
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    condition string
    A boolean expression used to determine whether the following transformation should be processed for the incoming payload. This expression is typically based on fields defined at the inbound Envelope and is evaluated before applying the payloadMapping.
    description string
    Meaningful write up about the inbound route.
    payloadMapping {[key: string]: string}
    A set of key-value JQ expressions used to transform the incoming payload into a shape compatible with the digital twin model's context or schema.
    referencePayloads GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRouteReferencePayload[]
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    condition str
    A boolean expression used to determine whether the following transformation should be processed for the incoming payload. This expression is typically based on fields defined at the inbound Envelope and is evaluated before applying the payloadMapping.
    description str
    Meaningful write up about the inbound route.
    payload_mapping Mapping[str, str]
    A set of key-value JQ expressions used to transform the incoming payload into a shape compatible with the digital twin model's context or schema.
    reference_payloads Sequence[GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRouteReferencePayload]
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.
    condition String
    A boolean expression used to determine whether the following transformation should be processed for the incoming payload. This expression is typically based on fields defined at the inbound Envelope and is evaluated before applying the payloadMapping.
    description String
    Meaningful write up about the inbound route.
    payloadMapping Map<String>
    A set of key-value JQ expressions used to transform the incoming payload into a shape compatible with the digital twin model's context or schema.
    referencePayloads List<Property Map>
    Reference payload structure template received from IoT device. This payload must specify its content type using the dataFormat property.

    GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRouteReferencePayload

    Data Dictionary<string, string>
    JSON raw data.
    DataFormat string
    Data format of the payload.
    Data map[string]string
    JSON raw data.
    DataFormat string
    Data format of the payload.
    data Map<String,String>
    JSON raw data.
    dataFormat String
    Data format of the payload.
    data {[key: string]: string}
    JSON raw data.
    dataFormat string
    Data format of the payload.
    data Mapping[str, str]
    JSON raw data.
    data_format str
    Data format of the payload.
    data Map<String>
    JSON raw data.
    dataFormat String
    Data format of the payload.

    GetIotDigitalTwinAdaptersFilter

    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.11.1 published on Friday, Nov 14, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate