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 Queues in Oracle Cloud Infrastructure Queue service. * * Returns a list of queues. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testQueues = oci.queue.getQueues({ * compartmentId: compartmentId, * displayName: queueDisplayName, * id: queueId, * state: queueState, * }); * ``` */ export declare function getQueues(args?: GetQueuesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getQueues. */ export interface GetQueuesArgs { /** * 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 entire display name given. */ displayName?: string; filters?: inputs.Queue.GetQueuesFilter[]; /** * The unique queue identifier. */ id?: string; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getQueues. */ export interface GetQueuesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the queue. */ readonly compartmentId?: string; /** * A user-friendly name for the queue. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Queue.GetQueuesFilter[]; /** * A unique identifier for the queue that is immutable on creation. */ readonly id?: string; /** * The list of queue_collection. */ readonly queueCollections: outputs.Queue.GetQueuesQueueCollection[]; /** * The current state of the queue. */ readonly state?: string; } /** * This data source provides the list of Queues in Oracle Cloud Infrastructure Queue service. * * Returns a list of queues. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testQueues = oci.queue.getQueues({ * compartmentId: compartmentId, * displayName: queueDisplayName, * id: queueId, * state: queueState, * }); * ``` */ export declare function getQueuesOutput(args?: GetQueuesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getQueues. */ export interface GetQueuesOutputArgs { /** * 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 entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The unique queue identifier. */ id?: pulumi.Input; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getQueues.d.ts.map