1. Packages
  2. Ibm Provider
  3. API Docs
  4. BackupRecoveryManagerUpdateClusterUpgrades
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_update_cluster_upgradess with this resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const backupRecoveryManagerUpdateClusterUpgradesInstance = new ibm.BackupRecoveryManagerUpdateClusterUpgrades("backup_recovery_manager_update_cluster_upgrades_instance", {
        authHeaders: [{
            key: "key",
            value: "value",
        }],
        clusters: [{
            clusterId: 1,
            clusterIncarnationId: 1,
            currentVersion: "current_version",
        }],
        patchUpgradeParams: {
            authHeaders: [{
                key: "key",
                value: "value",
            }],
            ignorePreChecksFailure: true,
            packageUrl: "package_url",
            targetVersion: "target_version",
        },
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    backup_recovery_manager_update_cluster_upgrades_instance = ibm.BackupRecoveryManagerUpdateClusterUpgrades("backup_recovery_manager_update_cluster_upgrades_instance",
        auth_headers=[{
            "key": "key",
            "value": "value",
        }],
        clusters=[{
            "cluster_id": 1,
            "cluster_incarnation_id": 1,
            "current_version": "current_version",
        }],
        patch_upgrade_params={
            "auth_headers": [{
                "key": "key",
                "value": "value",
            }],
            "ignore_pre_checks_failure": True,
            "package_url": "package_url",
            "target_version": "target_version",
        })
    
    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.NewBackupRecoveryManagerUpdateClusterUpgrades(ctx, "backup_recovery_manager_update_cluster_upgrades_instance", &ibm.BackupRecoveryManagerUpdateClusterUpgradesArgs{
    			AuthHeaders: ibm.BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArray{
    				&ibm.BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs{
    					Key:   pulumi.String("key"),
    					Value: pulumi.String("value"),
    				},
    			},
    			Clusters: ibm.BackupRecoveryManagerUpdateClusterUpgradesClusterArray{
    				&ibm.BackupRecoveryManagerUpdateClusterUpgradesClusterArgs{
    					ClusterId:            pulumi.Float64(1),
    					ClusterIncarnationId: pulumi.Float64(1),
    					CurrentVersion:       pulumi.String("current_version"),
    				},
    			},
    			PatchUpgradeParams: &ibm.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs{
    				AuthHeaders: ibm.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeaderArray{
    					&ibm.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeaderArgs{
    						Key:   pulumi.String("key"),
    						Value: pulumi.String("value"),
    					},
    				},
    				IgnorePreChecksFailure: pulumi.Bool(true),
    				PackageUrl:             pulumi.String("package_url"),
    				TargetVersion:          pulumi.String("target_version"),
    			},
    		})
    		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 backupRecoveryManagerUpdateClusterUpgradesInstance = new Ibm.BackupRecoveryManagerUpdateClusterUpgrades("backup_recovery_manager_update_cluster_upgrades_instance", new()
        {
            AuthHeaders = new[]
            {
                new Ibm.Inputs.BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs
                {
                    Key = "key",
                    Value = "value",
                },
            },
            Clusters = new[]
            {
                new Ibm.Inputs.BackupRecoveryManagerUpdateClusterUpgradesClusterArgs
                {
                    ClusterId = 1,
                    ClusterIncarnationId = 1,
                    CurrentVersion = "current_version",
                },
            },
            PatchUpgradeParams = new Ibm.Inputs.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs
            {
                AuthHeaders = new[]
                {
                    new Ibm.Inputs.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeaderArgs
                    {
                        Key = "key",
                        Value = "value",
                    },
                },
                IgnorePreChecksFailure = true,
                PackageUrl = "package_url",
                TargetVersion = "target_version",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.BackupRecoveryManagerUpdateClusterUpgrades;
    import com.pulumi.ibm.BackupRecoveryManagerUpdateClusterUpgradesArgs;
    import com.pulumi.ibm.inputs.BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs;
    import com.pulumi.ibm.inputs.BackupRecoveryManagerUpdateClusterUpgradesClusterArgs;
    import com.pulumi.ibm.inputs.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs;
    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 backupRecoveryManagerUpdateClusterUpgradesInstance = new BackupRecoveryManagerUpdateClusterUpgrades("backupRecoveryManagerUpdateClusterUpgradesInstance", BackupRecoveryManagerUpdateClusterUpgradesArgs.builder()
                .authHeaders(BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs.builder()
                    .key("key")
                    .value("value")
                    .build())
                .clusters(BackupRecoveryManagerUpdateClusterUpgradesClusterArgs.builder()
                    .clusterId(1.0)
                    .clusterIncarnationId(1.0)
                    .currentVersion("current_version")
                    .build())
                .patchUpgradeParams(BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs.builder()
                    .authHeaders(BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeaderArgs.builder()
                        .key("key")
                        .value("value")
                        .build())
                    .ignorePreChecksFailure(true)
                    .packageUrl("package_url")
                    .targetVersion("target_version")
                    .build())
                .build());
    
        }
    }
    
    resources:
      backupRecoveryManagerUpdateClusterUpgradesInstance:
        type: ibm:BackupRecoveryManagerUpdateClusterUpgrades
        name: backup_recovery_manager_update_cluster_upgrades_instance
        properties:
          authHeaders:
            - key: key
              value: value
          clusters:
            - clusterId: 1
              clusterIncarnationId: 1
              currentVersion: current_version
          patchUpgradeParams:
            authHeaders:
              - key: key
                value: value
            ignorePreChecksFailure: true
            packageUrl: package_url
            targetVersion: target_version
    

    Create BackupRecoveryManagerUpdateClusterUpgrades Resource

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

    Constructor syntax

    new BackupRecoveryManagerUpdateClusterUpgrades(name: string, args: BackupRecoveryManagerUpdateClusterUpgradesArgs, opts?: CustomResourceOptions);
    @overload
    def BackupRecoveryManagerUpdateClusterUpgrades(resource_name: str,
                                                   args: BackupRecoveryManagerUpdateClusterUpgradesArgs,
                                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def BackupRecoveryManagerUpdateClusterUpgrades(resource_name: str,
                                                   opts: Optional[ResourceOptions] = None,
                                                   clusters: Optional[Sequence[BackupRecoveryManagerUpdateClusterUpgradesClusterArgs]] = None,
                                                   auth_headers: Optional[Sequence[BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs]] = None,
                                                   backup_recovery_manager_update_cluster_upgrades_id: Optional[str] = None,
                                                   endpoint_type: Optional[str] = None,
                                                   instance_id: Optional[str] = None,
                                                   interval_for_rolling_upgrade_in_hours: Optional[float] = None,
                                                   package_url: Optional[str] = None,
                                                   patch_upgrade_params: Optional[BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs] = None,
                                                   region: Optional[str] = None,
                                                   target_version: Optional[str] = None,
                                                   time_stamp_to_upgrade_at_msecs: Optional[float] = None,
                                                   type: Optional[str] = None)
    func NewBackupRecoveryManagerUpdateClusterUpgrades(ctx *Context, name string, args BackupRecoveryManagerUpdateClusterUpgradesArgs, opts ...ResourceOption) (*BackupRecoveryManagerUpdateClusterUpgrades, error)
    public BackupRecoveryManagerUpdateClusterUpgrades(string name, BackupRecoveryManagerUpdateClusterUpgradesArgs args, CustomResourceOptions? opts = null)
    public BackupRecoveryManagerUpdateClusterUpgrades(String name, BackupRecoveryManagerUpdateClusterUpgradesArgs args)
    public BackupRecoveryManagerUpdateClusterUpgrades(String name, BackupRecoveryManagerUpdateClusterUpgradesArgs args, CustomResourceOptions options)
    
    type: ibm:BackupRecoveryManagerUpdateClusterUpgrades
    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 BackupRecoveryManagerUpdateClusterUpgradesArgs
    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 BackupRecoveryManagerUpdateClusterUpgradesArgs
    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 BackupRecoveryManagerUpdateClusterUpgradesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BackupRecoveryManagerUpdateClusterUpgradesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BackupRecoveryManagerUpdateClusterUpgradesArgs
    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 backupRecoveryManagerUpdateClusterUpgradesResource = new Ibm.BackupRecoveryManagerUpdateClusterUpgrades("backupRecoveryManagerUpdateClusterUpgradesResource", new()
    {
        Clusters = new[]
        {
            new Ibm.Inputs.BackupRecoveryManagerUpdateClusterUpgradesClusterArgs
            {
                ClusterId = 0,
                ClusterIncarnationId = 0,
                CurrentVersion = "string",
            },
        },
        AuthHeaders = new[]
        {
            new Ibm.Inputs.BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        BackupRecoveryManagerUpdateClusterUpgradesId = "string",
        EndpointType = "string",
        InstanceId = "string",
        IntervalForRollingUpgradeInHours = 0,
        PackageUrl = "string",
        PatchUpgradeParams = new Ibm.Inputs.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs
        {
            AuthHeaders = new[]
            {
                new Ibm.Inputs.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeaderArgs
                {
                    Key = "string",
                    Value = "string",
                },
            },
            IgnorePreChecksFailure = false,
            PackageUrl = "string",
            TargetVersion = "string",
        },
        Region = "string",
        TargetVersion = "string",
        TimeStampToUpgradeAtMsecs = 0,
        Type = "string",
    });
    
    example, err := ibm.NewBackupRecoveryManagerUpdateClusterUpgrades(ctx, "backupRecoveryManagerUpdateClusterUpgradesResource", &ibm.BackupRecoveryManagerUpdateClusterUpgradesArgs{
    	Clusters: ibm.BackupRecoveryManagerUpdateClusterUpgradesClusterArray{
    		&ibm.BackupRecoveryManagerUpdateClusterUpgradesClusterArgs{
    			ClusterId:            pulumi.Float64(0),
    			ClusterIncarnationId: pulumi.Float64(0),
    			CurrentVersion:       pulumi.String("string"),
    		},
    	},
    	AuthHeaders: ibm.BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArray{
    		&ibm.BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	BackupRecoveryManagerUpdateClusterUpgradesId: pulumi.String("string"),
    	EndpointType:                     pulumi.String("string"),
    	InstanceId:                       pulumi.String("string"),
    	IntervalForRollingUpgradeInHours: pulumi.Float64(0),
    	PackageUrl:                       pulumi.String("string"),
    	PatchUpgradeParams: &ibm.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs{
    		AuthHeaders: ibm.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeaderArray{
    			&ibm.BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeaderArgs{
    				Key:   pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    		IgnorePreChecksFailure: pulumi.Bool(false),
    		PackageUrl:             pulumi.String("string"),
    		TargetVersion:          pulumi.String("string"),
    	},
    	Region:                    pulumi.String("string"),
    	TargetVersion:             pulumi.String("string"),
    	TimeStampToUpgradeAtMsecs: pulumi.Float64(0),
    	Type:                      pulumi.String("string"),
    })
    
    var backupRecoveryManagerUpdateClusterUpgradesResource = new BackupRecoveryManagerUpdateClusterUpgrades("backupRecoveryManagerUpdateClusterUpgradesResource", BackupRecoveryManagerUpdateClusterUpgradesArgs.builder()
        .clusters(BackupRecoveryManagerUpdateClusterUpgradesClusterArgs.builder()
            .clusterId(0.0)
            .clusterIncarnationId(0.0)
            .currentVersion("string")
            .build())
        .authHeaders(BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs.builder()
            .key("string")
            .value("string")
            .build())
        .backupRecoveryManagerUpdateClusterUpgradesId("string")
        .endpointType("string")
        .instanceId("string")
        .intervalForRollingUpgradeInHours(0.0)
        .packageUrl("string")
        .patchUpgradeParams(BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs.builder()
            .authHeaders(BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeaderArgs.builder()
                .key("string")
                .value("string")
                .build())
            .ignorePreChecksFailure(false)
            .packageUrl("string")
            .targetVersion("string")
            .build())
        .region("string")
        .targetVersion("string")
        .timeStampToUpgradeAtMsecs(0.0)
        .type("string")
        .build());
    
    backup_recovery_manager_update_cluster_upgrades_resource = ibm.BackupRecoveryManagerUpdateClusterUpgrades("backupRecoveryManagerUpdateClusterUpgradesResource",
        clusters=[{
            "cluster_id": 0,
            "cluster_incarnation_id": 0,
            "current_version": "string",
        }],
        auth_headers=[{
            "key": "string",
            "value": "string",
        }],
        backup_recovery_manager_update_cluster_upgrades_id="string",
        endpoint_type="string",
        instance_id="string",
        interval_for_rolling_upgrade_in_hours=0,
        package_url="string",
        patch_upgrade_params={
            "auth_headers": [{
                "key": "string",
                "value": "string",
            }],
            "ignore_pre_checks_failure": False,
            "package_url": "string",
            "target_version": "string",
        },
        region="string",
        target_version="string",
        time_stamp_to_upgrade_at_msecs=0,
        type="string")
    
    const backupRecoveryManagerUpdateClusterUpgradesResource = new ibm.BackupRecoveryManagerUpdateClusterUpgrades("backupRecoveryManagerUpdateClusterUpgradesResource", {
        clusters: [{
            clusterId: 0,
            clusterIncarnationId: 0,
            currentVersion: "string",
        }],
        authHeaders: [{
            key: "string",
            value: "string",
        }],
        backupRecoveryManagerUpdateClusterUpgradesId: "string",
        endpointType: "string",
        instanceId: "string",
        intervalForRollingUpgradeInHours: 0,
        packageUrl: "string",
        patchUpgradeParams: {
            authHeaders: [{
                key: "string",
                value: "string",
            }],
            ignorePreChecksFailure: false,
            packageUrl: "string",
            targetVersion: "string",
        },
        region: "string",
        targetVersion: "string",
        timeStampToUpgradeAtMsecs: 0,
        type: "string",
    });
    
    type: ibm:BackupRecoveryManagerUpdateClusterUpgrades
    properties:
        authHeaders:
            - key: string
              value: string
        backupRecoveryManagerUpdateClusterUpgradesId: string
        clusters:
            - clusterId: 0
              clusterIncarnationId: 0
              currentVersion: string
        endpointType: string
        instanceId: string
        intervalForRollingUpgradeInHours: 0
        packageUrl: string
        patchUpgradeParams:
            authHeaders:
                - key: string
                  value: string
            ignorePreChecksFailure: false
            packageUrl: string
            targetVersion: string
        region: string
        targetVersion: string
        timeStampToUpgradeAtMsecs: 0
        type: string
    

    BackupRecoveryManagerUpdateClusterUpgrades 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 BackupRecoveryManagerUpdateClusterUpgrades resource accepts the following input properties:

    Clusters List<BackupRecoveryManagerUpdateClusterUpgradesCluster>
    Array for clusters to be upgraded. Nested schema for clusters:
    AuthHeaders List<BackupRecoveryManagerUpdateClusterUpgradesAuthHeader>
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    BackupRecoveryManagerUpdateClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    EndpointType string
    public or private.
    InstanceId string
    The instnace ID of the Backup Recovery instance.
    IntervalForRollingUpgradeInHours double
    Specifies the difference of time between two cluster's upgrade.
    PackageUrl string
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    PatchUpgradeParams BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParams
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    Region string
    The region of the Backup Recovery instance.
    TargetVersion string
    Specifies target version to which clusters are to be upgraded.
    TimeStampToUpgradeAtMsecs double
    Specifies the time in msecs at which the cluster has to be upgraded.
    Type string
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    Clusters []BackupRecoveryManagerUpdateClusterUpgradesClusterArgs
    Array for clusters to be upgraded. Nested schema for clusters:
    AuthHeaders []BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    BackupRecoveryManagerUpdateClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    EndpointType string
    public or private.
    InstanceId string
    The instnace ID of the Backup Recovery instance.
    IntervalForRollingUpgradeInHours float64
    Specifies the difference of time between two cluster's upgrade.
    PackageUrl string
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    PatchUpgradeParams BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    Region string
    The region of the Backup Recovery instance.
    TargetVersion string
    Specifies target version to which clusters are to be upgraded.
    TimeStampToUpgradeAtMsecs float64
    Specifies the time in msecs at which the cluster has to be upgraded.
    Type string
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    clusters List<BackupRecoveryManagerUpdateClusterUpgradesCluster>
    Array for clusters to be upgraded. Nested schema for clusters:
    authHeaders List<BackupRecoveryManagerUpdateClusterUpgradesAuthHeader>
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    backupRecoveryManagerUpdateClusterUpgradesId String
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    endpointType String
    public or private.
    instanceId String
    The instnace ID of the Backup Recovery instance.
    intervalForRollingUpgradeInHours Double
    Specifies the difference of time between two cluster's upgrade.
    packageUrl String
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    patchUpgradeParams BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParams
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    region String
    The region of the Backup Recovery instance.
    targetVersion String
    Specifies target version to which clusters are to be upgraded.
    timeStampToUpgradeAtMsecs Double
    Specifies the time in msecs at which the cluster has to be upgraded.
    type String
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    clusters BackupRecoveryManagerUpdateClusterUpgradesCluster[]
    Array for clusters to be upgraded. Nested schema for clusters:
    authHeaders BackupRecoveryManagerUpdateClusterUpgradesAuthHeader[]
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    backupRecoveryManagerUpdateClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    endpointType string
    public or private.
    instanceId string
    The instnace ID of the Backup Recovery instance.
    intervalForRollingUpgradeInHours number
    Specifies the difference of time between two cluster's upgrade.
    packageUrl string
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    patchUpgradeParams BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParams
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    region string
    The region of the Backup Recovery instance.
    targetVersion string
    Specifies target version to which clusters are to be upgraded.
    timeStampToUpgradeAtMsecs number
    Specifies the time in msecs at which the cluster has to be upgraded.
    type string
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    clusters Sequence[BackupRecoveryManagerUpdateClusterUpgradesClusterArgs]
    Array for clusters to be upgraded. Nested schema for clusters:
    auth_headers Sequence[BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs]
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    backup_recovery_manager_update_cluster_upgrades_id str
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    endpoint_type str
    public or private.
    instance_id str
    The instnace ID of the Backup Recovery instance.
    interval_for_rolling_upgrade_in_hours float
    Specifies the difference of time between two cluster's upgrade.
    package_url str
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    patch_upgrade_params BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    region str
    The region of the Backup Recovery instance.
    target_version str
    Specifies target version to which clusters are to be upgraded.
    time_stamp_to_upgrade_at_msecs float
    Specifies the time in msecs at which the cluster has to be upgraded.
    type str
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    clusters List<Property Map>
    Array for clusters to be upgraded. Nested schema for clusters:
    authHeaders List<Property Map>
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    backupRecoveryManagerUpdateClusterUpgradesId String
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    endpointType String
    public or private.
    instanceId String
    The instnace ID of the Backup Recovery instance.
    intervalForRollingUpgradeInHours Number
    Specifies the difference of time between two cluster's upgrade.
    packageUrl String
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    patchUpgradeParams Property Map
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    region String
    The region of the Backup Recovery instance.
    targetVersion String
    Specifies target version to which clusters are to be upgraded.
    timeStampToUpgradeAtMsecs Number
    Specifies the time in msecs at which the cluster has to be upgraded.
    type String
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    UpgradeResponseLists List<BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseList>
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpgradeResponseLists []BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseList
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    id String
    The provider-assigned unique ID for this managed resource.
    upgradeResponseLists List<BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseList>
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    id string
    The provider-assigned unique ID for this managed resource.
    upgradeResponseLists BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseList[]
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    id str
    The provider-assigned unique ID for this managed resource.
    upgrade_response_lists Sequence[BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseList]
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    id String
    The provider-assigned unique ID for this managed resource.
    upgradeResponseLists List<Property Map>
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.

    Look up Existing BackupRecoveryManagerUpdateClusterUpgrades Resource

    Get an existing BackupRecoveryManagerUpdateClusterUpgrades 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?: BackupRecoveryManagerUpdateClusterUpgradesState, opts?: CustomResourceOptions): BackupRecoveryManagerUpdateClusterUpgrades
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auth_headers: Optional[Sequence[BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs]] = None,
            backup_recovery_manager_update_cluster_upgrades_id: Optional[str] = None,
            clusters: Optional[Sequence[BackupRecoveryManagerUpdateClusterUpgradesClusterArgs]] = None,
            endpoint_type: Optional[str] = None,
            instance_id: Optional[str] = None,
            interval_for_rolling_upgrade_in_hours: Optional[float] = None,
            package_url: Optional[str] = None,
            patch_upgrade_params: Optional[BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs] = None,
            region: Optional[str] = None,
            target_version: Optional[str] = None,
            time_stamp_to_upgrade_at_msecs: Optional[float] = None,
            type: Optional[str] = None,
            upgrade_response_lists: Optional[Sequence[BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseListArgs]] = None) -> BackupRecoveryManagerUpdateClusterUpgrades
    func GetBackupRecoveryManagerUpdateClusterUpgrades(ctx *Context, name string, id IDInput, state *BackupRecoveryManagerUpdateClusterUpgradesState, opts ...ResourceOption) (*BackupRecoveryManagerUpdateClusterUpgrades, error)
    public static BackupRecoveryManagerUpdateClusterUpgrades Get(string name, Input<string> id, BackupRecoveryManagerUpdateClusterUpgradesState? state, CustomResourceOptions? opts = null)
    public static BackupRecoveryManagerUpdateClusterUpgrades get(String name, Output<String> id, BackupRecoveryManagerUpdateClusterUpgradesState state, CustomResourceOptions options)
    resources:  _:    type: ibm:BackupRecoveryManagerUpdateClusterUpgrades    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:
    AuthHeaders List<BackupRecoveryManagerUpdateClusterUpgradesAuthHeader>
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    BackupRecoveryManagerUpdateClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    Clusters List<BackupRecoveryManagerUpdateClusterUpgradesCluster>
    Array for clusters to be upgraded. Nested schema for clusters:
    EndpointType string
    public or private.
    InstanceId string
    The instnace ID of the Backup Recovery instance.
    IntervalForRollingUpgradeInHours double
    Specifies the difference of time between two cluster's upgrade.
    PackageUrl string
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    PatchUpgradeParams BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParams
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    Region string
    The region of the Backup Recovery instance.
    TargetVersion string
    Specifies target version to which clusters are to be upgraded.
    TimeStampToUpgradeAtMsecs double
    Specifies the time in msecs at which the cluster has to be upgraded.
    Type string
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    UpgradeResponseLists List<BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseList>
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    AuthHeaders []BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    BackupRecoveryManagerUpdateClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    Clusters []BackupRecoveryManagerUpdateClusterUpgradesClusterArgs
    Array for clusters to be upgraded. Nested schema for clusters:
    EndpointType string
    public or private.
    InstanceId string
    The instnace ID of the Backup Recovery instance.
    IntervalForRollingUpgradeInHours float64
    Specifies the difference of time between two cluster's upgrade.
    PackageUrl string
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    PatchUpgradeParams BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    Region string
    The region of the Backup Recovery instance.
    TargetVersion string
    Specifies target version to which clusters are to be upgraded.
    TimeStampToUpgradeAtMsecs float64
    Specifies the time in msecs at which the cluster has to be upgraded.
    Type string
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    UpgradeResponseLists []BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseListArgs
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    authHeaders List<BackupRecoveryManagerUpdateClusterUpgradesAuthHeader>
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    backupRecoveryManagerUpdateClusterUpgradesId String
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    clusters List<BackupRecoveryManagerUpdateClusterUpgradesCluster>
    Array for clusters to be upgraded. Nested schema for clusters:
    endpointType String
    public or private.
    instanceId String
    The instnace ID of the Backup Recovery instance.
    intervalForRollingUpgradeInHours Double
    Specifies the difference of time between two cluster's upgrade.
    packageUrl String
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    patchUpgradeParams BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParams
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    region String
    The region of the Backup Recovery instance.
    targetVersion String
    Specifies target version to which clusters are to be upgraded.
    timeStampToUpgradeAtMsecs Double
    Specifies the time in msecs at which the cluster has to be upgraded.
    type String
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    upgradeResponseLists List<BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseList>
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    authHeaders BackupRecoveryManagerUpdateClusterUpgradesAuthHeader[]
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    backupRecoveryManagerUpdateClusterUpgradesId string
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    clusters BackupRecoveryManagerUpdateClusterUpgradesCluster[]
    Array for clusters to be upgraded. Nested schema for clusters:
    endpointType string
    public or private.
    instanceId string
    The instnace ID of the Backup Recovery instance.
    intervalForRollingUpgradeInHours number
    Specifies the difference of time between two cluster's upgrade.
    packageUrl string
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    patchUpgradeParams BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParams
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    region string
    The region of the Backup Recovery instance.
    targetVersion string
    Specifies target version to which clusters are to be upgraded.
    timeStampToUpgradeAtMsecs number
    Specifies the time in msecs at which the cluster has to be upgraded.
    type string
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    upgradeResponseLists BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseList[]
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    auth_headers Sequence[BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs]
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    backup_recovery_manager_update_cluster_upgrades_id str
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    clusters Sequence[BackupRecoveryManagerUpdateClusterUpgradesClusterArgs]
    Array for clusters to be upgraded. Nested schema for clusters:
    endpoint_type str
    public or private.
    instance_id str
    The instnace ID of the Backup Recovery instance.
    interval_for_rolling_upgrade_in_hours float
    Specifies the difference of time between two cluster's upgrade.
    package_url str
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    patch_upgrade_params BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    region str
    The region of the Backup Recovery instance.
    target_version str
    Specifies target version to which clusters are to be upgraded.
    time_stamp_to_upgrade_at_msecs float
    Specifies the time in msecs at which the cluster has to be upgraded.
    type str
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    upgrade_response_lists Sequence[BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseListArgs]
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.
    authHeaders List<Property Map>
    Specifies the optional headers for upgrade request. Nested schema for auth_headers:
    backupRecoveryManagerUpdateClusterUpgradesId String
    The unique identifier of the backup_recovery_manager_update_cluster_upgrades.
    clusters List<Property Map>
    Array for clusters to be upgraded. Nested schema for clusters:
    endpointType String
    public or private.
    instanceId String
    The instnace ID of the Backup Recovery instance.
    intervalForRollingUpgradeInHours Number
    Specifies the difference of time between two cluster's upgrade.
    packageUrl String
    Specifies URL from which package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    patchUpgradeParams Property Map
    Specifies the parameters for patch upgrade request. Nested schema for patch_upgrade_params:
    region String
    The region of the Backup Recovery instance.
    targetVersion String
    Specifies target version to which clusters are to be upgraded.
    timeStampToUpgradeAtMsecs Number
    Specifies the time in msecs at which the cluster has to be upgraded.
    type String
    Specifies the type of upgrade to be performed on a cluster.

    • Constraints: The default value is Upgrade. Allowable values are: Upgrade, Patch, UpgradePatch.
    upgradeResponseLists List<Property Map>
    Specifies a list of disks to exclude from being protected. This is only applicable to VM objects.

    Supporting Types

    BackupRecoveryManagerUpdateClusterUpgradesAuthHeader, BackupRecoveryManagerUpdateClusterUpgradesAuthHeaderArgs

    Key string
    Specifies the key or name of the header.
    Value string
    Specifies the value of the header.
    Key string
    Specifies the key or name of the header.
    Value string
    Specifies the value of the header.
    key String
    Specifies the key or name of the header.
    value String
    Specifies the value of the header.
    key string
    Specifies the key or name of the header.
    value string
    Specifies the value of the header.
    key str
    Specifies the key or name of the header.
    value str
    Specifies the value of the header.
    key String
    Specifies the key or name of the header.
    value String
    Specifies the value of the header.

    BackupRecoveryManagerUpdateClusterUpgradesCluster, BackupRecoveryManagerUpdateClusterUpgradesClusterArgs

    ClusterId double
    Specifies cluster id.
    ClusterIncarnationId double
    Specifies cluster incarnation id.
    CurrentVersion string
    Specifies current version of cluster.
    ClusterId float64
    Specifies cluster id.
    ClusterIncarnationId float64
    Specifies cluster incarnation id.
    CurrentVersion string
    Specifies current version of cluster.
    clusterId Double
    Specifies cluster id.
    clusterIncarnationId Double
    Specifies cluster incarnation id.
    currentVersion String
    Specifies current version of cluster.
    clusterId number
    Specifies cluster id.
    clusterIncarnationId number
    Specifies cluster incarnation id.
    currentVersion string
    Specifies current version of cluster.
    cluster_id float
    Specifies cluster id.
    cluster_incarnation_id float
    Specifies cluster incarnation id.
    current_version str
    Specifies current version of cluster.
    clusterId Number
    Specifies cluster id.
    clusterIncarnationId Number
    Specifies cluster incarnation id.
    currentVersion String
    Specifies current version of cluster.

    BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParams, BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsArgs

    AuthHeaders List<BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeader>
    Specifies the optional headers for the patch cluster request. Nested schema for auth_headers:
    IgnorePreChecksFailure bool
    Specify if pre check results can be ignored.

    • Constraints: The default value is false.
    PackageUrl string
    Specifies URL from which patch package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    TargetVersion string
    Specifies target patch version to which clusters are to be upgraded.
    AuthHeaders []BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeader
    Specifies the optional headers for the patch cluster request. Nested schema for auth_headers:
    IgnorePreChecksFailure bool
    Specify if pre check results can be ignored.

    • Constraints: The default value is false.
    PackageUrl string
    Specifies URL from which patch package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    TargetVersion string
    Specifies target patch version to which clusters are to be upgraded.
    authHeaders List<BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeader>
    Specifies the optional headers for the patch cluster request. Nested schema for auth_headers:
    ignorePreChecksFailure Boolean
    Specify if pre check results can be ignored.

    • Constraints: The default value is false.
    packageUrl String
    Specifies URL from which patch package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    targetVersion String
    Specifies target patch version to which clusters are to be upgraded.
    authHeaders BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeader[]
    Specifies the optional headers for the patch cluster request. Nested schema for auth_headers:
    ignorePreChecksFailure boolean
    Specify if pre check results can be ignored.

    • Constraints: The default value is false.
    packageUrl string
    Specifies URL from which patch package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    targetVersion string
    Specifies target patch version to which clusters are to be upgraded.
    auth_headers Sequence[BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeader]
    Specifies the optional headers for the patch cluster request. Nested schema for auth_headers:
    ignore_pre_checks_failure bool
    Specify if pre check results can be ignored.

    • Constraints: The default value is false.
    package_url str
    Specifies URL from which patch package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    target_version str
    Specifies target patch version to which clusters are to be upgraded.
    authHeaders List<Property Map>
    Specifies the optional headers for the patch cluster request. Nested schema for auth_headers:
    ignorePreChecksFailure Boolean
    Specify if pre check results can be ignored.

    • Constraints: The default value is false.
    packageUrl String
    Specifies URL from which patch package can be downloaded. Note: This option is only supported in Multi-Cluster Manager (MCM).
    targetVersion String
    Specifies target patch version to which clusters are to be upgraded.

    BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeader, BackupRecoveryManagerUpdateClusterUpgradesPatchUpgradeParamsAuthHeaderArgs

    Key string
    Specifies the key or name of the header.
    Value string
    Specifies the value of the header.
    Key string
    Specifies the key or name of the header.
    Value string
    Specifies the value of the header.
    key String
    Specifies the key or name of the header.
    value String
    Specifies the value of the header.
    key string
    Specifies the key or name of the header.
    value string
    Specifies the value of the header.
    key str
    Specifies the key or name of the header.
    value str
    Specifies the value of the header.
    key String
    Specifies the key or name of the header.
    value String
    Specifies the value of the header.

    BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseList, BackupRecoveryManagerUpdateClusterUpgradesUpgradeResponseListArgs

    ClusterId double
    Specifies cluster id.
    ClusterIncarnationId double
    Specifies cluster incarnation id.
    ErrorMessage string
    IsUpgradeSchedulingSuccessful bool
    ClusterId float64
    Specifies cluster id.
    ClusterIncarnationId float64
    Specifies cluster incarnation id.
    ErrorMessage string
    IsUpgradeSchedulingSuccessful bool
    clusterId Double
    Specifies cluster id.
    clusterIncarnationId Double
    Specifies cluster incarnation id.
    errorMessage String
    isUpgradeSchedulingSuccessful Boolean
    clusterId number
    Specifies cluster id.
    clusterIncarnationId number
    Specifies cluster incarnation id.
    errorMessage string
    isUpgradeSchedulingSuccessful boolean
    cluster_id float
    Specifies cluster id.
    cluster_incarnation_id float
    Specifies cluster incarnation id.
    error_message str
    is_upgrade_scheduling_successful bool
    clusterId Number
    Specifies cluster id.
    clusterIncarnationId Number
    Specifies cluster incarnation id.
    errorMessage String
    isUpgradeSchedulingSuccessful Boolean

    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