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",
});
import pulumi
import pulumi_ibm as ibm
backup_recovery_restore_points_instance = ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsInstance",
end_time_usecs=12,
environment="kVMware",
start_time_usecs=14,
x_ibm_tenant_id="x_ibm_tenant_id")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.NewBackupRecoveryRestorePoints(ctx, "backupRecoveryRestorePointsInstance", &ibm.BackupRecoveryRestorePointsArgs{
EndTimeUsecs: pulumi.Float64(12),
Environment: pulumi.String("kVMware"),
StartTimeUsecs: pulumi.Float64(14),
XIbmTenantId: pulumi.String("x_ibm_tenant_id"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var backupRecoveryRestorePointsInstance = new Ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsInstance", new()
{
EndTimeUsecs = 12,
Environment = "kVMware",
StartTimeUsecs = 14,
XIbmTenantId = "x_ibm_tenant_id",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.BackupRecoveryRestorePoints;
import com.pulumi.ibm.BackupRecoveryRestorePointsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var backupRecoveryRestorePointsInstance = new BackupRecoveryRestorePoints("backupRecoveryRestorePointsInstance", BackupRecoveryRestorePointsArgs.builder()
.endTimeUsecs(12)
.environment("kVMware")
.startTimeUsecs(14)
.xIbmTenantId("x_ibm_tenant_id")
.build());
}
}
resources:
backupRecoveryRestorePointsInstance:
type: ibm:BackupRecoveryRestorePoints
properties:
endTimeUsecs: 12
environment: kVMware
startTimeUsecs: 14
xIbmTenantId: x_ibm_tenant_id
Create BackupRecoveryRestorePoints Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BackupRecoveryRestorePoints(name: string, args: BackupRecoveryRestorePointsArgs, opts?: CustomResourceOptions);
@overload
def BackupRecoveryRestorePoints(resource_name: str,
args: BackupRecoveryRestorePointsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BackupRecoveryRestorePoints(resource_name: str,
opts: Optional[ResourceOptions] = None,
end_time_usecs: Optional[float] = None,
environment: Optional[str] = None,
protection_group_ids: Optional[Sequence[str]] = None,
start_time_usecs: Optional[float] = None,
x_ibm_tenant_id: Optional[str] = None,
backup_recovery_restore_points_id: Optional[str] = None,
source_id: Optional[float] = None)
func NewBackupRecoveryRestorePoints(ctx *Context, name string, args BackupRecoveryRestorePointsArgs, opts ...ResourceOption) (*BackupRecoveryRestorePoints, error)
public BackupRecoveryRestorePoints(string name, BackupRecoveryRestorePointsArgs args, CustomResourceOptions? opts = null)
public BackupRecoveryRestorePoints(String name, BackupRecoveryRestorePointsArgs args)
public BackupRecoveryRestorePoints(String name, BackupRecoveryRestorePointsArgs args, CustomResourceOptions options)
type: ibm:BackupRecoveryRestorePoints
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
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,
});
example, err := ibm.NewBackupRecoveryRestorePoints(ctx, "backupRecoveryRestorePointsResource", &ibm.BackupRecoveryRestorePointsArgs{
EndTimeUsecs: pulumi.Float64(0),
Environment: pulumi.String("string"),
ProtectionGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
StartTimeUsecs: pulumi.Float64(0),
XIbmTenantId: pulumi.String("string"),
BackupRecoveryRestorePointsId: pulumi.String("string"),
SourceId: pulumi.Float64(0),
})
var backupRecoveryRestorePointsResource = new BackupRecoveryRestorePoints("backupRecoveryRestorePointsResource", BackupRecoveryRestorePointsArgs.builder()
.endTimeUsecs(0)
.environment("string")
.protectionGroupIds("string")
.startTimeUsecs(0)
.xIbmTenantId("string")
.backupRecoveryRestorePointsId("string")
.sourceId(0)
.build());
backup_recovery_restore_points_resource = ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsResource",
end_time_usecs=0,
environment="string",
protection_group_ids=["string"],
start_time_usecs=0,
x_ibm_tenant_id="string",
backup_recovery_restore_points_id="string",
source_id=0)
const backupRecoveryRestorePointsResource = new ibm.BackupRecoveryRestorePoints("backupRecoveryRestorePointsResource", {
endTimeUsecs: 0,
environment: "string",
protectionGroupIds: ["string"],
startTimeUsecs: 0,
xIbmTenantId: "string",
backupRecoveryRestorePointsId: "string",
sourceId: 0,
});
type: ibm:BackupRecoveryRestorePoints
properties:
backupRecoveryRestorePointsId: string
endTimeUsecs: 0
environment: string
protectionGroupIds:
- string
sourceId: 0
startTimeUsecs: 0
xIbmTenantId: string
BackupRecoveryRestorePoints Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BackupRecoveryRestorePoints resource accepts the following input properties:
- End
Time Usecs 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
.
- Constraints: Allowable values are:
- Protection
Group Ids This property is required. List<string> - Specifies the jobs for which to get the full snapshot information.
- Start
Time Usecs This property is required. double - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- XIbm
Tenant Id 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.
- Backup
Recovery stringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- Source
Id double - Specifies the id of the Protection Source which is to be restored.
- End
Time Usecs 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
.
- Constraints: Allowable values are:
- Protection
Group Ids This property is required. []string - Specifies the jobs for which to get the full snapshot information.
- Start
Time Usecs This property is required. float64 - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- XIbm
Tenant Id 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.
- Backup
Recovery stringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- Source
Id float64 - Specifies the id of the Protection Source which is to be restored.
- end
Time Usecs 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
.
- Constraints: Allowable values are:
- protection
Group Ids This property is required. List<String> - Specifies the jobs for which to get the full snapshot information.
- start
Time Usecs This property is required. Double - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- x
Ibm Tenant Id 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.
- backup
Recovery StringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- source
Id Double - Specifies the id of the Protection Source which is to be restored.
- end
Time Usecs 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
.
- Constraints: Allowable values are:
- protection
Group Ids This property is required. string[] - Specifies the jobs for which to get the full snapshot information.
- start
Time Usecs This property is required. number - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- x
Ibm Tenant Id 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.
- backup
Recovery stringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- source
Id 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
.
- Constraints: Allowable values are:
- 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_ strrestore_ points_ id - The unique identifier of the backup_recovery_restore_points.
- source_
id float - Specifies the id of the Protection Source which is to be restored.
- end
Time Usecs 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
.
- Constraints: Allowable values are:
- protection
Group Ids This property is required. List<String> - Specifies the jobs for which to get the full snapshot information.
- start
Time Usecs This property is required. Number - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- x
Ibm Tenant Id 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.
- backup
Recovery StringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- source
Id 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:
- Full
Snapshot List<BackupInfos Recovery Restore Points Full Snapshot Info> - Specifies the info related to the recovery object.
- Id string
- The provider-assigned unique ID for this managed resource.
- Time
Range List<BackupInfos Recovery Restore Points Time Range Info> - Information about a set of disjoint, possibly annotated time ranges.
- Full
Snapshot []BackupInfos Recovery Restore Points Full Snapshot Info - Specifies the info related to the recovery object.
- Id string
- The provider-assigned unique ID for this managed resource.
- Time
Range []BackupInfos Recovery Restore Points Time Range Info - Information about a set of disjoint, possibly annotated time ranges.
- full
Snapshot List<BackupInfos Recovery Restore Points Full Snapshot Info> - Specifies the info related to the recovery object.
- id String
- The provider-assigned unique ID for this managed resource.
- time
Range List<BackupInfos Recovery Restore Points Time Range Info> - Information about a set of disjoint, possibly annotated time ranges.
- full
Snapshot BackupInfos Recovery Restore Points Full Snapshot Info[] - Specifies the info related to the recovery object.
- id string
- The provider-assigned unique ID for this managed resource.
- time
Range BackupInfos Recovery Restore Points Time Range Info[] - Information about a set of disjoint, possibly annotated time ranges.
- full_
snapshot_ Sequence[Backupinfos Recovery Restore Points Full Snapshot Info] - Specifies the info related to the recovery object.
- id str
- The provider-assigned unique ID for this managed resource.
- time_
range_ Sequence[Backupinfos Recovery Restore Points Time Range Info] - Information about a set of disjoint, possibly annotated time ranges.
- full
Snapshot List<Property Map>Infos - Specifies the info related to the recovery object.
- id String
- The provider-assigned unique ID for this managed resource.
- time
Range List<Property Map>Infos - 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.
- Backup
Recovery stringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- End
Time doubleUsecs - 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
.
- Constraints: Allowable values are:
- Full
Snapshot List<BackupInfos Recovery Restore Points Full Snapshot Info> - Specifies the info related to the recovery object.
- Protection
Group List<string>Ids - Specifies the jobs for which to get the full snapshot information.
- Source
Id double - Specifies the id of the Protection Source which is to be restored.
- Start
Time doubleUsecs - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- Time
Range List<BackupInfos Recovery Restore Points Time Range Info> - Information about a set of disjoint, possibly annotated time ranges.
- XIbm
Tenant stringId - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- Backup
Recovery stringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- End
Time float64Usecs - 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
.
- Constraints: Allowable values are:
- Full
Snapshot []BackupInfos Recovery Restore Points Full Snapshot Info Args - Specifies the info related to the recovery object.
- Protection
Group []stringIds - Specifies the jobs for which to get the full snapshot information.
- Source
Id float64 - Specifies the id of the Protection Source which is to be restored.
- Start
Time float64Usecs - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- Time
Range []BackupInfos Recovery Restore Points Time Range Info Args - Information about a set of disjoint, possibly annotated time ranges.
- XIbm
Tenant stringId - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup
Recovery StringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- end
Time DoubleUsecs - 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
.
- Constraints: Allowable values are:
- full
Snapshot List<BackupInfos Recovery Restore Points Full Snapshot Info> - Specifies the info related to the recovery object.
- protection
Group List<String>Ids - Specifies the jobs for which to get the full snapshot information.
- source
Id Double - Specifies the id of the Protection Source which is to be restored.
- start
Time DoubleUsecs - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- time
Range List<BackupInfos Recovery Restore Points Time Range Info> - Information about a set of disjoint, possibly annotated time ranges.
- x
Ibm StringTenant Id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup
Recovery stringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- end
Time numberUsecs - 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
.
- Constraints: Allowable values are:
- full
Snapshot BackupInfos Recovery Restore Points Full Snapshot Info[] - Specifies the info related to the recovery object.
- protection
Group string[]Ids - Specifies the jobs for which to get the full snapshot information.
- source
Id number - Specifies the id of the Protection Source which is to be restored.
- start
Time numberUsecs - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- time
Range BackupInfos Recovery Restore Points Time Range Info[] - Information about a set of disjoint, possibly annotated time ranges.
- x
Ibm stringTenant Id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup_
recovery_ strrestore_ points_ id - The unique identifier of the backup_recovery_restore_points.
- end_
time_ floatusecs - 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
.
- Constraints: Allowable values are:
- full_
snapshot_ Sequence[Backupinfos Recovery Restore Points Full Snapshot Info Args] - Specifies the info related to the recovery object.
- protection_
group_ Sequence[str]ids - 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_ floatusecs - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- time_
range_ Sequence[Backupinfos Recovery Restore Points Time Range Info Args] - Information about a set of disjoint, possibly annotated time ranges.
- x_
ibm_ strtenant_ id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup
Recovery StringRestore Points Id - The unique identifier of the backup_recovery_restore_points.
- end
Time NumberUsecs - 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
.
- Constraints: Allowable values are:
- full
Snapshot List<Property Map>Infos - Specifies the info related to the recovery object.
- protection
Group List<String>Ids - Specifies the jobs for which to get the full snapshot information.
- source
Id Number - Specifies the id of the Protection Source which is to be restored.
- start
Time NumberUsecs - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- time
Range List<Property Map>Infos - Information about a set of disjoint, possibly annotated time ranges.
- x
Ibm StringTenant Id - 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
- Restore
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info> - Targets
Configurations This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration>
- Restore
Infos This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info - Targets
Configurations This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration
- restore
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info> - targets
Configurations This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration>
- restore
Infos This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info[] - targets
Configurations This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration[]
- restore_
infos This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info] - targets_
configurations This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration]
- restore
Infos This property is required. List<Property Map> - targets
Configurations This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArgs
- Archival
Target Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info> - Attempt
Number This property is required. double - Cloud
Deploy Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target> - Cloud
Replication Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target> - Object
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info> - Parent
Object Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info> - Protection
Group Id This property is required. string - Run
Start Time Usecs This property is required. double - Snapshot
Relative Dir Path This property is required. string - View
Name This property is required. string - Vm
Had Independent Disks This property is required. bool
- Archival
Target Infos This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info - Attempt
Number This property is required. float64 - Cloud
Deploy Targets This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target - Cloud
Replication Targets This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target - Object
Infos This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info - Parent
Object Infos This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info - Protection
Group Id This property is required. string - Run
Start Time Usecs This property is required. float64 - Snapshot
Relative Dir Path This property is required. string - View
Name This property is required. string - Vm
Had Independent Disks This property is required. bool
- archival
Target Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info> - attempt
Number This property is required. Double - cloud
Deploy Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target> - cloud
Replication Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target> - object
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info> - parent
Object Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info> - protection
Group Id This property is required. String - run
Start Time Usecs This property is required. Double - snapshot
Relative Dir Path This property is required. String - view
Name This property is required. String - vm
Had Independent Disks This property is required. Boolean
- archival
Target Infos This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info[] - attempt
Number This property is required. number - cloud
Deploy Targets This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target[] - cloud
Replication Targets This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target[] - object
Infos This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info[] - parent
Object Infos This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info[] - protection
Group Id This property is required. string - run
Start Time Usecs This property is required. number - snapshot
Relative Dir Path This property is required. string - view
Name This property is required. string - vm
Had Independent Disks This property is required. boolean
- archival_
target_ infos This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info] - attempt_
number This property is required. float - cloud_
deploy_ targets This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target] - cloud_
replication_ targets This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target] - object_
infos This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info] - parent_
object_ infos This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info] - 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
- archival
Target Infos This property is required. List<Property Map> - attempt
Number This property is required. Number - cloud
Deploy Targets This property is required. List<Property Map> - cloud
Replication Targets This property is required. List<Property Map> - object
Infos This property is required. List<Property Map> - parent
Object Infos This property is required. List<Property Map> - protection
Group Id This property is required. String - run
Start Time Usecs This property is required. Number - snapshot
Relative Dir Path This property is required. String - view
Name This property is required. String - vm
Had Independent Disks This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoArgs
- Archival
Task Id This property is required. string - Ownership
Context This property is required. string - Target
Id This property is required. double - Target
Name This property is required. string - Target
Type This property is required. string - Tier
Settings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting> - Usage
Type This property is required. string
- Archival
Task Id This property is required. string - Ownership
Context This property is required. string - Target
Id This property is required. float64 - Target
Name This property is required. string - Target
Type This property is required. string - Tier
Settings This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting - Usage
Type This property is required. string
- archival
Task Id This property is required. String - ownership
Context This property is required. String - target
Id This property is required. Double - target
Name This property is required. String - target
Type This property is required. String - tier
Settings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting> - usage
Type This property is required. String
- archival
Task Id This property is required. string - ownership
Context This property is required. string - target
Id This property is required. number - target
Name This property is required. string - target
Type This property is required. string - tier
Settings This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting[] - usage
Type 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting] - usage_
type This property is required. str
- archival
Task Id This property is required. String - ownership
Context This property is required. String - target
Id This property is required. Number - target
Name This property is required. String - target
Type This property is required. String - tier
Settings This property is required. List<Property Map> - usage
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSetting, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingArgs
- Aws
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering> - Azure
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Azure Tiering> - Cloud
Platform This property is required. string - Current
Tier Type This property is required. string - Google
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Google Tiering> - Oracle
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Oracle Tiering>
- Aws
Tierings This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering - Azure
Tierings This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Azure Tiering - Cloud
Platform This property is required. string - Current
Tier Type This property is required. string - Google
Tierings This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Google Tiering - Oracle
Tierings This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Oracle Tiering
- aws
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering> - azure
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Azure Tiering> - cloud
Platform This property is required. String - current
Tier Type This property is required. String - google
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Google Tiering> - oracle
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Oracle Tiering>
- aws
Tierings This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering[] - azure
Tierings This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Azure Tiering[] - cloud
Platform This property is required. string - current
Tier Type This property is required. string - google
Tierings This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Google Tiering[] - oracle
Tierings This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Oracle Tiering[]
- aws_
tierings This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering] - azure_
tierings This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Azure Tiering] - cloud_
platform This property is required. str - current_
tier_ type This property is required. str - google_
tierings This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Google Tiering] - oracle_
tierings This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Oracle Tiering]
- aws
Tierings This property is required. List<Property Map> - azure
Tierings This property is required. List<Property Map> - cloud
Platform This property is required. String - current
Tier Type This property is required. String - google
Tierings This property is required. List<Property Map> - oracle
Tierings This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTiering, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTieringArgs
- Tiers
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering Tier>
- Tiers
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering Tier
- tiers
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering Tier>
- tiers
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering Tier[]
- tiers
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Aws Tiering Tier]
- tiers
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAwsTieringTierArgs
- Move
After This property is required. double - Move
After Unit This property is required. string - Tier
Type This property is required. string
- Move
After This property is required. float64 - Move
After Unit This property is required. string - Tier
Type This property is required. string
- move
After This property is required. Double - move
After Unit This property is required. String - tier
Type This property is required. String
- move
After This property is required. number - move
After Unit This property is required. string - tier
Type 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
- move
After This property is required. Number - move
After Unit This property is required. String - tier
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTiering, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTieringArgs
- Tiers
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Azure Tiering Tier>
- Tiers
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Azure Tiering Tier
- tiers
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Azure Tiering Tier>
- tiers
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Azure Tiering Tier[]
- tiers
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingAzureTieringTierArgs
- Move
After This property is required. double - Move
After Unit This property is required. string - Tier
Type This property is required. string
- Move
After This property is required. float64 - Move
After Unit This property is required. string - Tier
Type This property is required. string
- move
After This property is required. Double - move
After Unit This property is required. String - tier
Type This property is required. String
- move
After This property is required. number - move
After Unit This property is required. string - tier
Type 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
- move
After This property is required. Number - move
After Unit This property is required. String - tier
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTiering, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTieringArgs
- Tiers
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Google Tiering Tier>
- Tiers
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Google Tiering Tier
- tiers
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Google Tiering Tier>
- tiers
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Google Tiering Tier[]
- tiers
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingGoogleTieringTierArgs
- Move
After This property is required. double - Move
After Unit This property is required. string - Tier
Type This property is required. string
- Move
After This property is required. float64 - Move
After Unit This property is required. string - Tier
Type This property is required. string
- move
After This property is required. Double - move
After Unit This property is required. String - tier
Type This property is required. String
- move
After This property is required. number - move
After Unit This property is required. string - tier
Type 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
- move
After This property is required. Number - move
After Unit This property is required. String - tier
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTiering, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTieringArgs
- Tiers
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Oracle Tiering Tier>
- Tiers
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Oracle Tiering Tier
- tiers
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Oracle Tiering Tier>
- tiers
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Archival Target Info Tier Setting Oracle Tiering Tier[]
- tiers
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoArchivalTargetInfoTierSettingOracleTieringTierArgs
- Move
After This property is required. double - Move
After Unit This property is required. string - Tier
Type This property is required. string
- Move
After This property is required. float64 - Move
After Unit This property is required. string - Tier
Type This property is required. string
- move
After This property is required. Double - move
After Unit This property is required. String - tier
Type This property is required. String
- move
After This property is required. number - move
After Unit This property is required. string - tier
Type 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
- move
After This property is required. Number - move
After Unit This property is required. String - tier
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTarget, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetArgs
- Aws
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param> - Azure
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Azure Param> - Id
This property is required. double - The unique identifier of the backup_recovery_restore_points.
- Name
This property is required. string
- Aws
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param - Azure
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Azure Param - Id
This property is required. float64 - The unique identifier of the backup_recovery_restore_points.
- Name
This property is required. string
- aws
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param> - azure
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Azure Param> - id
This property is required. Double - The unique identifier of the backup_recovery_restore_points.
- name
This property is required. String
- aws
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param[] - azure
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Azure Param[] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param] - azure_
params This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Azure Param] - id
This property is required. float - The unique identifier of the backup_recovery_restore_points.
- name
This property is required. str
- aws
Params This property is required. List<Property Map> - azure
Params 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
- Custom
Tag Lists This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param Custom Tag List> - Region
This property is required. double - Subnet
Id This property is required. double - Vpc
Id This property is required. double
- Custom
Tag Lists This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param Custom Tag List - Region
This property is required. float64 - Subnet
Id This property is required. float64 - Vpc
Id This property is required. float64
- custom
Tag Lists This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param Custom Tag List> - region
This property is required. Double - subnet
Id This property is required. Double - vpc
Id This property is required. Double
- custom
Tag Lists This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param Custom Tag List[] - region
This property is required. number - subnet
Id This property is required. number - vpc
Id This property is required. number
- custom_
tag_ lists This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Deploy Target Aws Param Custom Tag List] - region
This property is required. float - subnet_
id This property is required. float - vpc_
id This property is required. float
- custom
Tag Lists This property is required. List<Property Map> - region
This property is required. Number - subnet
Id This property is required. Number - vpc
Id This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagList, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAwsParamCustomTagListArgs
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudDeployTargetAzureParamArgs
- Availability
Set Id This property is required. double - Network
Resource Group Id This property is required. double - Resource
Group Id This property is required. double - Storage
Account Id This property is required. double - Storage
Container Id This property is required. double - Storage
Resource Group Id This property is required. double - Temp
Vm Resource Group Id This property is required. double - Temp
Vm Storage Account Id This property is required. double - Temp
Vm Storage Container Id This property is required. double - Temp
Vm Subnet Id This property is required. double - Temp
Vm Virtual Network Id This property is required. double
- Availability
Set Id This property is required. float64 - Network
Resource Group Id This property is required. float64 - Resource
Group Id This property is required. float64 - Storage
Account Id This property is required. float64 - Storage
Container Id This property is required. float64 - Storage
Resource Group Id This property is required. float64 - Temp
Vm Resource Group Id This property is required. float64 - Temp
Vm Storage Account Id This property is required. float64 - Temp
Vm Storage Container Id This property is required. float64 - Temp
Vm Subnet Id This property is required. float64 - Temp
Vm Virtual Network Id This property is required. float64
- availability
Set Id This property is required. Double - network
Resource Group Id This property is required. Double - resource
Group Id This property is required. Double - storage
Account Id This property is required. Double - storage
Container Id This property is required. Double - storage
Resource Group Id This property is required. Double - temp
Vm Resource Group Id This property is required. Double - temp
Vm Storage Account Id This property is required. Double - temp
Vm Storage Container Id This property is required. Double - temp
Vm Subnet Id This property is required. Double - temp
Vm Virtual Network Id This property is required. Double
- availability
Set Id This property is required. number - network
Resource Group Id This property is required. number - resource
Group Id This property is required. number - storage
Account Id This property is required. number - storage
Container Id This property is required. number - storage
Resource Group Id This property is required. number - temp
Vm Resource Group Id This property is required. number - temp
Vm Storage Account Id This property is required. number - temp
Vm Storage Container Id This property is required. number - temp
Vm Subnet Id This property is required. number - temp
Vm Virtual Network Id 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
- availability
Set Id This property is required. Number - network
Resource Group Id This property is required. Number - resource
Group Id This property is required. Number - storage
Account Id This property is required. Number - storage
Container Id This property is required. Number - storage
Resource Group Id This property is required. Number - temp
Vm Resource Group Id This property is required. Number - temp
Vm Storage Account Id This property is required. Number - temp
Vm Storage Container Id This property is required. Number - temp
Vm Subnet Id This property is required. Number - temp
Vm Virtual Network Id This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTarget, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetArgs
- Aws
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param> - Azure
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Azure Param> - Id
This property is required. double - The unique identifier of the backup_recovery_restore_points.
- Name
This property is required. string
- Aws
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param - Azure
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Azure Param - Id
This property is required. float64 - The unique identifier of the backup_recovery_restore_points.
- Name
This property is required. string
- aws
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param> - azure
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Azure Param> - id
This property is required. Double - The unique identifier of the backup_recovery_restore_points.
- name
This property is required. String
- aws
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param[] - azure
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Azure Param[] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param] - azure_
params This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Azure Param] - id
This property is required. float - The unique identifier of the backup_recovery_restore_points.
- name
This property is required. str
- aws
Params This property is required. List<Property Map> - azure
Params 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
- Custom
Tag Lists This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param Custom Tag List> - Region
This property is required. double - Subnet
Id This property is required. double - Vpc
Id This property is required. double
- Custom
Tag Lists This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param Custom Tag List - Region
This property is required. float64 - Subnet
Id This property is required. float64 - Vpc
Id This property is required. float64
- custom
Tag Lists This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param Custom Tag List> - region
This property is required. Double - subnet
Id This property is required. Double - vpc
Id This property is required. Double
- custom
Tag Lists This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param Custom Tag List[] - region
This property is required. number - subnet
Id This property is required. number - vpc
Id This property is required. number
- custom_
tag_ lists This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Cloud Replication Target Aws Param Custom Tag List] - region
This property is required. float - subnet_
id This property is required. float - vpc_
id This property is required. float
- custom
Tag Lists This property is required. List<Property Map> - region
This property is required. Number - subnet
Id This property is required. Number - vpc
Id This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagList, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAwsParamCustomTagListArgs
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoCloudReplicationTargetAzureParamArgs
- Availability
Set Id This property is required. double - Network
Resource Group Id This property is required. double - Resource
Group Id This property is required. double - Storage
Account Id This property is required. double - Storage
Container Id This property is required. double - Storage
Resource Group Id This property is required. double - Temp
Vm Resource Group Id This property is required. double - Temp
Vm Storage Account Id This property is required. double - Temp
Vm Storage Container Id This property is required. double - Temp
Vm Subnet Id This property is required. double - Temp
Vm Virtual Network Id This property is required. double
- Availability
Set Id This property is required. float64 - Network
Resource Group Id This property is required. float64 - Resource
Group Id This property is required. float64 - Storage
Account Id This property is required. float64 - Storage
Container Id This property is required. float64 - Storage
Resource Group Id This property is required. float64 - Temp
Vm Resource Group Id This property is required. float64 - Temp
Vm Storage Account Id This property is required. float64 - Temp
Vm Storage Container Id This property is required. float64 - Temp
Vm Subnet Id This property is required. float64 - Temp
Vm Virtual Network Id This property is required. float64
- availability
Set Id This property is required. Double - network
Resource Group Id This property is required. Double - resource
Group Id This property is required. Double - storage
Account Id This property is required. Double - storage
Container Id This property is required. Double - storage
Resource Group Id This property is required. Double - temp
Vm Resource Group Id This property is required. Double - temp
Vm Storage Account Id This property is required. Double - temp
Vm Storage Container Id This property is required. Double - temp
Vm Subnet Id This property is required. Double - temp
Vm Virtual Network Id This property is required. Double
- availability
Set Id This property is required. number - network
Resource Group Id This property is required. number - resource
Group Id This property is required. number - storage
Account Id This property is required. number - storage
Container Id This property is required. number - storage
Resource Group Id This property is required. number - temp
Vm Resource Group Id This property is required. number - temp
Vm Storage Account Id This property is required. number - temp
Vm Storage Container Id This property is required. number - temp
Vm Subnet Id This property is required. number - temp
Vm Virtual Network Id 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
- availability
Set Id This property is required. Number - network
Resource Group Id This property is required. Number - resource
Group Id This property is required. Number - storage
Account Id This property is required. Number - storage
Container Id This property is required. Number - storage
Resource Group Id This property is required. Number - temp
Vm Resource Group Id This property is required. Number - temp
Vm Storage Account Id This property is required. Number - temp
Vm Storage Container Id This property is required. Number - temp
Vm Subnet Id This property is required. Number - temp
Vm Virtual Network Id This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoArgs
- Child
Objects This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object> - 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
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - Id
This property is required. double - The unique identifier of the backup_recovery_restore_points.
- Logical
Size Bytes This property is required. double - Mssql
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param> - Name
This property is required. string - Object
Hash This property is required. string - Object
Type This property is required. string - Os
Type This property is required. string - Permissions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission> - Physical
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Physical Param> - Protection
Stats This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Protection Stat> - Protection
Type This property is required. string This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Sharepoint Site Summary> - Source
Id This property is required. double - Specifies the id of the Protection Source which is to be restored.
- Source
Name This property is required. string - Uuid
This property is required. string - VCenter
Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info VCenter Summary> - Windows
Cluster Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Windows Cluster Summary>
- Child
Objects This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object - 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
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - Id
This property is required. float64 - The unique identifier of the backup_recovery_restore_points.
- Logical
Size Bytes This property is required. float64 - Mssql
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param - Name
This property is required. string - Object
Hash This property is required. string - Object
Type This property is required. string - Os
Type This property is required. string - Permissions
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission - Physical
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Physical Param - Protection
Stats This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Protection Stat - Protection
Type This property is required. string This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Sharepoint Site Summary - Source
Id This property is required. float64 - Specifies the id of the Protection Source which is to be restored.
- Source
Name This property is required. string - Uuid
This property is required. string - VCenter
Summaries This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info VCenter Summary - Windows
Cluster Summaries This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Windows Cluster Summary
- child
Objects This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object> - 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
.
- Constraints: Allowable values are:
- global
Id This property is required. String - id
This property is required. Double - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. Double - mssql
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param> - name
This property is required. String - object
Hash This property is required. String - object
Type This property is required. String - os
Type This property is required. String - permissions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission> - physical
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Physical Param> - protection
Stats This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Protection Stat> - protection
Type This property is required. String This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Sharepoint Site Summary> - source
Id This property is required. Double - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. String - uuid
This property is required. String - v
Center Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info VCenter Summary> - windows
Cluster Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Windows Cluster Summary>
- child
Objects This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object[] - 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
.
- Constraints: Allowable values are:
- global
Id This property is required. string - id
This property is required. number - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. number - mssql
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param[] - name
This property is required. string - object
Hash This property is required. string - object
Type This property is required. string - os
Type This property is required. string - permissions
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission[] - physical
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Physical Param[] - protection
Stats This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Protection Stat[] - protection
Type This property is required. string This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Sharepoint Site Summary[] - source
Id This property is required. number - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. string - uuid
This property is required. string - v
Center Summaries This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info VCenter Summary[] - windows
Cluster Summaries This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Windows Cluster Summary[]
- child_
objects This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object] - 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
.
- Constraints: Allowable values are:
- 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission] - physical_
params This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Physical Param] - protection_
stats This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Protection Stat] - protection_
type This property is required. str This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Sharepoint Site Summary] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info VCenter Summary] - windows_
cluster_ summaries This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Windows Cluster Summary]
- child
Objects 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
.
- Constraints: Allowable values are:
- global
Id This property is required. String - id
This property is required. Number - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. Number - mssql
Params This property is required. List<Property Map> - name
This property is required. String - object
Hash This property is required. String - object
Type This property is required. String - os
Type This property is required. String - permissions
This property is required. List<Property Map> - physical
Params This property is required. List<Property Map> - protection
Stats This property is required. List<Property Map> - protection
Type This property is required. String This property is required. List<Property Map>- source
Id This property is required. Number - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. String - uuid
This property is required. String - v
Center Summaries This property is required. List<Property Map> - windows
Cluster Summaries This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObject, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectArgs
- Child
Objects This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Child Object> - 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
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - Id
This property is required. double - The unique identifier of the backup_recovery_restore_points.
- Logical
Size Bytes This property is required. double - Name
This property is required. string - Object
Hash This property is required. string - Object
Type This property is required. string - Os
Type This property is required. string - Protection
Type This property is required. string This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Sharepoint Site Summary> - Source
Id This property is required. double - Specifies the id of the Protection Source which is to be restored.
- Source
Name This property is required. string - Uuid
This property is required. string - VCenter
Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object VCenter Summary> - Windows
Cluster Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Windows Cluster Summary>
- Child
Objects This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Child Object - 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
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - Id
This property is required. float64 - The unique identifier of the backup_recovery_restore_points.
- Logical
Size Bytes This property is required. float64 - Name
This property is required. string - Object
Hash This property is required. string - Object
Type This property is required. string - Os
Type This property is required. string - Protection
Type This property is required. string This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Sharepoint Site Summary - Source
Id This property is required. float64 - Specifies the id of the Protection Source which is to be restored.
- Source
Name This property is required. string - Uuid
This property is required. string - VCenter
Summaries This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object VCenter Summary - Windows
Cluster Summaries This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Windows Cluster Summary
- child
Objects This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Child Object> - 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
.
- Constraints: Allowable values are:
- global
Id This property is required. String - id
This property is required. Double - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. Double - name
This property is required. String - object
Hash This property is required. String - object
Type This property is required. String - os
Type This property is required. String - protection
Type This property is required. String This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Sharepoint Site Summary> - source
Id This property is required. Double - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. String - uuid
This property is required. String - v
Center Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object VCenter Summary> - windows
Cluster Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Windows Cluster Summary>
- child
Objects This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Child Object[] - 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
.
- Constraints: Allowable values are:
- global
Id This property is required. string - id
This property is required. number - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. number - name
This property is required. string - object
Hash This property is required. string - object
Type This property is required. string - os
Type This property is required. string - protection
Type This property is required. string This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Sharepoint Site Summary[] - source
Id This property is required. number - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. string - uuid
This property is required. string - v
Center Summaries This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object VCenter Summary[] - windows
Cluster Summaries This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Windows Cluster Summary[]
- child_
objects This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Child Object] - 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
.
- Constraints: Allowable values are:
- 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 This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Sharepoint Site Summary] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object VCenter Summary] - windows_
cluster_ summaries This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Child Object Windows Cluster Summary]
- child
Objects 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
.
- Constraints: Allowable values are:
- global
Id This property is required. String - id
This property is required. Number - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. Number - name
This property is required. String - object
Hash This property is required. String - object
Type This property is required. String - os
Type This property is required. String - protection
Type This property is required. String This property is required. List<Property Map>- source
Id This property is required. Number - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. String - uuid
This property is required. String - v
Center Summaries This property is required. List<Property Map> - windows
Cluster Summaries This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectSharepointSiteSummaryArgs
- Site
Web Url This property is required. string
- Site
Web Url This property is required. string
- site
Web Url This property is required. String
- site
Web Url This property is required. string
- site_
web_ url This property is required. str
- site
Web Url This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectVCenterSummaryArgs
- Is
Cloud Env This property is required. bool
- Is
Cloud Env This property is required. bool
- is
Cloud Env This property is required. Boolean
- is
Cloud Env This property is required. boolean
- is_
cloud_ env This property is required. bool
- is
Cloud Env This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoChildObjectWindowsClusterSummaryArgs
- Cluster
Source Type This property is required. string
- Cluster
Source Type This property is required. string
- cluster
Source Type This property is required. String
- cluster
Source Type This property is required. string
- cluster_
source_ type This property is required. str
- cluster
Source Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamArgs
- Aag
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Aag Info> - Host
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Host Info> - Is
Encrypted This property is required. bool
- Aag
Infos This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Aag Info - Host
Infos This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Host Info - Is
Encrypted This property is required. bool
- aag
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Aag Info> - host
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Host Info> - is
Encrypted This property is required. Boolean
- aag
Infos This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Aag Info[] - host
Infos This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Host Info[] - is
Encrypted This property is required. boolean
- aag_
infos This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Aag Info] - host_
infos This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Mssql Param Host Info] - is_
encrypted This property is required. bool
- aag
Infos This property is required. List<Property Map> - host
Infos This property is required. List<Property Map> - is
Encrypted This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamAagInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoMssqlParamAagInfoArgs
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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Group> - Object
Id This property is required. double - Tenants
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant> - Users
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission User>
- Groups
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Group - Object
Id This property is required. float64 - Tenants
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant - Users
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission User
- groups
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Group> - object
Id This property is required. Double - tenants
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant> - users
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission User>
- groups
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Group[] - object
Id This property is required. number - tenants
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant[] - users
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission User[]
- groups
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Group] - object_
id This property is required. float - tenants
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant] - users
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission User]
- groups
This property is required. List<Property Map> - object
Id This property is required. Number - tenants
This property is required. List<Property Map> - users
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionGroup, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionGroupArgs
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenant, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantArgs
- Created
At Time Msecs This property is required. double - Deleted
At Time Msecs This property is required. double - Description
This property is required. string - External
Vendor Metadatas This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata> - Id
This property is required. string - 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. double - Name
This property is required. string - Networks
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant Network> - Status
This property is required. string
- Created
At Time Msecs This property is required. float64 - Deleted
At Time Msecs This property is required. float64 - Description
This property is required. string - External
Vendor Metadatas This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata - Id
This property is required. string - 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. float64 - Name
This property is required. string - Networks
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant Network - Status
This property is required. string
- created
At Time Msecs This property is required. Double - deleted
At Time Msecs This property is required. Double - description
This property is required. String - external
Vendor Metadatas This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata> - id
This property is required. String - The unique identifier of the backup_recovery_restore_points.
- is
Managed On Helios This property is required. Boolean - last
Updated At Time Msecs This property is required. Double - name
This property is required. String - networks
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant Network> - status
This property is required. String
- created
At Time Msecs This property is required. number - deleted
At Time Msecs This property is required. number - description
This property is required. string - external
Vendor Metadatas This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata[] - id
This property is required. string - The unique identifier of the backup_recovery_restore_points.
- is
Managed On Helios This property is required. boolean - last
Updated At Time Msecs This property is required. number - name
This property is required. string - networks
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant Network[] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant Network] - status
This property is required. str
- created
At Time Msecs This property is required. Number - deleted
At Time Msecs This property is required. Number - description
This property is required. String - external
Vendor Metadatas This property is required. List<Property Map> - id
This property is required. String - The unique identifier of the backup_recovery_restore_points.
- is
Managed On Helios This property is required. Boolean - last
Updated At Time Msecs 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
- Ibm
Tenant Metadata Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param> - Type
This property is required. string
- Ibm
Tenant Metadata Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param - Type
This property is required. string
- ibm
Tenant Metadata Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param> - type
This property is required. String
- ibm
Tenant Metadata Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param[] - type
This property is required. string
- ibm_
tenant_ metadata_ params This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param] - type
This property is required. str
- ibm
Tenant Metadata Params This property is required. List<Property Map> - type
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamArgs
- Account
Id This property is required. string - Crn
This property is required. string - Custom
Properties This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property> - Liveness
Mode This property is required. string - Ownership
Mode This property is required. string - Resource
Group Id This property is required. string
- Account
Id This property is required. string - Crn
This property is required. string - Custom
Properties This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property - Liveness
Mode This property is required. string - Ownership
Mode This property is required. string - Resource
Group Id This property is required. string
- account
Id This property is required. String - crn
This property is required. String - custom
Properties This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property> - liveness
Mode This property is required. String - ownership
Mode This property is required. String - resource
Group Id This property is required. String
- account
Id This property is required. string - crn
This property is required. string - custom
Properties This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property[] - liveness
Mode This property is required. string - ownership
Mode This property is required. string - resource
Group Id 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property] - liveness_
mode This property is required. str - ownership_
mode This property is required. str - resource_
group_ id This property is required. str
- account
Id This property is required. String - crn
This property is required. String - custom
Properties This property is required. List<Property Map> - liveness
Mode This property is required. String - ownership
Mode This property is required. String - resource
Group Id This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomPropertyArgs
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetwork, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionTenantNetworkArgs
- Cluster
Hostname This property is required. string - Cluster
Ips This property is required. List<string> - Connector
Enabled This property is required. bool
- Cluster
Hostname This property is required. string - Cluster
Ips This property is required. []string - Connector
Enabled This property is required. bool
- cluster
Hostname This property is required. String - cluster
Ips This property is required. List<String> - connector
Enabled This property is required. Boolean
- cluster
Hostname This property is required. string - cluster
Ips This property is required. string[] - connector
Enabled 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
- cluster
Hostname This property is required. String - cluster
Ips This property is required. List<String> - connector
Enabled This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionUser, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPermissionUserArgs
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoPhysicalParamArgs
- Enable
System Backup This property is required. bool
- Enable
System Backup This property is required. bool
- enable
System Backup This property is required. Boolean
- enable
System Backup This property is required. boolean
- enable_
system_ backup This property is required. bool
- enable
System Backup This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStat, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoProtectionStatArgs
- Deleted
Protected Count 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
.
- Constraints: Allowable values are:
- Protected
Count This property is required. double - Protected
Size Bytes This property is required. double - Unprotected
Count This property is required. double - Unprotected
Size Bytes This property is required. double
- Deleted
Protected Count 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
.
- Constraints: Allowable values are:
- Protected
Count This property is required. float64 - Protected
Size Bytes This property is required. float64 - Unprotected
Count This property is required. float64 - Unprotected
Size Bytes This property is required. float64
- deleted
Protected Count 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
.
- Constraints: Allowable values are:
- protected
Count This property is required. Double - protected
Size Bytes This property is required. Double - unprotected
Count This property is required. Double - unprotected
Size Bytes This property is required. Double
- deleted
Protected Count 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
.
- Constraints: Allowable values are:
- protected
Count This property is required. number - protected
Size Bytes This property is required. number - unprotected
Count This property is required. number - unprotected
Size Bytes 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
.
- Constraints: Allowable values are:
- 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
- deleted
Protected Count 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
.
- Constraints: Allowable values are:
- protected
Count This property is required. Number - protected
Size Bytes This property is required. Number - unprotected
Count This property is required. Number - unprotected
Size Bytes This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoSharepointSiteSummaryArgs
- Site
Web Url This property is required. string
- Site
Web Url This property is required. string
- site
Web Url This property is required. String
- site
Web Url This property is required. string
- site_
web_ url This property is required. str
- site
Web Url This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoVCenterSummaryArgs
- Is
Cloud Env This property is required. bool
- Is
Cloud Env This property is required. bool
- is
Cloud Env This property is required. Boolean
- is
Cloud Env This property is required. boolean
- is_
cloud_ env This property is required. bool
- is
Cloud Env This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoObjectInfoWindowsClusterSummaryArgs
- Cluster
Source Type This property is required. string
- Cluster
Source Type This property is required. string
- cluster
Source Type This property is required. String
- cluster
Source Type This property is required. string
- cluster_
source_ type This property is required. str
- cluster
Source Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoArgs
- Child
Objects This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object> - 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
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - Id
This property is required. double - The unique identifier of the backup_recovery_restore_points.
- Logical
Size Bytes This property is required. double - Mssql
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param> - Name
This property is required. string - Object
Hash This property is required. string - Object
Type This property is required. string - Os
Type This property is required. string - Permissions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission> - Physical
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Physical Param> - Protection
Stats This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Protection Stat> - Protection
Type This property is required. string This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Sharepoint Site Summary> - Source
Id This property is required. double - Specifies the id of the Protection Source which is to be restored.
- Source
Name This property is required. string - Uuid
This property is required. string - VCenter
Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info VCenter Summary> - Windows
Cluster Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Windows Cluster Summary>
- Child
Objects This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object - 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
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - Id
This property is required. float64 - The unique identifier of the backup_recovery_restore_points.
- Logical
Size Bytes This property is required. float64 - Mssql
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param - Name
This property is required. string - Object
Hash This property is required. string - Object
Type This property is required. string - Os
Type This property is required. string - Permissions
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission - Physical
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Physical Param - Protection
Stats This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Protection Stat - Protection
Type This property is required. string This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Sharepoint Site Summary - Source
Id This property is required. float64 - Specifies the id of the Protection Source which is to be restored.
- Source
Name This property is required. string - Uuid
This property is required. string - VCenter
Summaries This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info VCenter Summary - Windows
Cluster Summaries This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Windows Cluster Summary
- child
Objects This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object> - 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
.
- Constraints: Allowable values are:
- global
Id This property is required. String - id
This property is required. Double - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. Double - mssql
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param> - name
This property is required. String - object
Hash This property is required. String - object
Type This property is required. String - os
Type This property is required. String - permissions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission> - physical
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Physical Param> - protection
Stats This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Protection Stat> - protection
Type This property is required. String This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Sharepoint Site Summary> - source
Id This property is required. Double - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. String - uuid
This property is required. String - v
Center Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info VCenter Summary> - windows
Cluster Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Windows Cluster Summary>
- child
Objects This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object[] - 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
.
- Constraints: Allowable values are:
- global
Id This property is required. string - id
This property is required. number - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. number - mssql
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param[] - name
This property is required. string - object
Hash This property is required. string - object
Type This property is required. string - os
Type This property is required. string - permissions
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission[] - physical
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Physical Param[] - protection
Stats This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Protection Stat[] - protection
Type This property is required. string This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Sharepoint Site Summary[] - source
Id This property is required. number - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. string - uuid
This property is required. string - v
Center Summaries This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info VCenter Summary[] - windows
Cluster Summaries This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Windows Cluster Summary[]
- child_
objects This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object] - 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
.
- Constraints: Allowable values are:
- 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission] - physical_
params This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Physical Param] - protection_
stats This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Protection Stat] - protection_
type This property is required. str This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Sharepoint Site Summary] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info VCenter Summary] - windows_
cluster_ summaries This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Windows Cluster Summary]
- child
Objects 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
.
- Constraints: Allowable values are:
- global
Id This property is required. String - id
This property is required. Number - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. Number - mssql
Params This property is required. List<Property Map> - name
This property is required. String - object
Hash This property is required. String - object
Type This property is required. String - os
Type This property is required. String - permissions
This property is required. List<Property Map> - physical
Params This property is required. List<Property Map> - protection
Stats This property is required. List<Property Map> - protection
Type This property is required. String This property is required. List<Property Map>- source
Id This property is required. Number - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. String - uuid
This property is required. String - v
Center Summaries This property is required. List<Property Map> - windows
Cluster Summaries This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObject, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectArgs
- Child
Objects This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Child Object> - 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
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - Id
This property is required. double - The unique identifier of the backup_recovery_restore_points.
- Logical
Size Bytes This property is required. double - Name
This property is required. string - Object
Hash This property is required. string - Object
Type This property is required. string - Os
Type This property is required. string - Protection
Type This property is required. string This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Sharepoint Site Summary> - Source
Id This property is required. double - Specifies the id of the Protection Source which is to be restored.
- Source
Name This property is required. string - Uuid
This property is required. string - VCenter
Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object VCenter Summary> - Windows
Cluster Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Windows Cluster Summary>
- Child
Objects This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Child Object - 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
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - Id
This property is required. float64 - The unique identifier of the backup_recovery_restore_points.
- Logical
Size Bytes This property is required. float64 - Name
This property is required. string - Object
Hash This property is required. string - Object
Type This property is required. string - Os
Type This property is required. string - Protection
Type This property is required. string This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Sharepoint Site Summary - Source
Id This property is required. float64 - Specifies the id of the Protection Source which is to be restored.
- Source
Name This property is required. string - Uuid
This property is required. string - VCenter
Summaries This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object VCenter Summary - Windows
Cluster Summaries This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Windows Cluster Summary
- child
Objects This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Child Object> - 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
.
- Constraints: Allowable values are:
- global
Id This property is required. String - id
This property is required. Double - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. Double - name
This property is required. String - object
Hash This property is required. String - object
Type This property is required. String - os
Type This property is required. String - protection
Type This property is required. String This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Sharepoint Site Summary> - source
Id This property is required. Double - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. String - uuid
This property is required. String - v
Center Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object VCenter Summary> - windows
Cluster Summaries This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Windows Cluster Summary>
- child
Objects This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Child Object[] - 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
.
- Constraints: Allowable values are:
- global
Id This property is required. string - id
This property is required. number - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. number - name
This property is required. string - object
Hash This property is required. string - object
Type This property is required. string - os
Type This property is required. string - protection
Type This property is required. string This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Sharepoint Site Summary[] - source
Id This property is required. number - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. string - uuid
This property is required. string - v
Center Summaries This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object VCenter Summary[] - windows
Cluster Summaries This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Windows Cluster Summary[]
- child_
objects This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Child Object] - 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
.
- Constraints: Allowable values are:
- 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 This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Sharepoint Site Summary] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object VCenter Summary] - windows_
cluster_ summaries This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Child Object Windows Cluster Summary]
- child
Objects 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
.
- Constraints: Allowable values are:
- global
Id This property is required. String - id
This property is required. Number - The unique identifier of the backup_recovery_restore_points.
- logical
Size Bytes This property is required. Number - name
This property is required. String - object
Hash This property is required. String - object
Type This property is required. String - os
Type This property is required. String - protection
Type This property is required. String This property is required. List<Property Map>- source
Id This property is required. Number - Specifies the id of the Protection Source which is to be restored.
- source
Name This property is required. String - uuid
This property is required. String - v
Center Summaries This property is required. List<Property Map> - windows
Cluster Summaries This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectSharepointSiteSummaryArgs
- Site
Web Url This property is required. string
- Site
Web Url This property is required. string
- site
Web Url This property is required. String
- site
Web Url This property is required. string
- site_
web_ url This property is required. str
- site
Web Url This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectVCenterSummaryArgs
- Is
Cloud Env This property is required. bool
- Is
Cloud Env This property is required. bool
- is
Cloud Env This property is required. Boolean
- is
Cloud Env This property is required. boolean
- is_
cloud_ env This property is required. bool
- is
Cloud Env This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoChildObjectWindowsClusterSummaryArgs
- Cluster
Source Type This property is required. string
- Cluster
Source Type This property is required. string
- cluster
Source Type This property is required. String
- cluster
Source Type This property is required. string
- cluster_
source_ type This property is required. str
- cluster
Source Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamArgs
- Aag
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Aag Info> - Host
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Host Info> - Is
Encrypted This property is required. bool
- Aag
Infos This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Aag Info - Host
Infos This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Host Info - Is
Encrypted This property is required. bool
- aag
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Aag Info> - host
Infos This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Host Info> - is
Encrypted This property is required. Boolean
- aag
Infos This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Aag Info[] - host
Infos This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Host Info[] - is
Encrypted This property is required. boolean
- aag_
infos This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Aag Info] - host_
infos This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Mssql Param Host Info] - is_
encrypted This property is required. bool
- aag
Infos This property is required. List<Property Map> - host
Infos This property is required. List<Property Map> - is
Encrypted This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamAagInfo, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoMssqlParamAagInfoArgs
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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Group> - Object
Id This property is required. double - Tenants
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant> - Users
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission User>
- Groups
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Group - Object
Id This property is required. float64 - Tenants
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant - Users
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission User
- groups
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Group> - object
Id This property is required. Double - tenants
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant> - users
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission User>
- groups
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Group[] - object
Id This property is required. number - tenants
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant[] - users
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission User[]
- groups
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Group] - object_
id This property is required. float - tenants
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant] - users
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission User]
- groups
This property is required. List<Property Map> - object
Id This property is required. Number - tenants
This property is required. List<Property Map> - users
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionGroup, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionGroupArgs
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenant, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantArgs
- Created
At Time Msecs This property is required. double - Deleted
At Time Msecs This property is required. double - Description
This property is required. string - External
Vendor Metadatas This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata> - Id
This property is required. string - 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. double - Name
This property is required. string - Networks
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant Network> - Status
This property is required. string
- Created
At Time Msecs This property is required. float64 - Deleted
At Time Msecs This property is required. float64 - Description
This property is required. string - External
Vendor Metadatas This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata - Id
This property is required. string - 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. float64 - Name
This property is required. string - Networks
This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant Network - Status
This property is required. string
- created
At Time Msecs This property is required. Double - deleted
At Time Msecs This property is required. Double - description
This property is required. String - external
Vendor Metadatas This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata> - id
This property is required. String - The unique identifier of the backup_recovery_restore_points.
- is
Managed On Helios This property is required. Boolean - last
Updated At Time Msecs This property is required. Double - name
This property is required. String - networks
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant Network> - status
This property is required. String
- created
At Time Msecs This property is required. number - deleted
At Time Msecs This property is required. number - description
This property is required. string - external
Vendor Metadatas This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata[] - id
This property is required. string - The unique identifier of the backup_recovery_restore_points.
- is
Managed On Helios This property is required. boolean - last
Updated At Time Msecs This property is required. number - name
This property is required. string - networks
This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant Network[] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata] - 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant Network] - status
This property is required. str
- created
At Time Msecs This property is required. Number - deleted
At Time Msecs This property is required. Number - description
This property is required. String - external
Vendor Metadatas This property is required. List<Property Map> - id
This property is required. String - The unique identifier of the backup_recovery_restore_points.
- is
Managed On Helios This property is required. Boolean - last
Updated At Time Msecs 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
- Ibm
Tenant Metadata Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param> - Type
This property is required. string
- Ibm
Tenant Metadata Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param - Type
This property is required. string
- ibm
Tenant Metadata Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param> - type
This property is required. String
- ibm
Tenant Metadata Params This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param[] - type
This property is required. string
- ibm_
tenant_ metadata_ params This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param] - type
This property is required. str
- ibm
Tenant Metadata Params This property is required. List<Property Map> - type
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamArgs
- Account
Id This property is required. string - Crn
This property is required. string - Custom
Properties This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property> - Liveness
Mode This property is required. string - Ownership
Mode This property is required. string - Resource
Group Id This property is required. string
- Account
Id This property is required. string - Crn
This property is required. string - Custom
Properties This property is required. []BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property - Liveness
Mode This property is required. string - Ownership
Mode This property is required. string - Resource
Group Id This property is required. string
- account
Id This property is required. String - crn
This property is required. String - custom
Properties This property is required. List<BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property> - liveness
Mode This property is required. String - ownership
Mode This property is required. String - resource
Group Id This property is required. String
- account
Id This property is required. string - crn
This property is required. string - custom
Properties This property is required. BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property[] - liveness
Mode This property is required. string - ownership
Mode This property is required. string - resource
Group Id 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[BackupRecovery Restore Points Full Snapshot Info Restore Info Parent Object Info Permission Tenant External Vendor Metadata Ibm Tenant Metadata Param Custom Property] - liveness_
mode This property is required. str - ownership_
mode This property is required. str - resource_
group_ id This property is required. str
- account
Id This property is required. String - crn
This property is required. String - custom
Properties This property is required. List<Property Map> - liveness
Mode This property is required. String - ownership
Mode This property is required. String - resource
Group Id This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomPropertyArgs
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetwork, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionTenantNetworkArgs
- Cluster
Hostname This property is required. string - Cluster
Ips This property is required. List<string> - Connector
Enabled This property is required. bool
- Cluster
Hostname This property is required. string - Cluster
Ips This property is required. []string - Connector
Enabled This property is required. bool
- cluster
Hostname This property is required. String - cluster
Ips This property is required. List<String> - connector
Enabled This property is required. Boolean
- cluster
Hostname This property is required. string - cluster
Ips This property is required. string[] - connector
Enabled 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
- cluster
Hostname This property is required. String - cluster
Ips This property is required. List<String> - connector
Enabled This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionUser, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPermissionUserArgs
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParam, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoPhysicalParamArgs
- Enable
System Backup This property is required. bool
- Enable
System Backup This property is required. bool
- enable
System Backup This property is required. Boolean
- enable
System Backup This property is required. boolean
- enable_
system_ backup This property is required. bool
- enable
System Backup This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStat, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoProtectionStatArgs
- Deleted
Protected Count 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
.
- Constraints: Allowable values are:
- Protected
Count This property is required. double - Protected
Size Bytes This property is required. double - Unprotected
Count This property is required. double - Unprotected
Size Bytes This property is required. double
- Deleted
Protected Count 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
.
- Constraints: Allowable values are:
- Protected
Count This property is required. float64 - Protected
Size Bytes This property is required. float64 - Unprotected
Count This property is required. float64 - Unprotected
Size Bytes This property is required. float64
- deleted
Protected Count 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
.
- Constraints: Allowable values are:
- protected
Count This property is required. Double - protected
Size Bytes This property is required. Double - unprotected
Count This property is required. Double - unprotected
Size Bytes This property is required. Double
- deleted
Protected Count 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
.
- Constraints: Allowable values are:
- protected
Count This property is required. number - protected
Size Bytes This property is required. number - unprotected
Count This property is required. number - unprotected
Size Bytes 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
.
- Constraints: Allowable values are:
- 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
- deleted
Protected Count 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
.
- Constraints: Allowable values are:
- protected
Count This property is required. Number - protected
Size Bytes This property is required. Number - unprotected
Count This property is required. Number - unprotected
Size Bytes This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoSharepointSiteSummaryArgs
- Site
Web Url This property is required. string
- Site
Web Url This property is required. string
- site
Web Url This property is required. String
- site
Web Url This property is required. string
- site_
web_ url This property is required. str
- site
Web Url This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoVCenterSummaryArgs
- Is
Cloud Env This property is required. bool
- Is
Cloud Env This property is required. bool
- is
Cloud Env This property is required. Boolean
- is
Cloud Env This property is required. boolean
- is_
cloud_ env This property is required. bool
- is
Cloud Env This property is required. Boolean
BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummary, BackupRecoveryRestorePointsFullSnapshotInfoRestoreInfoParentObjectInfoWindowsClusterSummaryArgs
- Cluster
Source Type This property is required. string
- Cluster
Source Type This property is required. string
- cluster
Source Type This property is required. String
- cluster
Source Type This property is required. string
- cluster_
source_ type This property is required. str
- cluster
Source Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfiguration, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArgs
- Archival
Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target> - Cloud
Spin Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target> - Onprem
Deploy Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target> - Replication
Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target> - Rpaas
Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target>
- Archival
Targets This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target - Cloud
Spin Targets This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target - Onprem
Deploy Targets This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target - Replication
Targets This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target - Rpaas
Targets This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target
- archival
Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target> - cloud
Spin Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target> - onprem
Deploy Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target> - replication
Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target> - rpaas
Targets This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target>
- archival
Targets This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target[] - cloud
Spin Targets This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target[] - onprem
Deploy Targets This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target[] - replication
Targets This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target[] - rpaas
Targets This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target[]
- archival_
targets This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target] - cloud_
spin_ targets This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target] - onprem_
deploy_ targets This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target] - replication_
targets This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target] - rpaas_
targets This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target]
- archival
Targets This property is required. List<Property Map> - cloud
Spin Targets This property is required. List<Property Map> - onprem
Deploy Targets This property is required. List<Property Map> - replication
Targets This property is required. List<Property Map> - rpaas
Targets This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetArgs
- Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Extended
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention> - Log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention> - Retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention> - Run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Run Timeout> - Schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Schedule> - Target
Id This property is required. double - Target
Name This property is required. string - Target
Type This property is required. string - Tier
Settings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting>
- Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Extended
Retentions This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention - Log
Retentions This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention - Retentions
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention - Run
Timeouts This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Run Timeout - Schedules
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Schedule - Target
Id This property is required. float64 - Target
Name This property is required. string - Target
Type This property is required. string - Tier
Settings This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting
- backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - extended
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention> - log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention> - retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention> - run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Run Timeout> - schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Schedule> - target
Id This property is required. Double - target
Name This property is required. String - target
Type This property is required. String - tier
Settings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting>
- backup
Run Type This property is required. string - config
Id This property is required. string - copy
On Run Success This property is required. boolean - extended
Retentions This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention[] - log
Retentions This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention[] - retentions
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention[] - run
Timeouts This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Run Timeout[] - schedules
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Schedule[] - target
Id This property is required. number - target
Name This property is required. string - target
Type This property is required. string - tier
Settings This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting[]
- 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[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention] - log_
retentions This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention] - retentions
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention] - run_
timeouts This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Run Timeout] - schedules
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Schedule] - 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[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting]
- backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - extended
Retentions This property is required. List<Property Map> - log
Retentions This property is required. List<Property Map> - retentions
This property is required. List<Property Map> - run
Timeouts This property is required. List<Property Map> - schedules
This property is required. List<Property Map> - target
Id This property is required. Number - target
Name This property is required. String - target
Type This property is required. String - tier
Settings This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionArgs
- Config
Id This property is required. string - Retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention> - Run
Type This property is required. string - Schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Schedule>
- Config
Id This property is required. string - Retentions
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention - Run
Type This property is required. string - Schedules
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Schedule
- config
Id This property is required. String - retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention> - run
Type This property is required. String - schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Schedule>
- config
Id This property is required. string - retentions
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention[] - run
Type This property is required. string - schedules
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Schedule[]
- config_
id This property is required. str - retentions
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention] - run_
type This property is required. str - schedules
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Schedule]
- config
Id This property is required. String - retentions
This property is required. List<Property Map> - run
Type This property is required. String - schedules
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionRetentionArgs
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Extended Retention Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetExtendedRetentionScheduleArgs
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetLogRetentionArgs
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Log Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRetentionArgs
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetRunTimeoutArgs
- Backup
Type This property is required. string - Timeout
Mins This property is required. double
- Backup
Type This property is required. string - Timeout
Mins This property is required. float64
- backup
Type This property is required. String - timeout
Mins This property is required. Double
- backup
Type This property is required. string - timeout
Mins This property is required. number
- backup_
type This property is required. str - timeout_
mins This property is required. float
- backup
Type This property is required. String - timeout
Mins This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetScheduleArgs
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSetting, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingArgs
- Aws
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Aws Tiering> - Azure
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Azure Tiering> - Cloud
Platform This property is required. string - Google
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Google Tiering> - Oracle
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Oracle Tiering>
- Aws
Tierings This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Aws Tiering - Azure
Tierings This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Azure Tiering - Cloud
Platform This property is required. string - Google
Tierings This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Google Tiering - Oracle
Tierings This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Oracle Tiering
- aws
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Aws Tiering> - azure
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Azure Tiering> - cloud
Platform This property is required. String - google
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Google Tiering> - oracle
Tierings This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Oracle Tiering>
- aws
Tierings This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Aws Tiering[] - azure
Tierings This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Azure Tiering[] - cloud
Platform This property is required. string - google
Tierings This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Google Tiering[] - oracle
Tierings This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Oracle Tiering[]
- aws_
tierings This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Aws Tiering] - azure_
tierings This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Azure Tiering] - cloud_
platform This property is required. str - google_
tierings This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Google Tiering] - oracle_
tierings This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Oracle Tiering]
- aws
Tierings This property is required. List<Property Map> - azure
Tierings This property is required. List<Property Map> - cloud
Platform This property is required. String - google
Tierings This property is required. List<Property Map> - oracle
Tierings This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTiering, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTieringArgs
- Tiers
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Aws Tiering Tier
- tiers
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Aws Tiering Tier[]
- tiers
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAwsTieringTierArgs
- Move
After This property is required. double - Move
After Unit This property is required. string - Tier
Type This property is required. string
- Move
After This property is required. float64 - Move
After Unit This property is required. string - Tier
Type This property is required. string
- move
After This property is required. Double - move
After Unit This property is required. String - tier
Type This property is required. String
- move
After This property is required. number - move
After Unit This property is required. string - tier
Type 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
- move
After This property is required. Number - move
After Unit This property is required. String - tier
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTiering, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTieringArgs
- Tiers
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Azure Tiering Tier
- tiers
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Azure Tiering Tier[]
- tiers
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingAzureTieringTierArgs
- Move
After This property is required. double - Move
After Unit This property is required. string - Tier
Type This property is required. string
- Move
After This property is required. float64 - Move
After Unit This property is required. string - Tier
Type This property is required. string
- move
After This property is required. Double - move
After Unit This property is required. String - tier
Type This property is required. String
- move
After This property is required. number - move
After Unit This property is required. string - tier
Type 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
- move
After This property is required. Number - move
After Unit This property is required. String - tier
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTiering, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTieringArgs
- Tiers
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Google Tiering Tier
- tiers
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Google Tiering Tier[]
- tiers
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingGoogleTieringTierArgs
- Move
After This property is required. double - Move
After Unit This property is required. string - Tier
Type This property is required. string
- Move
After This property is required. float64 - Move
After Unit This property is required. string - Tier
Type This property is required. string
- move
After This property is required. Double - move
After Unit This property is required. String - tier
Type This property is required. String
- move
After This property is required. number - move
After Unit This property is required. string - tier
Type 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
- move
After This property is required. Number - move
After Unit This property is required. String - tier
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTiering, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTieringArgs
- Tiers
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Oracle Tiering Tier
- tiers
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Archival Target Tier Setting Oracle Tiering Tier[]
- tiers
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTieringTier, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationArchivalTargetTierSettingOracleTieringTierArgs
- Move
After This property is required. double - Move
After Unit This property is required. string - Tier
Type This property is required. string
- Move
After This property is required. float64 - Move
After Unit This property is required. string - Tier
Type This property is required. string
- move
After This property is required. Double - move
After Unit This property is required. String - tier
Type This property is required. String
- move
After This property is required. number - move
After Unit This property is required. string - tier
Type 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
- move
After This property is required. Number - move
After Unit This property is required. String - tier
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetArgs
- Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention> - Retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention> - Run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Run Timeout> - Schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Schedule> - Targets
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target>
- Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Log
Retentions This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention - Retentions
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention - Run
Timeouts This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Run Timeout - Schedules
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Schedule - Targets
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target
- backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention> - retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention> - run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Run Timeout> - schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Schedule> - targets
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target>
- backup
Run Type This property is required. string - config
Id This property is required. string - copy
On Run Success This property is required. boolean - log
Retentions This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention[] - retentions
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention[] - run
Timeouts This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Run Timeout[] - schedules
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Schedule[] - targets
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target[]
- 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[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention] - retentions
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention] - run_
timeouts This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Run Timeout] - schedules
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Schedule] - targets
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target]
- backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - log
Retentions This property is required. List<Property Map> - retentions
This property is required. List<Property Map> - run
Timeouts 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
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Log Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRetentionArgs
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetRunTimeoutArgs
- Backup
Type This property is required. string - Timeout
Mins This property is required. double
- Backup
Type This property is required. string - Timeout
Mins This property is required. float64
- backup
Type This property is required. String - timeout
Mins This property is required. Double
- backup
Type This property is required. string - timeout
Mins This property is required. number
- backup_
type This property is required. str - timeout_
mins This property is required. float
- backup
Type This property is required. String - timeout
Mins This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetScheduleArgs
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetArgs
- Aws
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param> - Azure
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Azure Param> - Id
This property is required. double - The unique identifier of the backup_recovery_restore_points.
- Name
This property is required. string
- Aws
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param - Azure
Params This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Azure Param - Id
This property is required. float64 - The unique identifier of the backup_recovery_restore_points.
- Name
This property is required. string
- aws
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param> - azure
Params This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Azure Param> - id
This property is required. Double - The unique identifier of the backup_recovery_restore_points.
- name
This property is required. String
- aws
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param[] - azure
Params This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Azure Param[] - 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[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param] - azure_
params This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Azure Param] - id
This property is required. float - The unique identifier of the backup_recovery_restore_points.
- name
This property is required. str
- aws
Params This property is required. List<Property Map> - azure
Params 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
- Custom
Tag Lists This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param Custom Tag List> - Region
This property is required. double - Subnet
Id This property is required. double - Vpc
Id This property is required. double
- Custom
Tag Lists This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param Custom Tag List - Region
This property is required. float64 - Subnet
Id This property is required. float64 - Vpc
Id This property is required. float64
- custom
Tag Lists This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param Custom Tag List> - region
This property is required. Double - subnet
Id This property is required. Double - vpc
Id This property is required. Double
- custom
Tag Lists This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param Custom Tag List[] - region
This property is required. number - subnet
Id This property is required. number - vpc
Id This property is required. number
- custom_
tag_ lists This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Cloud Spin Target Target Aws Param Custom Tag List] - region
This property is required. float - subnet_
id This property is required. float - vpc_
id This property is required. float
- custom
Tag Lists This property is required. List<Property Map> - region
This property is required. Number - subnet
Id This property is required. Number - vpc
Id This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagList, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAwsParamCustomTagListArgs
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParam, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationCloudSpinTargetTargetAzureParamArgs
- Availability
Set Id This property is required. double - Network
Resource Group Id This property is required. double - Resource
Group Id This property is required. double - Storage
Account Id This property is required. double - Storage
Container Id This property is required. double - Storage
Resource Group Id This property is required. double - Temp
Vm Resource Group Id This property is required. double - Temp
Vm Storage Account Id This property is required. double - Temp
Vm Storage Container Id This property is required. double - Temp
Vm Subnet Id This property is required. double - Temp
Vm Virtual Network Id This property is required. double
- Availability
Set Id This property is required. float64 - Network
Resource Group Id This property is required. float64 - Resource
Group Id This property is required. float64 - Storage
Account Id This property is required. float64 - Storage
Container Id This property is required. float64 - Storage
Resource Group Id This property is required. float64 - Temp
Vm Resource Group Id This property is required. float64 - Temp
Vm Storage Account Id This property is required. float64 - Temp
Vm Storage Container Id This property is required. float64 - Temp
Vm Subnet Id This property is required. float64 - Temp
Vm Virtual Network Id This property is required. float64
- availability
Set Id This property is required. Double - network
Resource Group Id This property is required. Double - resource
Group Id This property is required. Double - storage
Account Id This property is required. Double - storage
Container Id This property is required. Double - storage
Resource Group Id This property is required. Double - temp
Vm Resource Group Id This property is required. Double - temp
Vm Storage Account Id This property is required. Double - temp
Vm Storage Container Id This property is required. Double - temp
Vm Subnet Id This property is required. Double - temp
Vm Virtual Network Id This property is required. Double
- availability
Set Id This property is required. number - network
Resource Group Id This property is required. number - resource
Group Id This property is required. number - storage
Account Id This property is required. number - storage
Container Id This property is required. number - storage
Resource Group Id This property is required. number - temp
Vm Resource Group Id This property is required. number - temp
Vm Storage Account Id This property is required. number - temp
Vm Storage Container Id This property is required. number - temp
Vm Subnet Id This property is required. number - temp
Vm Virtual Network Id 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
- availability
Set Id This property is required. Number - network
Resource Group Id This property is required. Number - resource
Group Id This property is required. Number - storage
Account Id This property is required. Number - storage
Container Id This property is required. Number - storage
Resource Group Id This property is required. Number - temp
Vm Resource Group Id This property is required. Number - temp
Vm Storage Account Id This property is required. Number - temp
Vm Storage Container Id This property is required. Number - temp
Vm Subnet Id This property is required. Number - temp
Vm Virtual Network Id This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetArgs
- Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention> - Params
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Param> - Retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention> - Run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Run Timeout> - Schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Schedule>
- Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Log
Retentions This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention - Params
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Param - Retentions
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention - Run
Timeouts This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Run Timeout - Schedules
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Schedule
- backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention> - params
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Param> - retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention> - run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Run Timeout> - schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Schedule>
- backup
Run Type This property is required. string - config
Id This property is required. string - copy
On Run Success This property is required. boolean - log
Retentions This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention[] - params
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Param[] - retentions
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention[] - run
Timeouts This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Run Timeout[] - schedules
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Schedule[]
- 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[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention] - params
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Param] - retentions
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention] - run_
timeouts This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Run Timeout] - schedules
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Schedule]
- backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - log
Retentions This property is required. List<Property Map> - params
This property is required. List<Property Map> - retentions
This property is required. List<Property Map> - run
Timeouts This property is required. List<Property Map> - schedules
This property is required. List<Property Map>
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetLogRetentionArgs
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Log Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target 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
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Onprem Deploy Target Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetRunTimeoutArgs
- Backup
Type This property is required. string - Timeout
Mins This property is required. double
- Backup
Type This property is required. string - Timeout
Mins This property is required. float64
- backup
Type This property is required. String - timeout
Mins This property is required. Double
- backup
Type This property is required. string - timeout
Mins This property is required. number
- backup_
type This property is required. str - timeout_
mins This property is required. float
- backup
Type This property is required. String - timeout
Mins This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationOnpremDeployTargetScheduleArgs
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetArgs
- Aws
Target Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Aws Target Config> - Azure
Target Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Azure Target Config> - Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention> - Remote
Target Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Remote Target Config> - Retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention> - Run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Run Timeout> - Schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Schedule> - Target
Type This property is required. string
- Aws
Target Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Aws Target Config - Azure
Target Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Azure Target Config - Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Log
Retentions This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention - Remote
Target Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Remote Target Config - Retentions
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention - Run
Timeouts This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Run Timeout - Schedules
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Schedule - Target
Type This property is required. string
- aws
Target Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Aws Target Config> - azure
Target Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Azure Target Config> - backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention> - remote
Target Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Remote Target Config> - retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention> - run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Run Timeout> - schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Schedule> - target
Type This property is required. String
- aws
Target Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Aws Target Config[] - azure
Target Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Azure Target Config[] - backup
Run Type This property is required. string - config
Id This property is required. string - copy
On Run Success This property is required. boolean - log
Retentions This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention[] - remote
Target Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Remote Target Config[] - retentions
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention[] - run
Timeouts This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Run Timeout[] - schedules
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Schedule[] - target
Type This property is required. string
- aws_
target_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Aws Target Config] - azure_
target_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Azure Target Config] - 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[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention] - remote_
target_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Remote Target Config] - retentions
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention] - run_
timeouts This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Run Timeout] - schedules
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Schedule] - target_
type This property is required. str
- aws
Target Configs This property is required. List<Property Map> - azure
Target Configs This property is required. List<Property Map> - backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - log
Retentions This property is required. List<Property Map> - remote
Target Configs This property is required. List<Property Map> - retentions
This property is required. List<Property Map> - run
Timeouts This property is required. List<Property Map> - schedules
This property is required. List<Property Map> - target
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetAwsTargetConfigArgs
- Name
This property is required. string - Region
This property is required. double - Region
Name This property is required. string - Source
Id 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 - Region
Name This property is required. string - Source
Id 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 - region
Name This property is required. String - source
Id 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 - region
Name This property is required. string - source
Id 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 - region
Name This property is required. String - source
Id 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 - Resource
Group This property is required. double - Resource
Group Name This property is required. string - Source
Id This property is required. double - Specifies the id of the Protection Source which is to be restored.
- Storage
Account This property is required. double - Storage
Account Name This property is required. string - Storage
Container This property is required. double - Storage
Container Name This property is required. string - Storage
Resource Group This property is required. double - Storage
Resource Group Name This property is required. string
- Name
This property is required. string - Resource
Group This property is required. float64 - Resource
Group Name This property is required. string - Source
Id This property is required. float64 - Specifies the id of the Protection Source which is to be restored.
- Storage
Account This property is required. float64 - Storage
Account Name This property is required. string - Storage
Container This property is required. float64 - Storage
Container Name This property is required. string - Storage
Resource Group This property is required. float64 - Storage
Resource Group Name This property is required. string
- name
This property is required. String - resource
Group This property is required. Double - resource
Group Name This property is required. String - source
Id This property is required. Double - Specifies the id of the Protection Source which is to be restored.
- storage
Account This property is required. Double - storage
Account Name This property is required. String - storage
Container This property is required. Double - storage
Container Name This property is required. String - storage
Resource Group This property is required. Double - storage
Resource Group Name This property is required. String
- name
This property is required. string - resource
Group This property is required. number - resource
Group Name This property is required. string - source
Id This property is required. number - Specifies the id of the Protection Source which is to be restored.
- storage
Account This property is required. number - storage
Account Name This property is required. string - storage
Container This property is required. number - storage
Container Name This property is required. string - storage
Resource Group This property is required. number - storage
Resource Group Name 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 - resource
Group This property is required. Number - resource
Group Name This property is required. String - source
Id This property is required. Number - Specifies the id of the Protection Source which is to be restored.
- storage
Account This property is required. Number - storage
Account Name This property is required. String - storage
Container This property is required. Number - storage
Container Name This property is required. String - storage
Resource Group This property is required. Number - storage
Resource Group Name This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetLogRetentionArgs
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Log Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfig, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRemoteTargetConfigArgs
- Cluster
Id This property is required. double - Cluster
Name This property is required. string
- Cluster
Id This property is required. float64 - Cluster
Name This property is required. string
- cluster
Id This property is required. Double - cluster
Name This property is required. String
- cluster
Id This property is required. number - cluster
Name This property is required. string
- cluster_
id This property is required. float - cluster_
name This property is required. str
- cluster
Id This property is required. Number - cluster
Name This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRetentionArgs
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Replication Target Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetRunTimeoutArgs
- Backup
Type This property is required. string - Timeout
Mins This property is required. double
- Backup
Type This property is required. string - Timeout
Mins This property is required. float64
- backup
Type This property is required. String - timeout
Mins This property is required. Double
- backup
Type This property is required. string - timeout
Mins This property is required. number
- backup_
type This property is required. str - timeout_
mins This property is required. float
- backup
Type This property is required. String - timeout
Mins This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationReplicationTargetScheduleArgs
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTarget, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetArgs
- Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention> - Retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention> - Run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Run Timeout> - Schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Schedule> - Target
Id This property is required. double - Target
Name This property is required. string - Target
Type This property is required. string
- Backup
Run Type This property is required. string - Config
Id This property is required. string - Copy
On Run Success This property is required. bool - Log
Retentions This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention - Retentions
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention - Run
Timeouts This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Run Timeout - Schedules
This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Schedule - Target
Id This property is required. float64 - Target
Name This property is required. string - Target
Type This property is required. string
- backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - log
Retentions This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention> - retentions
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention> - run
Timeouts This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Run Timeout> - schedules
This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Schedule> - target
Id This property is required. Double - target
Name This property is required. String - target
Type This property is required. String
- backup
Run Type This property is required. string - config
Id This property is required. string - copy
On Run Success This property is required. boolean - log
Retentions This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention[] - retentions
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention[] - run
Timeouts This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Run Timeout[] - schedules
This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Schedule[] - target
Id This property is required. number - target
Name This property is required. string - target
Type This property is required. string
- 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[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention] - retentions
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention] - run_
timeouts This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Run Timeout] - schedules
This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Schedule] - target_
id This property is required. float - target_
name This property is required. str - target_
type This property is required. str
- backup
Run Type This property is required. String - config
Id This property is required. String - copy
On Run Success This property is required. Boolean - log
Retentions This property is required. List<Property Map> - retentions
This property is required. List<Property Map> - run
Timeouts This property is required. List<Property Map> - schedules
This property is required. List<Property Map> - target
Id This property is required. Number - target
Name This property is required. String - target
Type This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetLogRetentionArgs
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Log Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetention, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRetentionArgs
- Data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention Data Lock Config> - Duration
This property is required. double - Unit
This property is required. string
- Data
Lock Configs This property is required. []BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention Data Lock Config - Duration
This property is required. float64 - Unit
This property is required. string
- data
Lock Configs This property is required. List<BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention Data Lock Config> - duration
This property is required. Double - unit
This property is required. String
- data
Lock Configs This property is required. BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention Data Lock Config[] - duration
This property is required. number - unit
This property is required. string
- data_
lock_ configs This property is required. Sequence[BackupRecovery Restore Points Full Snapshot Info Targets Configuration Rpaas Target Retention Data Lock Config] - duration
This property is required. float - unit
This property is required. str
- data
Lock Configs 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 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- Duration
This property is required. float64 - Enable
Worm On External Target This property is required. bool - Mode
This property is required. string - Unit
This property is required. string
- duration
This property is required. Double - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
- duration
This property is required. number - enable
Worm On External Target 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 - enable
Worm On External Target This property is required. Boolean - mode
This property is required. String - unit
This property is required. String
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeout, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetRunTimeoutArgs
- Backup
Type This property is required. string - Timeout
Mins This property is required. double
- Backup
Type This property is required. string - Timeout
Mins This property is required. float64
- backup
Type This property is required. String - timeout
Mins This property is required. Double
- backup
Type This property is required. string - timeout
Mins This property is required. number
- backup_
type This property is required. str - timeout_
mins This property is required. float
- backup
Type This property is required. String - timeout
Mins This property is required. Number
BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetSchedule, BackupRecoveryRestorePointsFullSnapshotInfoTargetsConfigurationRpaasTargetScheduleArgs
BackupRecoveryRestorePointsTimeRangeInfo, BackupRecoveryRestorePointsTimeRangeInfoArgs
- Error
Message This property is required. string - Time
Ranges This property is required. List<BackupRecovery Restore Points Time Range Info Time Range> - User
Message This property is required. string
- Error
Message This property is required. string - Time
Ranges This property is required. []BackupRecovery Restore Points Time Range Info Time Range - User
Message This property is required. string
- error
Message This property is required. String - time
Ranges This property is required. List<BackupRecovery Restore Points Time Range Info Time Range> - user
Message This property is required. String
- error
Message This property is required. string - time
Ranges This property is required. BackupRecovery Restore Points Time Range Info Time Range[] - user
Message This property is required. string
- error_
message This property is required. str - time_
ranges This property is required. Sequence[BackupRecovery Restore Points Time Range Info Time Range] - user_
message This property is required. str
- error
Message This property is required. String - time
Ranges This property is required. List<Property Map> - user
Message This property is required. String
BackupRecoveryRestorePointsTimeRangeInfoTimeRange, BackupRecoveryRestorePointsTimeRangeInfoTimeRangeArgs
- End
Time Usecs This property is required. double - Specifies the end time specified as a Unix epoch Timestamp in microseconds.
- Protection
Group Id This property is required. string - Start
Time Usecs This property is required. double - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- End
Time Usecs This property is required. float64 - Specifies the end time specified as a Unix epoch Timestamp in microseconds.
- Protection
Group Id This property is required. string - Start
Time Usecs This property is required. float64 - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- end
Time Usecs This property is required. Double - Specifies the end time specified as a Unix epoch Timestamp in microseconds.
- protection
Group Id This property is required. String - start
Time Usecs This property is required. Double - Specifies the start time specified as a Unix epoch Timestamp in microseconds.
- end
Time Usecs This property is required. number - Specifies the end time specified as a Unix epoch Timestamp in microseconds.
- protection
Group Id This property is required. string - start
Time Usecs 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.
- end
Time Usecs This property is required. Number - Specifies the end time specified as a Unix epoch Timestamp in microseconds.
- protection
Group Id This property is required. String - start
Time Usecs 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.