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 Wls Domain Server Backups in Oracle Cloud Infrastructure Wlms service. * * Gets a list of backups for the server of a specific WebLogic Domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainServerBackups = oci.oci.getWlmsWlsDomainServerBackups({ * serverId: testServer.id, * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomainServerBackups(args: GetWlmsWlsDomainServerBackupsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlmsWlsDomainServerBackups. */ export interface GetWlmsWlsDomainServerBackupsArgs { filters?: inputs.oci.GetWlmsWlsDomainServerBackupsFilter[]; /** * The unique identifier of a server. * * **Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ serverId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: string; } /** * A collection of values returned by getWlmsWlsDomainServerBackups. */ export interface GetWlmsWlsDomainServerBackupsResult { /** * The list of backup_collection. */ readonly backupCollections: outputs.oci.GetWlmsWlsDomainServerBackupsBackupCollection[]; readonly filters?: outputs.oci.GetWlmsWlsDomainServerBackupsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly serverId: string; readonly wlsDomainId: string; } /** * This data source provides the list of Wls Domain Server Backups in Oracle Cloud Infrastructure Wlms service. * * Gets a list of backups for the server of a specific WebLogic Domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWlsDomainServerBackups = oci.oci.getWlmsWlsDomainServerBackups({ * serverId: testServer.id, * wlsDomainId: testWlsDomain.id, * }); * ``` */ export declare function getWlmsWlsDomainServerBackupsOutput(args: GetWlmsWlsDomainServerBackupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlmsWlsDomainServerBackups. */ export interface GetWlmsWlsDomainServerBackupsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The unique identifier of a server. * * **Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ serverId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain. */ wlsDomainId: pulumi.Input; } //# sourceMappingURL=getWlmsWlsDomainServerBackups.d.ts.map