import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Occm Demand Signal resource in Oracle Cloud Infrastructure Capacity Management service. * * This is a GET API which gets the detailed information about a specific demand signal. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOccmDemandSignal = oci.capacitymanagement.getOccmDemandSignal({ * occmDemandSignalId: testOccmDemandSignalOciCapacityManagementOccmDemandSignal.id, * }); * ``` */ export declare function getOccmDemandSignal(args: GetOccmDemandSignalArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOccmDemandSignal. */ export interface GetOccmDemandSignalArgs { /** * The OCID of the demand signal. */ occmDemandSignalId: string; } /** * A collection of values returned by getOccmDemandSignal. */ export interface GetOccmDemandSignalResult { /** * The OCID of the tenancy from which the request to create the demand signal was made. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Meaningful text about the demand signal. */ readonly description: string; /** * The display name of the demand signal. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the demand signal. */ readonly id: string; /** * The different states associated with a demand signal. */ readonly lifecycleDetails: string; readonly occmDemandSignalId: string; /** * The current lifecycle state of the resource. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time when the demand signal was created. */ readonly timeCreated: string; /** * The time when the demand signal was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Occm Demand Signal resource in Oracle Cloud Infrastructure Capacity Management service. * * This is a GET API which gets the detailed information about a specific demand signal. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOccmDemandSignal = oci.capacitymanagement.getOccmDemandSignal({ * occmDemandSignalId: testOccmDemandSignalOciCapacityManagementOccmDemandSignal.id, * }); * ``` */ export declare function getOccmDemandSignalOutput(args: GetOccmDemandSignalOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOccmDemandSignal. */ export interface GetOccmDemandSignalOutputArgs { /** * The OCID of the demand signal. */ occmDemandSignalId: pulumi.Input; } //# sourceMappingURL=getOccmDemandSignal.d.ts.map