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 Web App Accelerations in Oracle Cloud Infrastructure Waa service. * * Gets a list of all WebAppAccelerations in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWebAppAccelerations = oci.waa.getAppAccelerations({ * compartmentId: compartmentId, * displayName: webAppAccelerationDisplayName, * id: webAppAccelerationId, * states: webAppAccelerationState, * webAppAccelerationPolicyId: testWebAppAccelerationPolicy.id, * }); * ``` */ export declare function getAppAccelerations(args: GetAppAccelerationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAppAccelerations. */ export interface GetAppAccelerationsArgs { /** * 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.Waa.GetAppAccelerationsFilter[]; /** * A filter to return only the WebAppAcceleration with the given [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ id?: string; /** * A filter to return only resources that match the given lifecycleState. */ states?: string[]; /** * A filter to return only the WebAppAcceleration with the given [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of related WebAppAccelerationPolicy. */ webAppAccelerationPolicyId?: string; } /** * A collection of values returned by getAppAccelerations. */ export interface GetAppAccelerationsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * WebAppAcceleration display name, can be renamed. */ readonly displayName?: string; readonly filters?: outputs.Waa.GetAppAccelerationsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebAppAcceleration. */ readonly id?: string; /** * The current state of the WebAppAcceleration. */ readonly states?: string[]; /** * The list of web_app_acceleration_collection. */ readonly webAppAccelerationCollections: outputs.Waa.GetAppAccelerationsWebAppAccelerationCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of WebAppAccelerationPolicy, which is attached to the resource. */ readonly webAppAccelerationPolicyId?: string; } /** * This data source provides the list of Web App Accelerations in Oracle Cloud Infrastructure Waa service. * * Gets a list of all WebAppAccelerations in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWebAppAccelerations = oci.waa.getAppAccelerations({ * compartmentId: compartmentId, * displayName: webAppAccelerationDisplayName, * id: webAppAccelerationId, * states: webAppAccelerationState, * webAppAccelerationPolicyId: testWebAppAccelerationPolicy.id, * }); * ``` */ export declare function getAppAccelerationsOutput(args: GetAppAccelerationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAppAccelerations. */ export interface GetAppAccelerationsOutputArgs { /** * 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>; /** * A filter to return only the WebAppAcceleration with the given [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ id?: pulumi.Input; /** * A filter to return only resources that match the given lifecycleState. */ states?: pulumi.Input[] | undefined>; /** * A filter to return only the WebAppAcceleration with the given [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of related WebAppAccelerationPolicy. */ webAppAccelerationPolicyId?: pulumi.Input; } //# sourceMappingURL=getAppAccelerations.d.ts.map