import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Digital Twin Adapter resource in Oracle Cloud Infrastructure Iot service. * * Retrieves the digital twin adapter identified by the specified OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDigitalTwinAdapter = oci.oci.getIotDigitalTwinAdapter({ * digitalTwinAdapterId: testDigitalTwinAdapterOciIotDigitalTwinAdapter.id, * }); * ``` */ export declare function getIotDigitalTwinAdapter(args: GetIotDigitalTwinAdapterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIotDigitalTwinAdapter. */ export interface GetIotDigitalTwinAdapterArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the digital twin adapter. */ digitalTwinAdapterId: string; } /** * A collection of values returned by getIotDigitalTwinAdapter. */ export interface GetIotDigitalTwinAdapterResult { /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Meaningful write up about the inbound route. */ readonly description: string; readonly digitalTwinAdapterId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the digital twin model. */ readonly digitalTwinModelId: string; /** * The URI of the digital twin model specification. */ readonly digitalTwinModelSpecUri: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource. */ readonly id: string; /** * 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](https://stedolan.github.io/jq/) expressions to extract or reshape the data as needed. */ readonly inboundEnvelopes: outputs.oci.GetIotDigitalTwinAdapterInboundEnvelope[]; /** * list of routes */ readonly inboundRoutes: outputs.oci.GetIotDigitalTwinAdapterInboundRoute[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain. */ readonly iotDomainId: string; /** * The current state of the digital twin adapter. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time when the resource was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time when the resource was last updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Digital Twin Adapter resource in Oracle Cloud Infrastructure Iot service. * * Retrieves the digital twin adapter identified by the specified OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDigitalTwinAdapter = oci.oci.getIotDigitalTwinAdapter({ * digitalTwinAdapterId: testDigitalTwinAdapterOciIotDigitalTwinAdapter.id, * }); * ``` */ export declare function getIotDigitalTwinAdapterOutput(args: GetIotDigitalTwinAdapterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIotDigitalTwinAdapter. */ export interface GetIotDigitalTwinAdapterOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the digital twin adapter. */ digitalTwinAdapterId: pulumi.Input; } //# sourceMappingURL=getIotDigitalTwinAdapter.d.ts.map