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 Models in Oracle Cloud Infrastructure Iot service. * * Retrieves a list of digital twin models within the specified IoT domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDigitalTwinModels = oci.oci.getIotDigitalTwinModels({ * iotDomainId: testIotDomain.id, * displayName: digitalTwinModelDisplayName, * id: digitalTwinModelId, * specUriStartsWith: digitalTwinModelSpecUriStartsWith, * state: digitalTwinModelState, * }); * ``` */ export declare function getIotDigitalTwinModels(args: GetIotDigitalTwinModelsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIotDigitalTwinModels. */ export interface GetIotDigitalTwinModelsArgs { /** * Filter resources whose display name matches the specified value. */ displayName?: string; filters?: inputs.oci.GetIotDigitalTwinModelsFilter[]; /** * 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; /** * Filters resources by spec URI prefix. For example, to search all versions of the `dtmi:example:device;1` model, pass the prefix without the version: `dtmi:example:device`. */ specUriStartsWith?: string; /** * Filter resources whose lifecycleState matches the specified value. */ state?: string; } /** * A collection of values returned by getIotDigitalTwinModels. */ export interface GetIotDigitalTwinModelsResult { /** * The list of digital_twin_model_collection. */ readonly digitalTwinModelCollections: outputs.oci.GetIotDigitalTwinModelsDigitalTwinModelCollection[]; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. If left blank, the display name will be derived from the spec. */ readonly displayName?: string; readonly filters?: outputs.oci.GetIotDigitalTwinModelsFilter[]; /** * 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; readonly specUriStartsWith?: string; /** * The current state of the digital twin model. */ readonly state?: string; } /** * This data source provides the list of Digital Twin Models in Oracle Cloud Infrastructure Iot service. * * Retrieves a list of digital twin models within the specified IoT domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDigitalTwinModels = oci.oci.getIotDigitalTwinModels({ * iotDomainId: testIotDomain.id, * displayName: digitalTwinModelDisplayName, * id: digitalTwinModelId, * specUriStartsWith: digitalTwinModelSpecUriStartsWith, * state: digitalTwinModelState, * }); * ``` */ export declare function getIotDigitalTwinModelsOutput(args: GetIotDigitalTwinModelsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIotDigitalTwinModels. */ export interface GetIotDigitalTwinModelsOutputArgs { /** * 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; /** * Filters resources by spec URI prefix. For example, to search all versions of the `dtmi:example:device;1` model, pass the prefix without the version: `dtmi:example:device`. */ specUriStartsWith?: pulumi.Input; /** * Filter resources whose lifecycleState matches the specified value. */ state?: pulumi.Input; } //# sourceMappingURL=getIotDigitalTwinModels.d.ts.map