1. Packages
  2. Ibm Provider
  3. API Docs
  4. BackupRecoveryRestorePoints
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.BackupRecoveryRestorePoints

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const backupRecoveryRestorePointsInstance = new ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsInstance", {
        endTimeUsecs: 12,
        environment: "kVMware",
        startTimeUsecs: 14,
        xIbmTenantId: "x_ibm_tenant_id",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    backup_recovery_restore_points_instance = ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsInstance",
        end_time_usecs=12,
        environment="kVMware",
        start_time_usecs=14,
        x_ibm_tenant_id="x_ibm_tenant_id")
    
    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.NewBackupRecoveryRestorePoints(ctx, "backupRecoveryRestorePointsInstance", &ibm.BackupRecoveryRestorePointsArgs{
    			EndTimeUsecs:   pulumi.Float64(12),
    			Environment:    pulumi.String("kVMware"),
    			StartTimeUsecs: pulumi.Float64(14),
    			XIbmTenantId:   pulumi.String("x_ibm_tenant_id"),
    		})
    		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 backupRecoveryRestorePointsInstance = new Ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsInstance", new()
        {
            EndTimeUsecs = 12,
            Environment = "kVMware",
            StartTimeUsecs = 14,
            XIbmTenantId = "x_ibm_tenant_id",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.BackupRecoveryRestorePoints;
    import com.pulumi.ibm.BackupRecoveryRestorePointsArgs;
    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 backupRecoveryRestorePointsInstance = new BackupRecoveryRestorePoints("backupRecoveryRestorePointsInstance", BackupRecoveryRestorePointsArgs.builder()
                .endTimeUsecs(12)
                .environment("kVMware")
                .startTimeUsecs(14)
                .xIbmTenantId("x_ibm_tenant_id")
                .build());
    
        }
    }
    
    resources:
      backupRecoveryRestorePointsInstance:
        type: ibm:BackupRecoveryRestorePoints
        properties:
          endTimeUsecs: 12
          environment: kVMware
          startTimeUsecs: 14
          xIbmTenantId: x_ibm_tenant_id
    

    Create BackupRecoveryRestorePoints Resource

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

    Constructor syntax

    new BackupRecoveryRestorePoints(name: string, args: BackupRecoveryRestorePointsArgs, opts?: CustomResourceOptions);
    @overload
    def BackupRecoveryRestorePoints(resource_name: str,
                                    args: BackupRecoveryRestorePointsArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def BackupRecoveryRestorePoints(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    end_time_usecs: Optional[float] = None,
                                    environment: Optional[str] = None,
                                    protection_group_ids: Optional[Sequence[str]] = None,
                                    start_time_usecs: Optional[float] = None,
                                    x_ibm_tenant_id: Optional[str] = None,
                                    backup_recovery_restore_points_id: Optional[str] = None,
                                    source_id: Optional[float] = None)
    func NewBackupRecoveryRestorePoints(ctx *Context, name string, args BackupRecoveryRestorePointsArgs, opts ...ResourceOption) (*BackupRecoveryRestorePoints, error)
    public BackupRecoveryRestorePoints(string name, BackupRecoveryRestorePointsArgs args, CustomResourceOptions? opts = null)
    public BackupRecoveryRestorePoints(String name, BackupRecoveryRestorePointsArgs args)
    public BackupRecoveryRestorePoints(String name, BackupRecoveryRestorePointsArgs args, CustomResourceOptions options)
    
    type: ibm:BackupRecoveryRestorePoints
    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 BackupRecoveryRestorePointsArgs
    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 BackupRecoveryRestorePointsArgs
    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 BackupRecoveryRestorePointsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BackupRecoveryRestorePointsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BackupRecoveryRestorePointsArgs
    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 backupRecoveryRestorePointsResource = new Ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsResource", new()
    {
        EndTimeUsecs = 0,
        Environment = "string",
        ProtectionGroupIds = new[]
        {
            "string",
        },
        StartTimeUsecs = 0,
        XIbmTenantId = "string",
        BackupRecoveryRestorePointsId = "string",
        SourceId = 0,
    });
    
    example, err := ibm.NewBackupRecoveryRestorePoints(ctx, "backupRecoveryRestorePointsResource", &ibm.BackupRecoveryRestorePointsArgs{
    	EndTimeUsecs: pulumi.Float64(0),
    	Environment:  pulumi.String("string"),
    	ProtectionGroupIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	StartTimeUsecs:                pulumi.Float64(0),
    	XIbmTenantId:                  pulumi.String("string"),
    	BackupRecoveryRestorePointsId: pulumi.String("string"),
    	SourceId:                      pulumi.Float64(0),
    })
    
    var backupRecoveryRestorePointsResource = new BackupRecoveryRestorePoints("backupRecoveryRestorePointsResource", BackupRecoveryRestorePointsArgs.builder()
        .endTimeUsecs(0)
        .environment("string")
        .protectionGroupIds("string")
        .startTimeUsecs(0)
        .xIbmTenantId("string")
        .backupRecoveryRestorePointsId("string")
        .sourceId(0)
        .build());
    
    backup_recovery_restore_points_resource = ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsResource",
        end_time_usecs=0,
        environment="string",
        protection_group_ids=["string"],
        start_time_usecs=0,
        x_ibm_tenant_id="string",
        backup_recovery_restore_points_id="string",
        source_id=0)
    
    const backupRecoveryRestorePointsResource = new ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsResource", {
        endTimeUsecs: 0,
        environment: "string",
        protectionGroupIds: ["string"],
        startTimeUsecs: 0,
        xIbmTenantId: "string",
        backupRecoveryRestorePointsId: "string",
        sourceId: 0,
    });
    
    type: ibm:BackupRecoveryRestorePoints
    properties:
        backupRecoveryRestorePointsId: string
        endTimeUsecs: 0
        environment: string
        protectionGroupIds:
            - string
        sourceId: 0
        startTimeUsecs: 0
        xIbmTenantId: string
    

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

    EndTimeUsecs double
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    ProtectionGroupIds List<string>
    Specifies the jobs for which to get the full snapshot information.
    StartTimeUsecs double
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    XIbmTenantId string
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    BackupRecoveryRestorePointsId string
    The unique identifier of the backup_recovery_restore_points.
    SourceId double
    Specifies the id of the Protection Source which is to be restored.
    EndTimeUsecs float64
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    ProtectionGroupIds []string
    Specifies the jobs for which to get the full snapshot information.
    StartTimeUsecs float64
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    XIbmTenantId string
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    BackupRecoveryRestorePointsId string
    The unique identifier of the backup_recovery_restore_points.
    SourceId float64
    Specifies the id of the Protection Source which is to be restored.
    endTimeUsecs Double
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protectionGroupIds List<String>
    Specifies the jobs for which to get the full snapshot information.
    startTimeUsecs Double
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    xIbmTenantId String
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    backupRecoveryRestorePointsId String
    The unique identifier of the backup_recovery_restore_points.
    sourceId Double
    Specifies the id of the Protection Source which is to be restored.
    endTimeUsecs number
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protectionGroupIds string[]
    Specifies the jobs for which to get the full snapshot information.
    startTimeUsecs number
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    xIbmTenantId string
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    backupRecoveryRestorePointsId string
    The unique identifier of the backup_recovery_restore_points.
    sourceId number
    Specifies the id of the Protection Source which is to be restored.
    end_time_usecs float
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protection_group_ids Sequence[str]
    Specifies the jobs for which to get the full snapshot information.
    start_time_usecs float
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    x_ibm_tenant_id str
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    backup_recovery_restore_points_id str
    The unique identifier of the backup_recovery_restore_points.
    source_id float
    Specifies the id of the Protection Source which is to be restored.
    endTimeUsecs Number
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protectionGroupIds List<String>
    Specifies the jobs for which to get the full snapshot information.
    startTimeUsecs Number
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    xIbmTenantId String
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    backupRecoveryRestorePointsId String
    The unique identifier of the backup_recovery_restore_points.
    sourceId Number
    Specifies the id of the Protection Source which is to be restored.

    Outputs

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

    FullSnapshotInfos List<BackupRecoveryRestorePointsFullSnapshotInfo>
    Specifies the info related to the recovery object.
    Id string
    The provider-assigned unique ID for this managed resource.
    TimeRangeInfos List<BackupRecoveryRestorePointsTimeRangeInfo>
    Information about a set of disjoint, possibly annotated time ranges.
    FullSnapshotInfos []BackupRecoveryRestorePointsFullSnapshotInfo
    Specifies the info related to the recovery object.
    Id string
    The provider-assigned unique ID for this managed resource.
    TimeRangeInfos []BackupRecoveryRestorePointsTimeRangeInfo
    Information about a set of disjoint, possibly annotated time ranges.
    fullSnapshotInfos List<BackupRecoveryRestorePointsFullSnapshotInfo>
    Specifies the info related to the recovery object.
    id String
    The provider-assigned unique ID for this managed resource.
    timeRangeInfos List<BackupRecoveryRestorePointsTimeRangeInfo>
    Information about a set of disjoint, possibly annotated time ranges.
    fullSnapshotInfos BackupRecoveryRestorePointsFullSnapshotInfo[]
    Specifies the info related to the recovery object.
    id string
    The provider-assigned unique ID for this managed resource.
    timeRangeInfos BackupRecoveryRestorePointsTimeRangeInfo[]
    Information about a set of disjoint, possibly annotated time ranges.
    full_snapshot_infos Sequence[BackupRecoveryRestorePointsFullSnapshotInfo]
    Specifies the info related to the recovery object.
    id str
    The provider-assigned unique ID for this managed resource.
    time_range_infos Sequence[BackupRecoveryRestorePointsTimeRangeInfo]
    Information about a set of disjoint, possibly annotated time ranges.
    fullSnapshotInfos List<Property Map>
    Specifies the info related to the recovery object.
    id String
    The provider-assigned unique ID for this managed resource.
    timeRangeInfos List<Property Map>
    Information about a set of disjoint, possibly annotated time ranges.

    Look up Existing BackupRecoveryRestorePoints Resource

    Get an existing BackupRecoveryRestorePoints 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?: BackupRecoveryRestorePointsState, opts?: CustomResourceOptions): BackupRecoveryRestorePoints
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backup_recovery_restore_points_id: Optional[str] = None,
            end_time_usecs: Optional[float] = None,
            environment: Optional[str] = None,
            full_snapshot_infos: Optional[Sequence[BackupRecoveryRestorePointsFullSnapshotInfoArgs]] = None,
            protection_group_ids: Optional[Sequence[str]] = None,
            source_id: Optional[float] = None,
            start_time_usecs: Optional[float] = None,
            time_range_infos: Optional[Sequence[BackupRecoveryRestorePointsTimeRangeInfoArgs]] = None,
            x_ibm_tenant_id: Optional[str] = None) -> BackupRecoveryRestorePoints
    func GetBackupRecoveryRestorePoints(ctx *Context, name string, id IDInput, state *BackupRecoveryRestorePointsState, opts ...ResourceOption) (*BackupRecoveryRestorePoints, error)
    public static BackupRecoveryRestorePoints Get(string name, Input<string> id, BackupRecoveryRestorePointsState? state, CustomResourceOptions? opts = null)
    public static BackupRecoveryRestorePoints get(String name, Output<String> id, BackupRecoveryRestorePointsState state, CustomResourceOptions options)
    resources:  _:    type: ibm:BackupRecoveryRestorePoints    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:
    BackupRecoveryRestorePointsId string
    The unique identifier of the backup_recovery_restore_points.
    EndTimeUsecs double
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    FullSnapshotInfos List<BackupRecoveryRestorePointsFullSnapshotInfo>
    Specifies the info related to the recovery object.
    ProtectionGroupIds List<string>
    Specifies the jobs for which to get the full snapshot information.
    SourceId double
    Specifies the id of the Protection Source which is to be restored.
    StartTimeUsecs double
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    TimeRangeInfos List<BackupRecoveryRestorePointsTimeRangeInfo>
    Information about a set of disjoint, possibly annotated time ranges.
    XIbmTenantId string
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    BackupRecoveryRestorePointsId string
    The unique identifier of the backup_recovery_restore_points.
    EndTimeUsecs float64
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    FullSnapshotInfos []BackupRecoveryRestorePointsFullSnapshotInfoArgs
    Specifies the info related to the recovery object.
    ProtectionGroupIds []string
    Specifies the jobs for which to get the full snapshot information.
    SourceId float64
    Specifies the id of the Protection Source which is to be restored.
    StartTimeUsecs float64
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    TimeRangeInfos []BackupRecoveryRestorePointsTimeRangeInfoArgs
    Information about a set of disjoint, possibly annotated time ranges.
    XIbmTenantId string
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    backupRecoveryRestorePointsId String
    The unique identifier of the backup_recovery_restore_points.
    endTimeUsecs Double
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    fullSnapshotInfos List<BackupRecoveryRestorePointsFullSnapshotInfo>
    Specifies the info related to the recovery object.
    protectionGroupIds List<String>
    Specifies the jobs for which to get the full snapshot information.
    sourceId Double
    Specifies the id of the Protection Source which is to be restored.
    startTimeUsecs Double
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    timeRangeInfos List<BackupRecoveryRestorePointsTimeRangeInfo>
    Information about a set of disjoint, possibly annotated time ranges.
    xIbmTenantId String
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    backupRecoveryRestorePointsId string
    The unique identifier of the backup_recovery_restore_points.
    endTimeUsecs number
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    fullSnapshotInfos BackupRecoveryRestorePointsFullSnapshotInfo[]
    Specifies the info related to the recovery object.
    protectionGroupIds string[]
    Specifies the jobs for which to get the full snapshot information.
    sourceId number
    Specifies the id of the Protection Source which is to be restored.
    startTimeUsecs number
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    timeRangeInfos BackupRecoveryRestorePointsTimeRangeInfo[]
    Information about a set of disjoint, possibly annotated time ranges.
    xIbmTenantId string
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    backup_recovery_restore_points_id str
    The unique identifier of the backup_recovery_restore_points.
    end_time_usecs float
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    full_snapshot_infos Sequence[BackupRecoveryRestorePointsFullSnapshotInfoArgs]
    Specifies the info related to the recovery object.
    protection_group_ids Sequence[str]
    Specifies the jobs for which to get the full snapshot information.
    source_id float
    Specifies the id of the Protection Source which is to be restored.
    start_time_usecs float
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    time_range_infos Sequence[BackupRecoveryRestorePointsTimeRangeInfoArgs]
    Information about a set of disjoint, possibly annotated time ranges.
    x_ibm_tenant_id str
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    backupRecoveryRestorePointsId String
    The unique identifier of the backup_recovery_restore_points.
    endTimeUsecs Number
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    fullSnapshotInfos List<Property Map>
    Specifies the info related to the recovery object.
    protectionGroupIds List<String>
    Specifies the jobs for which to get the full snapshot information.
    sourceId Number
    Specifies the id of the Protection Source which is to be restored.
    startTimeUsecs Number
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    timeRangeInfos List<Property Map>
    Information about a set of disjoint, possibly annotated time ranges.
    xIbmTenantId String
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.

    Supporting Types

    BackupRecoveryRestorePointsFullSnapshotInfo, BackupRecoveryRestorePointsFullSnapshotInfoArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSetting, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTiering, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTieringArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTieringTierArgs

    MoveAfter double
    MoveAfterUnit string
    TierType string
    MoveAfter float64
    MoveAfterUnit string
    TierType string
    moveAfter Double
    moveAfterUnit String
    tierType String
    moveAfter number
    moveAfterUnit string
    tierType string
    moveAfter Number
    moveAfterUnit String
    tierType String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTiering, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTieringArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTieringTierArgs

    MoveAfter double
    MoveAfterUnit string
    TierType string
    MoveAfter float64
    MoveAfterUnit string
    TierType string
    moveAfter Double
    moveAfterUnit String
    tierType String
    moveAfter number
    moveAfterUnit string
    tierType string
    moveAfter Number
    moveAfterUnit String
    tierType String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTiering, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTieringArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTieringTierArgs

    MoveAfter double
    MoveAfterUnit string
    TierType string
    MoveAfter float64
    MoveAfterUnit string
    TierType string
    moveAfter Double
    moveAfterUnit String
    tierType String
    moveAfter number
    moveAfterUnit string
    tierType string
    moveAfter Number
    moveAfterUnit String
    tierType String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTiering, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTieringArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTieringTierArgs

    MoveAfter double
    MoveAfterUnit string
    TierType string
    MoveAfter float64
    MoveAfterUnit string
    TierType string
    moveAfter Double
    moveAfterUnit String
    tierType String
    moveAfter number
    moveAfterUnit string
    tierType string
    moveAfter Number
    moveAfterUnit String
    tierType String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTarget, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetArgs

    awsParams List<Property Map>
    azureParams List<Property Map>
    id Number
    The unique identifier of the backup_recovery_restore_points.
    name String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagList, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagListArgs

    Key string
    Value string
    Key string
    Value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTarget, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetArgs

    awsParams List<Property Map>
    azureParams List<Property Map>
    id Number
    The unique identifier of the backup_recovery_restore_points.
    name String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagList, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagListArgs

    Key string
    Value string
    Key string
    Value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoArgs

    ChildObjects List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject>
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    GlobalId string
    Id double
    The unique identifier of the backup_recovery_restore_points.
    LogicalSizeBytes double
    MssqlParams List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam>
    Name string
    ObjectHash string
    ObjectType string
    OsType string
    Permissions List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission>
    PhysicalParams List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam>
    ProtectionStats List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat>
    ProtectionType string
    SharepointSiteSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary>
    SourceId double
    Specifies the id of the Protection Source which is to be restored.
    SourceName string
    Uuid string
    VCenterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary>
    WindowsClusterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary>
    ChildObjects []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    GlobalId string
    Id float64
    The unique identifier of the backup_recovery_restore_points.
    LogicalSizeBytes float64
    MssqlParams []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam
    Name string
    ObjectHash string
    ObjectType string
    OsType string
    Permissions []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission
    PhysicalParams []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam
    ProtectionStats []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat
    ProtectionType string
    SharepointSiteSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary
    SourceId float64
    Specifies the id of the Protection Source which is to be restored.
    SourceName string
    Uuid string
    VCenterSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary
    WindowsClusterSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary
    childObjects List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject>
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId String
    id Double
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes Double
    mssqlParams List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam>
    name String
    objectHash String
    objectType String
    osType String
    permissions List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission>
    physicalParams List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam>
    protectionStats List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat>
    protectionType String
    sharepointSiteSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary>
    sourceId Double
    Specifies the id of the Protection Source which is to be restored.
    sourceName String
    uuid String
    vCenterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary>
    windowsClusterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary>
    childObjects BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject[]
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId string
    id number
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes number
    mssqlParams BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam[]
    name string
    objectHash string
    objectType string
    osType string
    permissions BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission[]
    physicalParams BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam[]
    protectionStats BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat[]
    protectionType string
    sharepointSiteSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary[]
    sourceId number
    Specifies the id of the Protection Source which is to be restored.
    sourceName string
    uuid string
    vCenterSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary[]
    windowsClusterSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary[]
    child_objects Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject]
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    global_id str
    id float
    The unique identifier of the backup_recovery_restore_points.
    logical_size_bytes float
    mssql_params Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam]
    name str
    object_hash str
    object_type str
    os_type str
    permissions Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission]
    physical_params Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam]
    protection_stats Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat]
    protection_type str
    sharepoint_site_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary]
    source_id float
    Specifies the id of the Protection Source which is to be restored.
    source_name str
    uuid str
    v_center_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary]
    windows_cluster_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary]
    childObjects List<Property Map>
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId String
    id Number
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes Number
    mssqlParams List<Property Map>
    name String
    objectHash String
    objectType String
    osType String
    permissions List<Property Map>
    physicalParams List<Property Map>
    protectionStats List<Property Map>
    protectionType String
    sharepointSiteSummaries List<Property Map>
    sourceId Number
    Specifies the id of the Protection Source which is to be restored.
    sourceName String
    uuid String
    vCenterSummaries List<Property Map>
    windowsClusterSummaries List<Property Map>

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectArgs

    ChildObjects List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject>
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    GlobalId string
    Id double
    The unique identifier of the backup_recovery_restore_points.
    LogicalSizeBytes double
    Name string
    ObjectHash string
    ObjectType string
    OsType string
    ProtectionType string
    SharepointSiteSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary>
    SourceId double
    Specifies the id of the Protection Source which is to be restored.
    SourceName string
    Uuid string
    VCenterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary>
    WindowsClusterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary>
    ChildObjects []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    GlobalId string
    Id float64
    The unique identifier of the backup_recovery_restore_points.
    LogicalSizeBytes float64
    Name string
    ObjectHash string
    ObjectType string
    OsType string
    ProtectionType string
    SharepointSiteSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary
    SourceId float64
    Specifies the id of the Protection Source which is to be restored.
    SourceName string
    Uuid string
    VCenterSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary
    WindowsClusterSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary
    childObjects List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject>
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId String
    id Double
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes Double
    name String
    objectHash String
    objectType String
    osType String
    protectionType String
    sharepointSiteSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary>
    sourceId Double
    Specifies the id of the Protection Source which is to be restored.
    sourceName String
    uuid String
    vCenterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary>
    windowsClusterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary>
    childObjects BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject[]
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId string
    id number
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes number
    name string
    objectHash string
    objectType string
    osType string
    protectionType string
    sharepointSiteSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary[]
    sourceId number
    Specifies the id of the Protection Source which is to be restored.
    sourceName string
    uuid string
    vCenterSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary[]
    windowsClusterSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary[]
    child_objects Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject]
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    global_id str
    id float
    The unique identifier of the backup_recovery_restore_points.
    logical_size_bytes float
    name str
    object_hash str
    object_type str
    os_type str
    protection_type str
    sharepoint_site_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary]
    source_id float
    Specifies the id of the Protection Source which is to be restored.
    source_name str
    uuid str
    v_center_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary]
    windows_cluster_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary]
    childObjects List<Property Map>
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId String
    id Number
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes Number
    name String
    objectHash String
    objectType String
    osType String
    protectionType String
    sharepointSiteSummaries List<Property Map>
    sourceId Number
    Specifies the id of the Protection Source which is to be restored.
    sourceName String
    uuid String
    vCenterSummaries List<Property Map>
    windowsClusterSummaries List<Property Map>

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummaryArgs

    SiteWebUrl string
    SiteWebUrl string
    siteWebUrl String
    siteWebUrl string
    siteWebUrl String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummaryArgs

    isCloudEnv Boolean
    isCloudEnv boolean
    isCloudEnv Boolean

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummaryArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamAagInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamAagInfoArgs

    Name string
    ObjectId double
    Name string
    ObjectId float64
    name String
    objectId Double
    name string
    objectId number
    name str
    object_id float
    name String
    objectId Number

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamHostInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamHostInfoArgs

    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    Id string
    The unique identifier of the backup_recovery_restore_points.
    Name string
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    Id string
    The unique identifier of the backup_recovery_restore_points.
    Name string
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    id String
    The unique identifier of the backup_recovery_restore_points.
    name String
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    id string
    The unique identifier of the backup_recovery_restore_points.
    name string
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    id str
    The unique identifier of the backup_recovery_restore_points.
    name str
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    id String
    The unique identifier of the backup_recovery_restore_points.
    name String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionGroup, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionGroupArgs

    Domain string
    Name string
    Sid string
    Domain string
    Name string
    Sid string
    domain String
    name String
    sid String
    domain string
    name string
    sid string
    domain str
    name str
    sid str
    domain String
    name String
    sid String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenant, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantArgs

    createdAtTimeMsecs Number
    deletedAtTimeMsecs Number
    description String
    externalVendorMetadatas List<Property Map>
    id String
    The unique identifier of the backup_recovery_restore_points.
    isManagedOnHelios Boolean
    lastUpdatedAtTimeMsecs Number
    name String
    networks List<Property Map>
    status String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadata, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomPropertyArgs

    Key string
    Value string
    Key string
    Value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetwork, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetworkArgs

    clusterHostname String
    clusterIps List<String>
    connectorEnabled Boolean
    clusterHostname String
    clusterIps List<String>
    connectorEnabled Boolean

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionUser, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionUserArgs

    Domain string
    Name string
    Sid string
    Domain string
    Name string
    Sid string
    domain String
    name String
    sid String
    domain string
    name string
    sid string
    domain str
    name str
    sid str
    domain String
    name String
    sid String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStatArgs

    DeletedProtectedCount double
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    ProtectedCount double
    ProtectedSizeBytes double
    UnprotectedCount double
    UnprotectedSizeBytes double
    DeletedProtectedCount float64
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    ProtectedCount float64
    ProtectedSizeBytes float64
    UnprotectedCount float64
    UnprotectedSizeBytes float64
    deletedProtectedCount Double
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protectedCount Double
    protectedSizeBytes Double
    unprotectedCount Double
    unprotectedSizeBytes Double
    deletedProtectedCount number
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protectedCount number
    protectedSizeBytes number
    unprotectedCount number
    unprotectedSizeBytes number
    deleted_protected_count float
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protected_count float
    protected_size_bytes float
    unprotected_count float
    unprotected_size_bytes float
    deletedProtectedCount Number
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protectedCount Number
    protectedSizeBytes Number
    unprotectedCount Number
    unprotectedSizeBytes Number

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummaryArgs

    SiteWebUrl string
    SiteWebUrl string
    siteWebUrl String
    siteWebUrl string
    siteWebUrl String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummaryArgs

    isCloudEnv Boolean
    isCloudEnv boolean
    isCloudEnv Boolean

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummaryArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoArgs

    ChildObjects List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject>
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    GlobalId string
    Id double
    The unique identifier of the backup_recovery_restore_points.
    LogicalSizeBytes double
    MssqlParams List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam>
    Name string
    ObjectHash string
    ObjectType string
    OsType string
    Permissions List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission>
    PhysicalParams List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam>
    ProtectionStats List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat>
    ProtectionType string
    SharepointSiteSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary>
    SourceId double
    Specifies the id of the Protection Source which is to be restored.
    SourceName string
    Uuid string
    VCenterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary>
    WindowsClusterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary>
    ChildObjects []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    GlobalId string
    Id float64
    The unique identifier of the backup_recovery_restore_points.
    LogicalSizeBytes float64
    MssqlParams []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam
    Name string
    ObjectHash string
    ObjectType string
    OsType string
    Permissions []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission
    PhysicalParams []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam
    ProtectionStats []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat
    ProtectionType string
    SharepointSiteSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary
    SourceId float64
    Specifies the id of the Protection Source which is to be restored.
    SourceName string
    Uuid string
    VCenterSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary
    WindowsClusterSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary
    childObjects List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject>
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId String
    id Double
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes Double
    mssqlParams List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam>
    name String
    objectHash String
    objectType String
    osType String
    permissions List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission>
    physicalParams List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam>
    protectionStats List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat>
    protectionType String
    sharepointSiteSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary>
    sourceId Double
    Specifies the id of the Protection Source which is to be restored.
    sourceName String
    uuid String
    vCenterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary>
    windowsClusterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary>
    childObjects BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject[]
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId string
    id number
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes number
    mssqlParams BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam[]
    name string
    objectHash string
    objectType string
    osType string
    permissions BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission[]
    physicalParams BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam[]
    protectionStats BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat[]
    protectionType string
    sharepointSiteSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary[]
    sourceId number
    Specifies the id of the Protection Source which is to be restored.
    sourceName string
    uuid string
    vCenterSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary[]
    windowsClusterSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary[]
    child_objects Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject]
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    global_id str
    id float
    The unique identifier of the backup_recovery_restore_points.
    logical_size_bytes float
    mssql_params Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam]
    name str
    object_hash str
    object_type str
    os_type str
    permissions Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission]
    physical_params Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam]
    protection_stats Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat]
    protection_type str
    sharepoint_site_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary]
    source_id float
    Specifies the id of the Protection Source which is to be restored.
    source_name str
    uuid str
    v_center_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary]
    windows_cluster_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary]
    childObjects List<Property Map>
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId String
    id Number
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes Number
    mssqlParams List<Property Map>
    name String
    objectHash String
    objectType String
    osType String
    permissions List<Property Map>
    physicalParams List<Property Map>
    protectionStats List<Property Map>
    protectionType String
    sharepointSiteSummaries List<Property Map>
    sourceId Number
    Specifies the id of the Protection Source which is to be restored.
    sourceName String
    uuid String
    vCenterSummaries List<Property Map>
    windowsClusterSummaries List<Property Map>

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectArgs

    ChildObjects List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject>
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    GlobalId string
    Id double
    The unique identifier of the backup_recovery_restore_points.
    LogicalSizeBytes double
    Name string
    ObjectHash string
    ObjectType string
    OsType string
    ProtectionType string
    SharepointSiteSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary>
    SourceId double
    Specifies the id of the Protection Source which is to be restored.
    SourceName string
    Uuid string
    VCenterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary>
    WindowsClusterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary>
    ChildObjects []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    GlobalId string
    Id float64
    The unique identifier of the backup_recovery_restore_points.
    LogicalSizeBytes float64
    Name string
    ObjectHash string
    ObjectType string
    OsType string
    ProtectionType string
    SharepointSiteSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary
    SourceId float64
    Specifies the id of the Protection Source which is to be restored.
    SourceName string
    Uuid string
    VCenterSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary
    WindowsClusterSummaries []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary
    childObjects List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject>
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId String
    id Double
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes Double
    name String
    objectHash String
    objectType String
    osType String
    protectionType String
    sharepointSiteSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary>
    sourceId Double
    Specifies the id of the Protection Source which is to be restored.
    sourceName String
    uuid String
    vCenterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary>
    windowsClusterSummaries List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary>
    childObjects BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject[]
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId string
    id number
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes number
    name string
    objectHash string
    objectType string
    osType string
    protectionType string
    sharepointSiteSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary[]
    sourceId number
    Specifies the id of the Protection Source which is to be restored.
    sourceName string
    uuid string
    vCenterSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary[]
    windowsClusterSummaries BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary[]
    child_objects Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject]
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    global_id str
    id float
    The unique identifier of the backup_recovery_restore_points.
    logical_size_bytes float
    name str
    object_hash str
    object_type str
    os_type str
    protection_type str
    sharepoint_site_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary]
    source_id float
    Specifies the id of the Protection Source which is to be restored.
    source_name str
    uuid str
    v_center_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary]
    windows_cluster_summaries Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary]
    childObjects List<Property Map>
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    globalId String
    id Number
    The unique identifier of the backup_recovery_restore_points.
    logicalSizeBytes Number
    name String
    objectHash String
    objectType String
    osType String
    protectionType String
    sharepointSiteSummaries List<Property Map>
    sourceId Number
    Specifies the id of the Protection Source which is to be restored.
    sourceName String
    uuid String
    vCenterSummaries List<Property Map>
    windowsClusterSummaries List<Property Map>

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummaryArgs

    SiteWebUrl string
    SiteWebUrl string
    siteWebUrl String
    siteWebUrl string
    siteWebUrl String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummaryArgs

    isCloudEnv Boolean
    isCloudEnv boolean
    isCloudEnv Boolean

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummaryArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamAagInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamAagInfoArgs

    Name string
    ObjectId double
    Name string
    ObjectId float64
    name String
    objectId Double
    name string
    objectId number
    name str
    object_id float
    name String
    objectId Number

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamHostInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamHostInfoArgs

    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    Id string
    The unique identifier of the backup_recovery_restore_points.
    Name string
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    Id string
    The unique identifier of the backup_recovery_restore_points.
    Name string
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    id String
    The unique identifier of the backup_recovery_restore_points.
    name String
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    id string
    The unique identifier of the backup_recovery_restore_points.
    name string
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    id str
    The unique identifier of the backup_recovery_restore_points.
    name str
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    id String
    The unique identifier of the backup_recovery_restore_points.
    name String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionGroup, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionGroupArgs

    Domain string
    Name string
    Sid string
    Domain string
    Name string
    Sid string
    domain String
    name String
    sid String
    domain string
    name string
    sid string
    domain str
    name str
    sid str
    domain String
    name String
    sid String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenant, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantArgs

    createdAtTimeMsecs Number
    deletedAtTimeMsecs Number
    description String
    externalVendorMetadatas List<Property Map>
    id String
    The unique identifier of the backup_recovery_restore_points.
    isManagedOnHelios Boolean
    lastUpdatedAtTimeMsecs Number
    name String
    networks List<Property Map>
    status String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadata, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomPropertyArgs

    Key string
    Value string
    Key string
    Value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetwork, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetworkArgs

    clusterHostname String
    clusterIps List<String>
    connectorEnabled Boolean
    clusterHostname String
    clusterIps List<String>
    connectorEnabled Boolean

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionUser, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionUserArgs

    Domain string
    Name string
    Sid string
    Domain string
    Name string
    Sid string
    domain String
    name String
    sid String
    domain string
    name string
    sid string
    domain str
    name str
    sid str
    domain String
    name String
    sid String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStatArgs

    DeletedProtectedCount double
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    ProtectedCount double
    ProtectedSizeBytes double
    UnprotectedCount double
    UnprotectedSizeBytes double
    DeletedProtectedCount float64
    Environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    ProtectedCount float64
    ProtectedSizeBytes float64
    UnprotectedCount float64
    UnprotectedSizeBytes float64
    deletedProtectedCount Double
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protectedCount Double
    protectedSizeBytes Double
    unprotectedCount Double
    unprotectedSizeBytes Double
    deletedProtectedCount number
    environment string
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protectedCount number
    protectedSizeBytes number
    unprotectedCount number
    unprotectedSizeBytes number
    deleted_protected_count float
    environment str
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protected_count float
    protected_size_bytes float
    unprotected_count float
    unprotected_size_bytes float
    deletedProtectedCount Number
    environment String
    Specifies the protection source environment type.

    • Constraints: Allowable values are: kVMware, kHyperV, kAzure, kGCP, kKVM, kAcropolis, kAWS, kPhysical, kGPFS, kElastifile, kNetapp, kGenericNas, kIsilon, kFlashBlade, kPure, kIbmFlashSystem, kSQL, kExchange, kAD, kOracle, kView, kRemoteAdapter, kO365, kKubernetes, kCassandra, kMongoDB, kCouchbase, kHdfs, kHive, kSAPHANA, kHBase, kUDA, kSfdc.
    protectedCount Number
    protectedSizeBytes Number
    unprotectedCount Number
    unprotectedSizeBytes Number

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummaryArgs

    SiteWebUrl string
    SiteWebUrl string
    siteWebUrl String
    siteWebUrl string
    siteWebUrl String

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummaryArgs

    isCloudEnv Boolean
    isCloudEnv boolean
    isCloudEnv Boolean

    BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummaryArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfiguration, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionScheduleArgs

    Frequency double
    Unit string
    Frequency float64
    Unit string
    frequency Double
    unit String
    frequency number
    unit string
    frequency float
    unit str
    frequency Number
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeoutArgs

    BackupType string
    TimeoutMins double
    BackupType string
    TimeoutMins float64
    backupType String
    timeoutMins Double
    backupType string
    timeoutMins number
    backupType String
    timeoutMins Number

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetScheduleArgs

    Frequency double
    Unit string
    Frequency float64
    Unit string
    frequency Double
    unit String
    frequency number
    unit string
    frequency float
    unit str
    frequency Number
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSetting, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTiering, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTieringArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTieringTierArgs

    MoveAfter double
    MoveAfterUnit string
    TierType string
    MoveAfter float64
    MoveAfterUnit string
    TierType string
    moveAfter Double
    moveAfterUnit String
    tierType String
    moveAfter number
    moveAfterUnit string
    tierType string
    moveAfter Number
    moveAfterUnit String
    tierType String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTiering, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTieringArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTieringTierArgs

    MoveAfter double
    MoveAfterUnit string
    TierType string
    MoveAfter float64
    MoveAfterUnit string
    TierType string
    moveAfter Double
    moveAfterUnit String
    tierType String
    moveAfter number
    moveAfterUnit string
    tierType string
    moveAfter Number
    moveAfterUnit String
    tierType String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTiering, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTieringArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTieringTierArgs

    MoveAfter double
    MoveAfterUnit string
    TierType string
    MoveAfter float64
    MoveAfterUnit string
    TierType string
    moveAfter Double
    moveAfterUnit String
    tierType String
    moveAfter number
    moveAfterUnit string
    tierType string
    moveAfter Number
    moveAfterUnit String
    tierType String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTiering, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTieringArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTieringTierArgs

    MoveAfter double
    MoveAfterUnit string
    TierType string
    MoveAfter float64
    MoveAfterUnit string
    TierType string
    moveAfter Double
    moveAfterUnit String
    tierType String
    moveAfter number
    moveAfterUnit string
    tierType string
    moveAfter Number
    moveAfterUnit String
    tierType String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRunTimeoutArgs

    BackupType string
    TimeoutMins double
    BackupType string
    TimeoutMins float64
    backupType String
    timeoutMins Double
    backupType string
    timeoutMins number
    backupType String
    timeoutMins Number

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetScheduleArgs

    Frequency double
    Unit string
    Frequency float64
    Unit string
    frequency Double
    unit String
    frequency number
    unit string
    frequency float
    unit str
    frequency Number
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetArgs

    awsParams List<Property Map>
    azureParams List<Property Map>
    id Number
    The unique identifier of the backup_recovery_restore_points.
    name String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParam, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagList, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagListArgs

    Key string
    Value string
    Key string
    Value string
    key String
    value String
    key string
    value string
    key str
    value str
    key String
    value String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParam, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParamArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetParam, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetParamArgs

    Id double
    The unique identifier of the backup_recovery_restore_points.
    Id float64
    The unique identifier of the backup_recovery_restore_points.
    id Double
    The unique identifier of the backup_recovery_restore_points.
    id number
    The unique identifier of the backup_recovery_restore_points.
    id float
    The unique identifier of the backup_recovery_restore_points.
    id Number
    The unique identifier of the backup_recovery_restore_points.

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRunTimeoutArgs

    BackupType string
    TimeoutMins double
    BackupType string
    TimeoutMins float64
    backupType String
    timeoutMins Double
    backupType string
    timeoutMins number
    backupType String
    timeoutMins Number

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetScheduleArgs

    Frequency double
    Unit string
    Frequency float64
    Unit string
    frequency Double
    unit String
    frequency number
    unit string
    frequency float
    unit str
    frequency Number
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetArgs

    AwsTargetConfigs List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfig>
    AzureTargetConfigs List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAzureTargetConfig>
    BackupRunType string
    ConfigId string
    CopyOnRunSuccess bool
    LogRetentions List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetention>
    RemoteTargetConfigs List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfig>
    Retentions List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetention>
    RunTimeouts List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeout>
    Schedules List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetSchedule>
    TargetType string
    AwsTargetConfigs []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfig
    AzureTargetConfigs []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAzureTargetConfig
    BackupRunType string
    ConfigId string
    CopyOnRunSuccess bool
    LogRetentions []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetention
    RemoteTargetConfigs []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfig
    Retentions []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetention
    RunTimeouts []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeout
    Schedules []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetSchedule
    TargetType string
    awsTargetConfigs List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfig>
    azureTargetConfigs List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAzureTargetConfig>
    backupRunType String
    configId String
    copyOnRunSuccess Boolean
    logRetentions List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetention>
    remoteTargetConfigs List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfig>
    retentions List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetention>
    runTimeouts List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeout>
    schedules List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetSchedule>
    targetType String
    awsTargetConfigs BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfig[]
    azureTargetConfigs BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAzureTargetConfig[]
    backupRunType string
    configId string
    copyOnRunSuccess boolean
    logRetentions BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetention[]
    remoteTargetConfigs BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfig[]
    retentions BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetention[]
    runTimeouts BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeout[]
    schedules BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetSchedule[]
    targetType string
    aws_target_configs Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfig]
    azure_target_configs Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAzureTargetConfig]
    backup_run_type str
    config_id str
    copy_on_run_success bool
    log_retentions Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetention]
    remote_target_configs Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfig]
    retentions Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetention]
    run_timeouts Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeout]
    schedules Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetSchedule]
    target_type str

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfigArgs

    Name string
    Region double
    RegionName string
    SourceId double
    Specifies the id of the Protection Source which is to be restored.
    Name string
    Region float64
    RegionName string
    SourceId float64
    Specifies the id of the Protection Source which is to be restored.
    name String
    region Double
    regionName String
    sourceId Double
    Specifies the id of the Protection Source which is to be restored.
    name string
    region number
    regionName string
    sourceId number
    Specifies the id of the Protection Source which is to be restored.
    name str
    region float
    region_name str
    source_id float
    Specifies the id of the Protection Source which is to be restored.
    name String
    region Number
    regionName String
    sourceId Number
    Specifies the id of the Protection Source which is to be restored.

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAzureTargetConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAzureTargetConfigArgs

    Name string
    ResourceGroup double
    ResourceGroupName string
    SourceId double
    Specifies the id of the Protection Source which is to be restored.
    StorageAccount double
    StorageAccountName string
    StorageContainer double
    StorageContainerName string
    StorageResourceGroup double
    StorageResourceGroupName string
    Name string
    ResourceGroup float64
    ResourceGroupName string
    SourceId float64
    Specifies the id of the Protection Source which is to be restored.
    StorageAccount float64
    StorageAccountName string
    StorageContainer float64
    StorageContainerName string
    StorageResourceGroup float64
    StorageResourceGroupName string
    name String
    resourceGroup Double
    resourceGroupName String
    sourceId Double
    Specifies the id of the Protection Source which is to be restored.
    storageAccount Double
    storageAccountName String
    storageContainer Double
    storageContainerName String
    storageResourceGroup Double
    storageResourceGroupName String
    name string
    resourceGroup number
    resourceGroupName string
    sourceId number
    Specifies the id of the Protection Source which is to be restored.
    storageAccount number
    storageAccountName string
    storageContainer number
    storageContainerName string
    storageResourceGroup number
    storageResourceGroupName string
    name str
    resource_group float
    resource_group_name str
    source_id float
    Specifies the id of the Protection Source which is to be restored.
    storage_account float
    storage_account_name str
    storage_container float
    storage_container_name str
    storage_resource_group float
    storage_resource_group_name str
    name String
    resourceGroup Number
    resourceGroupName String
    sourceId Number
    Specifies the id of the Protection Source which is to be restored.
    storageAccount Number
    storageAccountName String
    storageContainer Number
    storageContainerName String
    storageResourceGroup Number
    storageResourceGroupName String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfigArgs

    ClusterId double
    ClusterName string
    ClusterId float64
    ClusterName string
    clusterId Double
    clusterName String
    clusterId number
    clusterName string
    clusterId Number
    clusterName String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeoutArgs

    BackupType string
    TimeoutMins double
    BackupType string
    TimeoutMins float64
    backupType String
    timeoutMins Double
    backupType string
    timeoutMins number
    backupType String
    timeoutMins Number

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetScheduleArgs

    Frequency double
    Unit string
    Frequency float64
    Unit string
    frequency Double
    unit String
    frequency number
    unit string
    frequency float
    unit str
    frequency Number
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionArgs

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionDataLockConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionDataLockConfigArgs

    duration Double
    enableWormOnExternalTarget Boolean
    mode String
    unit String
    duration number
    enableWormOnExternalTarget boolean
    mode string
    unit string
    duration Number
    enableWormOnExternalTarget Boolean
    mode String
    unit String

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeoutArgs

    BackupType string
    TimeoutMins double
    BackupType string
    TimeoutMins float64
    backupType String
    timeoutMins Double
    backupType string
    timeoutMins number
    backupType String
    timeoutMins Number

    BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetScheduleArgs

    Frequency double
    Unit string
    Frequency float64
    Unit string
    frequency Double
    unit String
    frequency number
    unit string
    frequency float
    unit str
    frequency Number
    unit String

    BackupRecoveryRestorePointsTimeRangeInfo, BackupRecoveryRestorePointsTimeRangeInfoArgs

    BackupRecoveryRestorePointsTimeRangeInfoTimeRange, BackupRecoveryRestorePointsTimeRangeInfoTimeRangeArgs

    EndTimeUsecs double
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    ProtectionGroupId string
    StartTimeUsecs double
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    EndTimeUsecs float64
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    ProtectionGroupId string
    StartTimeUsecs float64
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    endTimeUsecs Double
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    protectionGroupId String
    startTimeUsecs Double
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    endTimeUsecs number
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    protectionGroupId string
    startTimeUsecs number
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    end_time_usecs float
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    protection_group_id str
    start_time_usecs float
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.
    endTimeUsecs Number
    Specifies the end time specified as a Unix epoch Timestamp in microseconds.
    protectionGroupId String
    startTimeUsecs Number
    Specifies the start time specified as a Unix epoch Timestamp in microseconds.

    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.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud