1. Packages
  2. Ibm Provider
  3. API Docs
  4. BackupRecoveryRestorePoints
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.BackupRecoveryRestorePoints

Explore with Pulumi AI

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",
});
Copy
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")
Copy
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
	})
}
Copy
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",
    });

});
Copy
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());

    }
}
Copy
resources:
  backupRecoveryRestorePointsInstance:
    type: ibm:BackupRecoveryRestorePoints
    properties:
      endTimeUsecs: 12
      environment: kVMware
      startTimeUsecs: 14
      xIbmTenantId: x_ibm_tenant_id
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. BackupRecoveryRestorePointsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. BackupRecoveryRestorePointsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. BackupRecoveryRestorePointsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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,
});
Copy
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),
})
Copy
var backupRecoveryRestorePointsResource = new BackupRecoveryRestorePoints("backupRecoveryRestorePointsResource", BackupRecoveryRestorePointsArgs.builder()
    .endTimeUsecs(0)
    .environment("string")
    .protectionGroupIds("string")
    .startTimeUsecs(0)
    .xIbmTenantId("string")
    .backupRecoveryRestorePointsId("string")
    .sourceId(0)
    .build());
Copy
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)
Copy
const backupRecoveryRestorePointsResource = new ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsResource", {
    endTimeUsecs: 0,
    environment: "string",
    protectionGroupIds: ["string"],
    startTimeUsecs: 0,
    xIbmTenantId: "string",
    backupRecoveryRestorePointsId: "string",
    sourceId: 0,
});
Copy
type: ibm:BackupRecoveryRestorePoints
properties:
    backupRecoveryRestorePointsId: string
    endTimeUsecs: 0
    environment: string
    protectionGroupIds:
        - string
    sourceId: 0
    startTimeUsecs: 0
    xIbmTenantId: string
Copy

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 This property is required. double
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
Environment This property is required. 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 This property is required. List<string>
Specifies the jobs for which to get the full snapshot information.
StartTimeUsecs This property is required. double
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
XIbmTenantId This property is required. 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 This property is required. float64
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
Environment This property is required. 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 This property is required. []string
Specifies the jobs for which to get the full snapshot information.
StartTimeUsecs This property is required. float64
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
XIbmTenantId This property is required. 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 This property is required. Double
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
environment This property is required. 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 This property is required. List<String>
Specifies the jobs for which to get the full snapshot information.
startTimeUsecs This property is required. Double
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
xIbmTenantId This property is required. 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 This property is required. number
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
environment This property is required. 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 This property is required. string[]
Specifies the jobs for which to get the full snapshot information.
startTimeUsecs This property is required. number
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
xIbmTenantId This property is required. 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 This property is required. float
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
environment This property is required. 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 This property is required. Sequence[str]
Specifies the jobs for which to get the full snapshot information.
start_time_usecs This property is required. float
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
x_ibm_tenant_id This property is required. 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 This property is required. Number
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
environment This property is required. 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 This property is required. List<String>
Specifies the jobs for which to get the full snapshot information.
startTimeUsecs This property is required. Number
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
xIbmTenantId This property is required. 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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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

restoreInfos This property is required. List<Property Map>
targetsConfigurations This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfo
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArgs

ArchivalTargetInfos This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfo>
AttemptNumber This property is required. double
CloudDeployTargets This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTarget>
CloudReplicationTargets This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTarget>
ObjectInfos This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfo>
ParentObjectInfos This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfo>
ProtectionGroupId This property is required. string
RunStartTimeUsecs This property is required. double
SnapshotRelativeDirPath This property is required. string
ViewName This property is required. string
VmHadIndependentDisks This property is required. bool
ArchivalTargetInfos This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfo
AttemptNumber This property is required. float64
CloudDeployTargets This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTarget
CloudReplicationTargets This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTarget
ObjectInfos This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfo
ParentObjectInfos This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfo
ProtectionGroupId This property is required. string
RunStartTimeUsecs This property is required. float64
SnapshotRelativeDirPath This property is required. string
ViewName This property is required. string
VmHadIndependentDisks This property is required. bool
archivalTargetInfos This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfo>
attemptNumber This property is required. Double
cloudDeployTargets This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTarget>
cloudReplicationTargets This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTarget>
objectInfos This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfo>
parentObjectInfos This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfo>
protectionGroupId This property is required. String
runStartTimeUsecs This property is required. Double
snapshotRelativeDirPath This property is required. String
viewName This property is required. String
vmHadIndependentDisks This property is required. Boolean
archival_target_infos This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfo]
attempt_number This property is required. float
cloud_deploy_targets This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTarget]
cloud_replication_targets This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTarget]
object_infos This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfo]
parent_object_infos This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfo]
protection_group_id This property is required. str
run_start_time_usecs This property is required. float
snapshot_relative_dir_path This property is required. str
view_name This property is required. str
vm_had_independent_disks This property is required. bool
archivalTargetInfos This property is required. List<Property Map>
attemptNumber This property is required. Number
cloudDeployTargets This property is required. List<Property Map>
cloudReplicationTargets This property is required. List<Property Map>
objectInfos This property is required. List<Property Map>
parentObjectInfos This property is required. List<Property Map>
protectionGroupId This property is required. String
runStartTimeUsecs This property is required. Number
snapshotRelativeDirPath This property is required. String
viewName This property is required. String
vmHadIndependentDisks This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfo
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoArgs

ArchivalTaskId This property is required. string
OwnershipContext This property is required. string
TargetId This property is required. double
TargetName This property is required. string
TargetType This property is required. string
TierSettings This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSetting>
UsageType This property is required. string
ArchivalTaskId This property is required. string
OwnershipContext This property is required. string
TargetId This property is required. float64
TargetName This property is required. string
TargetType This property is required. string
TierSettings This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSetting
UsageType This property is required. string
archivalTaskId This property is required. String
ownershipContext This property is required. String
targetId This property is required. Double
targetName This property is required. String
targetType This property is required. String
tierSettings This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSetting>
usageType This property is required. String
archivalTaskId This property is required. string
ownershipContext This property is required. string
targetId This property is required. number
targetName This property is required. string
targetType This property is required. string
tierSettings This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSetting[]
usageType This property is required. string
archival_task_id This property is required. str
ownership_context This property is required. str
target_id This property is required. float
target_name This property is required. str
target_type This property is required. str
tier_settings This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSetting]
usage_type This property is required. str
archivalTaskId This property is required. String
ownershipContext This property is required. String
targetId This property is required. Number
targetName This property is required. String
targetType This property is required. String
tierSettings This property is required. List<Property Map>
usageType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSetting
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingArgs

awsTierings This property is required. List<Property Map>
azureTierings This property is required. List<Property Map>
cloudPlatform This property is required. String
currentTierType This property is required. String
googleTierings This property is required. List<Property Map>
oracleTierings This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTiering
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTieringArgs

tiers This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTieringTier
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTieringTierArgs

MoveAfter This property is required. double
MoveAfterUnit This property is required. string
TierType This property is required. string
MoveAfter This property is required. float64
MoveAfterUnit This property is required. string
TierType This property is required. string
moveAfter This property is required. Double
moveAfterUnit This property is required. String
tierType This property is required. String
moveAfter This property is required. number
moveAfterUnit This property is required. string
tierType This property is required. string
move_after This property is required. float
move_after_unit This property is required. str
tier_type This property is required. str
moveAfter This property is required. Number
moveAfterUnit This property is required. String
tierType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTiering
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTieringArgs

tiers This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTieringTier
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTieringTierArgs

MoveAfter This property is required. double
MoveAfterUnit This property is required. string
TierType This property is required. string
MoveAfter This property is required. float64
MoveAfterUnit This property is required. string
TierType This property is required. string
moveAfter This property is required. Double
moveAfterUnit This property is required. String
tierType This property is required. String
moveAfter This property is required. number
moveAfterUnit This property is required. string
tierType This property is required. string
move_after This property is required. float
move_after_unit This property is required. str
tier_type This property is required. str
moveAfter This property is required. Number
moveAfterUnit This property is required. String
tierType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTiering
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTieringArgs

tiers This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTieringTier
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTieringTierArgs

MoveAfter This property is required. double
MoveAfterUnit This property is required. string
TierType This property is required. string
MoveAfter This property is required. float64
MoveAfterUnit This property is required. string
TierType This property is required. string
moveAfter This property is required. Double
moveAfterUnit This property is required. String
tierType This property is required. String
moveAfter This property is required. number
moveAfterUnit This property is required. string
tierType This property is required. string
move_after This property is required. float
move_after_unit This property is required. str
tier_type This property is required. str
moveAfter This property is required. Number
moveAfterUnit This property is required. String
tierType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTiering
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTieringArgs

tiers This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTieringTier
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTieringTierArgs

MoveAfter This property is required. double
MoveAfterUnit This property is required. string
TierType This property is required. string
MoveAfter This property is required. float64
MoveAfterUnit This property is required. string
TierType This property is required. string
moveAfter This property is required. Double
moveAfterUnit This property is required. String
tierType This property is required. String
moveAfter This property is required. number
moveAfterUnit This property is required. string
tierType This property is required. string
move_after This property is required. float
move_after_unit This property is required. str
tier_type This property is required. str
moveAfter This property is required. Number
moveAfterUnit This property is required. String
tierType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTarget
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetArgs

AwsParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParam>
AzureParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParam>
Id This property is required. double
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
AwsParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParam
AzureParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParam
Id This property is required. float64
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
awsParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParam>
azureParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParam>
id This property is required. Double
The unique identifier of the backup_recovery_restore_points.
name This property is required. String
awsParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParam[]
azureParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParam[]
id This property is required. number
The unique identifier of the backup_recovery_restore_points.
name This property is required. string
aws_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParam]
azure_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParam]
id This property is required. float
The unique identifier of the backup_recovery_restore_points.
name This property is required. str
awsParams This property is required. List<Property Map>
azureParams This property is required. List<Property Map>
id This property is required. Number
The unique identifier of the backup_recovery_restore_points.
name This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamArgs

CustomTagLists This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagList>
Region This property is required. double
SubnetId This property is required. double
VpcId This property is required. double
CustomTagLists This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagList
Region This property is required. float64
SubnetId This property is required. float64
VpcId This property is required. float64
customTagLists This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagList>
region This property is required. Double
subnetId This property is required. Double
vpcId This property is required. Double
customTagLists This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagList[]
region This property is required. number
subnetId This property is required. number
vpcId This property is required. number
custom_tag_lists This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagList]
region This property is required. float
subnet_id This property is required. float
vpc_id This property is required. float
customTagLists This property is required. List<Property Map>
region This property is required. Number
subnetId This property is required. Number
vpcId This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagList
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagListArgs

Key This property is required. string
Value This property is required. string
Key This property is required. string
Value This property is required. string
key This property is required. String
value This property is required. String
key This property is required. string
value This property is required. string
key This property is required. str
value This property is required. str
key This property is required. String
value This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParamArgs

AvailabilitySetId This property is required. double
NetworkResourceGroupId This property is required. double
ResourceGroupId This property is required. double
StorageAccountId This property is required. double
StorageContainerId This property is required. double
StorageResourceGroupId This property is required. double
TempVmResourceGroupId This property is required. double
TempVmStorageAccountId This property is required. double
TempVmStorageContainerId This property is required. double
TempVmSubnetId This property is required. double
TempVmVirtualNetworkId This property is required. double
AvailabilitySetId This property is required. float64
NetworkResourceGroupId This property is required. float64
ResourceGroupId This property is required. float64
StorageAccountId This property is required. float64
StorageContainerId This property is required. float64
StorageResourceGroupId This property is required. float64
TempVmResourceGroupId This property is required. float64
TempVmStorageAccountId This property is required. float64
TempVmStorageContainerId This property is required. float64
TempVmSubnetId This property is required. float64
TempVmVirtualNetworkId This property is required. float64
availabilitySetId This property is required. Double
networkResourceGroupId This property is required. Double
resourceGroupId This property is required. Double
storageAccountId This property is required. Double
storageContainerId This property is required. Double
storageResourceGroupId This property is required. Double
tempVmResourceGroupId This property is required. Double
tempVmStorageAccountId This property is required. Double
tempVmStorageContainerId This property is required. Double
tempVmSubnetId This property is required. Double
tempVmVirtualNetworkId This property is required. Double
availabilitySetId This property is required. number
networkResourceGroupId This property is required. number
resourceGroupId This property is required. number
storageAccountId This property is required. number
storageContainerId This property is required. number
storageResourceGroupId This property is required. number
tempVmResourceGroupId This property is required. number
tempVmStorageAccountId This property is required. number
tempVmStorageContainerId This property is required. number
tempVmSubnetId This property is required. number
tempVmVirtualNetworkId This property is required. number
availability_set_id This property is required. float
network_resource_group_id This property is required. float
resource_group_id This property is required. float
storage_account_id This property is required. float
storage_container_id This property is required. float
storage_resource_group_id This property is required. float
temp_vm_resource_group_id This property is required. float
temp_vm_storage_account_id This property is required. float
temp_vm_storage_container_id This property is required. float
temp_vm_subnet_id This property is required. float
temp_vm_virtual_network_id This property is required. float
availabilitySetId This property is required. Number
networkResourceGroupId This property is required. Number
resourceGroupId This property is required. Number
storageAccountId This property is required. Number
storageContainerId This property is required. Number
storageResourceGroupId This property is required. Number
tempVmResourceGroupId This property is required. Number
tempVmStorageAccountId This property is required. Number
tempVmStorageContainerId This property is required. Number
tempVmSubnetId This property is required. Number
tempVmVirtualNetworkId This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTarget
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetArgs

AwsParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParam>
AzureParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParam>
Id This property is required. double
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
AwsParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParam
AzureParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParam
Id This property is required. float64
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
awsParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParam>
azureParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParam>
id This property is required. Double
The unique identifier of the backup_recovery_restore_points.
name This property is required. String
awsParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParam[]
azureParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParam[]
id This property is required. number
The unique identifier of the backup_recovery_restore_points.
name This property is required. string
aws_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParam]
azure_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParam]
id This property is required. float
The unique identifier of the backup_recovery_restore_points.
name This property is required. str
awsParams This property is required. List<Property Map>
azureParams This property is required. List<Property Map>
id This property is required. Number
The unique identifier of the backup_recovery_restore_points.
name This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamArgs

CustomTagLists This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagList>
Region This property is required. double
SubnetId This property is required. double
VpcId This property is required. double
CustomTagLists This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagList
Region This property is required. float64
SubnetId This property is required. float64
VpcId This property is required. float64
customTagLists This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagList>
region This property is required. Double
subnetId This property is required. Double
vpcId This property is required. Double
customTagLists This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagList[]
region This property is required. number
subnetId This property is required. number
vpcId This property is required. number
custom_tag_lists This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagList]
region This property is required. float
subnet_id This property is required. float
vpc_id This property is required. float
customTagLists This property is required. List<Property Map>
region This property is required. Number
subnetId This property is required. Number
vpcId This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagList
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagListArgs

Key This property is required. string
Value This property is required. string
Key This property is required. string
Value This property is required. string
key This property is required. String
value This property is required. String
key This property is required. string
value This property is required. string
key This property is required. str
value This property is required. str
key This property is required. String
value This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParamArgs

AvailabilitySetId This property is required. double
NetworkResourceGroupId This property is required. double
ResourceGroupId This property is required. double
StorageAccountId This property is required. double
StorageContainerId This property is required. double
StorageResourceGroupId This property is required. double
TempVmResourceGroupId This property is required. double
TempVmStorageAccountId This property is required. double
TempVmStorageContainerId This property is required. double
TempVmSubnetId This property is required. double
TempVmVirtualNetworkId This property is required. double
AvailabilitySetId This property is required. float64
NetworkResourceGroupId This property is required. float64
ResourceGroupId This property is required. float64
StorageAccountId This property is required. float64
StorageContainerId This property is required. float64
StorageResourceGroupId This property is required. float64
TempVmResourceGroupId This property is required. float64
TempVmStorageAccountId This property is required. float64
TempVmStorageContainerId This property is required. float64
TempVmSubnetId This property is required. float64
TempVmVirtualNetworkId This property is required. float64
availabilitySetId This property is required. Double
networkResourceGroupId This property is required. Double
resourceGroupId This property is required. Double
storageAccountId This property is required. Double
storageContainerId This property is required. Double
storageResourceGroupId This property is required. Double
tempVmResourceGroupId This property is required. Double
tempVmStorageAccountId This property is required. Double
tempVmStorageContainerId This property is required. Double
tempVmSubnetId This property is required. Double
tempVmVirtualNetworkId This property is required. Double
availabilitySetId This property is required. number
networkResourceGroupId This property is required. number
resourceGroupId This property is required. number
storageAccountId This property is required. number
storageContainerId This property is required. number
storageResourceGroupId This property is required. number
tempVmResourceGroupId This property is required. number
tempVmStorageAccountId This property is required. number
tempVmStorageContainerId This property is required. number
tempVmSubnetId This property is required. number
tempVmVirtualNetworkId This property is required. number
availability_set_id This property is required. float
network_resource_group_id This property is required. float
resource_group_id This property is required. float
storage_account_id This property is required. float
storage_container_id This property is required. float
storage_resource_group_id This property is required. float
temp_vm_resource_group_id This property is required. float
temp_vm_storage_account_id This property is required. float
temp_vm_storage_container_id This property is required. float
temp_vm_subnet_id This property is required. float
temp_vm_virtual_network_id This property is required. float
availabilitySetId This property is required. Number
networkResourceGroupId This property is required. Number
resourceGroupId This property is required. Number
storageAccountId This property is required. Number
storageContainerId This property is required. Number
storageResourceGroupId This property is required. Number
tempVmResourceGroupId This property is required. Number
tempVmStorageAccountId This property is required. Number
tempVmStorageContainerId This property is required. Number
tempVmSubnetId This property is required. Number
tempVmVirtualNetworkId This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfo
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoArgs

ChildObjects This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject>
Environment This property is required. 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 This property is required. string
Id This property is required. double
The unique identifier of the backup_recovery_restore_points.
LogicalSizeBytes This property is required. double
MssqlParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam>
Name This property is required. string
ObjectHash This property is required. string
ObjectType This property is required. string
OsType This property is required. string
Permissions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission>
PhysicalParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam>
ProtectionStats This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat>
ProtectionType This property is required. string
SharepointSiteSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary>
SourceId This property is required. double
Specifies the id of the Protection Source which is to be restored.
SourceName This property is required. string
Uuid This property is required. string
VCenterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary>
WindowsClusterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary>
ChildObjects This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject
Environment This property is required. 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 This property is required. string
Id This property is required. float64
The unique identifier of the backup_recovery_restore_points.
LogicalSizeBytes This property is required. float64
MssqlParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam
Name This property is required. string
ObjectHash This property is required. string
ObjectType This property is required. string
OsType This property is required. string
Permissions This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission
PhysicalParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam
ProtectionStats This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat
ProtectionType This property is required. string
SharepointSiteSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary
SourceId This property is required. float64
Specifies the id of the Protection Source which is to be restored.
SourceName This property is required. string
Uuid This property is required. string
VCenterSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary
WindowsClusterSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary
childObjects This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject>
environment This property is required. 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 This property is required. String
id This property is required. Double
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. Double
mssqlParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam>
name This property is required. String
objectHash This property is required. String
objectType This property is required. String
osType This property is required. String
permissions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission>
physicalParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam>
protectionStats This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat>
protectionType This property is required. String
sharepointSiteSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary>
sourceId This property is required. Double
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. String
uuid This property is required. String
vCenterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary>
windowsClusterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary>
childObjects This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject[]
environment This property is required. 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 This property is required. string
id This property is required. number
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. number
mssqlParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam[]
name This property is required. string
objectHash This property is required. string
objectType This property is required. string
osType This property is required. string
permissions This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission[]
physicalParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam[]
protectionStats This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat[]
protectionType This property is required. string
sharepointSiteSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary[]
sourceId This property is required. number
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. string
uuid This property is required. string
vCenterSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary[]
windowsClusterSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary[]
child_objects This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject]
environment This property is required. 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 This property is required. str
id This property is required. float
The unique identifier of the backup_recovery_restore_points.
logical_size_bytes This property is required. float
mssql_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam]
name This property is required. str
object_hash This property is required. str
object_type This property is required. str
os_type This property is required. str
permissions This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission]
physical_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam]
protection_stats This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat]
protection_type This property is required. str
sharepoint_site_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary]
source_id This property is required. float
Specifies the id of the Protection Source which is to be restored.
source_name This property is required. str
uuid This property is required. str
v_center_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary]
windows_cluster_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary]
childObjects This property is required. List<Property Map>
environment This property is required. 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 This property is required. String
id This property is required. Number
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. Number
mssqlParams This property is required. List<Property Map>
name This property is required. String
objectHash This property is required. String
objectType This property is required. String
osType This property is required. String
permissions This property is required. List<Property Map>
physicalParams This property is required. List<Property Map>
protectionStats This property is required. List<Property Map>
protectionType This property is required. String
sharepointSiteSummaries This property is required. List<Property Map>
sourceId This property is required. Number
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. String
uuid This property is required. String
vCenterSummaries This property is required. List<Property Map>
windowsClusterSummaries This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectArgs

ChildObjects This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject>
Environment This property is required. 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 This property is required. string
Id This property is required. double
The unique identifier of the backup_recovery_restore_points.
LogicalSizeBytes This property is required. double
Name This property is required. string
ObjectHash This property is required. string
ObjectType This property is required. string
OsType This property is required. string
ProtectionType This property is required. string
SharepointSiteSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary>
SourceId This property is required. double
Specifies the id of the Protection Source which is to be restored.
SourceName This property is required. string
Uuid This property is required. string
VCenterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary>
WindowsClusterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary>
ChildObjects This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject
Environment This property is required. 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 This property is required. string
Id This property is required. float64
The unique identifier of the backup_recovery_restore_points.
LogicalSizeBytes This property is required. float64
Name This property is required. string
ObjectHash This property is required. string
ObjectType This property is required. string
OsType This property is required. string
ProtectionType This property is required. string
SharepointSiteSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary
SourceId This property is required. float64
Specifies the id of the Protection Source which is to be restored.
SourceName This property is required. string
Uuid This property is required. string
VCenterSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary
WindowsClusterSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary
childObjects This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject>
environment This property is required. 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 This property is required. String
id This property is required. Double
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. Double
name This property is required. String
objectHash This property is required. String
objectType This property is required. String
osType This property is required. String
protectionType This property is required. String
sharepointSiteSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary>
sourceId This property is required. Double
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. String
uuid This property is required. String
vCenterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary>
windowsClusterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary>
childObjects This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject[]
environment This property is required. 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 This property is required. string
id This property is required. number
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. number
name This property is required. string
objectHash This property is required. string
objectType This property is required. string
osType This property is required. string
protectionType This property is required. string
sharepointSiteSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary[]
sourceId This property is required. number
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. string
uuid This property is required. string
vCenterSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary[]
windowsClusterSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary[]
child_objects This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectChildObject]
environment This property is required. 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 This property is required. str
id This property is required. float
The unique identifier of the backup_recovery_restore_points.
logical_size_bytes This property is required. float
name This property is required. str
object_hash This property is required. str
object_type This property is required. str
os_type This property is required. str
protection_type This property is required. str
sharepoint_site_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary]
source_id This property is required. float
Specifies the id of the Protection Source which is to be restored.
source_name This property is required. str
uuid This property is required. str
v_center_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary]
windows_cluster_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary]
childObjects This property is required. List<Property Map>
environment This property is required. 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 This property is required. String
id This property is required. Number
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. Number
name This property is required. String
objectHash This property is required. String
objectType This property is required. String
osType This property is required. String
protectionType This property is required. String
sharepointSiteSummaries This property is required. List<Property Map>
sourceId This property is required. Number
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. String
uuid This property is required. String
vCenterSummaries This property is required. List<Property Map>
windowsClusterSummaries This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummaryArgs

SiteWebUrl This property is required. string
SiteWebUrl This property is required. string
siteWebUrl This property is required. String
siteWebUrl This property is required. string
site_web_url This property is required. str
siteWebUrl This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummaryArgs

IsCloudEnv This property is required. bool
IsCloudEnv This property is required. bool
isCloudEnv This property is required. Boolean
isCloudEnv This property is required. boolean
is_cloud_env This property is required. bool
isCloudEnv This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummaryArgs

ClusterSourceType This property is required. string
ClusterSourceType This property is required. string
clusterSourceType This property is required. String
clusterSourceType This property is required. string
cluster_source_type This property is required. str
clusterSourceType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamArgs

aagInfos This property is required. List<Property Map>
hostInfos This property is required. List<Property Map>
isEncrypted This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamAagInfo
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamAagInfoArgs

Name This property is required. string
ObjectId This property is required. double
Name This property is required. string
ObjectId This property is required. float64
name This property is required. String
objectId This property is required. Double
name This property is required. string
objectId This property is required. number
name This property is required. str
object_id This property is required. float
name This property is required. String
objectId This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamHostInfo
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamHostInfoArgs

Environment This property is required. 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 This property is required. string
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
Environment This property is required. 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 This property is required. string
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
environment This property is required. 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 This property is required. String
The unique identifier of the backup_recovery_restore_points.
name This property is required. String
environment This property is required. 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 This property is required. string
The unique identifier of the backup_recovery_restore_points.
name This property is required. string
environment This property is required. 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 This property is required. str
The unique identifier of the backup_recovery_restore_points.
name This property is required. str
environment This property is required. 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 This property is required. String
The unique identifier of the backup_recovery_restore_points.
name This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermission
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionArgs

groups This property is required. List<Property Map>
objectId This property is required. Number
tenants This property is required. List<Property Map>
users This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionGroup
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionGroupArgs

Domain This property is required. string
Name This property is required. string
Sid This property is required. string
Domain This property is required. string
Name This property is required. string
Sid This property is required. string
domain This property is required. String
name This property is required. String
sid This property is required. String
domain This property is required. string
name This property is required. string
sid This property is required. string
domain This property is required. str
name This property is required. str
sid This property is required. str
domain This property is required. String
name This property is required. String
sid This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenant
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantArgs

CreatedAtTimeMsecs This property is required. double
DeletedAtTimeMsecs This property is required. double
Description This property is required. string
ExternalVendorMetadatas This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadata>
Id This property is required. string
The unique identifier of the backup_recovery_restore_points.
IsManagedOnHelios This property is required. bool
LastUpdatedAtTimeMsecs This property is required. double
Name This property is required. string
Networks This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetwork>
Status This property is required. string
CreatedAtTimeMsecs This property is required. float64
DeletedAtTimeMsecs This property is required. float64
Description This property is required. string
ExternalVendorMetadatas This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadata
Id This property is required. string
The unique identifier of the backup_recovery_restore_points.
IsManagedOnHelios This property is required. bool
LastUpdatedAtTimeMsecs This property is required. float64
Name This property is required. string
Networks This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetwork
Status This property is required. string
createdAtTimeMsecs This property is required. Double
deletedAtTimeMsecs This property is required. Double
description This property is required. String
externalVendorMetadatas This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadata>
id This property is required. String
The unique identifier of the backup_recovery_restore_points.
isManagedOnHelios This property is required. Boolean
lastUpdatedAtTimeMsecs This property is required. Double
name This property is required. String
networks This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetwork>
status This property is required. String
createdAtTimeMsecs This property is required. number
deletedAtTimeMsecs This property is required. number
description This property is required. string
externalVendorMetadatas This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadata[]
id This property is required. string
The unique identifier of the backup_recovery_restore_points.
isManagedOnHelios This property is required. boolean
lastUpdatedAtTimeMsecs This property is required. number
name This property is required. string
networks This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetwork[]
status This property is required. string
created_at_time_msecs This property is required. float
deleted_at_time_msecs This property is required. float
description This property is required. str
external_vendor_metadatas This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadata]
id This property is required. str
The unique identifier of the backup_recovery_restore_points.
is_managed_on_helios This property is required. bool
last_updated_at_time_msecs This property is required. float
name This property is required. str
networks This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetwork]
status This property is required. str
createdAtTimeMsecs This property is required. Number
deletedAtTimeMsecs This property is required. Number
description This property is required. String
externalVendorMetadatas This property is required. List<Property Map>
id This property is required. String
The unique identifier of the backup_recovery_restore_points.
isManagedOnHelios This property is required. Boolean
lastUpdatedAtTimeMsecs This property is required. Number
name This property is required. String
networks This property is required. List<Property Map>
status This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadata
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataArgs

ibmTenantMetadataParams This property is required. List<Property Map>
type This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamArgs

AccountId This property is required. string
Crn This property is required. string
CustomProperties This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty>
LivenessMode This property is required. string
OwnershipMode This property is required. string
ResourceGroupId This property is required. string
AccountId This property is required. string
Crn This property is required. string
CustomProperties This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty
LivenessMode This property is required. string
OwnershipMode This property is required. string
ResourceGroupId This property is required. string
accountId This property is required. String
crn This property is required. String
customProperties This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty>
livenessMode This property is required. String
ownershipMode This property is required. String
resourceGroupId This property is required. String
accountId This property is required. string
crn This property is required. string
customProperties This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty[]
livenessMode This property is required. string
ownershipMode This property is required. string
resourceGroupId This property is required. string
account_id This property is required. str
crn This property is required. str
custom_properties This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty]
liveness_mode This property is required. str
ownership_mode This property is required. str
resource_group_id This property is required. str
accountId This property is required. String
crn This property is required. String
customProperties This property is required. List<Property Map>
livenessMode This property is required. String
ownershipMode This property is required. String
resourceGroupId This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomPropertyArgs

Key This property is required. string
Value This property is required. string
Key This property is required. string
Value This property is required. string
key This property is required. String
value This property is required. String
key This property is required. string
value This property is required. string
key This property is required. str
value This property is required. str
key This property is required. String
value This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetwork
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetworkArgs

ClusterHostname This property is required. string
ClusterIps This property is required. List<string>
ConnectorEnabled This property is required. bool
ClusterHostname This property is required. string
ClusterIps This property is required. []string
ConnectorEnabled This property is required. bool
clusterHostname This property is required. String
clusterIps This property is required. List<String>
connectorEnabled This property is required. Boolean
clusterHostname This property is required. string
clusterIps This property is required. string[]
connectorEnabled This property is required. boolean
cluster_hostname This property is required. str
cluster_ips This property is required. Sequence[str]
connector_enabled This property is required. bool
clusterHostname This property is required. String
clusterIps This property is required. List<String>
connectorEnabled This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionUser
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionUserArgs

Domain This property is required. string
Name This property is required. string
Sid This property is required. string
Domain This property is required. string
Name This property is required. string
Sid This property is required. string
domain This property is required. String
name This property is required. String
sid This property is required. String
domain This property is required. string
name This property is required. string
sid This property is required. string
domain This property is required. str
name This property is required. str
sid This property is required. str
domain This property is required. String
name This property is required. String
sid This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParamArgs

EnableSystemBackup This property is required. bool
EnableSystemBackup This property is required. bool
enableSystemBackup This property is required. Boolean
enableSystemBackup This property is required. boolean
enable_system_backup This property is required. bool
enableSystemBackup This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStatArgs

DeletedProtectedCount This property is required. double
Environment This property is required. 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 This property is required. double
ProtectedSizeBytes This property is required. double
UnprotectedCount This property is required. double
UnprotectedSizeBytes This property is required. double
DeletedProtectedCount This property is required. float64
Environment This property is required. 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 This property is required. float64
ProtectedSizeBytes This property is required. float64
UnprotectedCount This property is required. float64
UnprotectedSizeBytes This property is required. float64
deletedProtectedCount This property is required. Double
environment This property is required. 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 This property is required. Double
protectedSizeBytes This property is required. Double
unprotectedCount This property is required. Double
unprotectedSizeBytes This property is required. Double
deletedProtectedCount This property is required. number
environment This property is required. 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 This property is required. number
protectedSizeBytes This property is required. number
unprotectedCount This property is required. number
unprotectedSizeBytes This property is required. number
deleted_protected_count This property is required. float
environment This property is required. 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 This property is required. float
protected_size_bytes This property is required. float
unprotected_count This property is required. float
unprotected_size_bytes This property is required. float
deletedProtectedCount This property is required. Number
environment This property is required. 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 This property is required. Number
protectedSizeBytes This property is required. Number
unprotectedCount This property is required. Number
unprotectedSizeBytes This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummaryArgs

SiteWebUrl This property is required. string
SiteWebUrl This property is required. string
siteWebUrl This property is required. String
siteWebUrl This property is required. string
site_web_url This property is required. str
siteWebUrl This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummaryArgs

IsCloudEnv This property is required. bool
IsCloudEnv This property is required. bool
isCloudEnv This property is required. Boolean
isCloudEnv This property is required. boolean
is_cloud_env This property is required. bool
isCloudEnv This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummaryArgs

ClusterSourceType This property is required. string
ClusterSourceType This property is required. string
clusterSourceType This property is required. String
clusterSourceType This property is required. string
cluster_source_type This property is required. str
clusterSourceType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfo
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoArgs

ChildObjects This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject>
Environment This property is required. 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 This property is required. string
Id This property is required. double
The unique identifier of the backup_recovery_restore_points.
LogicalSizeBytes This property is required. double
MssqlParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam>
Name This property is required. string
ObjectHash This property is required. string
ObjectType This property is required. string
OsType This property is required. string
Permissions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission>
PhysicalParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam>
ProtectionStats This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat>
ProtectionType This property is required. string
SharepointSiteSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary>
SourceId This property is required. double
Specifies the id of the Protection Source which is to be restored.
SourceName This property is required. string
Uuid This property is required. string
VCenterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary>
WindowsClusterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary>
ChildObjects This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject
Environment This property is required. 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 This property is required. string
Id This property is required. float64
The unique identifier of the backup_recovery_restore_points.
LogicalSizeBytes This property is required. float64
MssqlParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam
Name This property is required. string
ObjectHash This property is required. string
ObjectType This property is required. string
OsType This property is required. string
Permissions This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission
PhysicalParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam
ProtectionStats This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat
ProtectionType This property is required. string
SharepointSiteSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary
SourceId This property is required. float64
Specifies the id of the Protection Source which is to be restored.
SourceName This property is required. string
Uuid This property is required. string
VCenterSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary
WindowsClusterSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary
childObjects This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject>
environment This property is required. 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 This property is required. String
id This property is required. Double
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. Double
mssqlParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam>
name This property is required. String
objectHash This property is required. String
objectType This property is required. String
osType This property is required. String
permissions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission>
physicalParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam>
protectionStats This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat>
protectionType This property is required. String
sharepointSiteSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary>
sourceId This property is required. Double
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. String
uuid This property is required. String
vCenterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary>
windowsClusterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary>
childObjects This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject[]
environment This property is required. 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 This property is required. string
id This property is required. number
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. number
mssqlParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam[]
name This property is required. string
objectHash This property is required. string
objectType This property is required. string
osType This property is required. string
permissions This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission[]
physicalParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam[]
protectionStats This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat[]
protectionType This property is required. string
sharepointSiteSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary[]
sourceId This property is required. number
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. string
uuid This property is required. string
vCenterSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary[]
windowsClusterSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary[]
child_objects This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject]
environment This property is required. 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 This property is required. str
id This property is required. float
The unique identifier of the backup_recovery_restore_points.
logical_size_bytes This property is required. float
mssql_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam]
name This property is required. str
object_hash This property is required. str
object_type This property is required. str
os_type This property is required. str
permissions This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission]
physical_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam]
protection_stats This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat]
protection_type This property is required. str
sharepoint_site_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary]
source_id This property is required. float
Specifies the id of the Protection Source which is to be restored.
source_name This property is required. str
uuid This property is required. str
v_center_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary]
windows_cluster_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary]
childObjects This property is required. List<Property Map>
environment This property is required. 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 This property is required. String
id This property is required. Number
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. Number
mssqlParams This property is required. List<Property Map>
name This property is required. String
objectHash This property is required. String
objectType This property is required. String
osType This property is required. String
permissions This property is required. List<Property Map>
physicalParams This property is required. List<Property Map>
protectionStats This property is required. List<Property Map>
protectionType This property is required. String
sharepointSiteSummaries This property is required. List<Property Map>
sourceId This property is required. Number
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. String
uuid This property is required. String
vCenterSummaries This property is required. List<Property Map>
windowsClusterSummaries This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectArgs

ChildObjects This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject>
Environment This property is required. 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 This property is required. string
Id This property is required. double
The unique identifier of the backup_recovery_restore_points.
LogicalSizeBytes This property is required. double
Name This property is required. string
ObjectHash This property is required. string
ObjectType This property is required. string
OsType This property is required. string
ProtectionType This property is required. string
SharepointSiteSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary>
SourceId This property is required. double
Specifies the id of the Protection Source which is to be restored.
SourceName This property is required. string
Uuid This property is required. string
VCenterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary>
WindowsClusterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary>
ChildObjects This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject
Environment This property is required. 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 This property is required. string
Id This property is required. float64
The unique identifier of the backup_recovery_restore_points.
LogicalSizeBytes This property is required. float64
Name This property is required. string
ObjectHash This property is required. string
ObjectType This property is required. string
OsType This property is required. string
ProtectionType This property is required. string
SharepointSiteSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary
SourceId This property is required. float64
Specifies the id of the Protection Source which is to be restored.
SourceName This property is required. string
Uuid This property is required. string
VCenterSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary
WindowsClusterSummaries This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary
childObjects This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject>
environment This property is required. 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 This property is required. String
id This property is required. Double
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. Double
name This property is required. String
objectHash This property is required. String
objectType This property is required. String
osType This property is required. String
protectionType This property is required. String
sharepointSiteSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary>
sourceId This property is required. Double
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. String
uuid This property is required. String
vCenterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary>
windowsClusterSummaries This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary>
childObjects This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject[]
environment This property is required. 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 This property is required. string
id This property is required. number
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. number
name This property is required. string
objectHash This property is required. string
objectType This property is required. string
osType This property is required. string
protectionType This property is required. string
sharepointSiteSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary[]
sourceId This property is required. number
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. string
uuid This property is required. string
vCenterSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary[]
windowsClusterSummaries This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary[]
child_objects This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectChildObject]
environment This property is required. 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 This property is required. str
id This property is required. float
The unique identifier of the backup_recovery_restore_points.
logical_size_bytes This property is required. float
name This property is required. str
object_hash This property is required. str
object_type This property is required. str
os_type This property is required. str
protection_type This property is required. str
sharepoint_site_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary]
source_id This property is required. float
Specifies the id of the Protection Source which is to be restored.
source_name This property is required. str
uuid This property is required. str
v_center_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary]
windows_cluster_summaries This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary]
childObjects This property is required. List<Property Map>
environment This property is required. 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 This property is required. String
id This property is required. Number
The unique identifier of the backup_recovery_restore_points.
logicalSizeBytes This property is required. Number
name This property is required. String
objectHash This property is required. String
objectType This property is required. String
osType This property is required. String
protectionType This property is required. String
sharepointSiteSummaries This property is required. List<Property Map>
sourceId This property is required. Number
Specifies the id of the Protection Source which is to be restored.
sourceName This property is required. String
uuid This property is required. String
vCenterSummaries This property is required. List<Property Map>
windowsClusterSummaries This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummaryArgs

SiteWebUrl This property is required. string
SiteWebUrl This property is required. string
siteWebUrl This property is required. String
siteWebUrl This property is required. string
site_web_url This property is required. str
siteWebUrl This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummaryArgs

IsCloudEnv This property is required. bool
IsCloudEnv This property is required. bool
isCloudEnv This property is required. Boolean
isCloudEnv This property is required. boolean
is_cloud_env This property is required. bool
isCloudEnv This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummaryArgs

ClusterSourceType This property is required. string
ClusterSourceType This property is required. string
clusterSourceType This property is required. String
clusterSourceType This property is required. string
cluster_source_type This property is required. str
clusterSourceType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamArgs

aagInfos This property is required. List<Property Map>
hostInfos This property is required. List<Property Map>
isEncrypted This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamAagInfo
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamAagInfoArgs

Name This property is required. string
ObjectId This property is required. double
Name This property is required. string
ObjectId This property is required. float64
name This property is required. String
objectId This property is required. Double
name This property is required. string
objectId This property is required. number
name This property is required. str
object_id This property is required. float
name This property is required. String
objectId This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamHostInfo
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamHostInfoArgs

Environment This property is required. 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 This property is required. string
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
Environment This property is required. 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 This property is required. string
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
environment This property is required. 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 This property is required. String
The unique identifier of the backup_recovery_restore_points.
name This property is required. String
environment This property is required. 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 This property is required. string
The unique identifier of the backup_recovery_restore_points.
name This property is required. string
environment This property is required. 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 This property is required. str
The unique identifier of the backup_recovery_restore_points.
name This property is required. str
environment This property is required. 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 This property is required. String
The unique identifier of the backup_recovery_restore_points.
name This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermission
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionArgs

groups This property is required. List<Property Map>
objectId This property is required. Number
tenants This property is required. List<Property Map>
users This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionGroup
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionGroupArgs

Domain This property is required. string
Name This property is required. string
Sid This property is required. string
Domain This property is required. string
Name This property is required. string
Sid This property is required. string
domain This property is required. String
name This property is required. String
sid This property is required. String
domain This property is required. string
name This property is required. string
sid This property is required. string
domain This property is required. str
name This property is required. str
sid This property is required. str
domain This property is required. String
name This property is required. String
sid This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenant
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantArgs

CreatedAtTimeMsecs This property is required. double
DeletedAtTimeMsecs This property is required. double
Description This property is required. string
ExternalVendorMetadatas This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadata>
Id This property is required. string
The unique identifier of the backup_recovery_restore_points.
IsManagedOnHelios This property is required. bool
LastUpdatedAtTimeMsecs This property is required. double
Name This property is required. string
Networks This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetwork>
Status This property is required. string
CreatedAtTimeMsecs This property is required. float64
DeletedAtTimeMsecs This property is required. float64
Description This property is required. string
ExternalVendorMetadatas This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadata
Id This property is required. string
The unique identifier of the backup_recovery_restore_points.
IsManagedOnHelios This property is required. bool
LastUpdatedAtTimeMsecs This property is required. float64
Name This property is required. string
Networks This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetwork
Status This property is required. string
createdAtTimeMsecs This property is required. Double
deletedAtTimeMsecs This property is required. Double
description This property is required. String
externalVendorMetadatas This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadata>
id This property is required. String
The unique identifier of the backup_recovery_restore_points.
isManagedOnHelios This property is required. Boolean
lastUpdatedAtTimeMsecs This property is required. Double
name This property is required. String
networks This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetwork>
status This property is required. String
createdAtTimeMsecs This property is required. number
deletedAtTimeMsecs This property is required. number
description This property is required. string
externalVendorMetadatas This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadata[]
id This property is required. string
The unique identifier of the backup_recovery_restore_points.
isManagedOnHelios This property is required. boolean
lastUpdatedAtTimeMsecs This property is required. number
name This property is required. string
networks This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetwork[]
status This property is required. string
created_at_time_msecs This property is required. float
deleted_at_time_msecs This property is required. float
description This property is required. str
external_vendor_metadatas This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadata]
id This property is required. str
The unique identifier of the backup_recovery_restore_points.
is_managed_on_helios This property is required. bool
last_updated_at_time_msecs This property is required. float
name This property is required. str
networks This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetwork]
status This property is required. str
createdAtTimeMsecs This property is required. Number
deletedAtTimeMsecs This property is required. Number
description This property is required. String
externalVendorMetadatas This property is required. List<Property Map>
id This property is required. String
The unique identifier of the backup_recovery_restore_points.
isManagedOnHelios This property is required. Boolean
lastUpdatedAtTimeMsecs This property is required. Number
name This property is required. String
networks This property is required. List<Property Map>
status This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadata
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataArgs

ibmTenantMetadataParams This property is required. List<Property Map>
type This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamArgs

AccountId This property is required. string
Crn This property is required. string
CustomProperties This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty>
LivenessMode This property is required. string
OwnershipMode This property is required. string
ResourceGroupId This property is required. string
AccountId This property is required. string
Crn This property is required. string
CustomProperties This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty
LivenessMode This property is required. string
OwnershipMode This property is required. string
ResourceGroupId This property is required. string
accountId This property is required. String
crn This property is required. String
customProperties This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty>
livenessMode This property is required. String
ownershipMode This property is required. String
resourceGroupId This property is required. String
accountId This property is required. string
crn This property is required. string
customProperties This property is required. BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty[]
livenessMode This property is required. string
ownershipMode This property is required. string
resourceGroupId This property is required. string
account_id This property is required. str
crn This property is required. str
custom_properties This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty]
liveness_mode This property is required. str
ownership_mode This property is required. str
resource_group_id This property is required. str
accountId This property is required. String
crn This property is required. String
customProperties This property is required. List<Property Map>
livenessMode This property is required. String
ownershipMode This property is required. String
resourceGroupId This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomPropertyArgs

Key This property is required. string
Value This property is required. string
Key This property is required. string
Value This property is required. string
key This property is required. String
value This property is required. String
key This property is required. string
value This property is required. string
key This property is required. str
value This property is required. str
key This property is required. String
value This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetwork
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetworkArgs

ClusterHostname This property is required. string
ClusterIps This property is required. List<string>
ConnectorEnabled This property is required. bool
ClusterHostname This property is required. string
ClusterIps This property is required. []string
ConnectorEnabled This property is required. bool
clusterHostname This property is required. String
clusterIps This property is required. List<String>
connectorEnabled This property is required. Boolean
clusterHostname This property is required. string
clusterIps This property is required. string[]
connectorEnabled This property is required. boolean
cluster_hostname This property is required. str
cluster_ips This property is required. Sequence[str]
connector_enabled This property is required. bool
clusterHostname This property is required. String
clusterIps This property is required. List<String>
connectorEnabled This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionUser
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionUserArgs

Domain This property is required. string
Name This property is required. string
Sid This property is required. string
Domain This property is required. string
Name This property is required. string
Sid This property is required. string
domain This property is required. String
name This property is required. String
sid This property is required. String
domain This property is required. string
name This property is required. string
sid This property is required. string
domain This property is required. str
name This property is required. str
sid This property is required. str
domain This property is required. String
name This property is required. String
sid This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParamArgs

EnableSystemBackup This property is required. bool
EnableSystemBackup This property is required. bool
enableSystemBackup This property is required. Boolean
enableSystemBackup This property is required. boolean
enable_system_backup This property is required. bool
enableSystemBackup This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStatArgs

DeletedProtectedCount This property is required. double
Environment This property is required. 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 This property is required. double
ProtectedSizeBytes This property is required. double
UnprotectedCount This property is required. double
UnprotectedSizeBytes This property is required. double
DeletedProtectedCount This property is required. float64
Environment This property is required. 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 This property is required. float64
ProtectedSizeBytes This property is required. float64
UnprotectedCount This property is required. float64
UnprotectedSizeBytes This property is required. float64
deletedProtectedCount This property is required. Double
environment This property is required. 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 This property is required. Double
protectedSizeBytes This property is required. Double
unprotectedCount This property is required. Double
unprotectedSizeBytes This property is required. Double
deletedProtectedCount This property is required. number
environment This property is required. 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 This property is required. number
protectedSizeBytes This property is required. number
unprotectedCount This property is required. number
unprotectedSizeBytes This property is required. number
deleted_protected_count This property is required. float
environment This property is required. 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 This property is required. float
protected_size_bytes This property is required. float
unprotected_count This property is required. float
unprotected_size_bytes This property is required. float
deletedProtectedCount This property is required. Number
environment This property is required. 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 This property is required. Number
protectedSizeBytes This property is required. Number
unprotectedCount This property is required. Number
unprotectedSizeBytes This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummaryArgs

SiteWebUrl This property is required. string
SiteWebUrl This property is required. string
siteWebUrl This property is required. String
siteWebUrl This property is required. string
site_web_url This property is required. str
siteWebUrl This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummaryArgs

IsCloudEnv This property is required. bool
IsCloudEnv This property is required. bool
isCloudEnv This property is required. Boolean
isCloudEnv This property is required. boolean
is_cloud_env This property is required. bool
isCloudEnv This property is required. Boolean

BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary
, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummaryArgs

ClusterSourceType This property is required. string
ClusterSourceType This property is required. string
clusterSourceType This property is required. String
clusterSourceType This property is required. string
cluster_source_type This property is required. str
clusterSourceType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfiguration
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArgs

archivalTargets This property is required. List<Property Map>
cloudSpinTargets This property is required. List<Property Map>
onpremDeployTargets This property is required. List<Property Map>
replicationTargets This property is required. List<Property Map>
rpaasTargets This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTarget
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetArgs

BackupRunType This property is required. string
ConfigId This property is required. string
CopyOnRunSuccess This property is required. bool
ExtendedRetentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetention>
LogRetentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetention>
Retentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetention>
RunTimeouts This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeout>
Schedules This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetSchedule>
TargetId This property is required. double
TargetName This property is required. string
TargetType This property is required. string
TierSettings This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSetting>
BackupRunType This property is required. string
ConfigId This property is required. string
CopyOnRunSuccess This property is required. bool
ExtendedRetentions This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetention
LogRetentions This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetention
Retentions This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetention
RunTimeouts This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeout
Schedules This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetSchedule
TargetId This property is required. float64
TargetName This property is required. string
TargetType This property is required. string
TierSettings This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSetting
backupRunType This property is required. String
configId This property is required. String
copyOnRunSuccess This property is required. Boolean
extendedRetentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetention>
logRetentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetention>
retentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetention>
runTimeouts This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeout>
schedules This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetSchedule>
targetId This property is required. Double
targetName This property is required. String
targetType This property is required. String
tierSettings This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSetting>
backup_run_type This property is required. str
config_id This property is required. str
copy_on_run_success This property is required. bool
extended_retentions This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetention]
log_retentions This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetention]
retentions This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetention]
run_timeouts This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeout]
schedules This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetSchedule]
target_id This property is required. float
target_name This property is required. str
target_type This property is required. str
tier_settings This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSetting]
backupRunType This property is required. String
configId This property is required. String
copyOnRunSuccess This property is required. Boolean
extendedRetentions This property is required. List<Property Map>
logRetentions This property is required. List<Property Map>
retentions This property is required. List<Property Map>
runTimeouts This property is required. List<Property Map>
schedules This property is required. List<Property Map>
targetId This property is required. Number
targetName This property is required. String
targetType This property is required. String
tierSettings This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionArgs

configId This property is required. String
retentions This property is required. List<Property Map>
runType This property is required. String
schedules This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetentionArgs

dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionSchedule
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionScheduleArgs

Frequency This property is required. double
Unit This property is required. string
Frequency This property is required. float64
Unit This property is required. string
frequency This property is required. Double
unit This property is required. String
frequency This property is required. number
unit This property is required. string
frequency This property is required. float
unit This property is required. str
frequency This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeout
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeoutArgs

BackupType This property is required. string
TimeoutMins This property is required. double
BackupType This property is required. string
TimeoutMins This property is required. float64
backupType This property is required. String
timeoutMins This property is required. Double
backupType This property is required. string
timeoutMins This property is required. number
backup_type This property is required. str
timeout_mins This property is required. float
backupType This property is required. String
timeoutMins This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetSchedule
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetScheduleArgs

Frequency This property is required. double
Unit This property is required. string
Frequency This property is required. float64
Unit This property is required. string
frequency This property is required. Double
unit This property is required. String
frequency This property is required. number
unit This property is required. string
frequency This property is required. float
unit This property is required. str
frequency This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSetting
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingArgs

awsTierings This property is required. List<Property Map>
azureTierings This property is required. List<Property Map>
cloudPlatform This property is required. String
googleTierings This property is required. List<Property Map>
oracleTierings This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTiering
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTieringArgs

tiers This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTieringTier
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTieringTierArgs

MoveAfter This property is required. double
MoveAfterUnit This property is required. string
TierType This property is required. string
MoveAfter This property is required. float64
MoveAfterUnit This property is required. string
TierType This property is required. string
moveAfter This property is required. Double
moveAfterUnit This property is required. String
tierType This property is required. String
moveAfter This property is required. number
moveAfterUnit This property is required. string
tierType This property is required. string
move_after This property is required. float
move_after_unit This property is required. str
tier_type This property is required. str
moveAfter This property is required. Number
moveAfterUnit This property is required. String
tierType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTiering
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTieringArgs

tiers This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTieringTier
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTieringTierArgs

MoveAfter This property is required. double
MoveAfterUnit This property is required. string
TierType This property is required. string
MoveAfter This property is required. float64
MoveAfterUnit This property is required. string
TierType This property is required. string
moveAfter This property is required. Double
moveAfterUnit This property is required. String
tierType This property is required. String
moveAfter This property is required. number
moveAfterUnit This property is required. string
tierType This property is required. string
move_after This property is required. float
move_after_unit This property is required. str
tier_type This property is required. str
moveAfter This property is required. Number
moveAfterUnit This property is required. String
tierType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTiering
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTieringArgs

tiers This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTieringTier
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTieringTierArgs

MoveAfter This property is required. double
MoveAfterUnit This property is required. string
TierType This property is required. string
MoveAfter This property is required. float64
MoveAfterUnit This property is required. string
TierType This property is required. string
moveAfter This property is required. Double
moveAfterUnit This property is required. String
tierType This property is required. String
moveAfter This property is required. number
moveAfterUnit This property is required. string
tierType This property is required. string
move_after This property is required. float
move_after_unit This property is required. str
tier_type This property is required. str
moveAfter This property is required. Number
moveAfterUnit This property is required. String
tierType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTiering
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTieringArgs

tiers This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTieringTier
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTieringTierArgs

MoveAfter This property is required. double
MoveAfterUnit This property is required. string
TierType This property is required. string
MoveAfter This property is required. float64
MoveAfterUnit This property is required. string
TierType This property is required. string
moveAfter This property is required. Double
moveAfterUnit This property is required. String
tierType This property is required. String
moveAfter This property is required. number
moveAfterUnit This property is required. string
tierType This property is required. string
move_after This property is required. float
move_after_unit This property is required. str
tier_type This property is required. str
moveAfter This property is required. Number
moveAfterUnit This property is required. String
tierType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTarget
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetArgs

backup_run_type This property is required. str
config_id This property is required. str
copy_on_run_success This property is required. bool
log_retentions This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetention]
retentions This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetention]
run_timeouts This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRunTimeout]
schedules This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetSchedule]
targets This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTarget]
backupRunType This property is required. String
configId This property is required. String
copyOnRunSuccess This property is required. Boolean
logRetentions This property is required. List<Property Map>
retentions This property is required. List<Property Map>
runTimeouts This property is required. List<Property Map>
schedules This property is required. List<Property Map>
targets This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetLogRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRunTimeout
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRunTimeoutArgs

BackupType This property is required. string
TimeoutMins This property is required. double
BackupType This property is required. string
TimeoutMins This property is required. float64
backupType This property is required. String
timeoutMins This property is required. Double
backupType This property is required. string
timeoutMins This property is required. number
backup_type This property is required. str
timeout_mins This property is required. float
backupType This property is required. String
timeoutMins This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetSchedule
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetScheduleArgs

Frequency This property is required. double
Unit This property is required. string
Frequency This property is required. float64
Unit This property is required. string
frequency This property is required. Double
unit This property is required. String
frequency This property is required. number
unit This property is required. string
frequency This property is required. float
unit This property is required. str
frequency This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTarget
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetArgs

AwsParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParam>
AzureParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParam>
Id This property is required. double
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
AwsParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParam
AzureParams This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParam
Id This property is required. float64
The unique identifier of the backup_recovery_restore_points.
Name This property is required. string
awsParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParam>
azureParams This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParam>
id This property is required. Double
The unique identifier of the backup_recovery_restore_points.
name This property is required. String
awsParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParam[]
azureParams This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParam[]
id This property is required. number
The unique identifier of the backup_recovery_restore_points.
name This property is required. string
aws_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParam]
azure_params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParam]
id This property is required. float
The unique identifier of the backup_recovery_restore_points.
name This property is required. str
awsParams This property is required. List<Property Map>
azureParams This property is required. List<Property Map>
id This property is required. Number
The unique identifier of the backup_recovery_restore_points.
name This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParam
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamArgs

CustomTagLists This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagList>
Region This property is required. double
SubnetId This property is required. double
VpcId This property is required. double
CustomTagLists This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagList
Region This property is required. float64
SubnetId This property is required. float64
VpcId This property is required. float64
customTagLists This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagList>
region This property is required. Double
subnetId This property is required. Double
vpcId This property is required. Double
customTagLists This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagList[]
region This property is required. number
subnetId This property is required. number
vpcId This property is required. number
custom_tag_lists This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagList]
region This property is required. float
subnet_id This property is required. float
vpc_id This property is required. float
customTagLists This property is required. List<Property Map>
region This property is required. Number
subnetId This property is required. Number
vpcId This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagList
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagListArgs

Key This property is required. string
Value This property is required. string
Key This property is required. string
Value This property is required. string
key This property is required. String
value This property is required. String
key This property is required. string
value This property is required. string
key This property is required. str
value This property is required. str
key This property is required. String
value This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParam
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParamArgs

AvailabilitySetId This property is required. double
NetworkResourceGroupId This property is required. double
ResourceGroupId This property is required. double
StorageAccountId This property is required. double
StorageContainerId This property is required. double
StorageResourceGroupId This property is required. double
TempVmResourceGroupId This property is required. double
TempVmStorageAccountId This property is required. double
TempVmStorageContainerId This property is required. double
TempVmSubnetId This property is required. double
TempVmVirtualNetworkId This property is required. double
AvailabilitySetId This property is required. float64
NetworkResourceGroupId This property is required. float64
ResourceGroupId This property is required. float64
StorageAccountId This property is required. float64
StorageContainerId This property is required. float64
StorageResourceGroupId This property is required. float64
TempVmResourceGroupId This property is required. float64
TempVmStorageAccountId This property is required. float64
TempVmStorageContainerId This property is required. float64
TempVmSubnetId This property is required. float64
TempVmVirtualNetworkId This property is required. float64
availabilitySetId This property is required. Double
networkResourceGroupId This property is required. Double
resourceGroupId This property is required. Double
storageAccountId This property is required. Double
storageContainerId This property is required. Double
storageResourceGroupId This property is required. Double
tempVmResourceGroupId This property is required. Double
tempVmStorageAccountId This property is required. Double
tempVmStorageContainerId This property is required. Double
tempVmSubnetId This property is required. Double
tempVmVirtualNetworkId This property is required. Double
availabilitySetId This property is required. number
networkResourceGroupId This property is required. number
resourceGroupId This property is required. number
storageAccountId This property is required. number
storageContainerId This property is required. number
storageResourceGroupId This property is required. number
tempVmResourceGroupId This property is required. number
tempVmStorageAccountId This property is required. number
tempVmStorageContainerId This property is required. number
tempVmSubnetId This property is required. number
tempVmVirtualNetworkId This property is required. number
availability_set_id This property is required. float
network_resource_group_id This property is required. float
resource_group_id This property is required. float
storage_account_id This property is required. float
storage_container_id This property is required. float
storage_resource_group_id This property is required. float
temp_vm_resource_group_id This property is required. float
temp_vm_storage_account_id This property is required. float
temp_vm_storage_container_id This property is required. float
temp_vm_subnet_id This property is required. float
temp_vm_virtual_network_id This property is required. float
availabilitySetId This property is required. Number
networkResourceGroupId This property is required. Number
resourceGroupId This property is required. Number
storageAccountId This property is required. Number
storageContainerId This property is required. Number
storageResourceGroupId This property is required. Number
tempVmResourceGroupId This property is required. Number
tempVmStorageAccountId This property is required. Number
tempVmStorageContainerId This property is required. Number
tempVmSubnetId This property is required. Number
tempVmVirtualNetworkId This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTarget
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetArgs

BackupRunType This property is required. string
ConfigId This property is required. string
CopyOnRunSuccess This property is required. bool
LogRetentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetention>
Params This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetParam>
Retentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetention>
RunTimeouts This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRunTimeout>
Schedules This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetSchedule>
backupRunType This property is required. String
configId This property is required. String
copyOnRunSuccess This property is required. Boolean
logRetentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetention>
params This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetParam>
retentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetention>
runTimeouts This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRunTimeout>
schedules This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetSchedule>
backup_run_type This property is required. str
config_id This property is required. str
copy_on_run_success This property is required. bool
log_retentions This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetention]
params This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetParam]
retentions This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetention]
run_timeouts This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRunTimeout]
schedules This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetSchedule]
backupRunType This property is required. String
configId This property is required. String
copyOnRunSuccess This property is required. Boolean
logRetentions This property is required. List<Property Map>
params This property is required. List<Property Map>
retentions This property is required. List<Property Map>
runTimeouts This property is required. List<Property Map>
schedules This property is required. List<Property Map>

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetParam
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetParamArgs

Id This property is required. double
The unique identifier of the backup_recovery_restore_points.
Id This property is required. float64
The unique identifier of the backup_recovery_restore_points.
id This property is required. Double
The unique identifier of the backup_recovery_restore_points.
id This property is required. number
The unique identifier of the backup_recovery_restore_points.
id This property is required. float
The unique identifier of the backup_recovery_restore_points.
id This property is required. Number
The unique identifier of the backup_recovery_restore_points.

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRunTimeout
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRunTimeoutArgs

BackupType This property is required. string
TimeoutMins This property is required. double
BackupType This property is required. string
TimeoutMins This property is required. float64
backupType This property is required. String
timeoutMins This property is required. Double
backupType This property is required. string
timeoutMins This property is required. number
backup_type This property is required. str
timeout_mins This property is required. float
backupType This property is required. String
timeoutMins This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetSchedule
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetScheduleArgs

Frequency This property is required. double
Unit This property is required. string
Frequency This property is required. float64
Unit This property is required. string
frequency This property is required. Double
unit This property is required. String
frequency This property is required. number
unit This property is required. string
frequency This property is required. float
unit This property is required. str
frequency This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTarget
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetArgs

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

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfigArgs

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

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAzureTargetConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAzureTargetConfigArgs

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

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfigArgs

ClusterId This property is required. double
ClusterName This property is required. string
ClusterId This property is required. float64
ClusterName This property is required. string
clusterId This property is required. Double
clusterName This property is required. String
clusterId This property is required. number
clusterName This property is required. string
cluster_id This property is required. float
cluster_name This property is required. str
clusterId This property is required. Number
clusterName This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeout
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeoutArgs

BackupType This property is required. string
TimeoutMins This property is required. double
BackupType This property is required. string
TimeoutMins This property is required. float64
backupType This property is required. String
timeoutMins This property is required. Double
backupType This property is required. string
timeoutMins This property is required. number
backup_type This property is required. str
timeout_mins This property is required. float
backupType This property is required. String
timeoutMins This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetSchedule
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetScheduleArgs

Frequency This property is required. double
Unit This property is required. string
Frequency This property is required. float64
Unit This property is required. string
frequency This property is required. Double
unit This property is required. String
frequency This property is required. number
unit This property is required. string
frequency This property is required. float
unit This property is required. str
frequency This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTarget
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetArgs

BackupRunType This property is required. string
ConfigId This property is required. string
CopyOnRunSuccess This property is required. bool
LogRetentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetention>
Retentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetention>
RunTimeouts This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeout>
Schedules This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetSchedule>
TargetId This property is required. double
TargetName This property is required. string
TargetType This property is required. string
BackupRunType This property is required. string
ConfigId This property is required. string
CopyOnRunSuccess This property is required. bool
LogRetentions This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetention
Retentions This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetention
RunTimeouts This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeout
Schedules This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetSchedule
TargetId This property is required. float64
TargetName This property is required. string
TargetType This property is required. string
backupRunType This property is required. String
configId This property is required. String
copyOnRunSuccess This property is required. Boolean
logRetentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetention>
retentions This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetention>
runTimeouts This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeout>
schedules This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetSchedule>
targetId This property is required. Double
targetName This property is required. String
targetType This property is required. String
backupRunType This property is required. string
configId This property is required. string
copyOnRunSuccess This property is required. boolean
logRetentions This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetention[]
retentions This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetention[]
runTimeouts This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeout[]
schedules This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetSchedule[]
targetId This property is required. number
targetName This property is required. string
targetType This property is required. string
backupRunType This property is required. String
configId This property is required. String
copyOnRunSuccess This property is required. Boolean
logRetentions This property is required. List<Property Map>
retentions This property is required. List<Property Map>
runTimeouts This property is required. List<Property Map>
schedules This property is required. List<Property Map>
targetId This property is required. Number
targetName This property is required. String
targetType This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetention
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionArgs

DataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionDataLockConfig>
Duration This property is required. double
Unit This property is required. string
DataLockConfigs This property is required. []BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionDataLockConfig
Duration This property is required. float64
Unit This property is required. string
dataLockConfigs This property is required. List<BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionDataLockConfig>
duration This property is required. Double
unit This property is required. String
dataLockConfigs This property is required. BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionDataLockConfig[]
duration This property is required. number
unit This property is required. string
data_lock_configs This property is required. Sequence[BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionDataLockConfig]
duration This property is required. float
unit This property is required. str
dataLockConfigs This property is required. List<Property Map>
duration This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionDataLockConfig
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionDataLockConfigArgs

Duration This property is required. double
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
Duration This property is required. float64
EnableWormOnExternalTarget This property is required. bool
Mode This property is required. string
Unit This property is required. string
duration This property is required. Double
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String
duration This property is required. number
enableWormOnExternalTarget This property is required. boolean
mode This property is required. string
unit This property is required. string
duration This property is required. float
enable_worm_on_external_target This property is required. bool
mode This property is required. str
unit This property is required. str
duration This property is required. Number
enableWormOnExternalTarget This property is required. Boolean
mode This property is required. String
unit This property is required. String

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeout
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeoutArgs

BackupType This property is required. string
TimeoutMins This property is required. double
BackupType This property is required. string
TimeoutMins This property is required. float64
backupType This property is required. String
timeoutMins This property is required. Double
backupType This property is required. string
timeoutMins This property is required. number
backup_type This property is required. str
timeout_mins This property is required. float
backupType This property is required. String
timeoutMins This property is required. Number

BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetSchedule
, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetScheduleArgs

Frequency This property is required. double
Unit This property is required. string
Frequency This property is required. float64
Unit This property is required. string
frequency This property is required. Double
unit This property is required. String
frequency This property is required. number
unit This property is required. string
frequency This property is required. float
unit This property is required. str
frequency This property is required. Number
unit This property is required. String

BackupRecoveryRestorePointsTimeRangeInfo
, BackupRecoveryRestorePointsTimeRangeInfoArgs

ErrorMessage This property is required. string
TimeRanges This property is required. List<BackupRecoveryRestorePointsTimeRangeInfoTimeRange>
UserMessage This property is required. string
ErrorMessage This property is required. string
TimeRanges This property is required. []BackupRecoveryRestorePointsTimeRangeInfoTimeRange
UserMessage This property is required. string
errorMessage This property is required. String
timeRanges This property is required. List<BackupRecoveryRestorePointsTimeRangeInfoTimeRange>
userMessage This property is required. String
errorMessage This property is required. string
timeRanges This property is required. BackupRecoveryRestorePointsTimeRangeInfoTimeRange[]
userMessage This property is required. string
error_message This property is required. str
time_ranges This property is required. Sequence[BackupRecoveryRestorePointsTimeRangeInfoTimeRange]
user_message This property is required. str
errorMessage This property is required. String
timeRanges This property is required. List<Property Map>
userMessage This property is required. String

BackupRecoveryRestorePointsTimeRangeInfoTimeRange
, BackupRecoveryRestorePointsTimeRangeInfoTimeRangeArgs

EndTimeUsecs This property is required. double
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
ProtectionGroupId This property is required. string
StartTimeUsecs This property is required. double
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
EndTimeUsecs This property is required. float64
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
ProtectionGroupId This property is required. string
StartTimeUsecs This property is required. float64
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
endTimeUsecs This property is required. Double
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
protectionGroupId This property is required. String
startTimeUsecs This property is required. Double
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
endTimeUsecs This property is required. number
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
protectionGroupId This property is required. string
startTimeUsecs This property is required. number
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
end_time_usecs This property is required. float
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
protection_group_id This property is required. str
start_time_usecs This property is required. float
Specifies the start time specified as a Unix epoch Timestamp in microseconds.
endTimeUsecs This property is required. Number
Specifies the end time specified as a Unix epoch Timestamp in microseconds.
protectionGroupId This property is required. String
startTimeUsecs This property is required. 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.