import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Internal Occm Demand Signal resource in Oracle Cloud Infrastructure Capacity Management service. * * This is an internal 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 testInternalOccmDemandSignal = oci.capacitymanagement.getInternalOccmDemandSignal({ * occmDemandSignalId: testOccmDemandSignal.id, * }); * ``` */ export declare function getInternalOccmDemandSignal(args: GetInternalOccmDemandSignalArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInternalOccmDemandSignal. */ export interface GetInternalOccmDemandSignalArgs { /** * The OCID of the demand signal. */ occmDemandSignalId: string; } /** * A collection of values returned by getInternalOccmDemandSignal. */ export interface GetInternalOccmDemandSignalResult { /** * 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; }; /** * A short description 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; /** * The OCID of the customer group in which the demand signal is created. */ readonly occCustomerGroupId: string; readonly occmDemandSignalId: string; /** * The current lifecycle state of the demand signal. */ 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 Internal Occm Demand Signal resource in Oracle Cloud Infrastructure Capacity Management service. * * This is an internal 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 testInternalOccmDemandSignal = oci.capacitymanagement.getInternalOccmDemandSignal({ * occmDemandSignalId: testOccmDemandSignal.id, * }); * ``` */ export declare function getInternalOccmDemandSignalOutput(args: GetInternalOccmDemandSignalOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInternalOccmDemandSignal. */ export interface GetInternalOccmDemandSignalOutputArgs { /** * The OCID of the demand signal. */ occmDemandSignalId: pulumi.Input; } //# sourceMappingURL=getInternalOccmDemandSignal.d.ts.map