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 Occ Demand Signals in Oracle Cloud Infrastructure Demand Signal service. * * Gets a list of OccDemandSignals. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOccDemandSignals = oci.demandsignal.getOccDemandSignals({ * compartmentId: compartmentId, * displayName: occDemandSignalDisplayName, * id: occDemandSignalId, * state: occDemandSignalState, * }); * ``` */ export declare function getOccDemandSignals(args?: GetOccDemandSignalsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOccDemandSignals. */ export interface GetOccDemandSignalsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.DemandSignal.GetOccDemandSignalsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal. */ id?: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getOccDemandSignals. */ export interface GetOccDemandSignalsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName?: string; readonly filters?: outputs.DemandSignal.GetOccDemandSignalsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal. */ readonly id?: string; /** * The list of occ_demand_signal_collection. */ readonly occDemandSignalCollections: outputs.DemandSignal.GetOccDemandSignalsOccDemandSignalCollection[]; /** * The current state of the OccDemandSignal. */ readonly state?: string; } /** * This data source provides the list of Occ Demand Signals in Oracle Cloud Infrastructure Demand Signal service. * * Gets a list of OccDemandSignals. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOccDemandSignals = oci.demandsignal.getOccDemandSignals({ * compartmentId: compartmentId, * displayName: occDemandSignalDisplayName, * id: occDemandSignalId, * state: occDemandSignalState, * }); * ``` */ export declare function getOccDemandSignalsOutput(args?: GetOccDemandSignalsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOccDemandSignals. */ export interface GetOccDemandSignalsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OccDemandSignal. */ id?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getOccDemandSignals.d.ts.map