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 Boot Volume Backups in Oracle Cloud Infrastructure Core service. * * Lists the boot volume backups in the specified compartment. You can filter the results by boot volume. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBootVolumeBackups = oci.core.getBootVolumeBackups({ * compartmentId: compartmentId, * bootVolumeId: testBootVolume.id, * displayName: bootVolumeBackupDisplayName, * sourceBootVolumeBackupId: testBootVolumeBackup.id, * state: bootVolumeBackupState, * }); * ``` */ export declare function getBootVolumeBackups(args: GetBootVolumeBackupsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBootVolumeBackups. */ export interface GetBootVolumeBackupsArgs { /** * The OCID of the boot volume. */ bootVolumeId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Core.GetBootVolumeBackupsFilter[]; /** * A filter to return only resources that originated from the given source boot volume backup. */ sourceBootVolumeBackupId?: string; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getBootVolumeBackups. */ export interface GetBootVolumeBackupsResult { /** * The list of boot_volume_backups. */ readonly bootVolumeBackups: outputs.Core.GetBootVolumeBackupsBootVolumeBackup[]; /** * The OCID of the boot volume. */ readonly bootVolumeId?: string; /** * The OCID of the compartment that contains the boot volume backup. */ readonly compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Core.GetBootVolumeBackupsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The OCID of the source boot volume backup. */ readonly sourceBootVolumeBackupId?: string; /** * The current state of a boot volume backup. */ readonly state?: string; } /** * This data source provides the list of Boot Volume Backups in Oracle Cloud Infrastructure Core service. * * Lists the boot volume backups in the specified compartment. You can filter the results by boot volume. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBootVolumeBackups = oci.core.getBootVolumeBackups({ * compartmentId: compartmentId, * bootVolumeId: testBootVolume.id, * displayName: bootVolumeBackupDisplayName, * sourceBootVolumeBackupId: testBootVolumeBackup.id, * state: bootVolumeBackupState, * }); * ``` */ export declare function getBootVolumeBackupsOutput(args: GetBootVolumeBackupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBootVolumeBackups. */ export interface GetBootVolumeBackupsOutputArgs { /** * The OCID of the boot volume. */ bootVolumeId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that originated from the given source boot volume backup. */ sourceBootVolumeBackupId?: pulumi.Input; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getBootVolumeBackups.d.ts.map