import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Backup Cancel Management resource in Oracle Cloud Infrastructure Database service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database/latest/BackupCancelManagement * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database * * Cancel automatic full/incremental create backup workrequests specified by the backup Id. This cannot be used on manual backups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBackupCancelManagement = new oci.database.BackupCancelManagement("test_backup_cancel_management", { * backupId: testBackup.id, * cancelBackupTrigger: 1, * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class BackupCancelManagement extends pulumi.CustomResource { /** * Get an existing BackupCancelManagement resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: BackupCancelManagementState, opts?: pulumi.CustomResourceOptions): BackupCancelManagement; /** * Returns true if the given object is an instance of BackupCancelManagement. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is BackupCancelManagement; /** * The backup [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly backupId: pulumi.Output; /** * When changed to a different integer, re-triggers cancel backup on the backup specified by the backupId * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly cancelBackupTrigger: pulumi.Output; /** * Create a BackupCancelManagement resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: BackupCancelManagementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering BackupCancelManagement resources. */ export interface BackupCancelManagementState { /** * The backup [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ backupId?: pulumi.Input; /** * When changed to a different integer, re-triggers cancel backup on the backup specified by the backupId * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ cancelBackupTrigger?: pulumi.Input; } /** * The set of arguments for constructing a BackupCancelManagement resource. */ export interface BackupCancelManagementArgs { /** * The backup [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ backupId: pulumi.Input; /** * When changed to a different integer, re-triggers cancel backup on the backup specified by the backupId * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ cancelBackupTrigger?: pulumi.Input; } //# sourceMappingURL=backupCancelManagement.d.ts.map