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 Histories in Oracle Cloud Infrastructure Optimizer service. * * Lists changes to the recommendations based on user activity. * For example, lists when recommendations have been implemented, dismissed, postponed, or reactivated. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHistories = oci.optimizer.getHistories({ * compartmentId: compartmentId, * compartmentIdInSubtree: historyCompartmentIdInSubtree === "true", * includeResourceMetadata: historyIncludeResourceMetadata === "true", * name: historyName, * recommendationId: testRecommendation.id, * recommendationName: testRecommendation.name, * resourceType: historyResourceType, * state: historyState, * status: historyStatus, * }); * ``` */ export declare function getHistories(args: GetHistoriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHistories. */ export interface GetHistoriesArgs { /** * The OCID of the compartment. */ compartmentId: string; /** * When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of `accessLevel`. * * Can only be set to true when performing ListCompartments on the tenancy (root compartment). */ compartmentIdInSubtree: boolean; filters?: inputs.Optimizer.GetHistoriesFilter[]; /** * Supplement additional resource information in extended metadata response. */ includeResourceMetadata?: boolean; /** * Optional. A filter that returns results that match the name specified. */ name?: string; /** * The unique OCID associated with the recommendation. */ recommendationId?: string; /** * Optional. A filter that returns results that match the recommendation name specified. */ recommendationName?: string; /** * Optional. A filter that returns results that match the resource type specified. */ resourceType?: string; /** * A filter that returns results that match the lifecycle state specified. */ state?: string; /** * A filter that returns recommendations that match the status specified. */ status?: string; } /** * A collection of values returned by getHistories. */ export interface GetHistoriesResult { /** * The OCID of the compartment. */ readonly compartmentId: string; readonly compartmentIdInSubtree: boolean; readonly filters?: outputs.Optimizer.GetHistoriesFilter[]; /** * The list of history_collection. */ readonly historyCollections: outputs.Optimizer.GetHistoriesHistoryCollection[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly includeResourceMetadata?: boolean; /** * The name assigned to the resource. */ readonly name?: string; /** * The unique OCID associated with the recommendation. */ readonly recommendationId?: string; /** * The name assigned to the recommendation. */ readonly recommendationName?: string; /** * The kind of resource. */ readonly resourceType?: string; /** * The recommendation history's current state. */ readonly state?: string; /** * The current status of the resource action. */ readonly status?: string; } /** * This data source provides the list of Histories in Oracle Cloud Infrastructure Optimizer service. * * Lists changes to the recommendations based on user activity. * For example, lists when recommendations have been implemented, dismissed, postponed, or reactivated. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHistories = oci.optimizer.getHistories({ * compartmentId: compartmentId, * compartmentIdInSubtree: historyCompartmentIdInSubtree === "true", * includeResourceMetadata: historyIncludeResourceMetadata === "true", * name: historyName, * recommendationId: testRecommendation.id, * recommendationName: testRecommendation.name, * resourceType: historyResourceType, * state: historyState, * status: historyStatus, * }); * ``` */ export declare function getHistoriesOutput(args: GetHistoriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHistories. */ export interface GetHistoriesOutputArgs { /** * The OCID of the compartment. */ compartmentId: pulumi.Input; /** * When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of `accessLevel`. * * Can only be set to true when performing ListCompartments on the tenancy (root compartment). */ compartmentIdInSubtree: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Supplement additional resource information in extended metadata response. */ includeResourceMetadata?: pulumi.Input; /** * Optional. A filter that returns results that match the name specified. */ name?: pulumi.Input; /** * The unique OCID associated with the recommendation. */ recommendationId?: pulumi.Input; /** * Optional. A filter that returns results that match the recommendation name specified. */ recommendationName?: pulumi.Input; /** * Optional. A filter that returns results that match the resource type specified. */ resourceType?: pulumi.Input; /** * A filter that returns results that match the lifecycle state specified. */ state?: pulumi.Input; /** * A filter that returns recommendations that match the status specified. */ status?: pulumi.Input; } //# sourceMappingURL=getHistories.d.ts.map