1. Packages
  2. Ibm Provider
  3. API Docs
  4. getBackupRecoveryManagerGetAlertsStats
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

    Provides a read-only data source to retrieve information about an Active Alerts stats response.. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const backupRecoveryManagerGetAlertsStats = ibm.getBackupRecoveryManagerGetAlertsStats({
        endTimeUsecs: 12,
        startTimeUsecs: 14,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    backup_recovery_manager_get_alerts_stats = ibm.get_backup_recovery_manager_get_alerts_stats(end_time_usecs=12,
        start_time_usecs=14)
    
    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.GetBackupRecoveryManagerGetAlertsStats(ctx, &ibm.GetBackupRecoveryManagerGetAlertsStatsArgs{
    			EndTimeUsecs:   12,
    			StartTimeUsecs: 14,
    		}, 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 backupRecoveryManagerGetAlertsStats = Ibm.GetBackupRecoveryManagerGetAlertsStats.Invoke(new()
        {
            EndTimeUsecs = 12,
            StartTimeUsecs = 14,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetBackupRecoveryManagerGetAlertsStatsArgs;
    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) {
            final var backupRecoveryManagerGetAlertsStats = IbmFunctions.getBackupRecoveryManagerGetAlertsStats(GetBackupRecoveryManagerGetAlertsStatsArgs.builder()
                .endTimeUsecs(12)
                .startTimeUsecs(14)
                .build());
    
        }
    }
    
    variables:
      backupRecoveryManagerGetAlertsStats:
        fn::invoke:
          function: ibm:getBackupRecoveryManagerGetAlertsStats
          arguments:
            endTimeUsecs: 12
            startTimeUsecs: 14
    

    Using getBackupRecoveryManagerGetAlertsStats

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getBackupRecoveryManagerGetAlertsStats(args: GetBackupRecoveryManagerGetAlertsStatsArgs, opts?: InvokeOptions): Promise<GetBackupRecoveryManagerGetAlertsStatsResult>
    function getBackupRecoveryManagerGetAlertsStatsOutput(args: GetBackupRecoveryManagerGetAlertsStatsOutputArgs, opts?: InvokeOptions): Output<GetBackupRecoveryManagerGetAlertsStatsResult>
    def get_backup_recovery_manager_get_alerts_stats(alert_source: Optional[str] = None,
                                                     cluster_ids: Optional[Sequence[float]] = None,
                                                     end_time_usecs: Optional[float] = None,
                                                     endpoint_type: Optional[str] = None,
                                                     exclude_stats_by_cluster: Optional[bool] = None,
                                                     id: Optional[str] = None,
                                                     instance_id: Optional[str] = None,
                                                     region: Optional[str] = None,
                                                     region_ids: Optional[Sequence[str]] = None,
                                                     service_instance_ids: Optional[Sequence[str]] = None,
                                                     start_time_usecs: Optional[float] = None,
                                                     tenant_ids: Optional[Sequence[str]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> GetBackupRecoveryManagerGetAlertsStatsResult
    def get_backup_recovery_manager_get_alerts_stats_output(alert_source: Optional[pulumi.Input[str]] = None,
                                                     cluster_ids: Optional[pulumi.Input[Sequence[pulumi.Input[float]]]] = None,
                                                     end_time_usecs: Optional[pulumi.Input[float]] = None,
                                                     endpoint_type: Optional[pulumi.Input[str]] = None,
                                                     exclude_stats_by_cluster: Optional[pulumi.Input[bool]] = None,
                                                     id: Optional[pulumi.Input[str]] = None,
                                                     instance_id: Optional[pulumi.Input[str]] = None,
                                                     region: Optional[pulumi.Input[str]] = None,
                                                     region_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                     service_instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                     start_time_usecs: Optional[pulumi.Input[float]] = None,
                                                     tenant_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> Output[GetBackupRecoveryManagerGetAlertsStatsResult]
    func GetBackupRecoveryManagerGetAlertsStats(ctx *Context, args *GetBackupRecoveryManagerGetAlertsStatsArgs, opts ...InvokeOption) (*GetBackupRecoveryManagerGetAlertsStatsResult, error)
    func GetBackupRecoveryManagerGetAlertsStatsOutput(ctx *Context, args *GetBackupRecoveryManagerGetAlertsStatsOutputArgs, opts ...InvokeOption) GetBackupRecoveryManagerGetAlertsStatsResultOutput

    > Note: This function is named GetBackupRecoveryManagerGetAlertsStats in the Go SDK.

    public static class GetBackupRecoveryManagerGetAlertsStats 
    {
        public static Task<GetBackupRecoveryManagerGetAlertsStatsResult> InvokeAsync(GetBackupRecoveryManagerGetAlertsStatsArgs args, InvokeOptions? opts = null)
        public static Output<GetBackupRecoveryManagerGetAlertsStatsResult> Invoke(GetBackupRecoveryManagerGetAlertsStatsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetBackupRecoveryManagerGetAlertsStatsResult> getBackupRecoveryManagerGetAlertsStats(GetBackupRecoveryManagerGetAlertsStatsArgs args, InvokeOptions options)
    public static Output<GetBackupRecoveryManagerGetAlertsStatsResult> getBackupRecoveryManagerGetAlertsStats(GetBackupRecoveryManagerGetAlertsStatsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getBackupRecoveryManagerGetAlertsStats:getBackupRecoveryManagerGetAlertsStats
      arguments:
        # arguments dictionary

    The following arguments are supported:

    EndTimeUsecs double
    Specifies the end time Unix time epoch in microseconds to which the active alerts stats are computed.
    StartTimeUsecs double
    Specifies the start time Unix time epoch in microseconds from which the active alerts stats are computed.
    AlertSource string
    Specifies a list of alert origination source. If not specified, all alerts from all the sources are considered in the response.

    • Constraints: Allowable values are: kCluster, kHelios.
    ClusterIds List<double>
    Specifies the list of cluster IDs.
    EndpointType string
    ExcludeStatsByCluster bool
    Specifies if stats of active alerts per cluster needs to be excluded. If set to false (default value), stats of active alerts per cluster is included in the response. If set to true, only aggregated stats summary will be present in the response.
    Id string
    The unique identifier of the Active Alerts stats response..
    InstanceId string
    Region string
    RegionIds List<string>
    Filter by a list of region ids.
    ServiceInstanceIds List<string>
    Specifies list of service instance ids to filter alert stats by.
    TenantIds List<string>
    Specifies a list of tenants.
    EndTimeUsecs float64
    Specifies the end time Unix time epoch in microseconds to which the active alerts stats are computed.
    StartTimeUsecs float64
    Specifies the start time Unix time epoch in microseconds from which the active alerts stats are computed.
    AlertSource string
    Specifies a list of alert origination source. If not specified, all alerts from all the sources are considered in the response.

    • Constraints: Allowable values are: kCluster, kHelios.
    ClusterIds []float64
    Specifies the list of cluster IDs.
    EndpointType string
    ExcludeStatsByCluster bool
    Specifies if stats of active alerts per cluster needs to be excluded. If set to false (default value), stats of active alerts per cluster is included in the response. If set to true, only aggregated stats summary will be present in the response.
    Id string
    The unique identifier of the Active Alerts stats response..
    InstanceId string
    Region string
    RegionIds []string
    Filter by a list of region ids.
    ServiceInstanceIds []string
    Specifies list of service instance ids to filter alert stats by.
    TenantIds []string
    Specifies a list of tenants.
    endTimeUsecs Double
    Specifies the end time Unix time epoch in microseconds to which the active alerts stats are computed.
    startTimeUsecs Double
    Specifies the start time Unix time epoch in microseconds from which the active alerts stats are computed.
    alertSource String
    Specifies a list of alert origination source. If not specified, all alerts from all the sources are considered in the response.

    • Constraints: Allowable values are: kCluster, kHelios.
    clusterIds List<Double>
    Specifies the list of cluster IDs.
    endpointType String
    excludeStatsByCluster Boolean
    Specifies if stats of active alerts per cluster needs to be excluded. If set to false (default value), stats of active alerts per cluster is included in the response. If set to true, only aggregated stats summary will be present in the response.
    id String
    The unique identifier of the Active Alerts stats response..
    instanceId String
    region String
    regionIds List<String>
    Filter by a list of region ids.
    serviceInstanceIds List<String>
    Specifies list of service instance ids to filter alert stats by.
    tenantIds List<String>
    Specifies a list of tenants.
    endTimeUsecs number
    Specifies the end time Unix time epoch in microseconds to which the active alerts stats are computed.
    startTimeUsecs number
    Specifies the start time Unix time epoch in microseconds from which the active alerts stats are computed.
    alertSource string
    Specifies a list of alert origination source. If not specified, all alerts from all the sources are considered in the response.

    • Constraints: Allowable values are: kCluster, kHelios.
    clusterIds number[]
    Specifies the list of cluster IDs.
    endpointType string
    excludeStatsByCluster boolean
    Specifies if stats of active alerts per cluster needs to be excluded. If set to false (default value), stats of active alerts per cluster is included in the response. If set to true, only aggregated stats summary will be present in the response.
    id string
    The unique identifier of the Active Alerts stats response..
    instanceId string
    region string
    regionIds string[]
    Filter by a list of region ids.
    serviceInstanceIds string[]
    Specifies list of service instance ids to filter alert stats by.
    tenantIds string[]
    Specifies a list of tenants.
    end_time_usecs float
    Specifies the end time Unix time epoch in microseconds to which the active alerts stats are computed.
    start_time_usecs float
    Specifies the start time Unix time epoch in microseconds from which the active alerts stats are computed.
    alert_source str
    Specifies a list of alert origination source. If not specified, all alerts from all the sources are considered in the response.

    • Constraints: Allowable values are: kCluster, kHelios.
    cluster_ids Sequence[float]
    Specifies the list of cluster IDs.
    endpoint_type str
    exclude_stats_by_cluster bool
    Specifies if stats of active alerts per cluster needs to be excluded. If set to false (default value), stats of active alerts per cluster is included in the response. If set to true, only aggregated stats summary will be present in the response.
    id str
    The unique identifier of the Active Alerts stats response..
    instance_id str
    region str
    region_ids Sequence[str]
    Filter by a list of region ids.
    service_instance_ids Sequence[str]
    Specifies list of service instance ids to filter alert stats by.
    tenant_ids Sequence[str]
    Specifies a list of tenants.
    endTimeUsecs Number
    Specifies the end time Unix time epoch in microseconds to which the active alerts stats are computed.
    startTimeUsecs Number
    Specifies the start time Unix time epoch in microseconds from which the active alerts stats are computed.
    alertSource String
    Specifies a list of alert origination source. If not specified, all alerts from all the sources are considered in the response.

    • Constraints: Allowable values are: kCluster, kHelios.
    clusterIds List<Number>
    Specifies the list of cluster IDs.
    endpointType String
    excludeStatsByCluster Boolean
    Specifies if stats of active alerts per cluster needs to be excluded. If set to false (default value), stats of active alerts per cluster is included in the response. If set to true, only aggregated stats summary will be present in the response.
    id String
    The unique identifier of the Active Alerts stats response..
    instanceId String
    region String
    regionIds List<String>
    Filter by a list of region ids.
    serviceInstanceIds List<String>
    Specifies list of service instance ids to filter alert stats by.
    tenantIds List<String>
    Specifies a list of tenants.

    getBackupRecoveryManagerGetAlertsStats Result

    The following output properties are available:

    AggregatedAlertsStats List<GetBackupRecoveryManagerGetAlertsStatsAggregatedAlertsStat>
    (List) Specifies the active alert statistics details. Nested schema for aggregated_alerts_stats:
    AggregatedClusterStats List<GetBackupRecoveryManagerGetAlertsStatsAggregatedClusterStat>
    (List) Specifies the cluster statistics based on active alerts. Nested schema for aggregated_cluster_stats:
    EndTimeUsecs double
    Id string
    The unique identifier of the Active Alerts stats response..
    Region string
    StartTimeUsecs double
    StatsByClusters List<GetBackupRecoveryManagerGetAlertsStatsStatsByCluster>
    (List) Specifies the active Alerts stats by clusters. Nested schema for stats_by_cluster:
    AlertSource string
    ClusterIds List<double>
    EndpointType string
    ExcludeStatsByCluster bool
    InstanceId string
    RegionIds List<string>
    ServiceInstanceIds List<string>
    TenantIds List<string>
    AggregatedAlertsStats []GetBackupRecoveryManagerGetAlertsStatsAggregatedAlertsStat
    (List) Specifies the active alert statistics details. Nested schema for aggregated_alerts_stats:
    AggregatedClusterStats []GetBackupRecoveryManagerGetAlertsStatsAggregatedClusterStat
    (List) Specifies the cluster statistics based on active alerts. Nested schema for aggregated_cluster_stats:
    EndTimeUsecs float64
    Id string
    The unique identifier of the Active Alerts stats response..
    Region string
    StartTimeUsecs float64
    StatsByClusters []GetBackupRecoveryManagerGetAlertsStatsStatsByCluster
    (List) Specifies the active Alerts stats by clusters. Nested schema for stats_by_cluster:
    AlertSource string
    ClusterIds []float64
    EndpointType string
    ExcludeStatsByCluster bool
    InstanceId string
    RegionIds []string
    ServiceInstanceIds []string
    TenantIds []string
    aggregatedAlertsStats List<GetBackupRecoveryManagerGetAlertsStatsAggregatedAlertsStat>
    (List) Specifies the active alert statistics details. Nested schema for aggregated_alerts_stats:
    aggregatedClusterStats List<GetBackupRecoveryManagerGetAlertsStatsAggregatedClusterStat>
    (List) Specifies the cluster statistics based on active alerts. Nested schema for aggregated_cluster_stats:
    endTimeUsecs Double
    id String
    The unique identifier of the Active Alerts stats response..
    region String
    startTimeUsecs Double
    statsByClusters List<GetBackupRecoveryManagerGetAlertsStatsStatsByCluster>
    (List) Specifies the active Alerts stats by clusters. Nested schema for stats_by_cluster:
    alertSource String
    clusterIds List<Double>
    endpointType String
    excludeStatsByCluster Boolean
    instanceId String
    regionIds List<String>
    serviceInstanceIds List<String>
    tenantIds List<String>
    aggregatedAlertsStats GetBackupRecoveryManagerGetAlertsStatsAggregatedAlertsStat[]
    (List) Specifies the active alert statistics details. Nested schema for aggregated_alerts_stats:
    aggregatedClusterStats GetBackupRecoveryManagerGetAlertsStatsAggregatedClusterStat[]
    (List) Specifies the cluster statistics based on active alerts. Nested schema for aggregated_cluster_stats:
    endTimeUsecs number
    id string
    The unique identifier of the Active Alerts stats response..
    region string
    startTimeUsecs number
    statsByClusters GetBackupRecoveryManagerGetAlertsStatsStatsByCluster[]
    (List) Specifies the active Alerts stats by clusters. Nested schema for stats_by_cluster:
    alertSource string
    clusterIds number[]
    endpointType string
    excludeStatsByCluster boolean
    instanceId string
    regionIds string[]
    serviceInstanceIds string[]
    tenantIds string[]
    aggregated_alerts_stats Sequence[GetBackupRecoveryManagerGetAlertsStatsAggregatedAlertsStat]
    (List) Specifies the active alert statistics details. Nested schema for aggregated_alerts_stats:
    aggregated_cluster_stats Sequence[GetBackupRecoveryManagerGetAlertsStatsAggregatedClusterStat]
    (List) Specifies the cluster statistics based on active alerts. Nested schema for aggregated_cluster_stats:
    end_time_usecs float
    id str
    The unique identifier of the Active Alerts stats response..
    region str
    start_time_usecs float
    stats_by_clusters Sequence[GetBackupRecoveryManagerGetAlertsStatsStatsByCluster]
    (List) Specifies the active Alerts stats by clusters. Nested schema for stats_by_cluster:
    alert_source str
    cluster_ids Sequence[float]
    endpoint_type str
    exclude_stats_by_cluster bool
    instance_id str
    region_ids Sequence[str]
    service_instance_ids Sequence[str]
    tenant_ids Sequence[str]
    aggregatedAlertsStats List<Property Map>
    (List) Specifies the active alert statistics details. Nested schema for aggregated_alerts_stats:
    aggregatedClusterStats List<Property Map>
    (List) Specifies the cluster statistics based on active alerts. Nested schema for aggregated_cluster_stats:
    endTimeUsecs Number
    id String
    The unique identifier of the Active Alerts stats response..
    region String
    startTimeUsecs Number
    statsByClusters List<Property Map>
    (List) Specifies the active Alerts stats by clusters. Nested schema for stats_by_cluster:
    alertSource String
    clusterIds List<Number>
    endpointType String
    excludeStatsByCluster Boolean
    instanceId String
    regionIds List<String>
    serviceInstanceIds List<String>
    tenantIds List<String>

    Supporting Types

    GetBackupRecoveryManagerGetAlertsStatsAggregatedAlertsStat

    NumCriticalAlerts double
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    NumCriticalAlertsCategories double
    (Integer) Specifies the count of active critical alerts categories.
    NumDataServiceAlerts double
    (Integer) Specifies the count of active service Alerts.
    NumDataServiceCriticalAlerts double
    (Integer) Specifies the count of active service critical Alerts.
    NumDataServiceInfoAlerts double
    (Integer) Specifies the count of active service info Alerts.
    NumDataServiceWarningAlerts double
    (Integer) Specifies the count of active service warning Alerts.
    NumHardwareAlerts double
    (Integer) Specifies the count of active hardware Alerts.
    NumHardwareCriticalAlerts double
    (Integer) Specifies the count of active hardware critical Alerts.
    NumHardwareInfoAlerts double
    (Integer) Specifies the count of active hardware info Alerts.
    NumHardwareWarningAlerts double
    (Integer) Specifies the count of active hardware warning Alerts.
    NumInfoAlerts double
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    NumInfoAlertsCategories double
    (Integer) Specifies the count of active info alerts categories.
    NumMaintenanceAlerts double
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    NumMaintenanceCriticalAlerts double
    (Integer) Specifies the count of active other critical Alerts.
    NumMaintenanceInfoAlerts double
    (Integer) Specifies the count of active other info Alerts.
    NumMaintenanceWarningAlerts double
    (Integer) Specifies the count of active other warning Alerts.
    NumSoftwareAlerts double
    (Integer) Specifies the count of active software Alerts.
    NumSoftwareCriticalAlerts double
    (Integer) Specifies the count of active software critical Alerts.
    NumSoftwareInfoAlerts double
    (Integer) Specifies the count of active software info Alerts.
    NumSoftwareWarningAlerts double
    (Integer) Specifies the count of active software warning Alerts.
    NumWarningAlerts double
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    NumWarningAlertsCategories double
    (Integer) Specifies the count of active warning alerts categories.
    NumCriticalAlerts float64
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    NumCriticalAlertsCategories float64
    (Integer) Specifies the count of active critical alerts categories.
    NumDataServiceAlerts float64
    (Integer) Specifies the count of active service Alerts.
    NumDataServiceCriticalAlerts float64
    (Integer) Specifies the count of active service critical Alerts.
    NumDataServiceInfoAlerts float64
    (Integer) Specifies the count of active service info Alerts.
    NumDataServiceWarningAlerts float64
    (Integer) Specifies the count of active service warning Alerts.
    NumHardwareAlerts float64
    (Integer) Specifies the count of active hardware Alerts.
    NumHardwareCriticalAlerts float64
    (Integer) Specifies the count of active hardware critical Alerts.
    NumHardwareInfoAlerts float64
    (Integer) Specifies the count of active hardware info Alerts.
    NumHardwareWarningAlerts float64
    (Integer) Specifies the count of active hardware warning Alerts.
    NumInfoAlerts float64
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    NumInfoAlertsCategories float64
    (Integer) Specifies the count of active info alerts categories.
    NumMaintenanceAlerts float64
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    NumMaintenanceCriticalAlerts float64
    (Integer) Specifies the count of active other critical Alerts.
    NumMaintenanceInfoAlerts float64
    (Integer) Specifies the count of active other info Alerts.
    NumMaintenanceWarningAlerts float64
    (Integer) Specifies the count of active other warning Alerts.
    NumSoftwareAlerts float64
    (Integer) Specifies the count of active software Alerts.
    NumSoftwareCriticalAlerts float64
    (Integer) Specifies the count of active software critical Alerts.
    NumSoftwareInfoAlerts float64
    (Integer) Specifies the count of active software info Alerts.
    NumSoftwareWarningAlerts float64
    (Integer) Specifies the count of active software warning Alerts.
    NumWarningAlerts float64
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    NumWarningAlertsCategories float64
    (Integer) Specifies the count of active warning alerts categories.
    numCriticalAlerts Double
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    numCriticalAlertsCategories Double
    (Integer) Specifies the count of active critical alerts categories.
    numDataServiceAlerts Double
    (Integer) Specifies the count of active service Alerts.
    numDataServiceCriticalAlerts Double
    (Integer) Specifies the count of active service critical Alerts.
    numDataServiceInfoAlerts Double
    (Integer) Specifies the count of active service info Alerts.
    numDataServiceWarningAlerts Double
    (Integer) Specifies the count of active service warning Alerts.
    numHardwareAlerts Double
    (Integer) Specifies the count of active hardware Alerts.
    numHardwareCriticalAlerts Double
    (Integer) Specifies the count of active hardware critical Alerts.
    numHardwareInfoAlerts Double
    (Integer) Specifies the count of active hardware info Alerts.
    numHardwareWarningAlerts Double
    (Integer) Specifies the count of active hardware warning Alerts.
    numInfoAlerts Double
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    numInfoAlertsCategories Double
    (Integer) Specifies the count of active info alerts categories.
    numMaintenanceAlerts Double
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    numMaintenanceCriticalAlerts Double
    (Integer) Specifies the count of active other critical Alerts.
    numMaintenanceInfoAlerts Double
    (Integer) Specifies the count of active other info Alerts.
    numMaintenanceWarningAlerts Double
    (Integer) Specifies the count of active other warning Alerts.
    numSoftwareAlerts Double
    (Integer) Specifies the count of active software Alerts.
    numSoftwareCriticalAlerts Double
    (Integer) Specifies the count of active software critical Alerts.
    numSoftwareInfoAlerts Double
    (Integer) Specifies the count of active software info Alerts.
    numSoftwareWarningAlerts Double
    (Integer) Specifies the count of active software warning Alerts.
    numWarningAlerts Double
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    numWarningAlertsCategories Double
    (Integer) Specifies the count of active warning alerts categories.
    numCriticalAlerts number
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    numCriticalAlertsCategories number
    (Integer) Specifies the count of active critical alerts categories.
    numDataServiceAlerts number
    (Integer) Specifies the count of active service Alerts.
    numDataServiceCriticalAlerts number
    (Integer) Specifies the count of active service critical Alerts.
    numDataServiceInfoAlerts number
    (Integer) Specifies the count of active service info Alerts.
    numDataServiceWarningAlerts number
    (Integer) Specifies the count of active service warning Alerts.
    numHardwareAlerts number
    (Integer) Specifies the count of active hardware Alerts.
    numHardwareCriticalAlerts number
    (Integer) Specifies the count of active hardware critical Alerts.
    numHardwareInfoAlerts number
    (Integer) Specifies the count of active hardware info Alerts.
    numHardwareWarningAlerts number
    (Integer) Specifies the count of active hardware warning Alerts.
    numInfoAlerts number
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    numInfoAlertsCategories number
    (Integer) Specifies the count of active info alerts categories.
    numMaintenanceAlerts number
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    numMaintenanceCriticalAlerts number
    (Integer) Specifies the count of active other critical Alerts.
    numMaintenanceInfoAlerts number
    (Integer) Specifies the count of active other info Alerts.
    numMaintenanceWarningAlerts number
    (Integer) Specifies the count of active other warning Alerts.
    numSoftwareAlerts number
    (Integer) Specifies the count of active software Alerts.
    numSoftwareCriticalAlerts number
    (Integer) Specifies the count of active software critical Alerts.
    numSoftwareInfoAlerts number
    (Integer) Specifies the count of active software info Alerts.
    numSoftwareWarningAlerts number
    (Integer) Specifies the count of active software warning Alerts.
    numWarningAlerts number
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    numWarningAlertsCategories number
    (Integer) Specifies the count of active warning alerts categories.
    num_critical_alerts float
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    num_critical_alerts_categories float
    (Integer) Specifies the count of active critical alerts categories.
    num_data_service_alerts float
    (Integer) Specifies the count of active service Alerts.
    num_data_service_critical_alerts float
    (Integer) Specifies the count of active service critical Alerts.
    num_data_service_info_alerts float
    (Integer) Specifies the count of active service info Alerts.
    num_data_service_warning_alerts float
    (Integer) Specifies the count of active service warning Alerts.
    num_hardware_alerts float
    (Integer) Specifies the count of active hardware Alerts.
    num_hardware_critical_alerts float
    (Integer) Specifies the count of active hardware critical Alerts.
    num_hardware_info_alerts float
    (Integer) Specifies the count of active hardware info Alerts.
    num_hardware_warning_alerts float
    (Integer) Specifies the count of active hardware warning Alerts.
    num_info_alerts float
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    num_info_alerts_categories float
    (Integer) Specifies the count of active info alerts categories.
    num_maintenance_alerts float
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    num_maintenance_critical_alerts float
    (Integer) Specifies the count of active other critical Alerts.
    num_maintenance_info_alerts float
    (Integer) Specifies the count of active other info Alerts.
    num_maintenance_warning_alerts float
    (Integer) Specifies the count of active other warning Alerts.
    num_software_alerts float
    (Integer) Specifies the count of active software Alerts.
    num_software_critical_alerts float
    (Integer) Specifies the count of active software critical Alerts.
    num_software_info_alerts float
    (Integer) Specifies the count of active software info Alerts.
    num_software_warning_alerts float
    (Integer) Specifies the count of active software warning Alerts.
    num_warning_alerts float
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    num_warning_alerts_categories float
    (Integer) Specifies the count of active warning alerts categories.
    numCriticalAlerts Number
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    numCriticalAlertsCategories Number
    (Integer) Specifies the count of active critical alerts categories.
    numDataServiceAlerts Number
    (Integer) Specifies the count of active service Alerts.
    numDataServiceCriticalAlerts Number
    (Integer) Specifies the count of active service critical Alerts.
    numDataServiceInfoAlerts Number
    (Integer) Specifies the count of active service info Alerts.
    numDataServiceWarningAlerts Number
    (Integer) Specifies the count of active service warning Alerts.
    numHardwareAlerts Number
    (Integer) Specifies the count of active hardware Alerts.
    numHardwareCriticalAlerts Number
    (Integer) Specifies the count of active hardware critical Alerts.
    numHardwareInfoAlerts Number
    (Integer) Specifies the count of active hardware info Alerts.
    numHardwareWarningAlerts Number
    (Integer) Specifies the count of active hardware warning Alerts.
    numInfoAlerts Number
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    numInfoAlertsCategories Number
    (Integer) Specifies the count of active info alerts categories.
    numMaintenanceAlerts Number
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    numMaintenanceCriticalAlerts Number
    (Integer) Specifies the count of active other critical Alerts.
    numMaintenanceInfoAlerts Number
    (Integer) Specifies the count of active other info Alerts.
    numMaintenanceWarningAlerts Number
    (Integer) Specifies the count of active other warning Alerts.
    numSoftwareAlerts Number
    (Integer) Specifies the count of active software Alerts.
    numSoftwareCriticalAlerts Number
    (Integer) Specifies the count of active software critical Alerts.
    numSoftwareInfoAlerts Number
    (Integer) Specifies the count of active software info Alerts.
    numSoftwareWarningAlerts Number
    (Integer) Specifies the count of active software warning Alerts.
    numWarningAlerts Number
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    numWarningAlertsCategories Number
    (Integer) Specifies the count of active warning alerts categories.

    GetBackupRecoveryManagerGetAlertsStatsAggregatedClusterStat

    NumClustersWithCriticalAlerts double
    (Integer) Specifies the count of clusters with at least one critical alert.
    NumClustersWithWarningAlerts double
    (Integer) Specifies the count of clusters with at least one warning category alert and no critical alerts.
    NumHealthyClusters double
    (Integer) Specifies the count of clusters with no warning or critical alerts.
    NumClustersWithCriticalAlerts float64
    (Integer) Specifies the count of clusters with at least one critical alert.
    NumClustersWithWarningAlerts float64
    (Integer) Specifies the count of clusters with at least one warning category alert and no critical alerts.
    NumHealthyClusters float64
    (Integer) Specifies the count of clusters with no warning or critical alerts.
    numClustersWithCriticalAlerts Double
    (Integer) Specifies the count of clusters with at least one critical alert.
    numClustersWithWarningAlerts Double
    (Integer) Specifies the count of clusters with at least one warning category alert and no critical alerts.
    numHealthyClusters Double
    (Integer) Specifies the count of clusters with no warning or critical alerts.
    numClustersWithCriticalAlerts number
    (Integer) Specifies the count of clusters with at least one critical alert.
    numClustersWithWarningAlerts number
    (Integer) Specifies the count of clusters with at least one warning category alert and no critical alerts.
    numHealthyClusters number
    (Integer) Specifies the count of clusters with no warning or critical alerts.
    num_clusters_with_critical_alerts float
    (Integer) Specifies the count of clusters with at least one critical alert.
    num_clusters_with_warning_alerts float
    (Integer) Specifies the count of clusters with at least one warning category alert and no critical alerts.
    num_healthy_clusters float
    (Integer) Specifies the count of clusters with no warning or critical alerts.
    numClustersWithCriticalAlerts Number
    (Integer) Specifies the count of clusters with at least one critical alert.
    numClustersWithWarningAlerts Number
    (Integer) Specifies the count of clusters with at least one warning category alert and no critical alerts.
    numHealthyClusters Number
    (Integer) Specifies the count of clusters with no warning or critical alerts.

    GetBackupRecoveryManagerGetAlertsStatsStatsByCluster

    AlertsStats List<GetBackupRecoveryManagerGetAlertsStatsStatsByClusterAlertsStat>
    (List) Specifies the active alert statistics details. Nested schema for alerts_stats:
    ClusterId double
    (Integer) Specifies the Cluster Id.
    RegionId string
    (String) Specifies the region id of cluster.
    AlertsStats []GetBackupRecoveryManagerGetAlertsStatsStatsByClusterAlertsStat
    (List) Specifies the active alert statistics details. Nested schema for alerts_stats:
    ClusterId float64
    (Integer) Specifies the Cluster Id.
    RegionId string
    (String) Specifies the region id of cluster.
    alertsStats List<GetBackupRecoveryManagerGetAlertsStatsStatsByClusterAlertsStat>
    (List) Specifies the active alert statistics details. Nested schema for alerts_stats:
    clusterId Double
    (Integer) Specifies the Cluster Id.
    regionId String
    (String) Specifies the region id of cluster.
    alertsStats GetBackupRecoveryManagerGetAlertsStatsStatsByClusterAlertsStat[]
    (List) Specifies the active alert statistics details. Nested schema for alerts_stats:
    clusterId number
    (Integer) Specifies the Cluster Id.
    regionId string
    (String) Specifies the region id of cluster.
    alerts_stats Sequence[GetBackupRecoveryManagerGetAlertsStatsStatsByClusterAlertsStat]
    (List) Specifies the active alert statistics details. Nested schema for alerts_stats:
    cluster_id float
    (Integer) Specifies the Cluster Id.
    region_id str
    (String) Specifies the region id of cluster.
    alertsStats List<Property Map>
    (List) Specifies the active alert statistics details. Nested schema for alerts_stats:
    clusterId Number
    (Integer) Specifies the Cluster Id.
    regionId String
    (String) Specifies the region id of cluster.

    GetBackupRecoveryManagerGetAlertsStatsStatsByClusterAlertsStat

    NumCriticalAlerts double
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    NumCriticalAlertsCategories double
    (Integer) Specifies the count of active critical alerts categories.
    NumDataServiceAlerts double
    (Integer) Specifies the count of active service Alerts.
    NumDataServiceCriticalAlerts double
    (Integer) Specifies the count of active service critical Alerts.
    NumDataServiceInfoAlerts double
    (Integer) Specifies the count of active service info Alerts.
    NumDataServiceWarningAlerts double
    (Integer) Specifies the count of active service warning Alerts.
    NumHardwareAlerts double
    (Integer) Specifies the count of active hardware Alerts.
    NumHardwareCriticalAlerts double
    (Integer) Specifies the count of active hardware critical Alerts.
    NumHardwareInfoAlerts double
    (Integer) Specifies the count of active hardware info Alerts.
    NumHardwareWarningAlerts double
    (Integer) Specifies the count of active hardware warning Alerts.
    NumInfoAlerts double
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    NumInfoAlertsCategories double
    (Integer) Specifies the count of active info alerts categories.
    NumMaintenanceAlerts double
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    NumMaintenanceCriticalAlerts double
    (Integer) Specifies the count of active other critical Alerts.
    NumMaintenanceInfoAlerts double
    (Integer) Specifies the count of active other info Alerts.
    NumMaintenanceWarningAlerts double
    (Integer) Specifies the count of active other warning Alerts.
    NumSoftwareAlerts double
    (Integer) Specifies the count of active software Alerts.
    NumSoftwareCriticalAlerts double
    (Integer) Specifies the count of active software critical Alerts.
    NumSoftwareInfoAlerts double
    (Integer) Specifies the count of active software info Alerts.
    NumSoftwareWarningAlerts double
    (Integer) Specifies the count of active software warning Alerts.
    NumWarningAlerts double
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    NumWarningAlertsCategories double
    (Integer) Specifies the count of active warning alerts categories.
    NumCriticalAlerts float64
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    NumCriticalAlertsCategories float64
    (Integer) Specifies the count of active critical alerts categories.
    NumDataServiceAlerts float64
    (Integer) Specifies the count of active service Alerts.
    NumDataServiceCriticalAlerts float64
    (Integer) Specifies the count of active service critical Alerts.
    NumDataServiceInfoAlerts float64
    (Integer) Specifies the count of active service info Alerts.
    NumDataServiceWarningAlerts float64
    (Integer) Specifies the count of active service warning Alerts.
    NumHardwareAlerts float64
    (Integer) Specifies the count of active hardware Alerts.
    NumHardwareCriticalAlerts float64
    (Integer) Specifies the count of active hardware critical Alerts.
    NumHardwareInfoAlerts float64
    (Integer) Specifies the count of active hardware info Alerts.
    NumHardwareWarningAlerts float64
    (Integer) Specifies the count of active hardware warning Alerts.
    NumInfoAlerts float64
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    NumInfoAlertsCategories float64
    (Integer) Specifies the count of active info alerts categories.
    NumMaintenanceAlerts float64
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    NumMaintenanceCriticalAlerts float64
    (Integer) Specifies the count of active other critical Alerts.
    NumMaintenanceInfoAlerts float64
    (Integer) Specifies the count of active other info Alerts.
    NumMaintenanceWarningAlerts float64
    (Integer) Specifies the count of active other warning Alerts.
    NumSoftwareAlerts float64
    (Integer) Specifies the count of active software Alerts.
    NumSoftwareCriticalAlerts float64
    (Integer) Specifies the count of active software critical Alerts.
    NumSoftwareInfoAlerts float64
    (Integer) Specifies the count of active software info Alerts.
    NumSoftwareWarningAlerts float64
    (Integer) Specifies the count of active software warning Alerts.
    NumWarningAlerts float64
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    NumWarningAlertsCategories float64
    (Integer) Specifies the count of active warning alerts categories.
    numCriticalAlerts Double
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    numCriticalAlertsCategories Double
    (Integer) Specifies the count of active critical alerts categories.
    numDataServiceAlerts Double
    (Integer) Specifies the count of active service Alerts.
    numDataServiceCriticalAlerts Double
    (Integer) Specifies the count of active service critical Alerts.
    numDataServiceInfoAlerts Double
    (Integer) Specifies the count of active service info Alerts.
    numDataServiceWarningAlerts Double
    (Integer) Specifies the count of active service warning Alerts.
    numHardwareAlerts Double
    (Integer) Specifies the count of active hardware Alerts.
    numHardwareCriticalAlerts Double
    (Integer) Specifies the count of active hardware critical Alerts.
    numHardwareInfoAlerts Double
    (Integer) Specifies the count of active hardware info Alerts.
    numHardwareWarningAlerts Double
    (Integer) Specifies the count of active hardware warning Alerts.
    numInfoAlerts Double
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    numInfoAlertsCategories Double
    (Integer) Specifies the count of active info alerts categories.
    numMaintenanceAlerts Double
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    numMaintenanceCriticalAlerts Double
    (Integer) Specifies the count of active other critical Alerts.
    numMaintenanceInfoAlerts Double
    (Integer) Specifies the count of active other info Alerts.
    numMaintenanceWarningAlerts Double
    (Integer) Specifies the count of active other warning Alerts.
    numSoftwareAlerts Double
    (Integer) Specifies the count of active software Alerts.
    numSoftwareCriticalAlerts Double
    (Integer) Specifies the count of active software critical Alerts.
    numSoftwareInfoAlerts Double
    (Integer) Specifies the count of active software info Alerts.
    numSoftwareWarningAlerts Double
    (Integer) Specifies the count of active software warning Alerts.
    numWarningAlerts Double
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    numWarningAlertsCategories Double
    (Integer) Specifies the count of active warning alerts categories.
    numCriticalAlerts number
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    numCriticalAlertsCategories number
    (Integer) Specifies the count of active critical alerts categories.
    numDataServiceAlerts number
    (Integer) Specifies the count of active service Alerts.
    numDataServiceCriticalAlerts number
    (Integer) Specifies the count of active service critical Alerts.
    numDataServiceInfoAlerts number
    (Integer) Specifies the count of active service info Alerts.
    numDataServiceWarningAlerts number
    (Integer) Specifies the count of active service warning Alerts.
    numHardwareAlerts number
    (Integer) Specifies the count of active hardware Alerts.
    numHardwareCriticalAlerts number
    (Integer) Specifies the count of active hardware critical Alerts.
    numHardwareInfoAlerts number
    (Integer) Specifies the count of active hardware info Alerts.
    numHardwareWarningAlerts number
    (Integer) Specifies the count of active hardware warning Alerts.
    numInfoAlerts number
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    numInfoAlertsCategories number
    (Integer) Specifies the count of active info alerts categories.
    numMaintenanceAlerts number
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    numMaintenanceCriticalAlerts number
    (Integer) Specifies the count of active other critical Alerts.
    numMaintenanceInfoAlerts number
    (Integer) Specifies the count of active other info Alerts.
    numMaintenanceWarningAlerts number
    (Integer) Specifies the count of active other warning Alerts.
    numSoftwareAlerts number
    (Integer) Specifies the count of active software Alerts.
    numSoftwareCriticalAlerts number
    (Integer) Specifies the count of active software critical Alerts.
    numSoftwareInfoAlerts number
    (Integer) Specifies the count of active software info Alerts.
    numSoftwareWarningAlerts number
    (Integer) Specifies the count of active software warning Alerts.
    numWarningAlerts number
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    numWarningAlertsCategories number
    (Integer) Specifies the count of active warning alerts categories.
    num_critical_alerts float
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    num_critical_alerts_categories float
    (Integer) Specifies the count of active critical alerts categories.
    num_data_service_alerts float
    (Integer) Specifies the count of active service Alerts.
    num_data_service_critical_alerts float
    (Integer) Specifies the count of active service critical Alerts.
    num_data_service_info_alerts float
    (Integer) Specifies the count of active service info Alerts.
    num_data_service_warning_alerts float
    (Integer) Specifies the count of active service warning Alerts.
    num_hardware_alerts float
    (Integer) Specifies the count of active hardware Alerts.
    num_hardware_critical_alerts float
    (Integer) Specifies the count of active hardware critical Alerts.
    num_hardware_info_alerts float
    (Integer) Specifies the count of active hardware info Alerts.
    num_hardware_warning_alerts float
    (Integer) Specifies the count of active hardware warning Alerts.
    num_info_alerts float
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    num_info_alerts_categories float
    (Integer) Specifies the count of active info alerts categories.
    num_maintenance_alerts float
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    num_maintenance_critical_alerts float
    (Integer) Specifies the count of active other critical Alerts.
    num_maintenance_info_alerts float
    (Integer) Specifies the count of active other info Alerts.
    num_maintenance_warning_alerts float
    (Integer) Specifies the count of active other warning Alerts.
    num_software_alerts float
    (Integer) Specifies the count of active software Alerts.
    num_software_critical_alerts float
    (Integer) Specifies the count of active software critical Alerts.
    num_software_info_alerts float
    (Integer) Specifies the count of active software info Alerts.
    num_software_warning_alerts float
    (Integer) Specifies the count of active software warning Alerts.
    num_warning_alerts float
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    num_warning_alerts_categories float
    (Integer) Specifies the count of active warning alerts categories.
    numCriticalAlerts Number
    (Integer) Specifies the count of active critical Alerts excluding alerts that belong to other bucket.
    numCriticalAlertsCategories Number
    (Integer) Specifies the count of active critical alerts categories.
    numDataServiceAlerts Number
    (Integer) Specifies the count of active service Alerts.
    numDataServiceCriticalAlerts Number
    (Integer) Specifies the count of active service critical Alerts.
    numDataServiceInfoAlerts Number
    (Integer) Specifies the count of active service info Alerts.
    numDataServiceWarningAlerts Number
    (Integer) Specifies the count of active service warning Alerts.
    numHardwareAlerts Number
    (Integer) Specifies the count of active hardware Alerts.
    numHardwareCriticalAlerts Number
    (Integer) Specifies the count of active hardware critical Alerts.
    numHardwareInfoAlerts Number
    (Integer) Specifies the count of active hardware info Alerts.
    numHardwareWarningAlerts Number
    (Integer) Specifies the count of active hardware warning Alerts.
    numInfoAlerts Number
    (Integer) Specifies the count of active info Alerts excluding alerts that belong to other bucket.
    numInfoAlertsCategories Number
    (Integer) Specifies the count of active info alerts categories.
    numMaintenanceAlerts Number
    (Integer) Specifies the count of active Alerts of maintenance bucket.
    numMaintenanceCriticalAlerts Number
    (Integer) Specifies the count of active other critical Alerts.
    numMaintenanceInfoAlerts Number
    (Integer) Specifies the count of active other info Alerts.
    numMaintenanceWarningAlerts Number
    (Integer) Specifies the count of active other warning Alerts.
    numSoftwareAlerts Number
    (Integer) Specifies the count of active software Alerts.
    numSoftwareCriticalAlerts Number
    (Integer) Specifies the count of active software critical Alerts.
    numSoftwareInfoAlerts Number
    (Integer) Specifies the count of active software info Alerts.
    numSoftwareWarningAlerts Number
    (Integer) Specifies the count of active software warning Alerts.
    numWarningAlerts Number
    (Integer) Specifies the count of active warning Alerts excluding alerts that belong to other bucket.
    numWarningAlertsCategories Number
    (Integer) Specifies the count of active warning alerts categories.

    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