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 Volume Group Backups in Oracle Cloud Infrastructure Core service. * * Lists the volume group backups in the specified compartment. You can filter the results by volume group. * For more information, see [Volume Groups](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVolumeGroupBackups = oci.core.getVolumeGroupBackups({ * compartmentId: compartmentId, * displayName: volumeGroupBackupDisplayName, * volumeGroupId: testVolumeGroup.id, * }); * ``` */ export declare function getVolumeGroupBackups(args: GetVolumeGroupBackupsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVolumeGroupBackups. */ export interface GetVolumeGroupBackupsArgs { /** * 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.GetVolumeGroupBackupsFilter[]; /** * The OCID of the volume group. */ volumeGroupId?: string; } /** * A collection of values returned by getVolumeGroupBackups. */ export interface GetVolumeGroupBackupsResult { /** * The OCID of the compartment that contains the volume group 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.GetVolumeGroupBackupsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of volume_group_backups. */ readonly volumeGroupBackups: outputs.Core.GetVolumeGroupBackupsVolumeGroupBackup[]; /** * The OCID of the source volume group. */ readonly volumeGroupId?: string; } /** * This data source provides the list of Volume Group Backups in Oracle Cloud Infrastructure Core service. * * Lists the volume group backups in the specified compartment. You can filter the results by volume group. * For more information, see [Volume Groups](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVolumeGroupBackups = oci.core.getVolumeGroupBackups({ * compartmentId: compartmentId, * displayName: volumeGroupBackupDisplayName, * volumeGroupId: testVolumeGroup.id, * }); * ``` */ export declare function getVolumeGroupBackupsOutput(args: GetVolumeGroupBackupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVolumeGroupBackups. */ export interface GetVolumeGroupBackupsOutputArgs { /** * 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>; /** * The OCID of the volume group. */ volumeGroupId?: pulumi.Input; } //# sourceMappingURL=getVolumeGroupBackups.d.ts.map