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 Occm Demand Signals in Oracle Cloud Infrastructure Capacity Management service. * * This GET call is used to list all demand signals within the compartment passed as a query parameter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOccmDemandSignals = oci.capacitymanagement.getOccmDemandSignals({ * compartmentId: compartmentId, * displayName: occmDemandSignalDisplayName, * id: occmDemandSignalId, * lifecycleDetails: occmDemandSignalLifecycleDetails, * }); * ``` */ export declare function getOccmDemandSignals(args: GetOccmDemandSignalsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOccmDemandSignals. */ export interface GetOccmDemandSignalsArgs { /** * The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes. */ compartmentId: string; /** * A filter to return only the resources that match the entire display name. The match is not case sensitive. */ displayName?: string; filters?: inputs.CapacityManagement.GetOccmDemandSignalsFilter[]; /** * A query parameter to filter the list of demand signals based on it's OCID. */ id?: string; /** * A query parameter to filter the list of demand signals based on its state. */ lifecycleDetails?: string; } /** * A collection of values returned by getOccmDemandSignals. */ export interface GetOccmDemandSignalsResult { /** * The OCID of the tenancy from which the request to create the demand signal was made. */ readonly compartmentId: string; /** * The display name of the demand signal. */ readonly displayName?: string; readonly filters?: outputs.CapacityManagement.GetOccmDemandSignalsFilter[]; /** * The OCID of the demand signal. */ readonly id?: string; /** * The different states associated with a demand signal. */ readonly lifecycleDetails?: string; /** * The list of occm_demand_signal_collection. */ readonly occmDemandSignalCollections: outputs.CapacityManagement.GetOccmDemandSignalsOccmDemandSignalCollection[]; } /** * This data source provides the list of Occm Demand Signals in Oracle Cloud Infrastructure Capacity Management service. * * This GET call is used to list all demand signals within the compartment passed as a query parameter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOccmDemandSignals = oci.capacitymanagement.getOccmDemandSignals({ * compartmentId: compartmentId, * displayName: occmDemandSignalDisplayName, * id: occmDemandSignalId, * lifecycleDetails: occmDemandSignalLifecycleDetails, * }); * ``` */ export declare function getOccmDemandSignalsOutput(args: GetOccmDemandSignalsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOccmDemandSignals. */ export interface GetOccmDemandSignalsOutputArgs { /** * The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes. */ compartmentId: pulumi.Input; /** * A filter to return only the resources that match the entire display name. The match is not case sensitive. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A query parameter to filter the list of demand signals based on it's OCID. */ id?: pulumi.Input; /** * A query parameter to filter the list of demand signals based on its state. */ lifecycleDetails?: pulumi.Input; } //# sourceMappingURL=getOccmDemandSignals.d.ts.map