1. Packages
  2. Ibm Provider
  3. API Docs
  4. BackupRecoveryManagerCancelClusterUpgrades
ibm 1.87.0-beta1 published on Monday, Dec 22, 2025 by ibm-cloud
ibm logo
ibm 1.87.0-beta1 published on Monday, Dec 22, 2025 by ibm-cloud

    Create, update, and delete backup_recovery_manager_cancel_cluster_upgradess with this resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const backupRecoveryManagerCancelClusterUpgradesInstance = new ibm.BackupRecoveryManagerCancelClusterUpgrades("backup_recovery_manager_cancel_cluster_upgrades_instance", {});
    
    import pulumi
    import pulumi_ibm as ibm
    
    backup_recovery_manager_cancel_cluster_upgrades_instance = ibm.BackupRecoveryManagerCancelClusterUpgrades("backup_recovery_manager_cancel_cluster_upgrades_instance")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewBackupRecoveryManagerCancelClusterUpgrades(ctx, "backup_recovery_manager_cancel_cluster_upgrades_instance", nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var backupRecoveryManagerCancelClusterUpgradesInstance = new Ibm.BackupRecoveryManagerCancelClusterUpgrades("backup_recovery_manager_cancel_cluster_upgrades_instance");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.BackupRecoveryManagerCancelClusterUpgrades;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var backupRecoveryManagerCancelClusterUpgradesInstance = new BackupRecoveryManagerCancelClusterUpgrades("backupRecoveryManagerCancelClusterUpgradesInstance");
    
        }
    }
    
    resources:
      backupRecoveryManagerCancelClusterUpgradesInstance:
        type: ibm:BackupRecoveryManagerCancelClusterUpgrades
        name: backup_recovery_manager_cancel_cluster_upgrades_instance
    

    Create BackupRecoveryManagerCancelClusterUpgrades Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BackupRecoveryManagerCancelClusterUpgrades(name: string, args: BackupRecoveryManagerCancelClusterUpgradesArgs, opts?: CustomResourceOptions);
    @overload
    def BackupRecoveryManagerCancelClusterUpgrades(resource_name: str,
                                                   args: BackupRecoveryManagerCancelClusterUpgradesArgs,
                                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def BackupRecoveryManagerCancelClusterUpgrades(resource_name: str,
                                                   opts: Optional[ResourceOptions] = None,
                                                   cluster_identifiers: Optional[Sequence[str]] = None,
                                                   backup_recovery_manager_cancel_cluster_upgrades_id: Optional[str] = None,
                                                   endpoint_type: Optional[str] = None,
                                                   instance_id: Optional[str] = None,
                                                   region: Optional[str] = None)
    func NewBackupRecoveryManagerCancelClusterUpgrades(ctx *Context, name string, args BackupRecoveryManagerCancelClusterUpgradesArgs, opts ...ResourceOption) (*BackupRecoveryManagerCancelClusterUpgrades, error)
    public BackupRecoveryManagerCancelClusterUpgrades(string name, BackupRecoveryManagerCancelClusterUpgradesArgs args, CustomResourceOptions? opts = null)
    public BackupRecoveryManagerCancelClusterUpgrades(String name, BackupRecoveryManagerCancelClusterUpgradesArgs args)
    public BackupRecoveryManagerCancelClusterUpgrades(String name, BackupRecoveryManagerCancelClusterUpgradesArgs args, CustomResourceOptions options)
    
    type: ibm:BackupRecoveryManagerCancelClusterUpgrades
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args BackupRecoveryManagerCancelClusterUpgradesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args BackupRecoveryManagerCancelClusterUpgradesArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args BackupRecoveryManagerCancelClusterUpgradesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BackupRecoveryManagerCancelClusterUpgradesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BackupRecoveryManagerCancelClusterUpgradesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var backupRecoveryManagerCancelClusterUpgradesResource = new Ibm.BackupRecoveryManagerCancelClusterUpgrades("backupRecoveryManagerCancelClusterUpgradesResource", new()
    {
        ClusterIdentifiers = new[]
        {
            "string",
        },
        BackupRecoveryManagerCancelClusterUpgradesId = "string",
        EndpointType = "string",
        InstanceId = "string",
        Region = "string",
    });
    
    example, err := ibm.NewBackupRecoveryManagerCancelClusterUpgrades(ctx, "backupRecoveryManagerCancelClusterUpgradesResource", &ibm.BackupRecoveryManagerCancelClusterUpgradesArgs{
    	ClusterIdentifiers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	BackupRecoveryManagerCancelClusterUpgradesId: pulumi.String("string"),
    	EndpointType: pulumi.String("string"),
    	InstanceId:   pulumi.String("string"),
    	Region:       pulumi.String("string"),
    })
    
    var backupRecoveryManagerCancelClusterUpgradesResource = new BackupRecoveryManagerCancelClusterUpgrades("backupRecoveryManagerCancelClusterUpgradesResource", BackupRecoveryManagerCancelClusterUpgradesArgs.builder()
        .clusterIdentifiers("string")
        .backupRecoveryManagerCancelClusterUpgradesId("string")
        .endpointType("string")
        .instanceId("string")
        .region("string")
        .build());
    
    backup_recovery_manager_cancel_cluster_upgrades_resource = ibm.BackupRecoveryManagerCancelClusterUpgrades("backupRecoveryManagerCancelClusterUpgradesResource",
        cluster_identifiers=["string"],
        backup_recovery_manager_cancel_cluster_upgrades_id="string",
        endpoint_type="string",
        instance_id="string",
        region="string")
    
    const backupRecoveryManagerCancelClusterUpgradesResource = new ibm.BackupRecoveryManagerCancelClusterUpgrades("backupRecoveryManagerCancelClusterUpgradesResource", {
        clusterIdentifiers: ["string"],
        backupRecoveryManagerCancelClusterUpgradesId: "string",
        endpointType: "string",
        instanceId: "string",
        region: "string",
    });
    
    type: ibm:BackupRecoveryManagerCancelClusterUpgrades
    properties:
        backupRecoveryManagerCancelClusterUpgradesId: string
        clusterIdentifiers:
            - string
        endpointType: string
        instanceId: string
        region: string
    

    BackupRecoveryManagerCancelClusterUpgrades Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The BackupRecoveryManagerCancelClusterUpgrades resource accepts the following input properties:

    ClusterIdentifiers List<string>
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    BackupRecoveryManagerCancelClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    EndpointType string
    public or private.
    InstanceId string
    The instnace ID of the Backup Recovery instance.
    Region string
    The region of the Backup Recovery instance.
    ClusterIdentifiers []string
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    BackupRecoveryManagerCancelClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    EndpointType string
    public or private.
    InstanceId string
    The instnace ID of the Backup Recovery instance.
    Region string
    The region of the Backup Recovery instance.
    clusterIdentifiers List<String>
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    backupRecoveryManagerCancelClusterUpgradesId String
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    endpointType String
    public or private.
    instanceId String
    The instnace ID of the Backup Recovery instance.
    region String
    The region of the Backup Recovery instance.
    clusterIdentifiers string[]
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    backupRecoveryManagerCancelClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    endpointType string
    public or private.
    instanceId string
    The instnace ID of the Backup Recovery instance.
    region string
    The region of the Backup Recovery instance.
    cluster_identifiers Sequence[str]
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    backup_recovery_manager_cancel_cluster_upgrades_id str
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    endpoint_type str
    public or private.
    instance_id str
    The instnace ID of the Backup Recovery instance.
    region str
    The region of the Backup Recovery instance.
    clusterIdentifiers List<String>
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    backupRecoveryManagerCancelClusterUpgradesId String
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    endpointType String
    public or private.
    instanceId String
    The instnace ID of the Backup Recovery instance.
    region String
    The region of the Backup Recovery instance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BackupRecoveryManagerCancelClusterUpgrades resource produces the following output properties:

    CancelledUpgradeResponseLists List<BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseList>
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    Id string
    The provider-assigned unique ID for this managed resource.
    CancelledUpgradeResponseLists []BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseList
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    Id string
    The provider-assigned unique ID for this managed resource.
    cancelledUpgradeResponseLists List<BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseList>
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    id String
    The provider-assigned unique ID for this managed resource.
    cancelledUpgradeResponseLists BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseList[]
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    id string
    The provider-assigned unique ID for this managed resource.
    cancelled_upgrade_response_lists Sequence[BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseList]
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    id str
    The provider-assigned unique ID for this managed resource.
    cancelledUpgradeResponseLists List<Property Map>
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing BackupRecoveryManagerCancelClusterUpgrades Resource

    Get an existing BackupRecoveryManagerCancelClusterUpgrades resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: BackupRecoveryManagerCancelClusterUpgradesState, opts?: CustomResourceOptions): BackupRecoveryManagerCancelClusterUpgrades
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backup_recovery_manager_cancel_cluster_upgrades_id: Optional[str] = None,
            cancelled_upgrade_response_lists: Optional[Sequence[BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseListArgs]] = None,
            cluster_identifiers: Optional[Sequence[str]] = None,
            endpoint_type: Optional[str] = None,
            instance_id: Optional[str] = None,
            region: Optional[str] = None) -> BackupRecoveryManagerCancelClusterUpgrades
    func GetBackupRecoveryManagerCancelClusterUpgrades(ctx *Context, name string, id IDInput, state *BackupRecoveryManagerCancelClusterUpgradesState, opts ...ResourceOption) (*BackupRecoveryManagerCancelClusterUpgrades, error)
    public static BackupRecoveryManagerCancelClusterUpgrades Get(string name, Input<string> id, BackupRecoveryManagerCancelClusterUpgradesState? state, CustomResourceOptions? opts = null)
    public static BackupRecoveryManagerCancelClusterUpgrades get(String name, Output<String> id, BackupRecoveryManagerCancelClusterUpgradesState state, CustomResourceOptions options)
    resources:  _:    type: ibm:BackupRecoveryManagerCancelClusterUpgrades    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BackupRecoveryManagerCancelClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    CancelledUpgradeResponseLists List<BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseList>
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    ClusterIdentifiers List<string>
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    EndpointType string
    public or private.
    InstanceId string
    The instnace ID of the Backup Recovery instance.
    Region string
    The region of the Backup Recovery instance.
    BackupRecoveryManagerCancelClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    CancelledUpgradeResponseLists []BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseListArgs
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    ClusterIdentifiers []string
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    EndpointType string
    public or private.
    InstanceId string
    The instnace ID of the Backup Recovery instance.
    Region string
    The region of the Backup Recovery instance.
    backupRecoveryManagerCancelClusterUpgradesId String
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    cancelledUpgradeResponseLists List<BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseList>
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    clusterIdentifiers List<String>
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    endpointType String
    public or private.
    instanceId String
    The instnace ID of the Backup Recovery instance.
    region String
    The region of the Backup Recovery instance.
    backupRecoveryManagerCancelClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    cancelledUpgradeResponseLists BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseList[]
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    clusterIdentifiers string[]
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    endpointType string
    public or private.
    instanceId string
    The instnace ID of the Backup Recovery instance.
    region string
    The region of the Backup Recovery instance.
    backup_recovery_manager_cancel_cluster_upgrades_id str
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    cancelled_upgrade_response_lists Sequence[BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseListArgs]
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    cluster_identifiers Sequence[str]
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    endpoint_type str
    public or private.
    instance_id str
    The instnace ID of the Backup Recovery instance.
    region str
    The region of the Backup Recovery instance.
    backupRecoveryManagerCancelClusterUpgradesId String
    The unique identifier of the backup_recovery_manager_cancel_cluster_upgrades.
    cancelledUpgradeResponseLists List<Property Map>
    (List) Specifies list of cluster scheduled uprgade cancel response. Nested schema for cancelled_upgrade_response_list:
    clusterIdentifiers List<String>
    Specifies the list of cluster identifiers. The format is clusterId:clusterIncarnationId.

    • Constraints: The list items must match regular expression /^([0-9]+:[0-9]+)$/.
    endpointType String
    public or private.
    instanceId String
    The instnace ID of the Backup Recovery instance.
    region String
    The region of the Backup Recovery instance.

    Supporting Types

    BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseList, BackupRecoveryManagerCancelClusterUpgradesCancelledUpgradeResponseListArgs

    ClusterId double
    (Integer) Specifies cluster id.
    ClusterIncarnationId double
    (Integer) Specifies cluster incarnation id.
    ErrorMessage string
    (String) Specifies an error message if failed to cancel a scheduled upgrade.
    IsUpgradeCancelSuccessful bool
    (Boolean) Specifies if scheduled upgrade cancelling was successful.
    ClusterId float64
    (Integer) Specifies cluster id.
    ClusterIncarnationId float64
    (Integer) Specifies cluster incarnation id.
    ErrorMessage string
    (String) Specifies an error message if failed to cancel a scheduled upgrade.
    IsUpgradeCancelSuccessful bool
    (Boolean) Specifies if scheduled upgrade cancelling was successful.
    clusterId Double
    (Integer) Specifies cluster id.
    clusterIncarnationId Double
    (Integer) Specifies cluster incarnation id.
    errorMessage String
    (String) Specifies an error message if failed to cancel a scheduled upgrade.
    isUpgradeCancelSuccessful Boolean
    (Boolean) Specifies if scheduled upgrade cancelling was successful.
    clusterId number
    (Integer) Specifies cluster id.
    clusterIncarnationId number
    (Integer) Specifies cluster incarnation id.
    errorMessage string
    (String) Specifies an error message if failed to cancel a scheduled upgrade.
    isUpgradeCancelSuccessful boolean
    (Boolean) Specifies if scheduled upgrade cancelling was successful.
    cluster_id float
    (Integer) Specifies cluster id.
    cluster_incarnation_id float
    (Integer) Specifies cluster incarnation id.
    error_message str
    (String) Specifies an error message if failed to cancel a scheduled upgrade.
    is_upgrade_cancel_successful bool
    (Boolean) Specifies if scheduled upgrade cancelling was successful.
    clusterId Number
    (Integer) Specifies cluster id.
    clusterIncarnationId Number
    (Integer) Specifies cluster incarnation id.
    errorMessage String
    (String) Specifies an error message if failed to cancel a scheduled upgrade.
    isUpgradeCancelSuccessful Boolean
    (Boolean) Specifies if scheduled upgrade cancelling was successful.

    Import

    Not Supported

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.87.0-beta1 published on Monday, Dec 22, 2025 by ibm-cloud
      Meet Neo: Your AI Platform Teammate