Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
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 dictionaryThe following arguments are supported:
- Iot
Domain stringId - The OCID of the IoT domain in which to list digital twin resources.
- Digital
Twin stringModel Id - Filter resources that match the specified OCID of the digital twin model.
- Digital
Twin stringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- Display
Name string - Filter resources whose display name matches the specified value.
- Filters
List<Get
Iot Digital Twin Adapters Filter> - 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 stringId - The OCID of the IoT domain in which to list digital twin resources.
- Digital
Twin stringModel Id - Filter resources that match the specified OCID of the digital twin model.
- Digital
Twin stringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- Display
Name string - Filter resources whose display name matches the specified value.
- Filters
[]Get
Iot Digital Twin Adapters Filter - 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 StringId - The OCID of the IoT domain in which to list digital twin resources.
- digital
Twin StringModel Id - Filter resources that match the specified OCID of the digital twin model.
- digital
Twin StringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- display
Name String - Filter resources whose display name matches the specified value.
- filters
List<Get
Iot Digital Twin Adapters Filter> - 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 stringId - The OCID of the IoT domain in which to list digital twin resources.
- digital
Twin stringModel Id - Filter resources that match the specified OCID of the digital twin model.
- digital
Twin stringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- display
Name string - Filter resources whose display name matches the specified value.
- filters
Get
Iot Digital Twin Adapters Filter[] - 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_ strid - The OCID of the IoT domain in which to list digital twin resources.
- digital_
twin_ strmodel_ id - Filter resources that match the specified OCID of the digital twin model.
- digital_
twin_ strmodel_ spec_ uri - 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[Get
Iot Digital Twin Adapters Filter] - 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.
- iot
Domain StringId - The OCID of the IoT domain in which to list digital twin resources.
- digital
Twin StringModel Id - Filter resources that match the specified OCID of the digital twin model.
- digital
Twin StringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- display
Name 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:
- Digital
Twin List<GetAdapter Collections Iot Digital Twin Adapters Digital Twin Adapter Collection> - The list of digital_twin_adapter_collection.
- Iot
Domain stringId - The OCID of the IoT domain.
- Digital
Twin stringModel Id - The OCID of the digital twin model.
- Digital
Twin stringModel Spec Uri - The URI of the digital twin model specification.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Iot Digital Twin Adapters Filter> - Id string
- The OCID of the resource.
- State string
- The current state of the digital twin adapter.
- Digital
Twin []GetAdapter Collections Iot Digital Twin Adapters Digital Twin Adapter Collection - The list of digital_twin_adapter_collection.
- Iot
Domain stringId - The OCID of the IoT domain.
- Digital
Twin stringModel Id - The OCID of the digital twin model.
- Digital
Twin stringModel Spec Uri - The URI of the digital twin model specification.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Iot Digital Twin Adapters Filter - Id string
- The OCID of the resource.
- State string
- The current state of the digital twin adapter.
- digital
Twin List<GetAdapter Collections Iot Digital Twin Adapters Digital Twin Adapter Collection> - The list of digital_twin_adapter_collection.
- iot
Domain StringId - The OCID of the IoT domain.
- digital
Twin StringModel Id - The OCID of the digital twin model.
- digital
Twin StringModel Spec Uri - The URI of the digital twin model specification.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Iot Digital Twin Adapters Filter> - id String
- The OCID of the resource.
- state String
- The current state of the digital twin adapter.
- digital
Twin GetAdapter Collections Iot Digital Twin Adapters Digital Twin Adapter Collection[] - The list of digital_twin_adapter_collection.
- iot
Domain stringId - The OCID of the IoT domain.
- digital
Twin stringModel Id - The OCID of the digital twin model.
- digital
Twin stringModel Spec Uri - The URI of the digital twin model specification.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Iot Digital Twin Adapters Filter[] - id string
- The OCID of the resource.
- state string
- The current state of the digital twin adapter.
- digital_
twin_ Sequence[Getadapter_ collections Iot Digital Twin Adapters Digital Twin Adapter Collection] - The list of digital_twin_adapter_collection.
- iot_
domain_ strid - The OCID of the IoT domain.
- digital_
twin_ strmodel_ id - The OCID of the digital twin model.
- digital_
twin_ strmodel_ spec_ uri - 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[Get
Iot Digital Twin Adapters Filter] - id str
- The OCID of the resource.
- state str
- The current state of the digital twin adapter.
- digital
Twin List<Property Map>Adapter Collections - The list of digital_twin_adapter_collection.
- iot
Domain StringId - The OCID of the IoT domain.
- digital
Twin StringModel Id - The OCID of the digital twin model.
- digital
Twin StringModel Spec Uri - The URI of the digital twin model specification.
- display
Name 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
- 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.
- Digital
Twin stringModel Id - Filter resources that match the specified OCID of the digital twin model.
- Digital
Twin stringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- Display
Name string - Filter resources whose display name matches the specified value.
- 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.
- Inbound
Envelopes List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope> - 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 List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route> - list of routes
- Iot
Domain stringId - The OCID of the IoT domain in which to list digital twin resources.
- State string
- Filter resources whose lifecycleState matches the specified value.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - 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 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
- 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.
- Digital
Twin stringModel Id - Filter resources that match the specified OCID of the digital twin model.
- Digital
Twin stringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- Display
Name string - Filter resources whose display name matches the specified value.
- 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.
- Inbound
Envelopes []GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope - 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 []GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route - list of routes
- Iot
Domain stringId - The OCID of the IoT domain in which to list digital twin resources.
- State string
- Filter resources whose lifecycleState matches the specified value.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - 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 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
- 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.
- digital
Twin StringModel Id - Filter resources that match the specified OCID of the digital twin model.
- digital
Twin StringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- display
Name String - Filter resources whose display name matches the specified value.
- 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.
- inbound
Envelopes List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope> - 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 List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route> - list of routes
- iot
Domain StringId - The OCID of the IoT domain in which to list digital twin resources.
- state String
- Filter resources whose lifecycleState matches the specified value.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - 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 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
- {[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.
- digital
Twin stringModel Id - Filter resources that match the specified OCID of the digital twin model.
- digital
Twin stringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- display
Name string - Filter resources whose display name matches the specified value.
- {[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.
- inbound
Envelopes GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope[] - 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 GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route[] - list of routes
- iot
Domain stringId - The OCID of the IoT domain in which to list digital twin resources.
- state string
- Filter resources whose lifecycleState matches the specified value.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - 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 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
- 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_ strmodel_ id - Filter resources that match the specified OCID of the digital twin model.
- digital_
twin_ strmodel_ spec_ uri - 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.
- 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[GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope] - 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[GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route] - list of routes
- iot_
domain_ strid - The OCID of the IoT domain in which to list digital twin resources.
- state str
- Filter resources whose lifecycleState matches the specified value.
- 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
- 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.
- digital
Twin StringModel Id - Filter resources that match the specified OCID of the digital twin model.
- digital
Twin StringModel Spec Uri - Filter resources that match the specified URI (DTMI) of the digital twin model.
- display
Name String - Filter resources whose display name matches the specified value.
- 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.
- inbound
Envelopes 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.
- inbound
Routes List<Property Map> - list of routes
- iot
Domain StringId - The OCID of the IoT domain in which to list digital twin resources.
- state String
- Filter resources whose lifecycleState matches the specified value.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - 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 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
- Envelope
Mappings List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Envelope Mapping> - 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 string - The device endpoint.
- Reference
Payloads List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Reference Payload> - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- Envelope
Mappings []GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Envelope Mapping - 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 string - The device endpoint.
- Reference
Payloads []GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Reference Payload - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- envelope
Mappings List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Envelope Mapping> - 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 String - The device endpoint.
- reference
Payloads List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Reference Payload> - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- envelope
Mappings GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Envelope Mapping[] - 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 string - The device endpoint.
- reference
Payloads GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Reference Payload[] - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- envelope_
mappings Sequence[GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Envelope Mapping] - 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[GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Envelope Reference Payload] - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- envelope
Mappings 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.
- reference
Endpoint String - The device endpoint.
- reference
Payloads List<Property Map> - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundEnvelopeEnvelopeMapping
- Time
Observed string - JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using
timeReceivedas the timestamp. Example: For payload{"time": "<timestamp>","temp": 65,"hum": 55}'timeObserved' can be mapped as JQ Expression$.time.
- Time
Observed string - JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using
timeReceivedas the timestamp. Example: For payload{"time": "<timestamp>","temp": 65,"hum": 55}'timeObserved' can be mapped as JQ Expression$.time.
- time
Observed String - JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using
timeReceivedas the timestamp. Example: For payload{"time": "<timestamp>","temp": 65,"hum": 55}'timeObserved' can be mapped as JQ Expression$.time.
- time
Observed string - JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using
timeReceivedas 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
timeReceivedas the timestamp. Example: For payload{"time": "<timestamp>","temp": 65,"hum": 55}'timeObserved' can be mapped as JQ Expression$.time.
- time
Observed String - JQ expression to extract the observation timestamp from the payload. If not specified, the system will default to using
timeReceivedas 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.
- Data
Format string - Data format of the payload.
- Data map[string]string
- JSON raw data.
- Data
Format string - Data format of the payload.
- data Map<String,String>
- JSON raw data.
- data
Format String - Data format of the payload.
- data {[key: string]: string}
- JSON raw data.
- data
Format 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.
- data
Format 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.
- Payload
Mapping 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.
- Reference
Payloads List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route Reference Payload> - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- 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.
- Payload
Mapping 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.
- Reference
Payloads []GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route Reference Payload - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- 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.
- payload
Mapping 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.
- reference
Payloads List<GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route Reference Payload> - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- 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.
- payload
Mapping {[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.
- reference
Payloads GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route Reference Payload[] - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- 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[GetIot Digital Twin Adapters Digital Twin Adapter Collection Item Inbound Route Reference Payload] - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
- 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.
- payload
Mapping 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.
- reference
Payloads List<Property Map> - Reference payload structure template received from IoT device. This payload must specify its content type using the
dataFormatproperty.
GetIotDigitalTwinAdaptersDigitalTwinAdapterCollectionItemInboundRouteReferencePayload
- Data Dictionary<string, string>
- JSON raw data.
- Data
Format string - Data format of the payload.
- Data map[string]string
- JSON raw data.
- Data
Format string - Data format of the payload.
- data Map<String,String>
- JSON raw data.
- data
Format String - Data format of the payload.
- data {[key: string]: string}
- JSON raw data.
- data
Format 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.
- data
Format String - Data format of the payload.
GetIotDigitalTwinAdaptersFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
