import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * 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 * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDigitalTwinInstances = oci.oci.getIotDigitalTwinInstances({ * iotDomainId: testIotDomain.id, * connectivityType: digitalTwinInstanceConnectivityType, * digitalTwinModelId: testDigitalTwinModel.id, * digitalTwinModelSpecUri: digitalTwinInstanceDigitalTwinModelSpecUri, * displayName: digitalTwinInstanceDisplayName, * id: digitalTwinInstanceId, * state: digitalTwinInstanceState, * }); * ``` */ export declare function getIotDigitalTwinInstances(args: GetIotDigitalTwinInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIotDigitalTwinInstances. */ export interface GetIotDigitalTwinInstancesArgs { /** * Filter resources whose connectivityType matches the specified value. */ connectivityType?: string; /** * Filter resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the digital twin model. */ digitalTwinModelId?: string; /** * Filter resources that match the specified URI (DTMI) of the digital twin model. */ digitalTwinModelSpecUri?: string; /** * Filter resources whose display name matches the specified value. */ displayName?: string; filters?: inputs.oci.GetIotDigitalTwinInstancesFilter[]; /** * Filter resources by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be a valid OCID of the resource type. */ id?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain in which to list digital twin resources. */ iotDomainId: string; /** * Filter resources whose lifecycleState matches the specified value. */ state?: string; } /** * A collection of values returned by getIotDigitalTwinInstances. */ export interface GetIotDigitalTwinInstancesResult { /** * Connectivity type of the digital twin instance */ readonly connectivityType?: string; /** * The list of digital_twin_instance_collection. */ readonly digitalTwinInstanceCollections: outputs.oci.GetIotDigitalTwinInstancesDigitalTwinInstanceCollection[]; /** * 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; readonly filters?: outputs.oci.GetIotDigitalTwinInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource. */ readonly id?: string; /** * 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 instance. */ readonly state?: string; } /** * 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 * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDigitalTwinInstances = oci.oci.getIotDigitalTwinInstances({ * iotDomainId: testIotDomain.id, * connectivityType: digitalTwinInstanceConnectivityType, * digitalTwinModelId: testDigitalTwinModel.id, * digitalTwinModelSpecUri: digitalTwinInstanceDigitalTwinModelSpecUri, * displayName: digitalTwinInstanceDisplayName, * id: digitalTwinInstanceId, * state: digitalTwinInstanceState, * }); * ``` */ export declare function getIotDigitalTwinInstancesOutput(args: GetIotDigitalTwinInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIotDigitalTwinInstances. */ export interface GetIotDigitalTwinInstancesOutputArgs { /** * Filter resources whose connectivityType matches the specified value. */ connectivityType?: pulumi.Input; /** * Filter resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the digital twin model. */ digitalTwinModelId?: pulumi.Input; /** * Filter resources that match the specified URI (DTMI) of the digital twin model. */ digitalTwinModelSpecUri?: pulumi.Input; /** * Filter resources whose display name matches the specified value. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Filter resources by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be a valid OCID of the resource type. */ id?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain in which to list digital twin resources. */ iotDomainId: pulumi.Input; /** * Filter resources whose lifecycleState matches the specified value. */ state?: pulumi.Input; } //# sourceMappingURL=getIotDigitalTwinInstances.d.ts.map