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 Stacks in Oracle Cloud Infrastructure Dif service. * * Gets a list of Stacks. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStacks = oci.oci.getDifStacks({ * compartmentId: compartmentId, * displayName: stackDisplayName, * id: stackId, * state: stackState, * }); * ``` */ export declare function getDifStacks(args?: GetDifStacksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDifStacks. */ export interface GetDifStacksArgs { /** * 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.oci.GetDifStacksFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Stack. */ 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 getDifStacks. */ export interface GetDifStacksResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * name of the service */ readonly displayName?: string; readonly filters?: outputs.oci.GetDifStacksFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Stack. */ readonly id?: string; /** * The list of stack_collection. */ readonly stackCollections: outputs.oci.GetDifStacksStackCollection[]; /** * The current state of the Stack. */ readonly state?: string; } /** * This data source provides the list of Stacks in Oracle Cloud Infrastructure Dif service. * * Gets a list of Stacks. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStacks = oci.oci.getDifStacks({ * compartmentId: compartmentId, * displayName: stackDisplayName, * id: stackId, * state: stackState, * }); * ``` */ export declare function getDifStacksOutput(args?: GetDifStacksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDifStacks. */ export interface GetDifStacksOutputArgs { /** * 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 Stack. */ 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=getDifStacks.d.ts.map