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 Iot Domains in Oracle Cloud Infrastructure Iot service. * * Retrieves a list of IoT domains within the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIotDomains = oci.oci.getIotIotDomains({ * compartmentId: compartmentId, * displayName: iotDomainDisplayName, * id: iotDomainId, * iotDomainGroupId: testIotDomainGroup.id, * state: iotDomainState, * }); * ``` */ export declare function getIotIotDomains(args: GetIotIotDomainsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIotIotDomains. */ export interface GetIotIotDomainsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; /** * Filter resources whose display name matches the specified value. */ displayName?: string; filters?: inputs.oci.GetIotIotDomainsFilter[]; /** * 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; /** * Filter resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain group. */ iotDomainGroupId?: string; /** * Filter resources whose lifecycleState matches the specified value. */ state?: string; } /** * A collection of values returned by getIotIotDomains. */ export interface GetIotIotDomainsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment corresponding to the resource. */ readonly compartmentId: 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.GetIotIotDomainsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource. */ readonly id?: string; /** * The list of iot_domain_collection. */ readonly iotDomainCollections: outputs.oci.GetIotIotDomainsIotDomainCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain group. */ readonly iotDomainGroupId?: string; /** * The current state of the IoT domain. */ readonly state?: string; } /** * This data source provides the list of Iot Domains in Oracle Cloud Infrastructure Iot service. * * Retrieves a list of IoT domains within the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIotDomains = oci.oci.getIotIotDomains({ * compartmentId: compartmentId, * displayName: iotDomainDisplayName, * id: iotDomainId, * iotDomainGroupId: testIotDomainGroup.id, * state: iotDomainState, * }); * ``` */ export declare function getIotIotDomainsOutput(args: GetIotIotDomainsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIotIotDomains. */ export interface GetIotIotDomainsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: 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; /** * Filter resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IoT domain group. */ iotDomainGroupId?: pulumi.Input; /** * Filter resources whose lifecycleState matches the specified value. */ state?: pulumi.Input; } //# sourceMappingURL=getIotIotDomains.d.ts.map