ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud
ibm.getBackupRecoveryProtectionGroupRuns
Explore with Pulumi AI
Provides a read-only data source to retrieve information about backup_recovery_protection_group_runs. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const backupRecoveryProtectionGroupRuns = ibm.getBackupRecoveryProtectionGroupRuns({
protectionGroupId: ibm_backup_recovery_protection_group.backup_recovery_protection_group_instance.backup_recovery_protection_group_id,
xIbmTenantId: "x_ibm_tenant_id",
});
import pulumi
import pulumi_ibm as ibm
backup_recovery_protection_group_runs = ibm.get_backup_recovery_protection_group_runs(protection_group_id=ibm_backup_recovery_protection_group["backup_recovery_protection_group_instance"]["backup_recovery_protection_group_id"],
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.GetBackupRecoveryProtectionGroupRuns(ctx, &ibm.GetBackupRecoveryProtectionGroupRunsArgs{
ProtectionGroupId: ibm_backup_recovery_protection_group.Backup_recovery_protection_group_instance.Backup_recovery_protection_group_id,
XIbmTenantId: "x_ibm_tenant_id",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var backupRecoveryProtectionGroupRuns = Ibm.GetBackupRecoveryProtectionGroupRuns.Invoke(new()
{
ProtectionGroupId = ibm_backup_recovery_protection_group.Backup_recovery_protection_group_instance.Backup_recovery_protection_group_id,
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.IbmFunctions;
import com.pulumi.ibm.inputs.GetBackupRecoveryProtectionGroupRunsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var backupRecoveryProtectionGroupRuns = IbmFunctions.getBackupRecoveryProtectionGroupRuns(GetBackupRecoveryProtectionGroupRunsArgs.builder()
.protectionGroupId(ibm_backup_recovery_protection_group.backup_recovery_protection_group_instance().backup_recovery_protection_group_id())
.xIbmTenantId("x_ibm_tenant_id")
.build());
}
}
variables:
backupRecoveryProtectionGroupRuns:
fn::invoke:
function: ibm:getBackupRecoveryProtectionGroupRuns
arguments:
protectionGroupId: ${ibm_backup_recovery_protection_group.backup_recovery_protection_group_instance.backup_recovery_protection_group_id}
xIbmTenantId: x_ibm_tenant_id
Using getBackupRecoveryProtectionGroupRuns
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getBackupRecoveryProtectionGroupRuns(args: GetBackupRecoveryProtectionGroupRunsArgs, opts?: InvokeOptions): Promise<GetBackupRecoveryProtectionGroupRunsResult>
function getBackupRecoveryProtectionGroupRunsOutput(args: GetBackupRecoveryProtectionGroupRunsOutputArgs, opts?: InvokeOptions): Output<GetBackupRecoveryProtectionGroupRunsResult>
def get_backup_recovery_protection_group_runs(archival_run_statuses: Optional[Sequence[str]] = None,
cloud_spin_run_statuses: Optional[Sequence[str]] = None,
end_time_usecs: Optional[float] = None,
exclude_non_restorable_runs: Optional[bool] = None,
filter_by_copy_task_end_time: Optional[bool] = None,
filter_by_end_time: Optional[bool] = None,
id: Optional[str] = None,
include_object_details: Optional[bool] = None,
local_backup_run_statuses: Optional[Sequence[str]] = None,
num_runs: Optional[float] = None,
only_return_successful_copy_run: Optional[bool] = None,
protection_group_id: Optional[str] = None,
replication_run_statuses: Optional[Sequence[str]] = None,
request_initiator_type: Optional[str] = None,
run_id: Optional[str] = None,
run_tags: Optional[Sequence[str]] = None,
run_types: Optional[Sequence[str]] = None,
snapshot_target_types: Optional[Sequence[str]] = None,
start_time_usecs: Optional[float] = None,
use_cached_data: Optional[bool] = None,
x_ibm_tenant_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBackupRecoveryProtectionGroupRunsResult
def get_backup_recovery_protection_group_runs_output(archival_run_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
cloud_spin_run_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
end_time_usecs: Optional[pulumi.Input[float]] = None,
exclude_non_restorable_runs: Optional[pulumi.Input[bool]] = None,
filter_by_copy_task_end_time: Optional[pulumi.Input[bool]] = None,
filter_by_end_time: Optional[pulumi.Input[bool]] = None,
id: Optional[pulumi.Input[str]] = None,
include_object_details: Optional[pulumi.Input[bool]] = None,
local_backup_run_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
num_runs: Optional[pulumi.Input[float]] = None,
only_return_successful_copy_run: Optional[pulumi.Input[bool]] = None,
protection_group_id: Optional[pulumi.Input[str]] = None,
replication_run_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
request_initiator_type: Optional[pulumi.Input[str]] = None,
run_id: Optional[pulumi.Input[str]] = None,
run_tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
run_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
snapshot_target_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
start_time_usecs: Optional[pulumi.Input[float]] = None,
use_cached_data: Optional[pulumi.Input[bool]] = None,
x_ibm_tenant_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetBackupRecoveryProtectionGroupRunsResult]
func GetBackupRecoveryProtectionGroupRuns(ctx *Context, args *GetBackupRecoveryProtectionGroupRunsArgs, opts ...InvokeOption) (*GetBackupRecoveryProtectionGroupRunsResult, error)
func GetBackupRecoveryProtectionGroupRunsOutput(ctx *Context, args *GetBackupRecoveryProtectionGroupRunsOutputArgs, opts ...InvokeOption) GetBackupRecoveryProtectionGroupRunsResultOutput
> Note: This function is named GetBackupRecoveryProtectionGroupRuns
in the Go SDK.
public static class GetBackupRecoveryProtectionGroupRuns
{
public static Task<GetBackupRecoveryProtectionGroupRunsResult> InvokeAsync(GetBackupRecoveryProtectionGroupRunsArgs args, InvokeOptions? opts = null)
public static Output<GetBackupRecoveryProtectionGroupRunsResult> Invoke(GetBackupRecoveryProtectionGroupRunsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetBackupRecoveryProtectionGroupRunsResult> getBackupRecoveryProtectionGroupRuns(GetBackupRecoveryProtectionGroupRunsArgs args, InvokeOptions options)
public static Output<GetBackupRecoveryProtectionGroupRunsResult> getBackupRecoveryProtectionGroupRuns(GetBackupRecoveryProtectionGroupRunsArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getBackupRecoveryProtectionGroupRuns:getBackupRecoveryProtectionGroupRuns
arguments:
# arguments dictionary
The following arguments are supported:
- Protection
Group stringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- 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.
- Archival
Run List<string>Statuses - Specifies a list of archival status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- Cloud
Spin List<string>Run Statuses - Specifies a list of cloud spin status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Exclude
Non boolRestorable Runs - Specifies whether to exclude non restorable runs. Run is treated restorable only if there is atleast one object snapshot (which may be either a local or an archival snapshot) which is not deleted or expired. Default value is false.
- Constraints: The default value is
false
.
- Constraints: The default value is
- Filter
By boolCopy Task End Time - If true, then the details of the runs for which any copyTask completed in the given timerange will be returned. Only one of filterByEndTime and filterByCopyTaskEndTime can be set.
- Filter
By boolEnd Time - If true, the runs with backup end time within the specified time range will be returned. Otherwise, the runs with start time in the time range are returned.
- Id string
- (String) The tenant id.
- Include
Object boolDetails - Specifies if the result includes the object details for each protection run. If set to true, details of the protected object will be returned. If set to false or not specified, details will not be returned.
- Local
Backup List<string>Run Statuses - Specifies a list of local backup status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- Num
Runs double - Specifies the max number of runs. If not specified, at most 100 runs will be returned.
- Only
Return boolSuccessful Copy Run - only successful copyruns are returned.
- Replication
Run List<string>Statuses - Specifies a list of replication status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- Request
Initiator stringType - Specifies the type of request from UI, which is used for services like magneto to determine the priority of requests.
- Constraints: Allowable values are:
UIUser
,UIAuto
,Helios
.
- Constraints: Allowable values are:
- Run
Id string - Specifies the protection run id.
- Constraints: The value must match regular expression
/^\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- List<string>
- Specifies a list of tags for protection runs. If this is specified, only the runs which match these tags will be returned.
- Run
Types List<string> - Filter by run type. Only protection run matching the specified types will be returned.
- Constraints: Allowable list items are:
kAll
,kHydrateCDP
,kSystem
,kStorageArraySnapshot
,kIncremental
,kFull
,kLog
.
- Constraints: Allowable list items are:
- Snapshot
Target List<string>Types - Specifies the snapshot's target type which should be filtered.
- Constraints: Allowable list items are:
Local
,Archival
,RpaasArchival
,StorageArraySnapshot
,Remote
.
- Constraints: Allowable list items are:
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Use
Cached boolData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- Protection
Group stringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- 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.
- Archival
Run []stringStatuses - Specifies a list of archival status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- Cloud
Spin []stringRun Statuses - Specifies a list of cloud spin status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Exclude
Non boolRestorable Runs - Specifies whether to exclude non restorable runs. Run is treated restorable only if there is atleast one object snapshot (which may be either a local or an archival snapshot) which is not deleted or expired. Default value is false.
- Constraints: The default value is
false
.
- Constraints: The default value is
- Filter
By boolCopy Task End Time - If true, then the details of the runs for which any copyTask completed in the given timerange will be returned. Only one of filterByEndTime and filterByCopyTaskEndTime can be set.
- Filter
By boolEnd Time - If true, the runs with backup end time within the specified time range will be returned. Otherwise, the runs with start time in the time range are returned.
- Id string
- (String) The tenant id.
- Include
Object boolDetails - Specifies if the result includes the object details for each protection run. If set to true, details of the protected object will be returned. If set to false or not specified, details will not be returned.
- Local
Backup []stringRun Statuses - Specifies a list of local backup status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- Num
Runs float64 - Specifies the max number of runs. If not specified, at most 100 runs will be returned.
- Only
Return boolSuccessful Copy Run - only successful copyruns are returned.
- Replication
Run []stringStatuses - Specifies a list of replication status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- Request
Initiator stringType - Specifies the type of request from UI, which is used for services like magneto to determine the priority of requests.
- Constraints: Allowable values are:
UIUser
,UIAuto
,Helios
.
- Constraints: Allowable values are:
- Run
Id string - Specifies the protection run id.
- Constraints: The value must match regular expression
/^\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- []string
- Specifies a list of tags for protection runs. If this is specified, only the runs which match these tags will be returned.
- Run
Types []string - Filter by run type. Only protection run matching the specified types will be returned.
- Constraints: Allowable list items are:
kAll
,kHydrateCDP
,kSystem
,kStorageArraySnapshot
,kIncremental
,kFull
,kLog
.
- Constraints: Allowable list items are:
- Snapshot
Target []stringTypes - Specifies the snapshot's target type which should be filtered.
- Constraints: Allowable list items are:
Local
,Archival
,RpaasArchival
,StorageArraySnapshot
,Remote
.
- Constraints: Allowable list items are:
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Use
Cached boolData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- protection
Group StringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- 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.
- archival
Run List<String>Statuses - Specifies a list of archival status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- cloud
Spin List<String>Run Statuses - Specifies a list of cloud spin status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- exclude
Non BooleanRestorable Runs - Specifies whether to exclude non restorable runs. Run is treated restorable only if there is atleast one object snapshot (which may be either a local or an archival snapshot) which is not deleted or expired. Default value is false.
- Constraints: The default value is
false
.
- Constraints: The default value is
- filter
By BooleanCopy Task End Time - If true, then the details of the runs for which any copyTask completed in the given timerange will be returned. Only one of filterByEndTime and filterByCopyTaskEndTime can be set.
- filter
By BooleanEnd Time - If true, the runs with backup end time within the specified time range will be returned. Otherwise, the runs with start time in the time range are returned.
- id String
- (String) The tenant id.
- include
Object BooleanDetails - Specifies if the result includes the object details for each protection run. If set to true, details of the protected object will be returned. If set to false or not specified, details will not be returned.
- local
Backup List<String>Run Statuses - Specifies a list of local backup status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- num
Runs Double - Specifies the max number of runs. If not specified, at most 100 runs will be returned.
- only
Return BooleanSuccessful Copy Run - only successful copyruns are returned.
- replication
Run List<String>Statuses - Specifies a list of replication status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- request
Initiator StringType - Specifies the type of request from UI, which is used for services like magneto to determine the priority of requests.
- Constraints: Allowable values are:
UIUser
,UIAuto
,Helios
.
- Constraints: Allowable values are:
- run
Id String - Specifies the protection run id.
- Constraints: The value must match regular expression
/^\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- List<String>
- Specifies a list of tags for protection runs. If this is specified, only the runs which match these tags will be returned.
- run
Types List<String> - Filter by run type. Only protection run matching the specified types will be returned.
- Constraints: Allowable list items are:
kAll
,kHydrateCDP
,kSystem
,kStorageArraySnapshot
,kIncremental
,kFull
,kLog
.
- Constraints: Allowable list items are:
- snapshot
Target List<String>Types - Specifies the snapshot's target type which should be filtered.
- Constraints: Allowable list items are:
Local
,Archival
,RpaasArchival
,StorageArraySnapshot
,Remote
.
- Constraints: Allowable list items are:
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- use
Cached BooleanData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- protection
Group stringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- 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.
- archival
Run string[]Statuses - Specifies a list of archival status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- cloud
Spin string[]Run Statuses - Specifies a list of cloud spin status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- exclude
Non booleanRestorable Runs - Specifies whether to exclude non restorable runs. Run is treated restorable only if there is atleast one object snapshot (which may be either a local or an archival snapshot) which is not deleted or expired. Default value is false.
- Constraints: The default value is
false
.
- Constraints: The default value is
- filter
By booleanCopy Task End Time - If true, then the details of the runs for which any copyTask completed in the given timerange will be returned. Only one of filterByEndTime and filterByCopyTaskEndTime can be set.
- filter
By booleanEnd Time - If true, the runs with backup end time within the specified time range will be returned. Otherwise, the runs with start time in the time range are returned.
- id string
- (String) The tenant id.
- include
Object booleanDetails - Specifies if the result includes the object details for each protection run. If set to true, details of the protected object will be returned. If set to false or not specified, details will not be returned.
- local
Backup string[]Run Statuses - Specifies a list of local backup status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- num
Runs number - Specifies the max number of runs. If not specified, at most 100 runs will be returned.
- only
Return booleanSuccessful Copy Run - only successful copyruns are returned.
- replication
Run string[]Statuses - Specifies a list of replication status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- request
Initiator stringType - Specifies the type of request from UI, which is used for services like magneto to determine the priority of requests.
- Constraints: Allowable values are:
UIUser
,UIAuto
,Helios
.
- Constraints: Allowable values are:
- run
Id string - Specifies the protection run id.
- Constraints: The value must match regular expression
/^\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- string[]
- Specifies a list of tags for protection runs. If this is specified, only the runs which match these tags will be returned.
- run
Types string[] - Filter by run type. Only protection run matching the specified types will be returned.
- Constraints: Allowable list items are:
kAll
,kHydrateCDP
,kSystem
,kStorageArraySnapshot
,kIncremental
,kFull
,kLog
.
- Constraints: Allowable list items are:
- snapshot
Target string[]Types - Specifies the snapshot's target type which should be filtered.
- Constraints: Allowable list items are:
Local
,Archival
,RpaasArchival
,StorageArraySnapshot
,Remote
.
- Constraints: Allowable list items are:
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- use
Cached booleanData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- protection_
group_ strid - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- 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.
- archival_
run_ Sequence[str]statuses - Specifies a list of archival status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- cloud_
spin_ Sequence[str]run_ statuses - Specifies a list of cloud spin status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- exclude_
non_ boolrestorable_ runs - Specifies whether to exclude non restorable runs. Run is treated restorable only if there is atleast one object snapshot (which may be either a local or an archival snapshot) which is not deleted or expired. Default value is false.
- Constraints: The default value is
false
.
- Constraints: The default value is
- filter_
by_ boolcopy_ task_ end_ time - If true, then the details of the runs for which any copyTask completed in the given timerange will be returned. Only one of filterByEndTime and filterByCopyTaskEndTime can be set.
- filter_
by_ boolend_ time - If true, the runs with backup end time within the specified time range will be returned. Otherwise, the runs with start time in the time range are returned.
- id str
- (String) The tenant id.
- include_
object_ booldetails - Specifies if the result includes the object details for each protection run. If set to true, details of the protected object will be returned. If set to false or not specified, details will not be returned.
- local_
backup_ Sequence[str]run_ statuses - Specifies a list of local backup status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- num_
runs float - Specifies the max number of runs. If not specified, at most 100 runs will be returned.
- only_
return_ boolsuccessful_ copy_ run - only successful copyruns are returned.
- replication_
run_ Sequence[str]statuses - Specifies a list of replication status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- request_
initiator_ strtype - Specifies the type of request from UI, which is used for services like magneto to determine the priority of requests.
- Constraints: Allowable values are:
UIUser
,UIAuto
,Helios
.
- Constraints: Allowable values are:
- run_
id str - Specifies the protection run id.
- Constraints: The value must match regular expression
/^\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- Sequence[str]
- Specifies a list of tags for protection runs. If this is specified, only the runs which match these tags will be returned.
- run_
types Sequence[str] - Filter by run type. Only protection run matching the specified types will be returned.
- Constraints: Allowable list items are:
kAll
,kHydrateCDP
,kSystem
,kStorageArraySnapshot
,kIncremental
,kFull
,kLog
.
- Constraints: Allowable list items are:
- snapshot_
target_ Sequence[str]types - Specifies the snapshot's target type which should be filtered.
- Constraints: Allowable list items are:
Local
,Archival
,RpaasArchival
,StorageArraySnapshot
,Remote
.
- Constraints: Allowable list items are:
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- use_
cached_ booldata - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- protection
Group StringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- 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.
- archival
Run List<String>Statuses - Specifies a list of archival status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- cloud
Spin List<String>Run Statuses - Specifies a list of cloud spin status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- exclude
Non BooleanRestorable Runs - Specifies whether to exclude non restorable runs. Run is treated restorable only if there is atleast one object snapshot (which may be either a local or an archival snapshot) which is not deleted or expired. Default value is false.
- Constraints: The default value is
false
.
- Constraints: The default value is
- filter
By BooleanCopy Task End Time - If true, then the details of the runs for which any copyTask completed in the given timerange will be returned. Only one of filterByEndTime and filterByCopyTaskEndTime can be set.
- filter
By BooleanEnd Time - If true, the runs with backup end time within the specified time range will be returned. Otherwise, the runs with start time in the time range are returned.
- id String
- (String) The tenant id.
- include
Object BooleanDetails - Specifies if the result includes the object details for each protection run. If set to true, details of the protected object will be returned. If set to false or not specified, details will not be returned.
- local
Backup List<String>Run Statuses - Specifies a list of local backup status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- num
Runs Number - Specifies the max number of runs. If not specified, at most 100 runs will be returned.
- only
Return BooleanSuccessful Copy Run - only successful copyruns are returned.
- replication
Run List<String>Statuses - Specifies a list of replication status, runs matching the status will be returned. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Paused' indicates that the ongoing run has been paused. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable list items are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable list items are:
- request
Initiator StringType - Specifies the type of request from UI, which is used for services like magneto to determine the priority of requests.
- Constraints: Allowable values are:
UIUser
,UIAuto
,Helios
.
- Constraints: Allowable values are:
- run
Id String - Specifies the protection run id.
- Constraints: The value must match regular expression
/^\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- List<String>
- Specifies a list of tags for protection runs. If this is specified, only the runs which match these tags will be returned.
- run
Types List<String> - Filter by run type. Only protection run matching the specified types will be returned.
- Constraints: Allowable list items are:
kAll
,kHydrateCDP
,kSystem
,kStorageArraySnapshot
,kIncremental
,kFull
,kLog
.
- Constraints: Allowable list items are:
- snapshot
Target List<String>Types - Specifies the snapshot's target type which should be filtered.
- Constraints: Allowable list items are:
Local
,Archival
,RpaasArchival
,StorageArraySnapshot
,Remote
.
- Constraints: Allowable list items are:
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- use
Cached BooleanData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
getBackupRecoveryProtectionGroupRuns Result
The following output properties are available:
- Id string
- (String) The tenant id.
- Protection
Group stringId - (String) ProtectionGroupId to which this run belongs.
- Runs
List<Get
Backup Recovery Protection Group Runs Run> - (List) Specifies the list of Protection Group runs. Nested schema for runs:
- Total
Runs double - (Integer) Specifies the count of total runs exist for the given set of filters. The number of runs in single API call are limited and this count can be used to estimate query filter values to get next set of remaining runs. Please note that this field will only be populated if startTimeUsecs or endTimeUsecs or both are specified in query parameters.
- XIbm
Tenant stringId - Archival
Run List<string>Statuses - Cloud
Spin List<string>Run Statuses - End
Time doubleUsecs - (Integer) Specifies the end time of replication in Unix epoch Timestamp(in microseconds) for a target.
- Exclude
Non boolRestorable Runs - Filter
By boolCopy Task End Time - Filter
By boolEnd Time - Include
Object boolDetails - Local
Backup List<string>Run Statuses - Num
Runs double - Only
Return boolSuccessful Copy Run - Replication
Run List<string>Statuses - Request
Initiator stringType - Run
Id string - List<string>
- Run
Types List<string> - Snapshot
Target List<string>Types - Start
Time doubleUsecs - (Integer) Specifies the start time of replication in Unix epoch Timestamp(in microseconds) for a target.
- Use
Cached boolData
- Id string
- (String) The tenant id.
- Protection
Group stringId - (String) ProtectionGroupId to which this run belongs.
- Runs
[]Get
Backup Recovery Protection Group Runs Run - (List) Specifies the list of Protection Group runs. Nested schema for runs:
- Total
Runs float64 - (Integer) Specifies the count of total runs exist for the given set of filters. The number of runs in single API call are limited and this count can be used to estimate query filter values to get next set of remaining runs. Please note that this field will only be populated if startTimeUsecs or endTimeUsecs or both are specified in query parameters.
- XIbm
Tenant stringId - Archival
Run []stringStatuses - Cloud
Spin []stringRun Statuses - End
Time float64Usecs - (Integer) Specifies the end time of replication in Unix epoch Timestamp(in microseconds) for a target.
- Exclude
Non boolRestorable Runs - Filter
By boolCopy Task End Time - Filter
By boolEnd Time - Include
Object boolDetails - Local
Backup []stringRun Statuses - Num
Runs float64 - Only
Return boolSuccessful Copy Run - Replication
Run []stringStatuses - Request
Initiator stringType - Run
Id string - []string
- Run
Types []string - Snapshot
Target []stringTypes - Start
Time float64Usecs - (Integer) Specifies the start time of replication in Unix epoch Timestamp(in microseconds) for a target.
- Use
Cached boolData
- id String
- (String) The tenant id.
- protection
Group StringId - (String) ProtectionGroupId to which this run belongs.
- runs
List<Get
Backup Recovery Protection Group Runs Run> - (List) Specifies the list of Protection Group runs. Nested schema for runs:
- total
Runs Double - (Integer) Specifies the count of total runs exist for the given set of filters. The number of runs in single API call are limited and this count can be used to estimate query filter values to get next set of remaining runs. Please note that this field will only be populated if startTimeUsecs or endTimeUsecs or both are specified in query parameters.
- x
Ibm StringTenant Id - archival
Run List<String>Statuses - cloud
Spin List<String>Run Statuses - end
Time DoubleUsecs - (Integer) Specifies the end time of replication in Unix epoch Timestamp(in microseconds) for a target.
- exclude
Non BooleanRestorable Runs - filter
By BooleanCopy Task End Time - filter
By BooleanEnd Time - include
Object BooleanDetails - local
Backup List<String>Run Statuses - num
Runs Double - only
Return BooleanSuccessful Copy Run - replication
Run List<String>Statuses - request
Initiator StringType - run
Id String - List<String>
- run
Types List<String> - snapshot
Target List<String>Types - start
Time DoubleUsecs - (Integer) Specifies the start time of replication in Unix epoch Timestamp(in microseconds) for a target.
- use
Cached BooleanData
- id string
- (String) The tenant id.
- protection
Group stringId - (String) ProtectionGroupId to which this run belongs.
- runs
Get
Backup Recovery Protection Group Runs Run[] - (List) Specifies the list of Protection Group runs. Nested schema for runs:
- total
Runs number - (Integer) Specifies the count of total runs exist for the given set of filters. The number of runs in single API call are limited and this count can be used to estimate query filter values to get next set of remaining runs. Please note that this field will only be populated if startTimeUsecs or endTimeUsecs or both are specified in query parameters.
- x
Ibm stringTenant Id - archival
Run string[]Statuses - cloud
Spin string[]Run Statuses - end
Time numberUsecs - (Integer) Specifies the end time of replication in Unix epoch Timestamp(in microseconds) for a target.
- exclude
Non booleanRestorable Runs - filter
By booleanCopy Task End Time - filter
By booleanEnd Time - include
Object booleanDetails - local
Backup string[]Run Statuses - num
Runs number - only
Return booleanSuccessful Copy Run - replication
Run string[]Statuses - request
Initiator stringType - run
Id string - string[]
- run
Types string[] - snapshot
Target string[]Types - start
Time numberUsecs - (Integer) Specifies the start time of replication in Unix epoch Timestamp(in microseconds) for a target.
- use
Cached booleanData
- id str
- (String) The tenant id.
- protection_
group_ strid - (String) ProtectionGroupId to which this run belongs.
- runs
Sequence[Get
Backup Recovery Protection Group Runs Run] - (List) Specifies the list of Protection Group runs. Nested schema for runs:
- total_
runs float - (Integer) Specifies the count of total runs exist for the given set of filters. The number of runs in single API call are limited and this count can be used to estimate query filter values to get next set of remaining runs. Please note that this field will only be populated if startTimeUsecs or endTimeUsecs or both are specified in query parameters.
- x_
ibm_ strtenant_ id - archival_
run_ Sequence[str]statuses - cloud_
spin_ Sequence[str]run_ statuses - end_
time_ floatusecs - (Integer) Specifies the end time of replication in Unix epoch Timestamp(in microseconds) for a target.
- exclude_
non_ boolrestorable_ runs - filter_
by_ boolcopy_ task_ end_ time - filter_
by_ boolend_ time - include_
object_ booldetails - local_
backup_ Sequence[str]run_ statuses - num_
runs float - only_
return_ boolsuccessful_ copy_ run - replication_
run_ Sequence[str]statuses - request_
initiator_ strtype - run_
id str - Sequence[str]
- run_
types Sequence[str] - snapshot_
target_ Sequence[str]types - start_
time_ floatusecs - (Integer) Specifies the start time of replication in Unix epoch Timestamp(in microseconds) for a target.
- use_
cached_ booldata
- id String
- (String) The tenant id.
- protection
Group StringId - (String) ProtectionGroupId to which this run belongs.
- runs List<Property Map>
- (List) Specifies the list of Protection Group runs. Nested schema for runs:
- total
Runs Number - (Integer) Specifies the count of total runs exist for the given set of filters. The number of runs in single API call are limited and this count can be used to estimate query filter values to get next set of remaining runs. Please note that this field will only be populated if startTimeUsecs or endTimeUsecs or both are specified in query parameters.
- x
Ibm StringTenant Id - archival
Run List<String>Statuses - cloud
Spin List<String>Run Statuses - end
Time NumberUsecs - (Integer) Specifies the end time of replication in Unix epoch Timestamp(in microseconds) for a target.
- exclude
Non BooleanRestorable Runs - filter
By BooleanCopy Task End Time - filter
By BooleanEnd Time - include
Object BooleanDetails - local
Backup List<String>Run Statuses - num
Runs Number - only
Return BooleanSuccessful Copy Run - replication
Run List<String>Statuses - request
Initiator StringType - run
Id String - List<String>
- run
Types List<String> - snapshot
Target List<String>Types - start
Time NumberUsecs - (Integer) Specifies the start time of replication in Unix epoch Timestamp(in microseconds) for a target.
- use
Cached BooleanData
Supporting Types
GetBackupRecoveryProtectionGroupRunsRun
- Archival
Infos List<GetBackup Recovery Protection Group Runs Run Archival Info> - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- Cloud
Spin List<GetInfos Backup Recovery Protection Group Runs Run Cloud Spin Info> - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- Environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Externally
Triggered stringBackup Tag - (String) The tag of externally triggered backup job.
- Has
Local boolSnapshot - (Boolean) Specifies whether the run has a local snapshot. For cloud retrieved runs there may not be local snapshots.
- Id string
- (String) The tenant id.
- Is
Cloud boolArchival Direct - (Boolean) Specifies whether the run is a CAD run if cloud archive direct feature is enabled. If this field is true, the primary backup copy will only be available at the given archived location.
- Is
Local boolSnapshots Deleted - (Boolean) Specifies if snapshots for this run has been deleted.
- Is
Replication boolRun - (Boolean) Specifies if this protection run is a replication run.
- Local
Backup List<GetInfos Backup Recovery Protection Group Runs Run Local Backup Info> - (List) Specifies summary information about local snapshot run across all objects. Nested schema for local_backup_info:
- Objects
List<Get
Backup Recovery Protection Group Runs Run Object> - (List) Snapahot, replication, archival results for each object. Nested schema for objects:
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Origin
Cluster List<GetIdentifiers Backup Recovery Protection Group Runs Run Origin Cluster Identifier> - (List) Specifies the information about a cluster. Nested schema for origin_cluster_identifier:
- Origin
Protection stringGroup Id - (String) ProtectionGroupId to which this run belongs on the primary cluster if this run is a replication run.
- Original
Backup List<GetInfos Backup Recovery Protection Group Runs Run Original Backup Info> - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- Permissions
List<Get
Backup Recovery Protection Group Runs Run Permission> - (List) Specifies the list of tenants that have permissions for this protection group run. Nested schema for permissions:
- Protection
Group stringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- Protection
Group doubleInstance Id - (Integer) Protection Group instance Id. This field will be removed later.
- Protection
Group stringName - (String) Name of the Protection Group to which this run belongs.
- Replication
Infos List<GetBackup Recovery Protection Group Runs Run Replication Info> - (List) Specifies summary information about replication run. Nested schema for replication_info:
- Archival
Infos []GetBackup Recovery Protection Group Runs Run Archival Info - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- Cloud
Spin []GetInfos Backup Recovery Protection Group Runs Run Cloud Spin Info - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- Environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Externally
Triggered stringBackup Tag - (String) The tag of externally triggered backup job.
- Has
Local boolSnapshot - (Boolean) Specifies whether the run has a local snapshot. For cloud retrieved runs there may not be local snapshots.
- Id string
- (String) The tenant id.
- Is
Cloud boolArchival Direct - (Boolean) Specifies whether the run is a CAD run if cloud archive direct feature is enabled. If this field is true, the primary backup copy will only be available at the given archived location.
- Is
Local boolSnapshots Deleted - (Boolean) Specifies if snapshots for this run has been deleted.
- Is
Replication boolRun - (Boolean) Specifies if this protection run is a replication run.
- Local
Backup []GetInfos Backup Recovery Protection Group Runs Run Local Backup Info - (List) Specifies summary information about local snapshot run across all objects. Nested schema for local_backup_info:
- Objects
[]Get
Backup Recovery Protection Group Runs Run Object - (List) Snapahot, replication, archival results for each object. Nested schema for objects:
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Origin
Cluster []GetIdentifiers Backup Recovery Protection Group Runs Run Origin Cluster Identifier - (List) Specifies the information about a cluster. Nested schema for origin_cluster_identifier:
- Origin
Protection stringGroup Id - (String) ProtectionGroupId to which this run belongs on the primary cluster if this run is a replication run.
- Original
Backup []GetInfos Backup Recovery Protection Group Runs Run Original Backup Info - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- Permissions
[]Get
Backup Recovery Protection Group Runs Run Permission - (List) Specifies the list of tenants that have permissions for this protection group run. Nested schema for permissions:
- Protection
Group stringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- Protection
Group float64Instance Id - (Integer) Protection Group instance Id. This field will be removed later.
- Protection
Group stringName - (String) Name of the Protection Group to which this run belongs.
- Replication
Infos []GetBackup Recovery Protection Group Runs Run Replication Info - (List) Specifies summary information about replication run. Nested schema for replication_info:
- archival
Infos List<GetBackup Recovery Protection Group Runs Run Archival Info> - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- cloud
Spin List<GetInfos Backup Recovery Protection Group Runs Run Cloud Spin Info> - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- environment String
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- externally
Triggered StringBackup Tag - (String) The tag of externally triggered backup job.
- has
Local BooleanSnapshot - (Boolean) Specifies whether the run has a local snapshot. For cloud retrieved runs there may not be local snapshots.
- id String
- (String) The tenant id.
- is
Cloud BooleanArchival Direct - (Boolean) Specifies whether the run is a CAD run if cloud archive direct feature is enabled. If this field is true, the primary backup copy will only be available at the given archived location.
- is
Local BooleanSnapshots Deleted - (Boolean) Specifies if snapshots for this run has been deleted.
- is
Replication BooleanRun - (Boolean) Specifies if this protection run is a replication run.
- local
Backup List<GetInfos Backup Recovery Protection Group Runs Run Local Backup Info> - (List) Specifies summary information about local snapshot run across all objects. Nested schema for local_backup_info:
- objects
List<Get
Backup Recovery Protection Group Runs Run Object> - (List) Snapahot, replication, archival results for each object. Nested schema for objects:
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- origin
Cluster List<GetIdentifiers Backup Recovery Protection Group Runs Run Origin Cluster Identifier> - (List) Specifies the information about a cluster. Nested schema for origin_cluster_identifier:
- origin
Protection StringGroup Id - (String) ProtectionGroupId to which this run belongs on the primary cluster if this run is a replication run.
- original
Backup List<GetInfos Backup Recovery Protection Group Runs Run Original Backup Info> - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- permissions
List<Get
Backup Recovery Protection Group Runs Run Permission> - (List) Specifies the list of tenants that have permissions for this protection group run. Nested schema for permissions:
- protection
Group StringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- protection
Group DoubleInstance Id - (Integer) Protection Group instance Id. This field will be removed later.
- protection
Group StringName - (String) Name of the Protection Group to which this run belongs.
- replication
Infos List<GetBackup Recovery Protection Group Runs Run Replication Info> - (List) Specifies summary information about replication run. Nested schema for replication_info:
- archival
Infos GetBackup Recovery Protection Group Runs Run Archival Info[] - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- cloud
Spin GetInfos Backup Recovery Protection Group Runs Run Cloud Spin Info[] - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- externally
Triggered stringBackup Tag - (String) The tag of externally triggered backup job.
- has
Local booleanSnapshot - (Boolean) Specifies whether the run has a local snapshot. For cloud retrieved runs there may not be local snapshots.
- id string
- (String) The tenant id.
- is
Cloud booleanArchival Direct - (Boolean) Specifies whether the run is a CAD run if cloud archive direct feature is enabled. If this field is true, the primary backup copy will only be available at the given archived location.
- is
Local booleanSnapshots Deleted - (Boolean) Specifies if snapshots for this run has been deleted.
- is
Replication booleanRun - (Boolean) Specifies if this protection run is a replication run.
- local
Backup GetInfos Backup Recovery Protection Group Runs Run Local Backup Info[] - (List) Specifies summary information about local snapshot run across all objects. Nested schema for local_backup_info:
- objects
Get
Backup Recovery Protection Group Runs Run Object[] - (List) Snapahot, replication, archival results for each object. Nested schema for objects:
- on
Legal booleanHold - (Boolean) Specifies the legal hold status for a replication target.
- origin
Cluster GetIdentifiers Backup Recovery Protection Group Runs Run Origin Cluster Identifier[] - (List) Specifies the information about a cluster. Nested schema for origin_cluster_identifier:
- origin
Protection stringGroup Id - (String) ProtectionGroupId to which this run belongs on the primary cluster if this run is a replication run.
- original
Backup GetInfos Backup Recovery Protection Group Runs Run Original Backup Info[] - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- permissions
Get
Backup Recovery Protection Group Runs Run Permission[] - (List) Specifies the list of tenants that have permissions for this protection group run. Nested schema for permissions:
- protection
Group stringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- protection
Group numberInstance Id - (Integer) Protection Group instance Id. This field will be removed later.
- protection
Group stringName - (String) Name of the Protection Group to which this run belongs.
- replication
Infos GetBackup Recovery Protection Group Runs Run Replication Info[] - (List) Specifies summary information about replication run. Nested schema for replication_info:
- archival_
infos Sequence[GetBackup Recovery Protection Group Runs Run Archival Info] - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- cloud_
spin_ Sequence[Getinfos Backup Recovery Protection Group Runs Run Cloud Spin Info] - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- environment str
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- externally_
triggered_ strbackup_ tag - (String) The tag of externally triggered backup job.
- has_
local_ boolsnapshot - (Boolean) Specifies whether the run has a local snapshot. For cloud retrieved runs there may not be local snapshots.
- id str
- (String) The tenant id.
- is_
cloud_ boolarchival_ direct - (Boolean) Specifies whether the run is a CAD run if cloud archive direct feature is enabled. If this field is true, the primary backup copy will only be available at the given archived location.
- is_
local_ boolsnapshots_ deleted - (Boolean) Specifies if snapshots for this run has been deleted.
- is_
replication_ boolrun - (Boolean) Specifies if this protection run is a replication run.
- local_
backup_ Sequence[Getinfos Backup Recovery Protection Group Runs Run Local Backup Info] - (List) Specifies summary information about local snapshot run across all objects. Nested schema for local_backup_info:
- objects
Sequence[Get
Backup Recovery Protection Group Runs Run Object] - (List) Snapahot, replication, archival results for each object. Nested schema for objects:
- on_
legal_ boolhold - (Boolean) Specifies the legal hold status for a replication target.
- origin_
cluster_ Sequence[Getidentifiers Backup Recovery Protection Group Runs Run Origin Cluster Identifier] - (List) Specifies the information about a cluster. Nested schema for origin_cluster_identifier:
- origin_
protection_ strgroup_ id - (String) ProtectionGroupId to which this run belongs on the primary cluster if this run is a replication run.
- original_
backup_ Sequence[Getinfos Backup Recovery Protection Group Runs Run Original Backup Info] - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- permissions
Sequence[Get
Backup Recovery Protection Group Runs Run Permission] - (List) Specifies the list of tenants that have permissions for this protection group run. Nested schema for permissions:
- protection_
group_ strid - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- protection_
group_ floatinstance_ id - (Integer) Protection Group instance Id. This field will be removed later.
- protection_
group_ strname - (String) Name of the Protection Group to which this run belongs.
- replication_
infos Sequence[GetBackup Recovery Protection Group Runs Run Replication Info] - (List) Specifies summary information about replication run. Nested schema for replication_info:
- archival
Infos List<Property Map> - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- cloud
Spin List<Property Map>Infos - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- environment String
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- externally
Triggered StringBackup Tag - (String) The tag of externally triggered backup job.
- has
Local BooleanSnapshot - (Boolean) Specifies whether the run has a local snapshot. For cloud retrieved runs there may not be local snapshots.
- id String
- (String) The tenant id.
- is
Cloud BooleanArchival Direct - (Boolean) Specifies whether the run is a CAD run if cloud archive direct feature is enabled. If this field is true, the primary backup copy will only be available at the given archived location.
- is
Local BooleanSnapshots Deleted - (Boolean) Specifies if snapshots for this run has been deleted.
- is
Replication BooleanRun - (Boolean) Specifies if this protection run is a replication run.
- local
Backup List<Property Map>Infos - (List) Specifies summary information about local snapshot run across all objects. Nested schema for local_backup_info:
- objects List<Property Map>
- (List) Snapahot, replication, archival results for each object. Nested schema for objects:
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- origin
Cluster List<Property Map>Identifiers - (List) Specifies the information about a cluster. Nested schema for origin_cluster_identifier:
- origin
Protection StringGroup Id - (String) ProtectionGroupId to which this run belongs on the primary cluster if this run is a replication run.
- original
Backup List<Property Map>Infos - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- permissions List<Property Map>
- (List) Specifies the list of tenants that have permissions for this protection group run. Nested schema for permissions:
- protection
Group StringId - Specifies a unique id of the Protection Group.
- Constraints: The value must match regular expression
/^\\d+:\\d+:\\d+$/
.
- Constraints: The value must match regular expression
- protection
Group NumberInstance Id - (Integer) Protection Group instance Id. This field will be removed later.
- protection
Group StringName - (String) Name of the Protection Group to which this run belongs.
- replication
Infos List<Property Map> - (List) Specifies summary information about replication run. Nested schema for replication_info:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfo
- Archival
Target List<GetResults Backup Recovery Protection Group Runs Run Archival Info Archival Target Result> - (List) Archival result for an archival target. Nested schema for archival_target_results:
- Archival
Target []GetResults Backup Recovery Protection Group Runs Run Archival Info Archival Target Result - (List) Archival result for an archival target. Nested schema for archival_target_results:
- archival
Target List<GetResults Backup Recovery Protection Group Runs Run Archival Info Archival Target Result> - (List) Archival result for an archival target. Nested schema for archival_target_results:
- archival
Target GetResults Backup Recovery Protection Group Runs Run Archival Info Archival Target Result[] - (List) Archival result for an archival target. Nested schema for archival_target_results:
- archival_
target_ Sequence[Getresults Backup Recovery Protection Group Runs Run Archival Info Archival Target Result] - (List) Archival result for an archival target. Nested schema for archival_target_results:
- archival
Target List<Property Map>Results - (List) Archival result for an archival target. Nested schema for archival_target_results:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResult
- Archival
Task stringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- Cancelled
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- Cancelled
Objects doubleCount - (Integer) Specifies the count of objects for which backup was cancelled.
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Failed
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- Failed
Objects doubleCount - (Integer) Specifies the count of objects for which backup failed.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Cad boolArchive - (Boolean) Whether this is CAD archive or not.
- Is
Forever boolIncremental - (Boolean) Whether this is forever incremental or not.
- Is
Incremental bool - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Is
Sla boolViolated - (Boolean) Indicated if SLA has been violated for this run.
- Message string
- (String) Message about the replication run.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Ownership
Context string - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queued
Time doubleUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- Run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Successful
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- Successful
Objects doubleCount - (Integer) Specifies the count of objects for which backup was successful.
- Target
Id double - (Integer) Specifies the archival target ID.
- Target
Name string - (String) Specifies the archival target name.
- Target
Type string - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- Tier
Settings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting> - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- Usage
Type string - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- Worm
Properties List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Worm Property> - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- Archival
Task stringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- Cancelled
App float64Objects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- Cancelled
Objects float64Count - (Integer) Specifies the count of objects for which backup was cancelled.
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Failed
App float64Objects Count - (Integer) Specifies the count of app objects for which backup failed.
- Failed
Objects float64Count - (Integer) Specifies the count of objects for which backup failed.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Cad boolArchive - (Boolean) Whether this is CAD archive or not.
- Is
Forever boolIncremental - (Boolean) Whether this is forever incremental or not.
- Is
Incremental bool - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Is
Sla boolViolated - (Boolean) Indicated if SLA has been violated for this run.
- Message string
- (String) Message about the replication run.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Ownership
Context string - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queued
Time float64Usecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- Run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Successful
App float64Objects Count - (Integer) Specifies the count of app objects for which backup was successful.
- Successful
Objects float64Count - (Integer) Specifies the count of objects for which backup was successful.
- Target
Id float64 - (Integer) Specifies the archival target ID.
- Target
Name string - (String) Specifies the archival target name.
- Target
Type string - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- Tier
Settings []GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- Usage
Type string - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- Worm
Properties []GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Worm Property - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- archival
Task StringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- cancelled
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- failed
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects DoubleCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Cad BooleanArchive - (Boolean) Whether this is CAD archive or not.
- is
Forever BooleanIncremental - (Boolean) Whether this is forever incremental or not.
- is
Incremental Boolean - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- is
Sla BooleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- message String
- (String) Message about the replication run.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- ownership
Context String - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queued
Time DoubleUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- run
Type String - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- snapshot
Id String - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was successful.
- target
Id Double - (Integer) Specifies the archival target ID.
- target
Name String - (String) Specifies the archival target name.
- target
Type String - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- tier
Settings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting> - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- usage
Type String - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- worm
Properties List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Worm Property> - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- archival
Task stringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- cancelled
App numberObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects numberCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- failed
App numberObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects numberCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task stringId - (String) Progress monitor task for indexing.
- is
Cad booleanArchive - (Boolean) Whether this is CAD archive or not.
- is
Forever booleanIncremental - (Boolean) Whether this is forever incremental or not.
- is
Incremental boolean - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- is
Manually booleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- is
Sla booleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- message string
- (String) Message about the replication run.
- on
Legal booleanHold - (Boolean) Specifies the legal hold status for a replication target.
- ownership
Context string - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- queued
Time numberUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task stringId - (String) Stats task id for local backup run.
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App numberObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects numberCount - (Integer) Specifies the count of objects for which backup was successful.
- target
Id number - (Integer) Specifies the archival target ID.
- target
Name string - (String) Specifies the archival target name.
- target
Type string - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- tier
Settings GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting[] - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- usage
Type string - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- worm
Properties GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Worm Property[] - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- archival_
task_ strid - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- cancelled_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was cancelled.
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- failed_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup failed.
- failed_
objects_ floatcount - (Integer) Specifies the count of objects for which backup failed.
- indexing_
task_ strid - (String) Progress monitor task for indexing.
- is_
cad_ boolarchive - (Boolean) Whether this is CAD archive or not.
- is_
forever_ boolincremental - (Boolean) Whether this is forever incremental or not.
- is_
incremental bool - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- is_
manually_ booldeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- is_
sla_ boolviolated - (Boolean) Indicated if SLA has been violated for this run.
- message str
- (String) Message about the replication run.
- on_
legal_ boolhold - (Boolean) Specifies the legal hold status for a replication target.
- ownership_
context str - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- queued_
time_ floatusecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- run_
type str - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- snapshot_
id str - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- stats_
task_ strid - (String) Stats task id for local backup run.
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup was successful.
- successful_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was successful.
- target_
id float - (Integer) Specifies the archival target ID.
- target_
name str - (String) Specifies the archival target name.
- target_
type str - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- tier_
settings Sequence[GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting] - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- usage_
type str - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- worm_
properties Sequence[GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Worm Property] - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- archival
Task StringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- cancelled
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects NumberCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- failed
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects NumberCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Cad BooleanArchive - (Boolean) Whether this is CAD archive or not.
- is
Forever BooleanIncremental - (Boolean) Whether this is forever incremental or not.
- is
Incremental Boolean - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- is
Sla BooleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- message String
- (String) Message about the replication run.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- ownership
Context String - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queued
Time NumberUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- run
Type String - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- snapshot
Id String - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects NumberCount - (Integer) Specifies the count of objects for which backup was successful.
- target
Id Number - (Integer) Specifies the archival target ID.
- target
Name String - (String) Specifies the archival target name.
- target
Type String - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- tier
Settings List<Property Map> - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- usage
Type String - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- worm
Properties List<Property Map> - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultStat
- Avg
Logical doubleTransfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- Backup
File doubleCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- Bytes
Read double - (Integer) Specifies total logical bytes read for creating the snapshot.
- File
Walk boolDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- Logical
Bytes doubleTransferred - (Integer) Specifies the total logical bytes transferred.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Physical
Bytes doubleTransferred - (Integer) Specifies the total physical bytes transferred.
- Total
File doubleCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- Avg
Logical float64Transfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- Backup
File float64Count - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- Bytes
Read float64 - (Integer) Specifies total logical bytes read for creating the snapshot.
- File
Walk boolDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- Logical
Bytes float64Transferred - (Integer) Specifies the total logical bytes transferred.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- Physical
Bytes float64Transferred - (Integer) Specifies the total physical bytes transferred.
- Total
File float64Count - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- avg
Logical DoubleTransfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- backup
File DoubleCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- bytes
Read Double - (Integer) Specifies total logical bytes read for creating the snapshot.
- file
Walk BooleanDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- logical
Bytes DoubleTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes DoubleTransferred - (Integer) Specifies the total physical bytes transferred.
- total
File DoubleCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- avg
Logical numberTransfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- backup
File numberCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- bytes
Read number - (Integer) Specifies total logical bytes read for creating the snapshot.
- file
Walk booleanDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- logical
Bytes numberTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes numberTransferred - (Integer) Specifies the total physical bytes transferred.
- total
File numberCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- avg_
logical_ floattransfer_ rate_ bps - (Integer) Specifies the average rate of transfer in bytes per second.
- backup_
file_ floatcount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- bytes_
read float - (Integer) Specifies total logical bytes read for creating the snapshot.
- file_
walk_ booldone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- logical_
bytes_ floattransferred - (Integer) Specifies the total logical bytes transferred.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- physical_
bytes_ floattransferred - (Integer) Specifies the total physical bytes transferred.
- total_
file_ floatcount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- avg
Logical NumberTransfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- backup
File NumberCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- bytes
Read Number - (Integer) Specifies total logical bytes read for creating the snapshot.
- file
Walk BooleanDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- logical
Bytes NumberTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes NumberTransferred - (Integer) Specifies the total physical bytes transferred.
- total
File NumberCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultTierSetting
- Aws
Tierings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering> - (List) Specifies aws tiers. Nested schema for aws_tiering:
- Azure
Tierings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering> - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- Cloud
Platform string - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- Current
Tier stringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Google
Tierings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering> - (List) Specifies Google tiers. Nested schema for google_tiering:
- Oracle
Tierings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering> - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- Aws
Tierings []GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering - (List) Specifies aws tiers. Nested schema for aws_tiering:
- Azure
Tierings []GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- Cloud
Platform string - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- Current
Tier stringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Google
Tierings []GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering - (List) Specifies Google tiers. Nested schema for google_tiering:
- Oracle
Tierings []GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws
Tierings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering> - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure
Tierings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering> - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- cloud
Platform String - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- current
Tier StringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- google
Tierings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering> - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle
Tierings List<GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering> - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws
Tierings GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering[] - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure
Tierings GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering[] - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- cloud
Platform string - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- current
Tier stringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- google
Tierings GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering[] - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle
Tierings GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering[] - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws_
tierings Sequence[GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering] - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure_
tierings Sequence[GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering] - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- cloud_
platform str - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- current_
tier_ strtype - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- google_
tierings Sequence[GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering] - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle_
tierings Sequence[GetBackup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering] - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws
Tierings List<Property Map> - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure
Tierings List<Property Map> - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- cloud
Platform String - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- current
Tier StringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- google
Tierings List<Property Map> - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle
Tierings List<Property Map> - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultTierSettingAwsTiering
- Tiers
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- Tiers
[]Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering Tier - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering Tier[] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Sequence[Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Aws Tiering Tier] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers List<Property Map>
- (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultTierSettingAwsTieringTier
- Move
After double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Move
After float64 - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move_
after float - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move_
after_ strunit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier_
type str - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultTierSettingAzureTiering
- Tiers
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- Tiers
[]Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering Tier - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering Tier[] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Sequence[Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Azure Tiering Tier] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers List<Property Map>
- (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultTierSettingAzureTieringTier
- Move
After double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Move
After float64 - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move_
after float - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move_
after_ strunit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier_
type str - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultTierSettingGoogleTiering
- Tiers
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- Tiers
[]Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering Tier - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering Tier[] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Sequence[Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Google Tiering Tier] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers List<Property Map>
- (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultTierSettingGoogleTieringTier
- Move
After double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Move
After float64 - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move_
after float - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move_
after_ strunit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier_
type str - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultTierSettingOracleTiering
- Tiers
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- Tiers
[]Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering Tier - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
List<Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering Tier[] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Sequence[Get
Backup Recovery Protection Group Runs Run Archival Info Archival Target Result Tier Setting Oracle Tiering Tier] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers List<Property Map>
- (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultTierSettingOracleTieringTier
- Move
After double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Move
After float64 - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move_
after float - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move_
after_ strunit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier_
type str - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunArchivalInfoArchivalTargetResultWormProperty
- Is
Archive boolWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- Worm
Expiry doubleTime Usecs - (Integer) Specifies the time at which the WORM protection expires.
- Worm
Non stringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
- Is
Archive boolWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- Worm
Expiry float64Time Usecs - (Integer) Specifies the time at which the WORM protection expires.
- Worm
Non stringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
- is
Archive BooleanWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- worm
Expiry DoubleTime Usecs - (Integer) Specifies the time at which the WORM protection expires.
- worm
Non StringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
- is
Archive booleanWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- worm
Expiry numberTime Usecs - (Integer) Specifies the time at which the WORM protection expires.
- worm
Non stringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
- is_
archive_ boolworm_ compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- worm_
expiry_ floattime_ usecs - (Integer) Specifies the time at which the WORM protection expires.
- worm_
non_ strcompliance_ reason - (String) Specifies reason of archive not being worm compliant.
- is
Archive BooleanWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- worm
Expiry NumberTime Usecs - (Integer) Specifies the time at which the WORM protection expires.
- worm
Non StringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
GetBackupRecoveryProtectionGroupRunsRunCloudSpinInfo
- Cloud
Spin List<GetTarget Results Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result> - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- Cloud
Spin []GetTarget Results Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- cloud
Spin List<GetTarget Results Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result> - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- cloud
Spin GetTarget Results Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result[] - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- cloud_
spin_ Sequence[Gettarget_ results Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result] - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- cloud
Spin List<Property Map>Target Results - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
GetBackupRecoveryProtectionGroupRunsRunCloudSpinInfoCloudSpinTargetResult
- Aws
Params List<GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param> - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- Azure
Params List<GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Azure Param> - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- Cloudspin
Task stringId - (String) Task ID for a CloudSpin protection run.
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Id double
- (String) The tenant id.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Message string
- (String) Message about the replication run.
- Name string
- (String) Specifies the name of the Azure Replication target.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Aws
Params []GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- Azure
Params []GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Azure Param - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- Cloudspin
Task stringId - (String) Task ID for a CloudSpin protection run.
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Id float64
- (String) The tenant id.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Message string
- (String) Message about the replication run.
- Name string
- (String) Specifies the name of the Azure Replication target.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Params List<GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param> - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- azure
Params List<GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Azure Param> - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- cloudspin
Task StringId - (String) Task ID for a CloudSpin protection run.
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- id Double
- (String) The tenant id.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message String
- (String) Message about the replication run.
- name String
- (String) Specifies the name of the Azure Replication target.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Params GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param[] - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- azure
Params GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Azure Param[] - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- cloudspin
Task stringId - (String) Task ID for a CloudSpin protection run.
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- id number
- (String) The tenant id.
- is
Manually booleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message string
- (String) Message about the replication run.
- name string
- (String) Specifies the name of the Azure Replication target.
- on
Legal booleanHold - (Boolean) Specifies the legal hold status for a replication target.
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws_
params Sequence[GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param] - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- azure_
params Sequence[GetBackup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Azure Param] - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- cloudspin_
task_ strid - (String) Task ID for a CloudSpin protection run.
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- id float
- (String) The tenant id.
- is_
manually_ booldeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message str
- (String) Message about the replication run.
- name str
- (String) Specifies the name of the Azure Replication target.
- on_
legal_ boolhold - (Boolean) Specifies the legal hold status for a replication target.
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Params List<Property Map> - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- azure
Params List<Property Map> - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- cloudspin
Task StringId - (String) Task ID for a CloudSpin protection run.
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- id Number
- (String) The tenant id.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message String
- (String) Message about the replication run.
- name String
- (String) Specifies the name of the Azure Replication target.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunCloudSpinInfoCloudSpinTargetResultAwsParam
- Custom
Tag List<GetLists Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List> - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- Region double
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Subnet
Id double - (Integer) Specifies id of the subnet within above VPC.
- Vpc
Id double - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- Custom
Tag []GetLists Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- Region float64
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Subnet
Id float64 - (Integer) Specifies id of the subnet within above VPC.
- Vpc
Id float64 - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- custom
Tag List<GetLists Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List> - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- region Double
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- subnet
Id Double - (Integer) Specifies id of the subnet within above VPC.
- vpc
Id Double - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- custom
Tag GetLists Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List[] - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- region number
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- subnet
Id number - (Integer) Specifies id of the subnet within above VPC.
- vpc
Id number - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- custom_
tag_ Sequence[Getlists Backup Recovery Protection Group Runs Run Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List] - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- region float
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- subnet_
id float - (Integer) Specifies id of the subnet within above VPC.
- vpc_
id float - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- custom
Tag List<Property Map>Lists - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- region Number
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- subnet
Id Number - (Integer) Specifies id of the subnet within above VPC.
- vpc
Id Number - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
GetBackupRecoveryProtectionGroupRunsRunCloudSpinInfoCloudSpinTargetResultAwsParamCustomTagList
GetBackupRecoveryProtectionGroupRunsRunCloudSpinInfoCloudSpinTargetResultAzureParam
- Availability
Set doubleId - (Integer) Specifies the availability set.
- Network
Resource doubleGroup Id - (Integer) Specifies id of the resource group for the selected virtual network.
- Resource
Group doubleId - (String) Specifies the Resource Group ID associated with the tenant.
- Storage
Account doubleId - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- Storage
Container doubleId - (Integer) Specifies id of the storage container within the above storage account.
- Storage
Resource doubleGroup Id - (Integer) Specifies id of the resource group for the selected storage account.
- Temp
Vm doubleResource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- Temp
Vm doubleStorage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- Temp
Vm doubleStorage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- Temp
Vm doubleSubnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- Temp
Vm doubleVirtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
- Availability
Set float64Id - (Integer) Specifies the availability set.
- Network
Resource float64Group Id - (Integer) Specifies id of the resource group for the selected virtual network.
- Resource
Group float64Id - (String) Specifies the Resource Group ID associated with the tenant.
- Storage
Account float64Id - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- Storage
Container float64Id - (Integer) Specifies id of the storage container within the above storage account.
- Storage
Resource float64Group Id - (Integer) Specifies id of the resource group for the selected storage account.
- Temp
Vm float64Resource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- Temp
Vm float64Storage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- Temp
Vm float64Storage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- Temp
Vm float64Subnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- Temp
Vm float64Virtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
- availability
Set DoubleId - (Integer) Specifies the availability set.
- network
Resource DoubleGroup Id - (Integer) Specifies id of the resource group for the selected virtual network.
- resource
Group DoubleId - (String) Specifies the Resource Group ID associated with the tenant.
- storage
Account DoubleId - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- storage
Container DoubleId - (Integer) Specifies id of the storage container within the above storage account.
- storage
Resource DoubleGroup Id - (Integer) Specifies id of the resource group for the selected storage account.
- temp
Vm DoubleResource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- temp
Vm DoubleStorage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- temp
Vm DoubleStorage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- temp
Vm DoubleSubnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- temp
Vm DoubleVirtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
- availability
Set numberId - (Integer) Specifies the availability set.
- network
Resource numberGroup Id - (Integer) Specifies id of the resource group for the selected virtual network.
- resource
Group numberId - (String) Specifies the Resource Group ID associated with the tenant.
- storage
Account numberId - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- storage
Container numberId - (Integer) Specifies id of the storage container within the above storage account.
- storage
Resource numberGroup Id - (Integer) Specifies id of the resource group for the selected storage account.
- temp
Vm numberResource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- temp
Vm numberStorage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- temp
Vm numberStorage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- temp
Vm numberSubnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- temp
Vm numberVirtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
- availability_
set_ floatid - (Integer) Specifies the availability set.
- network_
resource_ floatgroup_ id - (Integer) Specifies id of the resource group for the selected virtual network.
- resource_
group_ floatid - (String) Specifies the Resource Group ID associated with the tenant.
- storage_
account_ floatid - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- storage_
container_ floatid - (Integer) Specifies id of the storage container within the above storage account.
- storage_
resource_ floatgroup_ id - (Integer) Specifies id of the resource group for the selected storage account.
- temp_
vm_ floatresource_ group_ id - (Integer) Specifies id of the temporary Azure resource group.
- temp_
vm_ floatstorage_ account_ id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- temp_
vm_ floatstorage_ container_ id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- temp_
vm_ floatsubnet_ id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- temp_
vm_ floatvirtual_ network_ id - (Integer) Specifies Id of the temporary VM Virtual Network.
- availability
Set NumberId - (Integer) Specifies the availability set.
- network
Resource NumberGroup Id - (Integer) Specifies id of the resource group for the selected virtual network.
- resource
Group NumberId - (String) Specifies the Resource Group ID associated with the tenant.
- storage
Account NumberId - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- storage
Container NumberId - (Integer) Specifies id of the storage container within the above storage account.
- storage
Resource NumberGroup Id - (Integer) Specifies id of the resource group for the selected storage account.
- temp
Vm NumberResource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- temp
Vm NumberStorage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- temp
Vm NumberStorage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- temp
Vm NumberSubnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- temp
Vm NumberVirtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
GetBackupRecoveryProtectionGroupRunsRunCloudSpinInfoCloudSpinTargetResultDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunCloudSpinInfoCloudSpinTargetResultStat
- Physical
Bytes doubleTransferred - (Integer) Specifies the total physical bytes transferred.
- Physical
Bytes float64Transferred - (Integer) Specifies the total physical bytes transferred.
- physical
Bytes DoubleTransferred - (Integer) Specifies the total physical bytes transferred.
- physical
Bytes numberTransferred - (Integer) Specifies the total physical bytes transferred.
- physical_
bytes_ floattransferred - (Integer) Specifies the total physical bytes transferred.
- physical
Bytes NumberTransferred - (Integer) Specifies the total physical bytes transferred.
GetBackupRecoveryProtectionGroupRunsRunLocalBackupInfo
- Cancelled
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- Cancelled
Objects doubleCount - (Integer) Specifies the count of objects for which backup was cancelled.
- Data
Lock string - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Local Backup Info Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Failed
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- Failed
Objects doubleCount - (Integer) Specifies the count of objects for which backup failed.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Sla boolViolated - (Boolean) Indicated if SLA has been violated for this run.
- Local
Snapshot List<GetStats Backup Recovery Protection Group Runs Run Local Backup Info Local Snapshot Stat> - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- Local
Task stringId - (String) Task ID for a local protection run.
- Messages List<string>
- (List) Message about the backup run.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Skipped
Objects doubleCount - (Integer) Specifies the count of objects for which backup was skipped.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Successful
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- Successful
Objects doubleCount - (Integer) Specifies the count of objects for which backup was successful.
- Cancelled
App float64Objects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- Cancelled
Objects float64Count - (Integer) Specifies the count of objects for which backup was cancelled.
- Data
Lock string - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Local Backup Info Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Failed
App float64Objects Count - (Integer) Specifies the count of app objects for which backup failed.
- Failed
Objects float64Count - (Integer) Specifies the count of objects for which backup failed.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Sla boolViolated - (Boolean) Indicated if SLA has been violated for this run.
- Local
Snapshot []GetStats Backup Recovery Protection Group Runs Run Local Backup Info Local Snapshot Stat - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- Local
Task stringId - (String) Task ID for a local protection run.
- Messages []string
- (List) Message about the backup run.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Skipped
Objects float64Count - (Integer) Specifies the count of objects for which backup was skipped.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Successful
App float64Objects Count - (Integer) Specifies the count of app objects for which backup was successful.
- Successful
Objects float64Count - (Integer) Specifies the count of objects for which backup was successful.
- cancelled
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock String - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Local Backup Info Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- failed
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects DoubleCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Sla BooleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- local
Snapshot List<GetStats Backup Recovery Protection Group Runs Run Local Backup Info Local Snapshot Stat> - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- local
Task StringId - (String) Task ID for a local protection run.
- messages List<String>
- (List) Message about the backup run.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- run
Type String - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- skipped
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was skipped.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was successful.
- cancelled
App numberObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects numberCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock string - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Local Backup Info Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- failed
App numberObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects numberCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task stringId - (String) Progress monitor task for indexing.
- is
Sla booleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- local
Snapshot GetStats Backup Recovery Protection Group Runs Run Local Backup Info Local Snapshot Stat[] - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- local
Task stringId - (String) Task ID for a local protection run.
- messages string[]
- (List) Message about the backup run.
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- skipped
Objects numberCount - (Integer) Specifies the count of objects for which backup was skipped.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Task stringId - (String) Stats task id for local backup run.
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App numberObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects numberCount - (Integer) Specifies the count of objects for which backup was successful.
- cancelled_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was cancelled.
- data_
lock str - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Local Backup Info Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- failed_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup failed.
- failed_
objects_ floatcount - (Integer) Specifies the count of objects for which backup failed.
- indexing_
task_ strid - (String) Progress monitor task for indexing.
- is_
sla_ boolviolated - (Boolean) Indicated if SLA has been violated for this run.
- local_
snapshot_ Sequence[Getstats Backup Recovery Protection Group Runs Run Local Backup Info Local Snapshot Stat] - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- local_
task_ strid - (String) Task ID for a local protection run.
- messages Sequence[str]
- (List) Message about the backup run.
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- run_
type str - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- skipped_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was skipped.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats_
task_ strid - (String) Stats task id for local backup run.
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup was successful.
- successful_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was successful.
- cancelled
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects NumberCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock String - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- failed
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects NumberCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Sla BooleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- local
Snapshot List<Property Map>Stats - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- local
Task StringId - (String) Task ID for a local protection run.
- messages List<String>
- (List) Message about the backup run.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- run
Type String - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- skipped
Objects NumberCount - (Integer) Specifies the count of objects for which backup was skipped.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects NumberCount - (Integer) Specifies the count of objects for which backup was successful.
GetBackupRecoveryProtectionGroupRunsRunLocalBackupInfoDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunLocalBackupInfoLocalSnapshotStat
- Bytes
Read double - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written double - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Bytes
Read float64 - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written float64 - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Double - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Double - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- bytes_
read float - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes_
written float - (Integer) Specifies total size of data in bytes written after taking backup.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
GetBackupRecoveryProtectionGroupRunsRunObject
- Archival
Infos List<GetBackup Recovery Protection Group Runs Run Object Archival Info> - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- Cloud
Spin List<GetInfos Backup Recovery Protection Group Runs Run Object Cloud Spin Info> - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- Local
Snapshot List<GetInfos Backup Recovery Protection Group Runs Run Object Local Snapshot Info> - (List) Specifies information about backup run for an object. Nested schema for local_snapshot_info:
- Objects
List<Get
Backup Recovery Protection Group Runs Run Object Object> - (List) Specifies the Object Summary. Nested schema for object:
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Original
Backup List<GetInfos Backup Recovery Protection Group Runs Run Object Original Backup Info> - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- Replication
Infos List<GetBackup Recovery Protection Group Runs Run Object Replication Info> - (List) Specifies summary information about replication run. Nested schema for replication_info:
- Archival
Infos []GetBackup Recovery Protection Group Runs Run Object Archival Info - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- Cloud
Spin []GetInfos Backup Recovery Protection Group Runs Run Object Cloud Spin Info - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- Local
Snapshot []GetInfos Backup Recovery Protection Group Runs Run Object Local Snapshot Info - (List) Specifies information about backup run for an object. Nested schema for local_snapshot_info:
- Objects
[]Get
Backup Recovery Protection Group Runs Run Object Object - (List) Specifies the Object Summary. Nested schema for object:
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Original
Backup []GetInfos Backup Recovery Protection Group Runs Run Object Original Backup Info - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- Replication
Infos []GetBackup Recovery Protection Group Runs Run Object Replication Info - (List) Specifies summary information about replication run. Nested schema for replication_info:
- archival
Infos List<GetBackup Recovery Protection Group Runs Run Object Archival Info> - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- cloud
Spin List<GetInfos Backup Recovery Protection Group Runs Run Object Cloud Spin Info> - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- local
Snapshot List<GetInfos Backup Recovery Protection Group Runs Run Object Local Snapshot Info> - (List) Specifies information about backup run for an object. Nested schema for local_snapshot_info:
- objects
List<Get
Backup Recovery Protection Group Runs Run Object Object> - (List) Specifies the Object Summary. Nested schema for object:
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- original
Backup List<GetInfos Backup Recovery Protection Group Runs Run Object Original Backup Info> - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- replication
Infos List<GetBackup Recovery Protection Group Runs Run Object Replication Info> - (List) Specifies summary information about replication run. Nested schema for replication_info:
- archival
Infos GetBackup Recovery Protection Group Runs Run Object Archival Info[] - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- cloud
Spin GetInfos Backup Recovery Protection Group Runs Run Object Cloud Spin Info[] - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- local
Snapshot GetInfos Backup Recovery Protection Group Runs Run Object Local Snapshot Info[] - (List) Specifies information about backup run for an object. Nested schema for local_snapshot_info:
- objects
Get
Backup Recovery Protection Group Runs Run Object Object[] - (List) Specifies the Object Summary. Nested schema for object:
- on
Legal booleanHold - (Boolean) Specifies the legal hold status for a replication target.
- original
Backup GetInfos Backup Recovery Protection Group Runs Run Object Original Backup Info[] - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- replication
Infos GetBackup Recovery Protection Group Runs Run Object Replication Info[] - (List) Specifies summary information about replication run. Nested schema for replication_info:
- archival_
infos Sequence[GetBackup Recovery Protection Group Runs Run Object Archival Info] - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- cloud_
spin_ Sequence[Getinfos Backup Recovery Protection Group Runs Run Object Cloud Spin Info] - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- local_
snapshot_ Sequence[Getinfos Backup Recovery Protection Group Runs Run Object Local Snapshot Info] - (List) Specifies information about backup run for an object. Nested schema for local_snapshot_info:
- objects
Sequence[Get
Backup Recovery Protection Group Runs Run Object Object] - (List) Specifies the Object Summary. Nested schema for object:
- on_
legal_ boolhold - (Boolean) Specifies the legal hold status for a replication target.
- original_
backup_ Sequence[Getinfos Backup Recovery Protection Group Runs Run Object Original Backup Info] - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- replication_
infos Sequence[GetBackup Recovery Protection Group Runs Run Object Replication Info] - (List) Specifies summary information about replication run. Nested schema for replication_info:
- archival
Infos List<Property Map> - (List) Specifies information about archival run for an object. Nested schema for archival_info:
- cloud
Spin List<Property Map>Infos - (List) Specifies information about Cloud Spin run for an object. Nested schema for cloud_spin_info:
- local
Snapshot List<Property Map>Infos - (List) Specifies information about backup run for an object. Nested schema for local_snapshot_info:
- objects List<Property Map>
- (List) Specifies the Object Summary. Nested schema for object:
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- original
Backup List<Property Map>Infos - (List) Specifies summary information about local snapshot run across all objects. Nested schema for original_backup_info:
- replication
Infos List<Property Map> - (List) Specifies summary information about replication run. Nested schema for replication_info:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfo
- Archival
Target List<GetResults Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result> - (List) Archival result for an archival target. Nested schema for archival_target_results:
- Archival
Target []GetResults Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result - (List) Archival result for an archival target. Nested schema for archival_target_results:
- archival
Target List<GetResults Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result> - (List) Archival result for an archival target. Nested schema for archival_target_results:
- archival
Target GetResults Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result[] - (List) Archival result for an archival target. Nested schema for archival_target_results:
- archival_
target_ Sequence[Getresults Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result] - (List) Archival result for an archival target. Nested schema for archival_target_results:
- archival
Target List<Property Map>Results - (List) Archival result for an archival target. Nested schema for archival_target_results:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResult
- Archival
Task stringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- Cancelled
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- Cancelled
Objects doubleCount - (Integer) Specifies the count of objects for which backup was cancelled.
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Failed
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- Failed
Objects doubleCount - (Integer) Specifies the count of objects for which backup failed.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Cad boolArchive - (Boolean) Whether this is CAD archive or not.
- Is
Forever boolIncremental - (Boolean) Whether this is forever incremental or not.
- Is
Incremental bool - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Is
Sla boolViolated - (Boolean) Indicated if SLA has been violated for this run.
- Message string
- (String) Message about the replication run.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Ownership
Context string - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queued
Time doubleUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- Run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Successful
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- Successful
Objects doubleCount - (Integer) Specifies the count of objects for which backup was successful.
- Target
Id double - (Integer) Specifies the archival target ID.
- Target
Name string - (String) Specifies the archival target name.
- Target
Type string - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- Tier
Settings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting> - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- Usage
Type string - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- Worm
Properties List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Worm Property> - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- Archival
Task stringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- Cancelled
App float64Objects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- Cancelled
Objects float64Count - (Integer) Specifies the count of objects for which backup was cancelled.
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Failed
App float64Objects Count - (Integer) Specifies the count of app objects for which backup failed.
- Failed
Objects float64Count - (Integer) Specifies the count of objects for which backup failed.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Cad boolArchive - (Boolean) Whether this is CAD archive or not.
- Is
Forever boolIncremental - (Boolean) Whether this is forever incremental or not.
- Is
Incremental bool - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Is
Sla boolViolated - (Boolean) Indicated if SLA has been violated for this run.
- Message string
- (String) Message about the replication run.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Ownership
Context string - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queued
Time float64Usecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- Run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Successful
App float64Objects Count - (Integer) Specifies the count of app objects for which backup was successful.
- Successful
Objects float64Count - (Integer) Specifies the count of objects for which backup was successful.
- Target
Id float64 - (Integer) Specifies the archival target ID.
- Target
Name string - (String) Specifies the archival target name.
- Target
Type string - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- Tier
Settings []GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- Usage
Type string - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- Worm
Properties []GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Worm Property - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- archival
Task StringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- cancelled
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- failed
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects DoubleCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Cad BooleanArchive - (Boolean) Whether this is CAD archive or not.
- is
Forever BooleanIncremental - (Boolean) Whether this is forever incremental or not.
- is
Incremental Boolean - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- is
Sla BooleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- message String
- (String) Message about the replication run.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- ownership
Context String - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queued
Time DoubleUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- run
Type String - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- snapshot
Id String - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was successful.
- target
Id Double - (Integer) Specifies the archival target ID.
- target
Name String - (String) Specifies the archival target name.
- target
Type String - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- tier
Settings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting> - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- usage
Type String - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- worm
Properties List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Worm Property> - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- archival
Task stringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- cancelled
App numberObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects numberCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- failed
App numberObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects numberCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task stringId - (String) Progress monitor task for indexing.
- is
Cad booleanArchive - (Boolean) Whether this is CAD archive or not.
- is
Forever booleanIncremental - (Boolean) Whether this is forever incremental or not.
- is
Incremental boolean - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- is
Manually booleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- is
Sla booleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- message string
- (String) Message about the replication run.
- on
Legal booleanHold - (Boolean) Specifies the legal hold status for a replication target.
- ownership
Context string - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- queued
Time numberUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task stringId - (String) Stats task id for local backup run.
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App numberObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects numberCount - (Integer) Specifies the count of objects for which backup was successful.
- target
Id number - (Integer) Specifies the archival target ID.
- target
Name string - (String) Specifies the archival target name.
- target
Type string - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- tier
Settings GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting[] - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- usage
Type string - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- worm
Properties GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Worm Property[] - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- archival_
task_ strid - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- cancelled_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was cancelled.
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- failed_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup failed.
- failed_
objects_ floatcount - (Integer) Specifies the count of objects for which backup failed.
- indexing_
task_ strid - (String) Progress monitor task for indexing.
- is_
cad_ boolarchive - (Boolean) Whether this is CAD archive or not.
- is_
forever_ boolincremental - (Boolean) Whether this is forever incremental or not.
- is_
incremental bool - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- is_
manually_ booldeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- is_
sla_ boolviolated - (Boolean) Indicated if SLA has been violated for this run.
- message str
- (String) Message about the replication run.
- on_
legal_ boolhold - (Boolean) Specifies the legal hold status for a replication target.
- ownership_
context str - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- queued_
time_ floatusecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- run_
type str - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- snapshot_
id str - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- stats_
task_ strid - (String) Stats task id for local backup run.
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup was successful.
- successful_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was successful.
- target_
id float - (Integer) Specifies the archival target ID.
- target_
name str - (String) Specifies the archival target name.
- target_
type str - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- tier_
settings Sequence[GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting] - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- usage_
type str - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- worm_
properties Sequence[GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Worm Property] - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
- archival
Task StringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- cancelled
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects NumberCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- failed
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects NumberCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Cad BooleanArchive - (Boolean) Whether this is CAD archive or not.
- is
Forever BooleanIncremental - (Boolean) Whether this is forever incremental or not.
- is
Incremental Boolean - (Boolean) Whether this is an incremental archive. If set to true, this is an incremental archive, otherwise this is a full archive.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- is
Sla BooleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- message String
- (String) Message about the replication run.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- ownership
Context String - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queued
Time NumberUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- run
Type String - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- snapshot
Id String - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects NumberCount - (Integer) Specifies the count of objects for which backup was successful.
- target
Id Number - (Integer) Specifies the archival target ID.
- target
Name String - (String) Specifies the archival target name.
- target
Type String - (String) Specifies the archival target type.
- Constraints: Allowable values are:
Tape
,Cloud
,Nas
.
- Constraints: Allowable values are:
- tier
Settings List<Property Map> - (List) Specifies the tier info for archival. Nested schema for tier_settings:
- usage
Type String - (String) Specifies the usage type for the target.
- Constraints: Allowable values are:
Archival
,Tiering
,Rpaas
.
- Constraints: Allowable values are:
- worm
Properties List<Property Map> - (List) Specifies the WORM related properties for this archive. Nested schema for worm_properties:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultStat
- Avg
Logical doubleTransfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- Backup
File doubleCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- Bytes
Read double - (Integer) Specifies total logical bytes read for creating the snapshot.
- File
Walk boolDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- Logical
Bytes doubleTransferred - (Integer) Specifies the total logical bytes transferred.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Physical
Bytes doubleTransferred - (Integer) Specifies the total physical bytes transferred.
- Total
File doubleCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- Avg
Logical float64Transfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- Backup
File float64Count - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- Bytes
Read float64 - (Integer) Specifies total logical bytes read for creating the snapshot.
- File
Walk boolDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- Logical
Bytes float64Transferred - (Integer) Specifies the total logical bytes transferred.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- Physical
Bytes float64Transferred - (Integer) Specifies the total physical bytes transferred.
- Total
File float64Count - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- avg
Logical DoubleTransfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- backup
File DoubleCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- bytes
Read Double - (Integer) Specifies total logical bytes read for creating the snapshot.
- file
Walk BooleanDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- logical
Bytes DoubleTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes DoubleTransferred - (Integer) Specifies the total physical bytes transferred.
- total
File DoubleCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- avg
Logical numberTransfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- backup
File numberCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- bytes
Read number - (Integer) Specifies total logical bytes read for creating the snapshot.
- file
Walk booleanDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- logical
Bytes numberTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes numberTransferred - (Integer) Specifies the total physical bytes transferred.
- total
File numberCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- avg_
logical_ floattransfer_ rate_ bps - (Integer) Specifies the average rate of transfer in bytes per second.
- backup_
file_ floatcount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- bytes_
read float - (Integer) Specifies total logical bytes read for creating the snapshot.
- file_
walk_ booldone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- logical_
bytes_ floattransferred - (Integer) Specifies the total logical bytes transferred.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- physical_
bytes_ floattransferred - (Integer) Specifies the total physical bytes transferred.
- total_
file_ floatcount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- avg
Logical NumberTransfer Rate Bps - (Integer) Specifies the average rate of transfer in bytes per second.
- backup
File NumberCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- bytes
Read Number - (Integer) Specifies total logical bytes read for creating the snapshot.
- file
Walk BooleanDone - (Boolean) Specifies whether the file system walk is done. Only applicable to file based backups.
- logical
Bytes NumberTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes NumberTransferred - (Integer) Specifies the total physical bytes transferred.
- total
File NumberCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultTierSetting
- Aws
Tierings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering> - (List) Specifies aws tiers. Nested schema for aws_tiering:
- Azure
Tierings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering> - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- Cloud
Platform string - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- Current
Tier stringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Google
Tierings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering> - (List) Specifies Google tiers. Nested schema for google_tiering:
- Oracle
Tierings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering> - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- Aws
Tierings []GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering - (List) Specifies aws tiers. Nested schema for aws_tiering:
- Azure
Tierings []GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- Cloud
Platform string - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- Current
Tier stringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Google
Tierings []GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering - (List) Specifies Google tiers. Nested schema for google_tiering:
- Oracle
Tierings []GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws
Tierings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering> - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure
Tierings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering> - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- cloud
Platform String - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- current
Tier StringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- google
Tierings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering> - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle
Tierings List<GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering> - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws
Tierings GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering[] - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure
Tierings GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering[] - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- cloud
Platform string - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- current
Tier stringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- google
Tierings GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering[] - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle
Tierings GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering[] - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws_
tierings Sequence[GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering] - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure_
tierings Sequence[GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering] - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- cloud_
platform str - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- current_
tier_ strtype - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- google_
tierings Sequence[GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering] - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle_
tierings Sequence[GetBackup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering] - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws
Tierings List<Property Map> - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure
Tierings List<Property Map> - (List) Specifies Azure tiers. Nested schema for azure_tiering:
- cloud
Platform String - (String) Specifies the cloud platform to enable tiering.
- Constraints: Allowable values are:
AWS
,Azure
,Oracle
,Google
.
- Constraints: Allowable values are:
- current
Tier StringType - (String) Specifies the type of the current tier where the snapshot resides. This will be specified if the run is a CAD run.
- Constraints: Allowable values are:
kAmazonS3Standard
,kAmazonS3StandardIA
,kAmazonS3OneZoneIA
,kAmazonS3IntelligentTiering
,kAmazonS3Glacier
,kAmazonS3GlacierDeepArchive
,kAzureTierHot
,kAzureTierCool
,kAzureTierArchive
,kGoogleStandard
,kGoogleRegional
,kGoogleMultiRegional
,kGoogleNearline
,kGoogleColdline
,kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- google
Tierings List<Property Map> - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle
Tierings List<Property Map> - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultTierSettingAwsTiering
- Tiers
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- Tiers
[]Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering Tier - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering Tier[] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Sequence[Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Aws Tiering Tier] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers List<Property Map>
- (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultTierSettingAwsTieringTier
- Move
After double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Move
After float64 - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move_
after float - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move_
after_ strunit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier_
type str - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultTierSettingAzureTiering
- Tiers
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- Tiers
[]Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering Tier - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering Tier[] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Sequence[Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Azure Tiering Tier] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers List<Property Map>
- (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultTierSettingAzureTieringTier
- Move
After double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Move
After float64 - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move_
after float - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move_
after_ strunit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier_
type str - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultTierSettingGoogleTiering
- Tiers
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- Tiers
[]Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering Tier - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering Tier[] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Sequence[Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Google Tiering Tier] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers List<Property Map>
- (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultTierSettingGoogleTieringTier
- Move
After double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Move
After float64 - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move_
after float - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move_
after_ strunit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier_
type str - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultTierSettingOracleTiering
- Tiers
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- Tiers
[]Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering Tier - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
List<Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering Tier> - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering Tier[] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers
Sequence[Get
Backup Recovery Protection Group Runs Run Object Archival Info Archival Target Result Tier Setting Oracle Tiering Tier] - (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
- tiers List<Property Map>
- (List) Specifies the tiers that are used to move the archived backup from current tier to next tier. The order of the tiers determines which tier will be used next for moving the archived backup. The first tier input should always be default tier where backup will be acrhived. Each tier specifies how much time after the backup will be moved to next tier from the current tier. Nested schema for tiers:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultTierSettingOracleTieringTier
- Move
After double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- Move
After float64 - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- Move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- Tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Double - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After stringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type string - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move_
after float - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move_
after_ strunit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier_
type str - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
- move
After Number - (Integer) Specifies the time period after which the backup will be moved from current tier to next tier.
- move
After StringUnit - (String) Specifies the unit for moving the data from current tier to next tier. This unit will be a base unit for the 'moveAfter' field specified below.
- Constraints: Allowable values are:
Days
,Weeks
,Months
,Years
.
- Constraints: Allowable values are:
- tier
Type String - (String) Specifies the Oracle tier types.
- Constraints: Allowable values are:
kOracleTierStandard
,kOracleTierArchive
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectArchivalInfoArchivalTargetResultWormProperty
- Is
Archive boolWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- Worm
Expiry doubleTime Usecs - (Integer) Specifies the time at which the WORM protection expires.
- Worm
Non stringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
- Is
Archive boolWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- Worm
Expiry float64Time Usecs - (Integer) Specifies the time at which the WORM protection expires.
- Worm
Non stringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
- is
Archive BooleanWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- worm
Expiry DoubleTime Usecs - (Integer) Specifies the time at which the WORM protection expires.
- worm
Non StringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
- is
Archive booleanWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- worm
Expiry numberTime Usecs - (Integer) Specifies the time at which the WORM protection expires.
- worm
Non stringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
- is_
archive_ boolworm_ compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- worm_
expiry_ floattime_ usecs - (Integer) Specifies the time at which the WORM protection expires.
- worm_
non_ strcompliance_ reason - (String) Specifies reason of archive not being worm compliant.
- is
Archive BooleanWorm Compliant - (Boolean) Specifies whether this archive run is WORM compliant.
- worm
Expiry NumberTime Usecs - (Integer) Specifies the time at which the WORM protection expires.
- worm
Non StringCompliance Reason - (String) Specifies reason of archive not being worm compliant.
GetBackupRecoveryProtectionGroupRunsRunObjectCloudSpinInfo
- Cloud
Spin List<GetTarget Results Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result> - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- Cloud
Spin []GetTarget Results Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- cloud
Spin List<GetTarget Results Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result> - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- cloud
Spin GetTarget Results Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result[] - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- cloud_
spin_ Sequence[Gettarget_ results Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result] - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
- cloud
Spin List<Property Map>Target Results - (List) Cloud Spin result for a target. Nested schema for cloud_spin_target_results:
GetBackupRecoveryProtectionGroupRunsRunObjectCloudSpinInfoCloudSpinTargetResult
- Aws
Params List<GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param> - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- Azure
Params List<GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Azure Param> - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- Cloudspin
Task stringId - (String) Task ID for a CloudSpin protection run.
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Id double
- (String) The tenant id.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Message string
- (String) Message about the replication run.
- Name string
- (String) Specifies the name of the Azure Replication target.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Aws
Params []GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- Azure
Params []GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Azure Param - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- Cloudspin
Task stringId - (String) Task ID for a CloudSpin protection run.
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Id float64
- (String) The tenant id.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Message string
- (String) Message about the replication run.
- Name string
- (String) Specifies the name of the Azure Replication target.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Params List<GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param> - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- azure
Params List<GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Azure Param> - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- cloudspin
Task StringId - (String) Task ID for a CloudSpin protection run.
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- id Double
- (String) The tenant id.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message String
- (String) Message about the replication run.
- name String
- (String) Specifies the name of the Azure Replication target.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Params GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param[] - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- azure
Params GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Azure Param[] - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- cloudspin
Task stringId - (String) Task ID for a CloudSpin protection run.
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- id number
- (String) The tenant id.
- is
Manually booleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message string
- (String) Message about the replication run.
- name string
- (String) Specifies the name of the Azure Replication target.
- on
Legal booleanHold - (Boolean) Specifies the legal hold status for a replication target.
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws_
params Sequence[GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param] - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- azure_
params Sequence[GetBackup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Azure Param] - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- cloudspin_
task_ strid - (String) Task ID for a CloudSpin protection run.
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- id float
- (String) The tenant id.
- is_
manually_ booldeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message str
- (String) Message about the replication run.
- name str
- (String) Specifies the name of the Azure Replication target.
- on_
legal_ boolhold - (Boolean) Specifies the legal hold status for a replication target.
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Params List<Property Map> - (List) Specifies various resources when converting and deploying a VM to AWS. Nested schema for aws_params:
- azure
Params List<Property Map> - (List) Specifies various resources when converting and deploying a VM to Azure. Nested schema for azure_params:
- cloudspin
Task StringId - (String) Task ID for a CloudSpin protection run.
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- id Number
- (String) The tenant id.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message String
- (String) Message about the replication run.
- name String
- (String) Specifies the name of the Azure Replication target.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectCloudSpinInfoCloudSpinTargetResultAwsParam
- Custom
Tag List<GetLists Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List> - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- Region double
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Subnet
Id double - (Integer) Specifies id of the subnet within above VPC.
- Vpc
Id double - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- Custom
Tag []GetLists Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- Region float64
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Subnet
Id float64 - (Integer) Specifies id of the subnet within above VPC.
- Vpc
Id float64 - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- custom
Tag List<GetLists Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List> - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- region Double
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- subnet
Id Double - (Integer) Specifies id of the subnet within above VPC.
- vpc
Id Double - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- custom
Tag GetLists Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List[] - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- region number
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- subnet
Id number - (Integer) Specifies id of the subnet within above VPC.
- vpc
Id number - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- custom_
tag_ Sequence[Getlists Backup Recovery Protection Group Runs Run Object Cloud Spin Info Cloud Spin Target Result Aws Param Custom Tag List] - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- region float
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- subnet_
id float - (Integer) Specifies id of the subnet within above VPC.
- vpc_
id float - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
- custom
Tag List<Property Map>Lists - (List) Specifies tags of various resources when converting and deploying a VM to AWS. Nested schema for custom_tag_list:
- region Number
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- subnet
Id Number - (Integer) Specifies id of the subnet within above VPC.
- vpc
Id Number - (Integer) Specifies id of the Virtual Private Cloud to chose for the instance type.
GetBackupRecoveryProtectionGroupRunsRunObjectCloudSpinInfoCloudSpinTargetResultAwsParamCustomTagList
GetBackupRecoveryProtectionGroupRunsRunObjectCloudSpinInfoCloudSpinTargetResultAzureParam
- Availability
Set doubleId - (Integer) Specifies the availability set.
- Network
Resource doubleGroup Id - (Integer) Specifies id of the resource group for the selected virtual network.
- Resource
Group doubleId - (String) Specifies the Resource Group ID associated with the tenant.
- Storage
Account doubleId - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- Storage
Container doubleId - (Integer) Specifies id of the storage container within the above storage account.
- Storage
Resource doubleGroup Id - (Integer) Specifies id of the resource group for the selected storage account.
- Temp
Vm doubleResource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- Temp
Vm doubleStorage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- Temp
Vm doubleStorage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- Temp
Vm doubleSubnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- Temp
Vm doubleVirtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
- Availability
Set float64Id - (Integer) Specifies the availability set.
- Network
Resource float64Group Id - (Integer) Specifies id of the resource group for the selected virtual network.
- Resource
Group float64Id - (String) Specifies the Resource Group ID associated with the tenant.
- Storage
Account float64Id - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- Storage
Container float64Id - (Integer) Specifies id of the storage container within the above storage account.
- Storage
Resource float64Group Id - (Integer) Specifies id of the resource group for the selected storage account.
- Temp
Vm float64Resource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- Temp
Vm float64Storage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- Temp
Vm float64Storage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- Temp
Vm float64Subnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- Temp
Vm float64Virtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
- availability
Set DoubleId - (Integer) Specifies the availability set.
- network
Resource DoubleGroup Id - (Integer) Specifies id of the resource group for the selected virtual network.
- resource
Group DoubleId - (String) Specifies the Resource Group ID associated with the tenant.
- storage
Account DoubleId - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- storage
Container DoubleId - (Integer) Specifies id of the storage container within the above storage account.
- storage
Resource DoubleGroup Id - (Integer) Specifies id of the resource group for the selected storage account.
- temp
Vm DoubleResource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- temp
Vm DoubleStorage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- temp
Vm DoubleStorage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- temp
Vm DoubleSubnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- temp
Vm DoubleVirtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
- availability
Set numberId - (Integer) Specifies the availability set.
- network
Resource numberGroup Id - (Integer) Specifies id of the resource group for the selected virtual network.
- resource
Group numberId - (String) Specifies the Resource Group ID associated with the tenant.
- storage
Account numberId - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- storage
Container numberId - (Integer) Specifies id of the storage container within the above storage account.
- storage
Resource numberGroup Id - (Integer) Specifies id of the resource group for the selected storage account.
- temp
Vm numberResource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- temp
Vm numberStorage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- temp
Vm numberStorage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- temp
Vm numberSubnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- temp
Vm numberVirtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
- availability_
set_ floatid - (Integer) Specifies the availability set.
- network_
resource_ floatgroup_ id - (Integer) Specifies id of the resource group for the selected virtual network.
- resource_
group_ floatid - (String) Specifies the Resource Group ID associated with the tenant.
- storage_
account_ floatid - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- storage_
container_ floatid - (Integer) Specifies id of the storage container within the above storage account.
- storage_
resource_ floatgroup_ id - (Integer) Specifies id of the resource group for the selected storage account.
- temp_
vm_ floatresource_ group_ id - (Integer) Specifies id of the temporary Azure resource group.
- temp_
vm_ floatstorage_ account_ id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- temp_
vm_ floatstorage_ container_ id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- temp_
vm_ floatsubnet_ id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- temp_
vm_ floatvirtual_ network_ id - (Integer) Specifies Id of the temporary VM Virtual Network.
- availability
Set NumberId - (Integer) Specifies the availability set.
- network
Resource NumberGroup Id - (Integer) Specifies id of the resource group for the selected virtual network.
- resource
Group NumberId - (String) Specifies the Resource Group ID associated with the tenant.
- storage
Account NumberId - (Integer) Specifies id of the storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- storage
Container NumberId - (Integer) Specifies id of the storage container within the above storage account.
- storage
Resource NumberGroup Id - (Integer) Specifies id of the resource group for the selected storage account.
- temp
Vm NumberResource Group Id - (Integer) Specifies id of the temporary Azure resource group.
- temp
Vm NumberStorage Account Id - (Integer) Specifies id of the temporary VM storage account that will contain the storage container within which we will create the blob that will become the VHD disk for the cloned VM.
- temp
Vm NumberStorage Container Id - (Integer) Specifies id of the temporary VM storage container within the above storage account.
- temp
Vm NumberSubnet Id - (Integer) Specifies Id of the temporary VM subnet within the above virtual network.
- temp
Vm NumberVirtual Network Id - (Integer) Specifies Id of the temporary VM Virtual Network.
GetBackupRecoveryProtectionGroupRunsRunObjectCloudSpinInfoCloudSpinTargetResultDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectCloudSpinInfoCloudSpinTargetResultStat
- Physical
Bytes doubleTransferred - (Integer) Specifies the total physical bytes transferred.
- Physical
Bytes float64Transferred - (Integer) Specifies the total physical bytes transferred.
- physical
Bytes DoubleTransferred - (Integer) Specifies the total physical bytes transferred.
- physical
Bytes numberTransferred - (Integer) Specifies the total physical bytes transferred.
- physical_
bytes_ floattransferred - (Integer) Specifies the total physical bytes transferred.
- physical
Bytes NumberTransferred - (Integer) Specifies the total physical bytes transferred.
GetBackupRecoveryProtectionGroupRunsRunObjectLocalSnapshotInfo
- Failed
Attempts List<GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt> - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- Snapshot
Infos List<GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info> - (List) Snapshot info for an object. Nested schema for snapshot_info:
- Failed
Attempts []GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- Snapshot
Infos []GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info - (List) Snapshot info for an object. Nested schema for snapshot_info:
- failed
Attempts List<GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt> - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- snapshot
Infos List<GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info> - (List) Snapshot info for an object. Nested schema for snapshot_info:
- failed
Attempts GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt[] - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- snapshot
Infos GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info[] - (List) Snapshot info for an object. Nested schema for snapshot_info:
- failed_
attempts Sequence[GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt] - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- snapshot_
infos Sequence[GetBackup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info] - (List) Snapshot info for an object. Nested schema for snapshot_info:
- failed
Attempts List<Property Map> - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- snapshot
Infos List<Property Map> - (List) Snapshot info for an object. Nested schema for snapshot_info:
GetBackupRecoveryProtectionGroupRunsRunObjectLocalSnapshotInfoFailedAttempt
- Admitted
Time doubleUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Message string
- (String) Message about the replication run.
- Permit
Grant doubleTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queue
Duration doubleUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- Snapshot
Creation doubleTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Admitted
Time float64Usecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Message string
- (String) Message about the replication run.
- Permit
Grant float64Time Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queue
Duration float64Usecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- Snapshot
Creation float64Time Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- admitted
Time DoubleUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- message String
- (String) Message about the replication run.
- permit
Grant DoubleTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queue
Duration DoubleUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation DoubleTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- admitted
Time numberUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- message string
- (String) Message about the replication run.
- permit
Grant numberTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- queue
Duration numberUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation numberTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- admitted_
time_ floatusecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- message str
- (String) Message about the replication run.
- permit_
grant_ floattime_ usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- queue_
duration_ floatusecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot_
creation_ floattime_ usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Failed Attempt Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- admitted
Time NumberUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- message String
- (String) Message about the replication run.
- permit
Grant NumberTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queue
Duration NumberUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation NumberTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectLocalSnapshotInfoFailedAttemptStat
- Bytes
Read double - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written double - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Bytes
Read float64 - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written float64 - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Double - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Double - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- bytes_
read float - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes_
written float - (Integer) Specifies total size of data in bytes written after taking backup.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
GetBackupRecoveryProtectionGroupRunsRunObjectLocalSnapshotInfoSnapshotInfo
- Admitted
Time doubleUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- Backup
File doubleCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Permit
Grant doubleTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queue
Duration doubleUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- Snapshot
Creation doubleTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- Snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Status
Message string - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- Total
File doubleCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- Warnings List<string>
- (List) Specifies a list of warning messages.
- Admitted
Time float64Usecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- Backup
File float64Count - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Permit
Grant float64Time Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queue
Duration float64Usecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- Snapshot
Creation float64Time Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- Snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Status
Message string - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- Total
File float64Count - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- Warnings []string
- (List) Specifies a list of warning messages.
- admitted
Time DoubleUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- backup
File DoubleCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- permit
Grant DoubleTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queue
Duration DoubleUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation DoubleTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- snapshot
Id String - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- status
Message String - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- total
File DoubleCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- warnings List<String>
- (List) Specifies a list of warning messages.
- admitted
Time numberUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- backup
File numberCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- indexing
Task stringId - (String) Progress monitor task for indexing.
- is
Manually booleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- permit
Grant numberTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- queue
Duration numberUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation numberTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task stringId - (String) Stats task id for local backup run.
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- status
Message string - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- total
File numberCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- warnings string[]
- (List) Specifies a list of warning messages.
- admitted_
time_ floatusecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- backup_
file_ floatcount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- indexing_
task_ strid - (String) Progress monitor task for indexing.
- is_
manually_ booldeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- permit_
grant_ floattime_ usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- queue_
duration_ floatusecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot_
creation_ floattime_ usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- snapshot_
id str - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Object Local Snapshot Info Snapshot Info Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- stats_
task_ strid - (String) Stats task id for local backup run.
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- status_
message str - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- total_
file_ floatcount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- warnings Sequence[str]
- (List) Specifies a list of warning messages.
- admitted
Time NumberUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- backup
File NumberCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- permit
Grant NumberTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queue
Duration NumberUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation NumberTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- snapshot
Id String - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- status
Message String - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- total
File NumberCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- warnings List<String>
- (List) Specifies a list of warning messages.
GetBackupRecoveryProtectionGroupRunsRunObjectLocalSnapshotInfoSnapshotInfoDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectLocalSnapshotInfoSnapshotInfoStat
- Bytes
Read double - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written double - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Bytes
Read float64 - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written float64 - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Double - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Double - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- bytes_
read float - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes_
written float - (Integer) Specifies total size of data in bytes written after taking backup.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
GetBackupRecoveryProtectionGroupRunsRunObjectObject
- Child
Objects List<GetBackup Recovery Protection Group Runs Run Object Object Child Object> - (List) Specifies child object details. Nested schema for child_objects:
- Environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Global
Id string - (String) Specifies the global id which is a unique identifier of the object.
- Id double
- (String) The tenant id.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Name string
- (String) Specifies the name of the Azure Replication target.
- Object
Hash string - (String) Specifies the hash identifier of the object.
- Object
Type string - (String) Specifies the type of the object.
- Constraints: Allowable values are:
kCluster
,kVserver
,kVolume
,kVCenter
,kStandaloneHost
,kvCloudDirector
,kFolder
,kDatacenter
,kComputeResource
,kClusterComputeResource
,kResourcePool
,kDatastore
,kHostSystem
,kVirtualMachine
,kVirtualApp
,kStoragePod
,kNetwork
,kDistributedVirtualPortgroup
,kTagCategory
,kTag
,kOpaqueNetwork
,kOrganization
,kVirtualDatacenter
,kCatalog
,kOrgMetadata
,kStoragePolicy
,kVirtualAppTemplate
,kDomain
,kOutlook
,kMailbox
,kUsers
,kGroups
,kSites
,kUser
,kGroup
,kSite
,kApplication
,kGraphUser
,kPublicFolders
,kPublicFolder
,kTeams
,kTeam
,kRootPublicFolder
,kO365Exchange
,kO365OneDrive
,kO365Sharepoint
,kKeyspace
,kTable
,kDatabase
,kCollection
,kBucket
,kNamespace
,kSCVMMServer
,kStandaloneCluster
,kHostGroup
,kHypervHost
,kHostCluster
,kCustomProperty
,kTenant
,kSubscription
,kResourceGroup
,kStorageAccount
,kStorageKey
,kStorageContainer
,kStorageBlob
,kNetworkSecurityGroup
,kVirtualNetwork
,kSubnet
,kComputeOptions
,kSnapshotManagerPermit
,kAvailabilitySet
,kOVirtManager
,kHost
,kStorageDomain
,kVNicProfile
,kIAMUser
,kRegion
,kAvailabilityZone
,kEC2Instance
,kVPC
,kInstanceType
,kKeyPair
,kRDSOptionGroup
,kRDSParameterGroup
,kRDSInstance
,kRDSSubnet
,kRDSTag
,kAuroraTag
,kAuroraCluster
,kAccount
,kSubTaskPermit
,kS3Bucket
,kS3Tag
,kKmsKey
,kProject
,kLabel
,kMetadata
,kVPCConnector
,kPrismCentral
,kOtherHypervisorCluster
,kZone
,kMountPoint
,kStorageArray
,kFileSystem
,kContainer
,kFilesystem
,kFileset
,kPureProtectionGroup
,kVolumeGroup
,kStoragePool
,kViewBox
,kView
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kService
,kPVC
,kPersistentVolumeClaim
,kPersistentVolume
,kRootContainer
,kDAGRootContainer
,kExchangeNode
,kExchangeDAGDatabaseCopy
,kExchangeStandaloneDatabase
,kExchangeDAG
,kExchangeDAGDatabase
,kDomainController
,kInstance
,kAAG
,kAAGRootContainer
,kAAGDatabase
,kRACRootContainer
,kTableSpace
,kPDB
,kObject
,kOrg
,kAppInstance
.
- Constraints: Allowable values are:
- Os
Type string - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- Protection
Type string - (String) Specifies the protection type of the object if any.
- Constraints: Allowable values are:
kAgent
,kNative
,kSnapshotManager
,kRDSSnapshotManager
,kAuroraSnapshotManager
,kAwsS3
,kAwsRDSPostgresBackup
,kAwsAuroraPostgres
,kAwsRDSPostgres
,kAzureSQL
,kFile
,kVolume
.
- Constraints: Allowable values are:
- List<Get
Backup Recovery Protection Group Runs Run Object Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- Source
Name string - (String) Specifies registered source name to which object belongs.
- Uuid string
- (String) Specifies the uuid which is a unique identifier of the object.
- VCenter
Summaries List<GetBackup Recovery Protection Group Runs Run Object Object VCenter Summary> - (List) Nested schema for v_center_summary:
- Windows
Cluster List<GetSummaries Backup Recovery Protection Group Runs Run Object Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- Child
Objects []GetBackup Recovery Protection Group Runs Run Object Object Child Object - (List) Specifies child object details. Nested schema for child_objects:
- Environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Global
Id string - (String) Specifies the global id which is a unique identifier of the object.
- Id float64
- (String) The tenant id.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- Name string
- (String) Specifies the name of the Azure Replication target.
- Object
Hash string - (String) Specifies the hash identifier of the object.
- Object
Type string - (String) Specifies the type of the object.
- Constraints: Allowable values are:
kCluster
,kVserver
,kVolume
,kVCenter
,kStandaloneHost
,kvCloudDirector
,kFolder
,kDatacenter
,kComputeResource
,kClusterComputeResource
,kResourcePool
,kDatastore
,kHostSystem
,kVirtualMachine
,kVirtualApp
,kStoragePod
,kNetwork
,kDistributedVirtualPortgroup
,kTagCategory
,kTag
,kOpaqueNetwork
,kOrganization
,kVirtualDatacenter
,kCatalog
,kOrgMetadata
,kStoragePolicy
,kVirtualAppTemplate
,kDomain
,kOutlook
,kMailbox
,kUsers
,kGroups
,kSites
,kUser
,kGroup
,kSite
,kApplication
,kGraphUser
,kPublicFolders
,kPublicFolder
,kTeams
,kTeam
,kRootPublicFolder
,kO365Exchange
,kO365OneDrive
,kO365Sharepoint
,kKeyspace
,kTable
,kDatabase
,kCollection
,kBucket
,kNamespace
,kSCVMMServer
,kStandaloneCluster
,kHostGroup
,kHypervHost
,kHostCluster
,kCustomProperty
,kTenant
,kSubscription
,kResourceGroup
,kStorageAccount
,kStorageKey
,kStorageContainer
,kStorageBlob
,kNetworkSecurityGroup
,kVirtualNetwork
,kSubnet
,kComputeOptions
,kSnapshotManagerPermit
,kAvailabilitySet
,kOVirtManager
,kHost
,kStorageDomain
,kVNicProfile
,kIAMUser
,kRegion
,kAvailabilityZone
,kEC2Instance
,kVPC
,kInstanceType
,kKeyPair
,kRDSOptionGroup
,kRDSParameterGroup
,kRDSInstance
,kRDSSubnet
,kRDSTag
,kAuroraTag
,kAuroraCluster
,kAccount
,kSubTaskPermit
,kS3Bucket
,kS3Tag
,kKmsKey
,kProject
,kLabel
,kMetadata
,kVPCConnector
,kPrismCentral
,kOtherHypervisorCluster
,kZone
,kMountPoint
,kStorageArray
,kFileSystem
,kContainer
,kFilesystem
,kFileset
,kPureProtectionGroup
,kVolumeGroup
,kStoragePool
,kViewBox
,kView
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kService
,kPVC
,kPersistentVolumeClaim
,kPersistentVolume
,kRootContainer
,kDAGRootContainer
,kExchangeNode
,kExchangeDAGDatabaseCopy
,kExchangeStandaloneDatabase
,kExchangeDAG
,kExchangeDAGDatabase
,kDomainController
,kInstance
,kAAG
,kAAGRootContainer
,kAAGDatabase
,kRACRootContainer
,kTableSpace
,kPDB
,kObject
,kOrg
,kAppInstance
.
- Constraints: Allowable values are:
- Os
Type string - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- Protection
Type string - (String) Specifies the protection type of the object if any.
- Constraints: Allowable values are:
kAgent
,kNative
,kSnapshotManager
,kRDSSnapshotManager
,kAuroraSnapshotManager
,kAwsS3
,kAwsRDSPostgresBackup
,kAwsAuroraPostgres
,kAwsRDSPostgres
,kAzureSQL
,kFile
,kVolume
.
- Constraints: Allowable values are:
- []Get
Backup Recovery Protection Group Runs Run Object Object Sharepoint Site Summary - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id float64 - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- Source
Name string - (String) Specifies registered source name to which object belongs.
- Uuid string
- (String) Specifies the uuid which is a unique identifier of the object.
- VCenter
Summaries []GetBackup Recovery Protection Group Runs Run Object Object VCenter Summary - (List) Nested schema for v_center_summary:
- Windows
Cluster []GetSummaries Backup Recovery Protection Group Runs Run Object Object Windows Cluster Summary - (List) Nested schema for windows_cluster_summary:
- child
Objects List<GetBackup Recovery Protection Group Runs Run Object Object Child Object> - (List) Specifies child object details. Nested schema for child_objects:
- environment String
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- global
Id String - (String) Specifies the global id which is a unique identifier of the object.
- id Double
- (String) The tenant id.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- name String
- (String) Specifies the name of the Azure Replication target.
- object
Hash String - (String) Specifies the hash identifier of the object.
- object
Type String - (String) Specifies the type of the object.
- Constraints: Allowable values are:
kCluster
,kVserver
,kVolume
,kVCenter
,kStandaloneHost
,kvCloudDirector
,kFolder
,kDatacenter
,kComputeResource
,kClusterComputeResource
,kResourcePool
,kDatastore
,kHostSystem
,kVirtualMachine
,kVirtualApp
,kStoragePod
,kNetwork
,kDistributedVirtualPortgroup
,kTagCategory
,kTag
,kOpaqueNetwork
,kOrganization
,kVirtualDatacenter
,kCatalog
,kOrgMetadata
,kStoragePolicy
,kVirtualAppTemplate
,kDomain
,kOutlook
,kMailbox
,kUsers
,kGroups
,kSites
,kUser
,kGroup
,kSite
,kApplication
,kGraphUser
,kPublicFolders
,kPublicFolder
,kTeams
,kTeam
,kRootPublicFolder
,kO365Exchange
,kO365OneDrive
,kO365Sharepoint
,kKeyspace
,kTable
,kDatabase
,kCollection
,kBucket
,kNamespace
,kSCVMMServer
,kStandaloneCluster
,kHostGroup
,kHypervHost
,kHostCluster
,kCustomProperty
,kTenant
,kSubscription
,kResourceGroup
,kStorageAccount
,kStorageKey
,kStorageContainer
,kStorageBlob
,kNetworkSecurityGroup
,kVirtualNetwork
,kSubnet
,kComputeOptions
,kSnapshotManagerPermit
,kAvailabilitySet
,kOVirtManager
,kHost
,kStorageDomain
,kVNicProfile
,kIAMUser
,kRegion
,kAvailabilityZone
,kEC2Instance
,kVPC
,kInstanceType
,kKeyPair
,kRDSOptionGroup
,kRDSParameterGroup
,kRDSInstance
,kRDSSubnet
,kRDSTag
,kAuroraTag
,kAuroraCluster
,kAccount
,kSubTaskPermit
,kS3Bucket
,kS3Tag
,kKmsKey
,kProject
,kLabel
,kMetadata
,kVPCConnector
,kPrismCentral
,kOtherHypervisorCluster
,kZone
,kMountPoint
,kStorageArray
,kFileSystem
,kContainer
,kFilesystem
,kFileset
,kPureProtectionGroup
,kVolumeGroup
,kStoragePool
,kViewBox
,kView
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kService
,kPVC
,kPersistentVolumeClaim
,kPersistentVolume
,kRootContainer
,kDAGRootContainer
,kExchangeNode
,kExchangeDAGDatabaseCopy
,kExchangeStandaloneDatabase
,kExchangeDAG
,kExchangeDAGDatabase
,kDomainController
,kInstance
,kAAG
,kAAGRootContainer
,kAAGDatabase
,kRACRootContainer
,kTableSpace
,kPDB
,kObject
,kOrg
,kAppInstance
.
- Constraints: Allowable values are:
- os
Type String - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- protection
Type String - (String) Specifies the protection type of the object if any.
- Constraints: Allowable values are:
kAgent
,kNative
,kSnapshotManager
,kRDSSnapshotManager
,kAuroraSnapshotManager
,kAwsS3
,kAwsRDSPostgresBackup
,kAwsAuroraPostgres
,kAwsRDSPostgres
,kAzureSQL
,kFile
,kVolume
.
- Constraints: Allowable values are:
- List<Get
Backup Recovery Protection Group Runs Run Object Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id Double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- source
Name String - (String) Specifies registered source name to which object belongs.
- uuid String
- (String) Specifies the uuid which is a unique identifier of the object.
- v
Center List<GetSummaries Backup Recovery Protection Group Runs Run Object Object VCenter Summary> - (List) Nested schema for v_center_summary:
- windows
Cluster List<GetSummaries Backup Recovery Protection Group Runs Run Object Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- child
Objects GetBackup Recovery Protection Group Runs Run Object Object Child Object[] - (List) Specifies child object details. Nested schema for child_objects:
- environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- global
Id string - (String) Specifies the global id which is a unique identifier of the object.
- id number
- (String) The tenant id.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- name string
- (String) Specifies the name of the Azure Replication target.
- object
Hash string - (String) Specifies the hash identifier of the object.
- object
Type string - (String) Specifies the type of the object.
- Constraints: Allowable values are:
kCluster
,kVserver
,kVolume
,kVCenter
,kStandaloneHost
,kvCloudDirector
,kFolder
,kDatacenter
,kComputeResource
,kClusterComputeResource
,kResourcePool
,kDatastore
,kHostSystem
,kVirtualMachine
,kVirtualApp
,kStoragePod
,kNetwork
,kDistributedVirtualPortgroup
,kTagCategory
,kTag
,kOpaqueNetwork
,kOrganization
,kVirtualDatacenter
,kCatalog
,kOrgMetadata
,kStoragePolicy
,kVirtualAppTemplate
,kDomain
,kOutlook
,kMailbox
,kUsers
,kGroups
,kSites
,kUser
,kGroup
,kSite
,kApplication
,kGraphUser
,kPublicFolders
,kPublicFolder
,kTeams
,kTeam
,kRootPublicFolder
,kO365Exchange
,kO365OneDrive
,kO365Sharepoint
,kKeyspace
,kTable
,kDatabase
,kCollection
,kBucket
,kNamespace
,kSCVMMServer
,kStandaloneCluster
,kHostGroup
,kHypervHost
,kHostCluster
,kCustomProperty
,kTenant
,kSubscription
,kResourceGroup
,kStorageAccount
,kStorageKey
,kStorageContainer
,kStorageBlob
,kNetworkSecurityGroup
,kVirtualNetwork
,kSubnet
,kComputeOptions
,kSnapshotManagerPermit
,kAvailabilitySet
,kOVirtManager
,kHost
,kStorageDomain
,kVNicProfile
,kIAMUser
,kRegion
,kAvailabilityZone
,kEC2Instance
,kVPC
,kInstanceType
,kKeyPair
,kRDSOptionGroup
,kRDSParameterGroup
,kRDSInstance
,kRDSSubnet
,kRDSTag
,kAuroraTag
,kAuroraCluster
,kAccount
,kSubTaskPermit
,kS3Bucket
,kS3Tag
,kKmsKey
,kProject
,kLabel
,kMetadata
,kVPCConnector
,kPrismCentral
,kOtherHypervisorCluster
,kZone
,kMountPoint
,kStorageArray
,kFileSystem
,kContainer
,kFilesystem
,kFileset
,kPureProtectionGroup
,kVolumeGroup
,kStoragePool
,kViewBox
,kView
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kService
,kPVC
,kPersistentVolumeClaim
,kPersistentVolume
,kRootContainer
,kDAGRootContainer
,kExchangeNode
,kExchangeDAGDatabaseCopy
,kExchangeStandaloneDatabase
,kExchangeDAG
,kExchangeDAGDatabase
,kDomainController
,kInstance
,kAAG
,kAAGRootContainer
,kAAGDatabase
,kRACRootContainer
,kTableSpace
,kPDB
,kObject
,kOrg
,kAppInstance
.
- Constraints: Allowable values are:
- os
Type string - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- protection
Type string - (String) Specifies the protection type of the object if any.
- Constraints: Allowable values are:
kAgent
,kNative
,kSnapshotManager
,kRDSSnapshotManager
,kAuroraSnapshotManager
,kAwsS3
,kAwsRDSPostgresBackup
,kAwsAuroraPostgres
,kAwsRDSPostgres
,kAzureSQL
,kFile
,kVolume
.
- Constraints: Allowable values are:
- Get
Backup Recovery Protection Group Runs Run Object Object Sharepoint Site Summary[] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- source
Name string - (String) Specifies registered source name to which object belongs.
- uuid string
- (String) Specifies the uuid which is a unique identifier of the object.
- v
Center GetSummaries Backup Recovery Protection Group Runs Run Object Object VCenter Summary[] - (List) Nested schema for v_center_summary:
- windows
Cluster GetSummaries Backup Recovery Protection Group Runs Run Object Object Windows Cluster Summary[] - (List) Nested schema for windows_cluster_summary:
- child_
objects Sequence[GetBackup Recovery Protection Group Runs Run Object Object Child Object] - (List) Specifies child object details. Nested schema for child_objects:
- environment str
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- global_
id str - (String) Specifies the global id which is a unique identifier of the object.
- id float
- (String) The tenant id.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- name str
- (String) Specifies the name of the Azure Replication target.
- object_
hash str - (String) Specifies the hash identifier of the object.
- object_
type str - (String) Specifies the type of the object.
- Constraints: Allowable values are:
kCluster
,kVserver
,kVolume
,kVCenter
,kStandaloneHost
,kvCloudDirector
,kFolder
,kDatacenter
,kComputeResource
,kClusterComputeResource
,kResourcePool
,kDatastore
,kHostSystem
,kVirtualMachine
,kVirtualApp
,kStoragePod
,kNetwork
,kDistributedVirtualPortgroup
,kTagCategory
,kTag
,kOpaqueNetwork
,kOrganization
,kVirtualDatacenter
,kCatalog
,kOrgMetadata
,kStoragePolicy
,kVirtualAppTemplate
,kDomain
,kOutlook
,kMailbox
,kUsers
,kGroups
,kSites
,kUser
,kGroup
,kSite
,kApplication
,kGraphUser
,kPublicFolders
,kPublicFolder
,kTeams
,kTeam
,kRootPublicFolder
,kO365Exchange
,kO365OneDrive
,kO365Sharepoint
,kKeyspace
,kTable
,kDatabase
,kCollection
,kBucket
,kNamespace
,kSCVMMServer
,kStandaloneCluster
,kHostGroup
,kHypervHost
,kHostCluster
,kCustomProperty
,kTenant
,kSubscription
,kResourceGroup
,kStorageAccount
,kStorageKey
,kStorageContainer
,kStorageBlob
,kNetworkSecurityGroup
,kVirtualNetwork
,kSubnet
,kComputeOptions
,kSnapshotManagerPermit
,kAvailabilitySet
,kOVirtManager
,kHost
,kStorageDomain
,kVNicProfile
,kIAMUser
,kRegion
,kAvailabilityZone
,kEC2Instance
,kVPC
,kInstanceType
,kKeyPair
,kRDSOptionGroup
,kRDSParameterGroup
,kRDSInstance
,kRDSSubnet
,kRDSTag
,kAuroraTag
,kAuroraCluster
,kAccount
,kSubTaskPermit
,kS3Bucket
,kS3Tag
,kKmsKey
,kProject
,kLabel
,kMetadata
,kVPCConnector
,kPrismCentral
,kOtherHypervisorCluster
,kZone
,kMountPoint
,kStorageArray
,kFileSystem
,kContainer
,kFilesystem
,kFileset
,kPureProtectionGroup
,kVolumeGroup
,kStoragePool
,kViewBox
,kView
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kService
,kPVC
,kPersistentVolumeClaim
,kPersistentVolume
,kRootContainer
,kDAGRootContainer
,kExchangeNode
,kExchangeDAGDatabaseCopy
,kExchangeStandaloneDatabase
,kExchangeDAG
,kExchangeDAGDatabase
,kDomainController
,kInstance
,kAAG
,kAAGRootContainer
,kAAGDatabase
,kRACRootContainer
,kTableSpace
,kPDB
,kObject
,kOrg
,kAppInstance
.
- Constraints: Allowable values are:
- os_
type str - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- protection_
type str - (String) Specifies the protection type of the object if any.
- Constraints: Allowable values are:
kAgent
,kNative
,kSnapshotManager
,kRDSSnapshotManager
,kAuroraSnapshotManager
,kAwsS3
,kAwsRDSPostgresBackup
,kAwsAuroraPostgres
,kAwsRDSPostgres
,kAzureSQL
,kFile
,kVolume
.
- Constraints: Allowable values are:
- Sequence[Get
Backup Recovery Protection Group Runs Run Object Object Sharepoint Site Summary] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source_
id float - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- source_
name str - (String) Specifies registered source name to which object belongs.
- uuid str
- (String) Specifies the uuid which is a unique identifier of the object.
- v_
center_ Sequence[Getsummaries Backup Recovery Protection Group Runs Run Object Object VCenter Summary] - (List) Nested schema for v_center_summary:
- windows_
cluster_ Sequence[Getsummaries Backup Recovery Protection Group Runs Run Object Object Windows Cluster Summary] - (List) Nested schema for windows_cluster_summary:
- child
Objects List<Property Map> - (List) Specifies child object details. Nested schema for child_objects:
- environment String
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- global
Id String - (String) Specifies the global id which is a unique identifier of the object.
- id Number
- (String) The tenant id.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
- name String
- (String) Specifies the name of the Azure Replication target.
- object
Hash String - (String) Specifies the hash identifier of the object.
- object
Type String - (String) Specifies the type of the object.
- Constraints: Allowable values are:
kCluster
,kVserver
,kVolume
,kVCenter
,kStandaloneHost
,kvCloudDirector
,kFolder
,kDatacenter
,kComputeResource
,kClusterComputeResource
,kResourcePool
,kDatastore
,kHostSystem
,kVirtualMachine
,kVirtualApp
,kStoragePod
,kNetwork
,kDistributedVirtualPortgroup
,kTagCategory
,kTag
,kOpaqueNetwork
,kOrganization
,kVirtualDatacenter
,kCatalog
,kOrgMetadata
,kStoragePolicy
,kVirtualAppTemplate
,kDomain
,kOutlook
,kMailbox
,kUsers
,kGroups
,kSites
,kUser
,kGroup
,kSite
,kApplication
,kGraphUser
,kPublicFolders
,kPublicFolder
,kTeams
,kTeam
,kRootPublicFolder
,kO365Exchange
,kO365OneDrive
,kO365Sharepoint
,kKeyspace
,kTable
,kDatabase
,kCollection
,kBucket
,kNamespace
,kSCVMMServer
,kStandaloneCluster
,kHostGroup
,kHypervHost
,kHostCluster
,kCustomProperty
,kTenant
,kSubscription
,kResourceGroup
,kStorageAccount
,kStorageKey
,kStorageContainer
,kStorageBlob
,kNetworkSecurityGroup
,kVirtualNetwork
,kSubnet
,kComputeOptions
,kSnapshotManagerPermit
,kAvailabilitySet
,kOVirtManager
,kHost
,kStorageDomain
,kVNicProfile
,kIAMUser
,kRegion
,kAvailabilityZone
,kEC2Instance
,kVPC
,kInstanceType
,kKeyPair
,kRDSOptionGroup
,kRDSParameterGroup
,kRDSInstance
,kRDSSubnet
,kRDSTag
,kAuroraTag
,kAuroraCluster
,kAccount
,kSubTaskPermit
,kS3Bucket
,kS3Tag
,kKmsKey
,kProject
,kLabel
,kMetadata
,kVPCConnector
,kPrismCentral
,kOtherHypervisorCluster
,kZone
,kMountPoint
,kStorageArray
,kFileSystem
,kContainer
,kFilesystem
,kFileset
,kPureProtectionGroup
,kVolumeGroup
,kStoragePool
,kViewBox
,kView
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kService
,kPVC
,kPersistentVolumeClaim
,kPersistentVolume
,kRootContainer
,kDAGRootContainer
,kExchangeNode
,kExchangeDAGDatabaseCopy
,kExchangeStandaloneDatabase
,kExchangeDAG
,kExchangeDAGDatabase
,kDomainController
,kInstance
,kAAG
,kAAGRootContainer
,kAAGDatabase
,kRACRootContainer
,kTableSpace
,kPDB
,kObject
,kOrg
,kAppInstance
.
- Constraints: Allowable values are:
- os
Type String - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- protection
Type String - (String) Specifies the protection type of the object if any.
- Constraints: Allowable values are:
kAgent
,kNative
,kSnapshotManager
,kRDSSnapshotManager
,kAuroraSnapshotManager
,kAwsS3
,kAwsRDSPostgresBackup
,kAwsAuroraPostgres
,kAwsRDSPostgres
,kAzureSQL
,kFile
,kVolume
.
- Constraints: Allowable values are:
- List<Property Map>
- (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id Number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- source
Name String - (String) Specifies registered source name to which object belongs.
- uuid String
- (String) Specifies the uuid which is a unique identifier of the object.
- v
Center List<Property Map>Summaries - (List) Nested schema for v_center_summary:
- windows
Cluster List<Property Map>Summaries - (List) Nested schema for windows_cluster_summary:
GetBackupRecoveryProtectionGroupRunsRunObjectObjectSharepointSiteSummary
- Site
Web stringUrl - (String) Specifies the web url for the Sharepoint site.
- Site
Web stringUrl - (String) Specifies the web url for the Sharepoint site.
- site
Web StringUrl - (String) Specifies the web url for the Sharepoint site.
- site
Web stringUrl - (String) Specifies the web url for the Sharepoint site.
- site_
web_ strurl - (String) Specifies the web url for the Sharepoint site.
- site
Web StringUrl - (String) Specifies the web url for the Sharepoint site.
GetBackupRecoveryProtectionGroupRunsRunObjectObjectVCenterSummary
- Is
Cloud boolEnv - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- Is
Cloud boolEnv - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is
Cloud BooleanEnv - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is
Cloud booleanEnv - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is_
cloud_ boolenv - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is
Cloud BooleanEnv - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
GetBackupRecoveryProtectionGroupRunsRunObjectObjectWindowsClusterSummary
- Cluster
Source stringType - (String) Specifies the type of cluster resource this source represents.
- Cluster
Source stringType - (String) Specifies the type of cluster resource this source represents.
- cluster
Source StringType - (String) Specifies the type of cluster resource this source represents.
- cluster
Source stringType - (String) Specifies the type of cluster resource this source represents.
- cluster_
source_ strtype - (String) Specifies the type of cluster resource this source represents.
- cluster
Source StringType - (String) Specifies the type of cluster resource this source represents.
GetBackupRecoveryProtectionGroupRunsRunObjectOriginalBackupInfo
- Failed
Attempts List<GetBackup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt> - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- Snapshot
Infos List<GetBackup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info> - (List) Snapshot info for an object. Nested schema for snapshot_info:
- Failed
Attempts []GetBackup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- Snapshot
Infos []GetBackup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info - (List) Snapshot info for an object. Nested schema for snapshot_info:
- failed
Attempts List<GetBackup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt> - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- snapshot
Infos List<GetBackup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info> - (List) Snapshot info for an object. Nested schema for snapshot_info:
- failed
Attempts GetBackup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt[] - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- snapshot
Infos GetBackup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info[] - (List) Snapshot info for an object. Nested schema for snapshot_info:
- failed_
attempts Sequence[GetBackup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt] - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- snapshot_
infos Sequence[GetBackup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info] - (List) Snapshot info for an object. Nested schema for snapshot_info:
- failed
Attempts List<Property Map> - (List) Failed backup attempts for an object. Nested schema for failed_attempts:
- snapshot
Infos List<Property Map> - (List) Snapshot info for an object. Nested schema for snapshot_info:
GetBackupRecoveryProtectionGroupRunsRunObjectOriginalBackupInfoFailedAttempt
- Admitted
Time doubleUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Message string
- (String) Message about the replication run.
- Permit
Grant doubleTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queue
Duration doubleUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- Snapshot
Creation doubleTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Admitted
Time float64Usecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Message string
- (String) Message about the replication run.
- Permit
Grant float64Time Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queue
Duration float64Usecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- Snapshot
Creation float64Time Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- admitted
Time DoubleUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- message String
- (String) Message about the replication run.
- permit
Grant DoubleTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queue
Duration DoubleUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation DoubleTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- admitted
Time numberUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- message string
- (String) Message about the replication run.
- permit
Grant numberTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- queue
Duration numberUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation numberTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- admitted_
time_ floatusecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- message str
- (String) Message about the replication run.
- permit_
grant_ floattime_ usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- queue_
duration_ floatusecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot_
creation_ floattime_ usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Failed Attempt Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- admitted
Time NumberUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- message String
- (String) Message about the replication run.
- permit
Grant NumberTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queue
Duration NumberUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation NumberTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectOriginalBackupInfoFailedAttemptStat
- Bytes
Read double - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written double - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Bytes
Read float64 - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written float64 - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Double - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Double - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- bytes_
read float - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes_
written float - (Integer) Specifies total size of data in bytes written after taking backup.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
GetBackupRecoveryProtectionGroupRunsRunObjectOriginalBackupInfoSnapshotInfo
- Admitted
Time doubleUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- Backup
File doubleCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Permit
Grant doubleTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queue
Duration doubleUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- Snapshot
Creation doubleTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- Snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Status
Message string - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- Total
File doubleCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- Warnings List<string>
- (List) Specifies a list of warning messages.
- Admitted
Time float64Usecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- Backup
File float64Count - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Permit
Grant float64Time Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Queue
Duration float64Usecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- Snapshot
Creation float64Time Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- Snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Status
Message string - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- Total
File float64Count - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- Warnings []string
- (List) Specifies a list of warning messages.
- admitted
Time DoubleUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- backup
File DoubleCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- permit
Grant DoubleTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queue
Duration DoubleUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation DoubleTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- snapshot
Id String - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- status
Message String - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- total
File DoubleCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- warnings List<String>
- (List) Specifies a list of warning messages.
- admitted
Time numberUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- backup
File numberCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- indexing
Task stringId - (String) Progress monitor task for indexing.
- is
Manually booleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- permit
Grant numberTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- queue
Duration numberUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation numberTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- snapshot
Id string - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task stringId - (String) Stats task id for local backup run.
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- status
Message string - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- total
File numberCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- warnings string[]
- (List) Specifies a list of warning messages.
- admitted_
time_ floatusecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- backup_
file_ floatcount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- indexing_
task_ strid - (String) Progress monitor task for indexing.
- is_
manually_ booldeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- permit_
grant_ floattime_ usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- queue_
duration_ floatusecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot_
creation_ floattime_ usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- snapshot_
id str - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Object Original Backup Info Snapshot Info Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- stats_
task_ strid - (String) Stats task id for local backup run.
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- status_
message str - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- total_
file_ floatcount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- warnings Sequence[str]
- (List) Specifies a list of warning messages.
- admitted
Time NumberUsecs - (Integer) Specifies the time at which the backup task was admitted to run in Unix epoch Timestamp(in microseconds) for an object.
- backup
File NumberCount - (Integer) The total number of file and directory entities that are backed up in this run. Only applicable to file based backups.
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- permit
Grant NumberTime Usecs - (Integer) Specifies the time when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated to the time when permit is granted again.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- queue
Duration NumberUsecs - (Integer) Specifies the duration between the startTime and when gatekeeper permit is granted to the backup task. If the backup task is rescheduled due to errors, the field is updated considering the time when permit is granted again. Queue duration = PermitGrantTimeUsecs - StartTimeUsecs.
- snapshot
Creation NumberTime Usecs - (Integer) Specifies the time at which the source snapshot was taken in Unix epoch Timestamp(in microseconds) for an object.
- snapshot
Id String - (String) Snapshot id for a successful snapshot. This field will not be set if the Protection Group Run has no successful attempt.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- status
Message String - (String) A message decribing the status. This will be populated currently only for kWaitingForOlderBackupRun status.
- total
File NumberCount - (Integer) The total number of file and directory entities visited in this backup. Only applicable to file based backups.
- warnings List<String>
- (List) Specifies a list of warning messages.
GetBackupRecoveryProtectionGroupRunsRunObjectOriginalBackupInfoSnapshotInfoDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectOriginalBackupInfoSnapshotInfoStat
- Bytes
Read double - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written double - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Bytes
Read float64 - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written float64 - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Double - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Double - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- bytes_
read float - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes_
written float - (Integer) Specifies total size of data in bytes written after taking backup.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
GetBackupRecoveryProtectionGroupRunsRunObjectReplicationInfo
- Replication
Target List<GetResults Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result> - (List) Replication results for each replication target. Nested schema for replication_target_results:
- Replication
Target []GetResults Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result - (List) Replication results for each replication target. Nested schema for replication_target_results:
- replication
Target List<GetResults Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result> - (List) Replication results for each replication target. Nested schema for replication_target_results:
- replication
Target GetResults Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result[] - (List) Replication results for each replication target. Nested schema for replication_target_results:
- replication_
target_ Sequence[Getresults Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result] - (List) Replication results for each replication target. Nested schema for replication_target_results:
- replication
Target List<Property Map>Results - (List) Replication results for each replication target. Nested schema for replication_target_results:
GetBackupRecoveryProtectionGroupRunsRunObjectReplicationInfoReplicationTargetResult
- Aws
Target List<GetConfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Aws Target Config> - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- Azure
Target List<GetConfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Azure Target Config> - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- Cluster
Id double - (Integer) Specifies the id of the cluster.
- Cluster
Incarnation doubleId - (Integer) Specifies the incarnation id of the cluster.
- Cluster
Name string - (String) Specifies the name of the cluster.
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Entries
Changed double - (Integer) Specifies the number of metadata actions completed during the protection run.
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Is
In boolBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Message string
- (String) Message about the replication run.
- Multi
Object boolReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Percentage
Completed double - (Integer) Specifies the progress in percentage.
- Queued
Time doubleUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- Replication
Task stringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Aws
Target []GetConfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Aws Target Config - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- Azure
Target []GetConfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Azure Target Config - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- Cluster
Id float64 - (Integer) Specifies the id of the cluster.
- Cluster
Incarnation float64Id - (Integer) Specifies the incarnation id of the cluster.
- Cluster
Name string - (String) Specifies the name of the cluster.
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Entries
Changed float64 - (Integer) Specifies the number of metadata actions completed during the protection run.
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Is
In boolBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Message string
- (String) Message about the replication run.
- Multi
Object boolReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Percentage
Completed float64 - (Integer) Specifies the progress in percentage.
- Queued
Time float64Usecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- Replication
Task stringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Target List<GetConfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Aws Target Config> - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- azure
Target List<GetConfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Azure Target Config> - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- cluster
Id Double - (Integer) Specifies the id of the cluster.
- cluster
Incarnation DoubleId - (Integer) Specifies the incarnation id of the cluster.
- cluster
Name String - (String) Specifies the name of the cluster.
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- entries
Changed Double - (Integer) Specifies the number of metadata actions completed during the protection run.
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- is
In BooleanBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message String
- (String) Message about the replication run.
- multi
Object BooleanReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- percentage
Completed Double - (Integer) Specifies the progress in percentage.
- queued
Time DoubleUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- replication
Task StringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Target GetConfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Aws Target Config[] - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- azure
Target GetConfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Azure Target Config[] - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- cluster
Id number - (Integer) Specifies the id of the cluster.
- cluster
Incarnation numberId - (Integer) Specifies the incarnation id of the cluster.
- cluster
Name string - (String) Specifies the name of the cluster.
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- entries
Changed number - (Integer) Specifies the number of metadata actions completed during the protection run.
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- is
In booleanBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- is
Manually booleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message string
- (String) Message about the replication run.
- multi
Object booleanReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- on
Legal booleanHold - (Boolean) Specifies the legal hold status for a replication target.
- percentage
Completed number - (Integer) Specifies the progress in percentage.
- queued
Time numberUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- replication
Task stringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws_
target_ Sequence[Getconfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Aws Target Config] - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- azure_
target_ Sequence[Getconfigs Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Azure Target Config] - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- cluster_
id float - (Integer) Specifies the id of the cluster.
- cluster_
incarnation_ floatid - (Integer) Specifies the incarnation id of the cluster.
- cluster_
name str - (String) Specifies the name of the cluster.
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- entries_
changed float - (Integer) Specifies the number of metadata actions completed during the protection run.
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- is_
in_ boolbound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- is_
manually_ booldeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message str
- (String) Message about the replication run.
- multi_
object_ boolreplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- on_
legal_ boolhold - (Boolean) Specifies the legal hold status for a replication target.
- percentage_
completed float - (Integer) Specifies the progress in percentage.
- queued_
time_ floatusecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- replication_
task_ strid - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Object Replication Info Replication Target Result Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Target List<Property Map>Configs - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- azure
Target List<Property Map>Configs - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- cluster
Id Number - (Integer) Specifies the id of the cluster.
- cluster
Incarnation NumberId - (Integer) Specifies the incarnation id of the cluster.
- cluster
Name String - (String) Specifies the name of the cluster.
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- entries
Changed Number - (Integer) Specifies the number of metadata actions completed during the protection run.
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- is
In BooleanBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message String
- (String) Message about the replication run.
- multi
Object BooleanReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- percentage
Completed Number - (Integer) Specifies the progress in percentage.
- queued
Time NumberUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- replication
Task StringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectReplicationInfoReplicationTargetResultAwsTargetConfig
- Name string
- (String) Specifies the name of the Azure Replication target.
- Region double
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Region
Name string - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Source
Id double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- Name string
- (String) Specifies the name of the Azure Replication target.
- Region float64
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Region
Name string - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Source
Id float64 - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- name String
- (String) Specifies the name of the Azure Replication target.
- region Double
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- region
Name String - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- source
Id Double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- name string
- (String) Specifies the name of the Azure Replication target.
- region number
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- region
Name string - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- source
Id number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- name str
- (String) Specifies the name of the Azure Replication target.
- region float
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- region_
name str - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- source_
id float - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- name String
- (String) Specifies the name of the Azure Replication target.
- region Number
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- region
Name String - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- source
Id Number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
GetBackupRecoveryProtectionGroupRunsRunObjectReplicationInfoReplicationTargetResultAzureTargetConfig
- Name string
- (String) Specifies the name of the Azure Replication target.
- Resource
Group double - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- Resource
Group stringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- Source
Id double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- Storage
Account double - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- Storage
Account stringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- Storage
Container double - (Integer) Specifies id of the storage container of Azure Replication target.
- Storage
Container stringName - (String) Specifies name of the storage container of Azure Replication target.
- Storage
Resource doubleGroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- Storage
Resource stringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
- Name string
- (String) Specifies the name of the Azure Replication target.
- Resource
Group float64 - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- Resource
Group stringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- Source
Id float64 - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- Storage
Account float64 - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- Storage
Account stringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- Storage
Container float64 - (Integer) Specifies id of the storage container of Azure Replication target.
- Storage
Container stringName - (String) Specifies name of the storage container of Azure Replication target.
- Storage
Resource float64Group - (Integer) Specifies id of the storage resource group of Azure Replication target.
- Storage
Resource stringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
- name String
- (String) Specifies the name of the Azure Replication target.
- resource
Group Double - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- resource
Group StringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- source
Id Double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- storage
Account Double - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- storage
Account StringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- storage
Container Double - (Integer) Specifies id of the storage container of Azure Replication target.
- storage
Container StringName - (String) Specifies name of the storage container of Azure Replication target.
- storage
Resource DoubleGroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- storage
Resource StringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
- name string
- (String) Specifies the name of the Azure Replication target.
- resource
Group number - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- resource
Group stringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- source
Id number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- storage
Account number - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- storage
Account stringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- storage
Container number - (Integer) Specifies id of the storage container of Azure Replication target.
- storage
Container stringName - (String) Specifies name of the storage container of Azure Replication target.
- storage
Resource numberGroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- storage
Resource stringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
- name str
- (String) Specifies the name of the Azure Replication target.
- resource_
group float - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- resource_
group_ strname - (String) Specifies name of the Azure resource group used to filter regions in UI.
- source_
id float - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- storage_
account float - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- storage_
account_ strname - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- storage_
container float - (Integer) Specifies id of the storage container of Azure Replication target.
- storage_
container_ strname - (String) Specifies name of the storage container of Azure Replication target.
- storage_
resource_ floatgroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- storage_
resource_ strgroup_ name - (String) Specifies name of the storage resource group of Azure Replication target.
- name String
- (String) Specifies the name of the Azure Replication target.
- resource
Group Number - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- resource
Group StringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- source
Id Number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- storage
Account Number - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- storage
Account StringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- storage
Container Number - (Integer) Specifies id of the storage container of Azure Replication target.
- storage
Container StringName - (String) Specifies name of the storage container of Azure Replication target.
- storage
Resource NumberGroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- storage
Resource StringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
GetBackupRecoveryProtectionGroupRunsRunObjectReplicationInfoReplicationTargetResultDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunObjectReplicationInfoReplicationTargetResultStat
- Logical
Bytes doubleTransferred - (Integer) Specifies the total logical bytes transferred.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Physical
Bytes doubleTransferred - (Integer) Specifies the total physical bytes transferred.
- Logical
Bytes float64Transferred - (Integer) Specifies the total logical bytes transferred.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- Physical
Bytes float64Transferred - (Integer) Specifies the total physical bytes transferred.
- logical
Bytes DoubleTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes DoubleTransferred - (Integer) Specifies the total physical bytes transferred.
- logical
Bytes numberTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes numberTransferred - (Integer) Specifies the total physical bytes transferred.
- logical_
bytes_ floattransferred - (Integer) Specifies the total logical bytes transferred.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- physical_
bytes_ floattransferred - (Integer) Specifies the total physical bytes transferred.
- logical
Bytes NumberTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes NumberTransferred - (Integer) Specifies the total physical bytes transferred.
GetBackupRecoveryProtectionGroupRunsRunOriginClusterIdentifier
- Cluster
Id double - (Integer) Specifies the id of the cluster.
- Cluster
Incarnation doubleId - (Integer) Specifies the incarnation id of the cluster.
- Cluster
Name string - (String) Specifies the name of the cluster.
- Cluster
Id float64 - (Integer) Specifies the id of the cluster.
- Cluster
Incarnation float64Id - (Integer) Specifies the incarnation id of the cluster.
- Cluster
Name string - (String) Specifies the name of the cluster.
- cluster
Id Double - (Integer) Specifies the id of the cluster.
- cluster
Incarnation DoubleId - (Integer) Specifies the incarnation id of the cluster.
- cluster
Name String - (String) Specifies the name of the cluster.
- cluster
Id number - (Integer) Specifies the id of the cluster.
- cluster
Incarnation numberId - (Integer) Specifies the incarnation id of the cluster.
- cluster
Name string - (String) Specifies the name of the cluster.
- cluster_
id float - (Integer) Specifies the id of the cluster.
- cluster_
incarnation_ floatid - (Integer) Specifies the incarnation id of the cluster.
- cluster_
name str - (String) Specifies the name of the cluster.
- cluster
Id Number - (Integer) Specifies the id of the cluster.
- cluster
Incarnation NumberId - (Integer) Specifies the incarnation id of the cluster.
- cluster
Name String - (String) Specifies the name of the cluster.
GetBackupRecoveryProtectionGroupRunsRunOriginalBackupInfo
- Cancelled
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- Cancelled
Objects doubleCount - (Integer) Specifies the count of objects for which backup was cancelled.
- Data
Lock string - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Original Backup Info Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Failed
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- Failed
Objects doubleCount - (Integer) Specifies the count of objects for which backup failed.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Sla boolViolated - (Boolean) Indicated if SLA has been violated for this run.
- Local
Snapshot List<GetStats Backup Recovery Protection Group Runs Run Original Backup Info Local Snapshot Stat> - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- Local
Task stringId - (String) Task ID for a local protection run.
- Messages List<string>
- (List) Message about the backup run.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Skipped
Objects doubleCount - (Integer) Specifies the count of objects for which backup was skipped.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Successful
App doubleObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- Successful
Objects doubleCount - (Integer) Specifies the count of objects for which backup was successful.
- Cancelled
App float64Objects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- Cancelled
Objects float64Count - (Integer) Specifies the count of objects for which backup was cancelled.
- Data
Lock string - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Original Backup Info Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Failed
App float64Objects Count - (Integer) Specifies the count of app objects for which backup failed.
- Failed
Objects float64Count - (Integer) Specifies the count of objects for which backup failed.
- Indexing
Task stringId - (String) Progress monitor task for indexing.
- Is
Sla boolViolated - (Boolean) Indicated if SLA has been violated for this run.
- Local
Snapshot []GetStats Backup Recovery Protection Group Runs Run Original Backup Info Local Snapshot Stat - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- Local
Task stringId - (String) Task ID for a local protection run.
- Messages []string
- (List) Message about the backup run.
- Progress
Task stringId - (String) Progress monitor task id for local backup run.
- Run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Skipped
Objects float64Count - (Integer) Specifies the count of objects for which backup was skipped.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
Task stringId - (String) Stats task id for local backup run.
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Successful
App float64Objects Count - (Integer) Specifies the count of app objects for which backup was successful.
- Successful
Objects float64Count - (Integer) Specifies the count of objects for which backup was successful.
- cancelled
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock String - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Original Backup Info Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- failed
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects DoubleCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Sla BooleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- local
Snapshot List<GetStats Backup Recovery Protection Group Runs Run Original Backup Info Local Snapshot Stat> - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- local
Task StringId - (String) Task ID for a local protection run.
- messages List<String>
- (List) Message about the backup run.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- run
Type String - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- skipped
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was skipped.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App DoubleObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects DoubleCount - (Integer) Specifies the count of objects for which backup was successful.
- cancelled
App numberObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects numberCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock string - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Original Backup Info Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- failed
App numberObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects numberCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task stringId - (String) Progress monitor task for indexing.
- is
Sla booleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- local
Snapshot GetStats Backup Recovery Protection Group Runs Run Original Backup Info Local Snapshot Stat[] - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- local
Task stringId - (String) Task ID for a local protection run.
- messages string[]
- (List) Message about the backup run.
- progress
Task stringId - (String) Progress monitor task id for local backup run.
- run
Type string - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- skipped
Objects numberCount - (Integer) Specifies the count of objects for which backup was skipped.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Task stringId - (String) Stats task id for local backup run.
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App numberObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects numberCount - (Integer) Specifies the count of objects for which backup was successful.
- cancelled_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was cancelled.
- data_
lock str - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Original Backup Info Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- failed_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup failed.
- failed_
objects_ floatcount - (Integer) Specifies the count of objects for which backup failed.
- indexing_
task_ strid - (String) Progress monitor task for indexing.
- is_
sla_ boolviolated - (Boolean) Indicated if SLA has been violated for this run.
- local_
snapshot_ Sequence[Getstats Backup Recovery Protection Group Runs Run Original Backup Info Local Snapshot Stat] - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- local_
task_ strid - (String) Task ID for a local protection run.
- messages Sequence[str]
- (List) Message about the backup run.
- progress_
task_ strid - (String) Progress monitor task id for local backup run.
- run_
type str - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- skipped_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was skipped.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats_
task_ strid - (String) Stats task id for local backup run.
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful_
app_ floatobjects_ count - (Integer) Specifies the count of app objects for which backup was successful.
- successful_
objects_ floatcount - (Integer) Specifies the count of objects for which backup was successful.
- cancelled
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup was cancelled.
- cancelled
Objects NumberCount - (Integer) Specifies the count of objects for which backup was cancelled.
- data
Lock String - (String) This field is deprecated. Use DataLockConstraints field instead.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- failed
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup failed.
- failed
Objects NumberCount - (Integer) Specifies the count of objects for which backup failed.
- indexing
Task StringId - (String) Progress monitor task for indexing.
- is
Sla BooleanViolated - (Boolean) Indicated if SLA has been violated for this run.
- local
Snapshot List<Property Map>Stats - (List) Specifies statistics about local snapshot. Nested schema for local_snapshot_stats:
- local
Task StringId - (String) Task ID for a local protection run.
- messages List<String>
- (List) Message about the backup run.
- progress
Task StringId - (String) Progress monitor task id for local backup run.
- run
Type String - (String) Type of Protection Group run. 'kRegular' indicates an incremental (CBT) backup. Incremental backups utilizing CBT (if supported) are captured of the target protection objects. The first run of a kRegular schedule captures all the blocks. 'kFull' indicates a full (no CBT) backup. A complete backup (all blocks) of the target protection objects are always captured and Change Block Tracking (CBT) is not utilized. 'kLog' indicates a Database Log backup. Capture the database transaction logs to allow rolling back to a specific point in time. 'kSystem' indicates system volume backup. It produces an image for bare metal recovery. 'kStorageArraySnapshot' indicates storage array snapshot backup.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- skipped
Objects NumberCount - (Integer) Specifies the count of objects for which backup was skipped.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Task StringId - (String) Stats task id for local backup run.
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- successful
App NumberObjects Count - (Integer) Specifies the count of app objects for which backup was successful.
- successful
Objects NumberCount - (Integer) Specifies the count of objects for which backup was successful.
GetBackupRecoveryProtectionGroupRunsRunOriginalBackupInfoDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunOriginalBackupInfoLocalSnapshotStat
- Bytes
Read double - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written double - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Bytes
Read float64 - (Integer) Specifies total logical bytes read for creating the snapshot.
- Bytes
Written float64 - (Integer) Specifies total size of data in bytes written after taking backup.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Double - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Double - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- bytes_
read float - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes_
written float - (Integer) Specifies total size of data in bytes written after taking backup.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- bytes
Read Number - (Integer) Specifies total logical bytes read for creating the snapshot.
- bytes
Written Number - (Integer) Specifies total size of data in bytes written after taking backup.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
GetBackupRecoveryProtectionGroupRunsRunPermission
- Created
At doubleTime Msecs - (Integer) Epoch time when tenant was created.
- Deleted
At doubleTime Msecs - (Integer) Epoch time when tenant was last updated.
- Description string
- (String) Description about the tenant.
- External
Vendor List<GetMetadatas Backup Recovery Protection Group Runs Run Permission External Vendor Metadata> - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendors who are responsible for managing tenants. This field will only applicable if tenant creation is happening for a specially provisioned clusters for external vendors. Nested schema for external_vendor_metadata:
- Id string
- (String) The tenant id.
- Is
Managed boolOn Helios - (Boolean) Flag to indicate if tenant is managed on helios.
- Last
Updated doubleAt Time Msecs - (Integer) Epoch time when tenant was last updated.
- Name string
- (String) Specifies the name of the Azure Replication target.
- Networks
List<Get
Backup Recovery Protection Group Runs Run Permission Network> - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Created
At float64Time Msecs - (Integer) Epoch time when tenant was created.
- Deleted
At float64Time Msecs - (Integer) Epoch time when tenant was last updated.
- Description string
- (String) Description about the tenant.
- External
Vendor []GetMetadatas Backup Recovery Protection Group Runs Run Permission External Vendor Metadata - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendors who are responsible for managing tenants. This field will only applicable if tenant creation is happening for a specially provisioned clusters for external vendors. Nested schema for external_vendor_metadata:
- Id string
- (String) The tenant id.
- Is
Managed boolOn Helios - (Boolean) Flag to indicate if tenant is managed on helios.
- Last
Updated float64At Time Msecs - (Integer) Epoch time when tenant was last updated.
- Name string
- (String) Specifies the name of the Azure Replication target.
- Networks
[]Get
Backup Recovery Protection Group Runs Run Permission Network - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- created
At DoubleTime Msecs - (Integer) Epoch time when tenant was created.
- deleted
At DoubleTime Msecs - (Integer) Epoch time when tenant was last updated.
- description String
- (String) Description about the tenant.
- external
Vendor List<GetMetadatas Backup Recovery Protection Group Runs Run Permission External Vendor Metadata> - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendors who are responsible for managing tenants. This field will only applicable if tenant creation is happening for a specially provisioned clusters for external vendors. Nested schema for external_vendor_metadata:
- id String
- (String) The tenant id.
- is
Managed BooleanOn Helios - (Boolean) Flag to indicate if tenant is managed on helios.
- last
Updated DoubleAt Time Msecs - (Integer) Epoch time when tenant was last updated.
- name String
- (String) Specifies the name of the Azure Replication target.
- networks
List<Get
Backup Recovery Protection Group Runs Run Permission Network> - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- created
At numberTime Msecs - (Integer) Epoch time when tenant was created.
- deleted
At numberTime Msecs - (Integer) Epoch time when tenant was last updated.
- description string
- (String) Description about the tenant.
- external
Vendor GetMetadatas Backup Recovery Protection Group Runs Run Permission External Vendor Metadata[] - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendors who are responsible for managing tenants. This field will only applicable if tenant creation is happening for a specially provisioned clusters for external vendors. Nested schema for external_vendor_metadata:
- id string
- (String) The tenant id.
- is
Managed booleanOn Helios - (Boolean) Flag to indicate if tenant is managed on helios.
- last
Updated numberAt Time Msecs - (Integer) Epoch time when tenant was last updated.
- name string
- (String) Specifies the name of the Azure Replication target.
- networks
Get
Backup Recovery Protection Group Runs Run Permission Network[] - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- created_
at_ floattime_ msecs - (Integer) Epoch time when tenant was created.
- deleted_
at_ floattime_ msecs - (Integer) Epoch time when tenant was last updated.
- description str
- (String) Description about the tenant.
- external_
vendor_ Sequence[Getmetadatas Backup Recovery Protection Group Runs Run Permission External Vendor Metadata] - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendors who are responsible for managing tenants. This field will only applicable if tenant creation is happening for a specially provisioned clusters for external vendors. Nested schema for external_vendor_metadata:
- id str
- (String) The tenant id.
- is_
managed_ boolon_ helios - (Boolean) Flag to indicate if tenant is managed on helios.
- last_
updated_ floatat_ time_ msecs - (Integer) Epoch time when tenant was last updated.
- name str
- (String) Specifies the name of the Azure Replication target.
- networks
Sequence[Get
Backup Recovery Protection Group Runs Run Permission Network] - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- created
At NumberTime Msecs - (Integer) Epoch time when tenant was created.
- deleted
At NumberTime Msecs - (Integer) Epoch time when tenant was last updated.
- description String
- (String) Description about the tenant.
- external
Vendor List<Property Map>Metadatas - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendors who are responsible for managing tenants. This field will only applicable if tenant creation is happening for a specially provisioned clusters for external vendors. Nested schema for external_vendor_metadata:
- id String
- (String) The tenant id.
- is
Managed BooleanOn Helios - (Boolean) Flag to indicate if tenant is managed on helios.
- last
Updated NumberAt Time Msecs - (Integer) Epoch time when tenant was last updated.
- name String
- (String) Specifies the name of the Azure Replication target.
- networks List<Property Map>
- (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunPermissionExternalVendorMetadata
- Ibm
Tenant List<GetMetadata Params Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param> - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendor of type 'IBM'. Nested schema for ibm_tenant_metadata_params:
- Type string
- (String) Specifies the type of the external vendor. The type specific parameters must be specified the provided type.
- Constraints: Allowable values are:
IBM
.
- Constraints: Allowable values are:
- Ibm
Tenant []GetMetadata Params Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendor of type 'IBM'. Nested schema for ibm_tenant_metadata_params:
- Type string
- (String) Specifies the type of the external vendor. The type specific parameters must be specified the provided type.
- Constraints: Allowable values are:
IBM
.
- Constraints: Allowable values are:
- ibm
Tenant List<GetMetadata Params Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param> - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendor of type 'IBM'. Nested schema for ibm_tenant_metadata_params:
- type String
- (String) Specifies the type of the external vendor. The type specific parameters must be specified the provided type.
- Constraints: Allowable values are:
IBM
.
- Constraints: Allowable values are:
- ibm
Tenant GetMetadata Params Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param[] - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendor of type 'IBM'. Nested schema for ibm_tenant_metadata_params:
- type string
- (String) Specifies the type of the external vendor. The type specific parameters must be specified the provided type.
- Constraints: Allowable values are:
IBM
.
- Constraints: Allowable values are:
- ibm_
tenant_ Sequence[Getmetadata_ params Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param] - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendor of type 'IBM'. Nested schema for ibm_tenant_metadata_params:
- type str
- (String) Specifies the type of the external vendor. The type specific parameters must be specified the provided type.
- Constraints: Allowable values are:
IBM
.
- Constraints: Allowable values are:
- ibm
Tenant List<Property Map>Metadata Params - (List) Specifies the additional metadata for the tenant that is specifically set by the external vendor of type 'IBM'. Nested schema for ibm_tenant_metadata_params:
- type String
- (String) Specifies the type of the external vendor. The type specific parameters must be specified the provided type.
- Constraints: Allowable values are:
IBM
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunPermissionExternalVendorMetadataIbmTenantMetadataParam
- Account
Id string - (String) Specifies the unique identifier of the IBM's account ID.
- Crn string
- (String) Specifies the unique CRN associated with the tenant.
- Custom
Properties List<GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Custom Property> - (List) Specifies the list of custom properties associated with the tenant. External vendors can choose to set any properties inside following list. Note that the fields set inside the following will not be available for direct filtering. API callers should make sure that no sensitive information such as passwords is sent in these fields. Nested schema for custom_properties:
- Liveness
Mode string - (String) Specifies the current liveness mode of the tenant. This mode may change based on AZ failures when vendor chooses to failover or failback the tenants to other AZs.
- Constraints: Allowable values are:
Active
,Standby
.
- Constraints: Allowable values are:
- Metrics
Configs List<GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config> - (List) Specifies the metadata for metrics configuration. The metadata defined here will be used by cluster to send the usgae metrics to IBM cloud metering service for calculating the tenant billing. Nested schema for metrics_config:
- Ownership
Mode string - (String) Specifies the current ownership mode for the tenant. The ownership of the tenant represents the active role for functioning of the tenant.
- Constraints: Allowable values are:
Primary
,Secondary
.
- Constraints: Allowable values are:
- Plan
Id string - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- Resource
Group stringId - (String) Specifies the Resource Group ID associated with the tenant.
- Resource
Instance stringId - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- Account
Id string - (String) Specifies the unique identifier of the IBM's account ID.
- Crn string
- (String) Specifies the unique CRN associated with the tenant.
- Custom
Properties []GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Custom Property - (List) Specifies the list of custom properties associated with the tenant. External vendors can choose to set any properties inside following list. Note that the fields set inside the following will not be available for direct filtering. API callers should make sure that no sensitive information such as passwords is sent in these fields. Nested schema for custom_properties:
- Liveness
Mode string - (String) Specifies the current liveness mode of the tenant. This mode may change based on AZ failures when vendor chooses to failover or failback the tenants to other AZs.
- Constraints: Allowable values are:
Active
,Standby
.
- Constraints: Allowable values are:
- Metrics
Configs []GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config - (List) Specifies the metadata for metrics configuration. The metadata defined here will be used by cluster to send the usgae metrics to IBM cloud metering service for calculating the tenant billing. Nested schema for metrics_config:
- Ownership
Mode string - (String) Specifies the current ownership mode for the tenant. The ownership of the tenant represents the active role for functioning of the tenant.
- Constraints: Allowable values are:
Primary
,Secondary
.
- Constraints: Allowable values are:
- Plan
Id string - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- Resource
Group stringId - (String) Specifies the Resource Group ID associated with the tenant.
- Resource
Instance stringId - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- account
Id String - (String) Specifies the unique identifier of the IBM's account ID.
- crn String
- (String) Specifies the unique CRN associated with the tenant.
- custom
Properties List<GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Custom Property> - (List) Specifies the list of custom properties associated with the tenant. External vendors can choose to set any properties inside following list. Note that the fields set inside the following will not be available for direct filtering. API callers should make sure that no sensitive information such as passwords is sent in these fields. Nested schema for custom_properties:
- liveness
Mode String - (String) Specifies the current liveness mode of the tenant. This mode may change based on AZ failures when vendor chooses to failover or failback the tenants to other AZs.
- Constraints: Allowable values are:
Active
,Standby
.
- Constraints: Allowable values are:
- metrics
Configs List<GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config> - (List) Specifies the metadata for metrics configuration. The metadata defined here will be used by cluster to send the usgae metrics to IBM cloud metering service for calculating the tenant billing. Nested schema for metrics_config:
- ownership
Mode String - (String) Specifies the current ownership mode for the tenant. The ownership of the tenant represents the active role for functioning of the tenant.
- Constraints: Allowable values are:
Primary
,Secondary
.
- Constraints: Allowable values are:
- plan
Id String - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- resource
Group StringId - (String) Specifies the Resource Group ID associated with the tenant.
- resource
Instance StringId - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- account
Id string - (String) Specifies the unique identifier of the IBM's account ID.
- crn string
- (String) Specifies the unique CRN associated with the tenant.
- custom
Properties GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Custom Property[] - (List) Specifies the list of custom properties associated with the tenant. External vendors can choose to set any properties inside following list. Note that the fields set inside the following will not be available for direct filtering. API callers should make sure that no sensitive information such as passwords is sent in these fields. Nested schema for custom_properties:
- liveness
Mode string - (String) Specifies the current liveness mode of the tenant. This mode may change based on AZ failures when vendor chooses to failover or failback the tenants to other AZs.
- Constraints: Allowable values are:
Active
,Standby
.
- Constraints: Allowable values are:
- metrics
Configs GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config[] - (List) Specifies the metadata for metrics configuration. The metadata defined here will be used by cluster to send the usgae metrics to IBM cloud metering service for calculating the tenant billing. Nested schema for metrics_config:
- ownership
Mode string - (String) Specifies the current ownership mode for the tenant. The ownership of the tenant represents the active role for functioning of the tenant.
- Constraints: Allowable values are:
Primary
,Secondary
.
- Constraints: Allowable values are:
- plan
Id string - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- resource
Group stringId - (String) Specifies the Resource Group ID associated with the tenant.
- resource
Instance stringId - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- account_
id str - (String) Specifies the unique identifier of the IBM's account ID.
- crn str
- (String) Specifies the unique CRN associated with the tenant.
- custom_
properties Sequence[GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Custom Property] - (List) Specifies the list of custom properties associated with the tenant. External vendors can choose to set any properties inside following list. Note that the fields set inside the following will not be available for direct filtering. API callers should make sure that no sensitive information such as passwords is sent in these fields. Nested schema for custom_properties:
- liveness_
mode str - (String) Specifies the current liveness mode of the tenant. This mode may change based on AZ failures when vendor chooses to failover or failback the tenants to other AZs.
- Constraints: Allowable values are:
Active
,Standby
.
- Constraints: Allowable values are:
- metrics_
configs Sequence[GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config] - (List) Specifies the metadata for metrics configuration. The metadata defined here will be used by cluster to send the usgae metrics to IBM cloud metering service for calculating the tenant billing. Nested schema for metrics_config:
- ownership_
mode str - (String) Specifies the current ownership mode for the tenant. The ownership of the tenant represents the active role for functioning of the tenant.
- Constraints: Allowable values are:
Primary
,Secondary
.
- Constraints: Allowable values are:
- plan_
id str - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- resource_
group_ strid - (String) Specifies the Resource Group ID associated with the tenant.
- resource_
instance_ strid - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- account
Id String - (String) Specifies the unique identifier of the IBM's account ID.
- crn String
- (String) Specifies the unique CRN associated with the tenant.
- custom
Properties List<Property Map> - (List) Specifies the list of custom properties associated with the tenant. External vendors can choose to set any properties inside following list. Note that the fields set inside the following will not be available for direct filtering. API callers should make sure that no sensitive information such as passwords is sent in these fields. Nested schema for custom_properties:
- liveness
Mode String - (String) Specifies the current liveness mode of the tenant. This mode may change based on AZ failures when vendor chooses to failover or failback the tenants to other AZs.
- Constraints: Allowable values are:
Active
,Standby
.
- Constraints: Allowable values are:
- metrics
Configs List<Property Map> - (List) Specifies the metadata for metrics configuration. The metadata defined here will be used by cluster to send the usgae metrics to IBM cloud metering service for calculating the tenant billing. Nested schema for metrics_config:
- ownership
Mode String - (String) Specifies the current ownership mode for the tenant. The ownership of the tenant represents the active role for functioning of the tenant.
- Constraints: Allowable values are:
Primary
,Secondary
.
- Constraints: Allowable values are:
- plan
Id String - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- resource
Group StringId - (String) Specifies the Resource Group ID associated with the tenant.
- resource
Instance StringId - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
GetBackupRecoveryProtectionGroupRunsRunPermissionExternalVendorMetadataIbmTenantMetadataParamCustomProperty
GetBackupRecoveryProtectionGroupRunsRunPermissionExternalVendorMetadataIbmTenantMetadataParamMetricsConfig
- Cos
Resource List<GetConfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Cos Resource Config> - (List) Specifies the details of COS resource configuration required for posting metrics and trackinb billing information for IBM tenants. Nested schema for cos_resource_config:
- Iam
Metrics List<GetConfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Iam Metrics Config> - (List) Specifies the IAM configuration that will be used for accessing the billing service in IBM cloud. Nested schema for iam_metrics_config:
- Metering
Configs List<GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Metering Config> - (List) Specifies the metering configuration that will be used for IBM cluster to send the billing details to IBM billing service. Nested schema for metering_config:
- Cos
Resource []GetConfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Cos Resource Config - (List) Specifies the details of COS resource configuration required for posting metrics and trackinb billing information for IBM tenants. Nested schema for cos_resource_config:
- Iam
Metrics []GetConfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Iam Metrics Config - (List) Specifies the IAM configuration that will be used for accessing the billing service in IBM cloud. Nested schema for iam_metrics_config:
- Metering
Configs []GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Metering Config - (List) Specifies the metering configuration that will be used for IBM cluster to send the billing details to IBM billing service. Nested schema for metering_config:
- cos
Resource List<GetConfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Cos Resource Config> - (List) Specifies the details of COS resource configuration required for posting metrics and trackinb billing information for IBM tenants. Nested schema for cos_resource_config:
- iam
Metrics List<GetConfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Iam Metrics Config> - (List) Specifies the IAM configuration that will be used for accessing the billing service in IBM cloud. Nested schema for iam_metrics_config:
- metering
Configs List<GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Metering Config> - (List) Specifies the metering configuration that will be used for IBM cluster to send the billing details to IBM billing service. Nested schema for metering_config:
- cos
Resource GetConfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Cos Resource Config[] - (List) Specifies the details of COS resource configuration required for posting metrics and trackinb billing information for IBM tenants. Nested schema for cos_resource_config:
- iam
Metrics GetConfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Iam Metrics Config[] - (List) Specifies the IAM configuration that will be used for accessing the billing service in IBM cloud. Nested schema for iam_metrics_config:
- metering
Configs GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Metering Config[] - (List) Specifies the metering configuration that will be used for IBM cluster to send the billing details to IBM billing service. Nested schema for metering_config:
- cos_
resource_ Sequence[Getconfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Cos Resource Config] - (List) Specifies the details of COS resource configuration required for posting metrics and trackinb billing information for IBM tenants. Nested schema for cos_resource_config:
- iam_
metrics_ Sequence[Getconfigs Backup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Iam Metrics Config] - (List) Specifies the IAM configuration that will be used for accessing the billing service in IBM cloud. Nested schema for iam_metrics_config:
- metering_
configs Sequence[GetBackup Recovery Protection Group Runs Run Permission External Vendor Metadata Ibm Tenant Metadata Param Metrics Config Metering Config] - (List) Specifies the metering configuration that will be used for IBM cluster to send the billing details to IBM billing service. Nested schema for metering_config:
- cos
Resource List<Property Map>Configs - (List) Specifies the details of COS resource configuration required for posting metrics and trackinb billing information for IBM tenants. Nested schema for cos_resource_config:
- iam
Metrics List<Property Map>Configs - (List) Specifies the IAM configuration that will be used for accessing the billing service in IBM cloud. Nested schema for iam_metrics_config:
- metering
Configs List<Property Map> - (List) Specifies the metering configuration that will be used for IBM cluster to send the billing details to IBM billing service. Nested schema for metering_config:
GetBackupRecoveryProtectionGroupRunsRunPermissionExternalVendorMetadataIbmTenantMetadataParamMetricsConfigCosResourceConfig
- Resource
Url string - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- Resource
Url string - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- resource
Url String - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- resource
Url string - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- resource_
url str - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- resource
Url String - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
GetBackupRecoveryProtectionGroupRunsRunPermissionExternalVendorMetadataIbmTenantMetadataParamMetricsConfigIamMetricsConfig
- Billing
Api stringKey Secret Id - (String) Specifies Id of the secret that contains the API key.
- Iam
Url string - (String) Specifies the IAM URL needed to fetch the operator token from IBM. The operator token is needed to make service API calls to IBM billing service.
- Billing
Api stringKey Secret Id - (String) Specifies Id of the secret that contains the API key.
- Iam
Url string - (String) Specifies the IAM URL needed to fetch the operator token from IBM. The operator token is needed to make service API calls to IBM billing service.
- billing
Api StringKey Secret Id - (String) Specifies Id of the secret that contains the API key.
- iam
Url String - (String) Specifies the IAM URL needed to fetch the operator token from IBM. The operator token is needed to make service API calls to IBM billing service.
- billing
Api stringKey Secret Id - (String) Specifies Id of the secret that contains the API key.
- iam
Url string - (String) Specifies the IAM URL needed to fetch the operator token from IBM. The operator token is needed to make service API calls to IBM billing service.
- billing_
api_ strkey_ secret_ id - (String) Specifies Id of the secret that contains the API key.
- iam_
url str - (String) Specifies the IAM URL needed to fetch the operator token from IBM. The operator token is needed to make service API calls to IBM billing service.
- billing
Api StringKey Secret Id - (String) Specifies Id of the secret that contains the API key.
- iam
Url String - (String) Specifies the IAM URL needed to fetch the operator token from IBM. The operator token is needed to make service API calls to IBM billing service.
GetBackupRecoveryProtectionGroupRunsRunPermissionExternalVendorMetadataIbmTenantMetadataParamMetricsConfigMeteringConfig
- Part
Ids List<string> - (List) Specifies the list of part identifiers used for metrics identification.
- Constraints: Allowable list items are:
USAGETERABYTE
. The minimum length is1
item.
- Constraints: Allowable list items are:
- Submission
Interval doubleIn Secs - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- Url string
- (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- Part
Ids []string - (List) Specifies the list of part identifiers used for metrics identification.
- Constraints: Allowable list items are:
USAGETERABYTE
. The minimum length is1
item.
- Constraints: Allowable list items are:
- Submission
Interval float64In Secs - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- Url string
- (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- part
Ids List<String> - (List) Specifies the list of part identifiers used for metrics identification.
- Constraints: Allowable list items are:
USAGETERABYTE
. The minimum length is1
item.
- Constraints: Allowable list items are:
- submission
Interval DoubleIn Secs - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- url String
- (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- part
Ids string[] - (List) Specifies the list of part identifiers used for metrics identification.
- Constraints: Allowable list items are:
USAGETERABYTE
. The minimum length is1
item.
- Constraints: Allowable list items are:
- submission
Interval numberIn Secs - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- url string
- (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- part_
ids Sequence[str] - (List) Specifies the list of part identifiers used for metrics identification.
- Constraints: Allowable list items are:
USAGETERABYTE
. The minimum length is1
item.
- Constraints: Allowable list items are:
- submission_
interval_ floatin_ secs - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- url str
- (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- part
Ids List<String> - (List) Specifies the list of part identifiers used for metrics identification.
- Constraints: Allowable list items are:
USAGETERABYTE
. The minimum length is1
item.
- Constraints: Allowable list items are:
- submission
Interval NumberIn Secs - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- url String
- (String) Specifies the base metering URL that will be used by cluster to send the billing information.
GetBackupRecoveryProtectionGroupRunsRunPermissionNetwork
- Cluster
Hostname string - (String) The hostname for Cohesity cluster as seen by tenants and as is routable from the tenant's network. Tenant's VLAN's hostname, if available can be used instead but it is mandatory to provide this value if there's no VLAN hostname to use. Also, when set, this field would take precedence over VLAN hostname.
- Cluster
Ips List<string> - (List) Set of IPs as seen from the tenant's network for the Cohesity cluster. Only one from 'clusterHostname' and 'clusterIps' is needed.
- Connector
Enabled bool - (Boolean) Whether connector (hybrid extender) is enabled.
- Cluster
Hostname string - (String) The hostname for Cohesity cluster as seen by tenants and as is routable from the tenant's network. Tenant's VLAN's hostname, if available can be used instead but it is mandatory to provide this value if there's no VLAN hostname to use. Also, when set, this field would take precedence over VLAN hostname.
- Cluster
Ips []string - (List) Set of IPs as seen from the tenant's network for the Cohesity cluster. Only one from 'clusterHostname' and 'clusterIps' is needed.
- Connector
Enabled bool - (Boolean) Whether connector (hybrid extender) is enabled.
- cluster
Hostname String - (String) The hostname for Cohesity cluster as seen by tenants and as is routable from the tenant's network. Tenant's VLAN's hostname, if available can be used instead but it is mandatory to provide this value if there's no VLAN hostname to use. Also, when set, this field would take precedence over VLAN hostname.
- cluster
Ips List<String> - (List) Set of IPs as seen from the tenant's network for the Cohesity cluster. Only one from 'clusterHostname' and 'clusterIps' is needed.
- connector
Enabled Boolean - (Boolean) Whether connector (hybrid extender) is enabled.
- cluster
Hostname string - (String) The hostname for Cohesity cluster as seen by tenants and as is routable from the tenant's network. Tenant's VLAN's hostname, if available can be used instead but it is mandatory to provide this value if there's no VLAN hostname to use. Also, when set, this field would take precedence over VLAN hostname.
- cluster
Ips string[] - (List) Set of IPs as seen from the tenant's network for the Cohesity cluster. Only one from 'clusterHostname' and 'clusterIps' is needed.
- connector
Enabled boolean - (Boolean) Whether connector (hybrid extender) is enabled.
- cluster_
hostname str - (String) The hostname for Cohesity cluster as seen by tenants and as is routable from the tenant's network. Tenant's VLAN's hostname, if available can be used instead but it is mandatory to provide this value if there's no VLAN hostname to use. Also, when set, this field would take precedence over VLAN hostname.
- cluster_
ips Sequence[str] - (List) Set of IPs as seen from the tenant's network for the Cohesity cluster. Only one from 'clusterHostname' and 'clusterIps' is needed.
- connector_
enabled bool - (Boolean) Whether connector (hybrid extender) is enabled.
- cluster
Hostname String - (String) The hostname for Cohesity cluster as seen by tenants and as is routable from the tenant's network. Tenant's VLAN's hostname, if available can be used instead but it is mandatory to provide this value if there's no VLAN hostname to use. Also, when set, this field would take precedence over VLAN hostname.
- cluster
Ips List<String> - (List) Set of IPs as seen from the tenant's network for the Cohesity cluster. Only one from 'clusterHostname' and 'clusterIps' is needed.
- connector
Enabled Boolean - (Boolean) Whether connector (hybrid extender) is enabled.
GetBackupRecoveryProtectionGroupRunsRunReplicationInfo
- Replication
Target List<GetResults Backup Recovery Protection Group Runs Run Replication Info Replication Target Result> - (List) Replication results for each replication target. Nested schema for replication_target_results:
- Replication
Target []GetResults Backup Recovery Protection Group Runs Run Replication Info Replication Target Result - (List) Replication results for each replication target. Nested schema for replication_target_results:
- replication
Target List<GetResults Backup Recovery Protection Group Runs Run Replication Info Replication Target Result> - (List) Replication results for each replication target. Nested schema for replication_target_results:
- replication
Target GetResults Backup Recovery Protection Group Runs Run Replication Info Replication Target Result[] - (List) Replication results for each replication target. Nested schema for replication_target_results:
- replication_
target_ Sequence[Getresults Backup Recovery Protection Group Runs Run Replication Info Replication Target Result] - (List) Replication results for each replication target. Nested schema for replication_target_results:
- replication
Target List<Property Map>Results - (List) Replication results for each replication target. Nested schema for replication_target_results:
GetBackupRecoveryProtectionGroupRunsRunReplicationInfoReplicationTargetResult
- Aws
Target List<GetConfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Aws Target Config> - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- Azure
Target List<GetConfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Azure Target Config> - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- Cluster
Id double - (Integer) Specifies the id of the cluster.
- Cluster
Incarnation doubleId - (Integer) Specifies the incarnation id of the cluster.
- Cluster
Name string - (String) Specifies the name of the cluster.
- Data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time doubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Entries
Changed double - (Integer) Specifies the number of metadata actions completed during the protection run.
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Is
In boolBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Message string
- (String) Message about the replication run.
- Multi
Object boolReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Percentage
Completed double - (Integer) Specifies the progress in percentage.
- Queued
Time doubleUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- Replication
Task stringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- Start
Time doubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
List<Get
Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- Aws
Target []GetConfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Aws Target Config - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- Azure
Target []GetConfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Azure Target Config - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- Cluster
Id float64 - (Integer) Specifies the id of the cluster.
- Cluster
Incarnation float64Id - (Integer) Specifies the incarnation id of the cluster.
- Cluster
Name string - (String) Specifies the name of the cluster.
- Data
Lock []GetConstraints Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Data Lock Constraint - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- End
Time float64Usecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- Entries
Changed float64 - (Integer) Specifies the number of metadata actions completed during the protection run.
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Is
In boolBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- Is
Manually boolDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- Message string
- (String) Message about the replication run.
- Multi
Object boolReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- On
Legal boolHold - (Boolean) Specifies the legal hold status for a replication target.
- Percentage
Completed float64 - (Integer) Specifies the progress in percentage.
- Queued
Time float64Usecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- Replication
Task stringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- Start
Time float64Usecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- Stats
[]Get
Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Stat - (List) Specifies statistics about replication data. Nested schema for stats:
- Status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Target List<GetConfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Aws Target Config> - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- azure
Target List<GetConfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Azure Target Config> - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- cluster
Id Double - (Integer) Specifies the id of the cluster.
- cluster
Incarnation DoubleId - (Integer) Specifies the incarnation id of the cluster.
- cluster
Name String - (String) Specifies the name of the cluster.
- data
Lock List<GetConstraints Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Data Lock Constraint> - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time DoubleUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- entries
Changed Double - (Integer) Specifies the number of metadata actions completed during the protection run.
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- is
In BooleanBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message String
- (String) Message about the replication run.
- multi
Object BooleanReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- percentage
Completed Double - (Integer) Specifies the progress in percentage.
- queued
Time DoubleUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- replication
Task StringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- start
Time DoubleUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
List<Get
Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Stat> - (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Target GetConfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Aws Target Config[] - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- azure
Target GetConfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Azure Target Config[] - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- cluster
Id number - (Integer) Specifies the id of the cluster.
- cluster
Incarnation numberId - (Integer) Specifies the incarnation id of the cluster.
- cluster
Name string - (String) Specifies the name of the cluster.
- data
Lock GetConstraints Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Data Lock Constraint[] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time numberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- entries
Changed number - (Integer) Specifies the number of metadata actions completed during the protection run.
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- is
In booleanBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- is
Manually booleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message string
- (String) Message about the replication run.
- multi
Object booleanReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- on
Legal booleanHold - (Boolean) Specifies the legal hold status for a replication target.
- percentage
Completed number - (Integer) Specifies the progress in percentage.
- queued
Time numberUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- replication
Task stringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- start
Time numberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Get
Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Stat[] - (List) Specifies statistics about replication data. Nested schema for stats:
- status string
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws_
target_ Sequence[Getconfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Aws Target Config] - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- azure_
target_ Sequence[Getconfigs Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Azure Target Config] - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- cluster_
id float - (Integer) Specifies the id of the cluster.
- cluster_
incarnation_ floatid - (Integer) Specifies the incarnation id of the cluster.
- cluster_
name str - (String) Specifies the name of the cluster.
- data_
lock_ Sequence[Getconstraints Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Data Lock Constraint] - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end_
time_ floatusecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- entries_
changed float - (Integer) Specifies the number of metadata actions completed during the protection run.
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- is_
in_ boolbound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- is_
manually_ booldeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message str
- (String) Message about the replication run.
- multi_
object_ boolreplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- on_
legal_ boolhold - (Boolean) Specifies the legal hold status for a replication target.
- percentage_
completed float - (Integer) Specifies the progress in percentage.
- queued_
time_ floatusecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- replication_
task_ strid - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- start_
time_ floatusecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats
Sequence[Get
Backup Recovery Protection Group Runs Run Replication Info Replication Target Result Stat] - (List) Specifies statistics about replication data. Nested schema for stats:
- status str
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
- aws
Target List<Property Map>Configs - (List) Specifies the configuration for adding AWS as repilcation target. Nested schema for aws_target_config:
- azure
Target List<Property Map>Configs - (List) Specifies the configuration for adding Azure as replication target. Nested schema for azure_target_config:
- cluster
Id Number - (Integer) Specifies the id of the cluster.
- cluster
Incarnation NumberId - (Integer) Specifies the incarnation id of the cluster.
- cluster
Name String - (String) Specifies the name of the cluster.
- data
Lock List<Property Map>Constraints - (List) Specifies the dataLock constraints for local or target snapshot. Nested schema for data_lock_constraints:
- end
Time NumberUsecs - End time for time range filter. Specify the end time as a Unix epoch Timestamp (in microseconds), only runs executing before this time will be returned. By default it is current time.
- entries
Changed Number - (Integer) Specifies the number of metadata actions completed during the protection run.
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- is
In BooleanBound - (Boolean) Specifies the direction of the replication. If the snapshot is replicated to this cluster, then isInBound is true. If the snapshot is replicated from this cluster to another cluster, then isInBound is false.
- is
Manually BooleanDeleted - (Boolean) Specifies whether the snapshot is deleted manually.
- message String
- (String) Message about the replication run.
- multi
Object BooleanReplication - (Boolean) Specifies whether view based replication was used. In this case, the view containing all objects is replicated as a whole instead of replicating on a per object basis.
- on
Legal BooleanHold - (Boolean) Specifies the legal hold status for a replication target.
- percentage
Completed Number - (Integer) Specifies the progress in percentage.
- queued
Time NumberUsecs - (Integer) Specifies the time when the replication is queued for schedule in Unix epoch Timestamp(in microseconds) for a target.
- replication
Task StringId - (String) Task UID for a replication protection run. This is for tasks that are replicated from another cluster.
- start
Time NumberUsecs - Start time for time range filter. Specify the start time as a Unix epoch Timestamp (in microseconds), only runs executing after this time will be returned. By default it is endTimeUsecs minus an hour.
- stats List<Property Map>
- (List) Specifies statistics about replication data. Nested schema for stats:
- status String
- (String) Status of the replication for a target. 'Running' indicates that the run is still running. 'Canceled' indicates that the run has been canceled. 'Canceling' indicates that the run is in the process of being canceled. 'Paused' indicates that the ongoing run has been paused. 'Failed' indicates that the run has failed. 'Missed' indicates that the run was unable to take place at the scheduled time because the previous run was still happening. 'Succeeded' indicates that the run has finished successfully. 'SucceededWithWarning' indicates that the run finished successfully, but there were some warning messages. 'Skipped' indicates that the run was skipped.
- Constraints: Allowable values are:
Accepted
,Running
,Canceled
,Canceling
,Failed
,Missed
,Succeeded
,SucceededWithWarning
,OnHold
,Finalizing
,Skipped
,Paused
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunReplicationInfoReplicationTargetResultAwsTargetConfig
- Name string
- (String) Specifies the name of the Azure Replication target.
- Region double
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Region
Name string - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Source
Id double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- Name string
- (String) Specifies the name of the Azure Replication target.
- Region float64
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Region
Name string - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- Source
Id float64 - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- name String
- (String) Specifies the name of the Azure Replication target.
- region Double
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- region
Name String - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- source
Id Double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- name string
- (String) Specifies the name of the Azure Replication target.
- region number
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- region
Name string - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- source
Id number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- name str
- (String) Specifies the name of the Azure Replication target.
- region float
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- region_
name str - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- source_
id float - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- name String
- (String) Specifies the name of the Azure Replication target.
- region Number
- (Integer) Specifies id of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- region
Name String - (String) Specifies name of the AWS region in which to replicate the Snapshot to. Applicable if replication target is AWS target.
- source
Id Number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
GetBackupRecoveryProtectionGroupRunsRunReplicationInfoReplicationTargetResultAzureTargetConfig
- Name string
- (String) Specifies the name of the Azure Replication target.
- Resource
Group double - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- Resource
Group stringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- Source
Id double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- Storage
Account double - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- Storage
Account stringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- Storage
Container double - (Integer) Specifies id of the storage container of Azure Replication target.
- Storage
Container stringName - (String) Specifies name of the storage container of Azure Replication target.
- Storage
Resource doubleGroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- Storage
Resource stringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
- Name string
- (String) Specifies the name of the Azure Replication target.
- Resource
Group float64 - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- Resource
Group stringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- Source
Id float64 - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- Storage
Account float64 - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- Storage
Account stringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- Storage
Container float64 - (Integer) Specifies id of the storage container of Azure Replication target.
- Storage
Container stringName - (String) Specifies name of the storage container of Azure Replication target.
- Storage
Resource float64Group - (Integer) Specifies id of the storage resource group of Azure Replication target.
- Storage
Resource stringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
- name String
- (String) Specifies the name of the Azure Replication target.
- resource
Group Double - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- resource
Group StringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- source
Id Double - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- storage
Account Double - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- storage
Account StringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- storage
Container Double - (Integer) Specifies id of the storage container of Azure Replication target.
- storage
Container StringName - (String) Specifies name of the storage container of Azure Replication target.
- storage
Resource DoubleGroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- storage
Resource StringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
- name string
- (String) Specifies the name of the Azure Replication target.
- resource
Group number - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- resource
Group stringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- source
Id number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- storage
Account number - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- storage
Account stringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- storage
Container number - (Integer) Specifies id of the storage container of Azure Replication target.
- storage
Container stringName - (String) Specifies name of the storage container of Azure Replication target.
- storage
Resource numberGroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- storage
Resource stringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
- name str
- (String) Specifies the name of the Azure Replication target.
- resource_
group float - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- resource_
group_ strname - (String) Specifies name of the Azure resource group used to filter regions in UI.
- source_
id float - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- storage_
account float - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- storage_
account_ strname - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- storage_
container float - (Integer) Specifies id of the storage container of Azure Replication target.
- storage_
container_ strname - (String) Specifies name of the storage container of Azure Replication target.
- storage_
resource_ floatgroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- storage_
resource_ strgroup_ name - (String) Specifies name of the storage resource group of Azure Replication target.
- name String
- (String) Specifies the name of the Azure Replication target.
- resource
Group Number - (Integer) Specifies id of the Azure resource group used to filter regions in UI.
- resource
Group StringName - (String) Specifies name of the Azure resource group used to filter regions in UI.
- source
Id Number - (Integer) Specifies the source id of the Azure protection source registered on IBM cluster.
- storage
Account Number - (Integer) Specifies id of the storage account of Azure replication target which will contain storage container.
- storage
Account StringName - (String) Specifies name of the storage account of Azure replication target which will contain storage container.
- storage
Container Number - (Integer) Specifies id of the storage container of Azure Replication target.
- storage
Container StringName - (String) Specifies name of the storage container of Azure Replication target.
- storage
Resource NumberGroup - (Integer) Specifies id of the storage resource group of Azure Replication target.
- storage
Resource StringGroup Name - (String) Specifies name of the storage resource group of Azure Replication target.
GetBackupRecoveryProtectionGroupRunsRunReplicationInfoReplicationTargetResultDataLockConstraint
- Expiry
Time doubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- Expiry
Time float64Usecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- Mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time DoubleUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time numberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode string
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry_
time_ floatusecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode str
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
- expiry
Time NumberUsecs - (Integer) Specifies the expiry time of attempt in Unix epoch Timestamp (in microseconds) for an object.
- mode String
- (String) Specifies the type of WORM retention type. 'Compliance' implies WORM retention is set for compliance reason. 'Administrative' implies WORM retention is set for administrative purposes.
- Constraints: Allowable values are:
Compliance
,Administrative
.
- Constraints: Allowable values are:
GetBackupRecoveryProtectionGroupRunsRunReplicationInfoReplicationTargetResultStat
- Logical
Bytes doubleTransferred - (Integer) Specifies the total logical bytes transferred.
- Logical
Size doubleBytes - (Integer) Specifies the total logical size in bytes.
- Physical
Bytes doubleTransferred - (Integer) Specifies the total physical bytes transferred.
- Logical
Bytes float64Transferred - (Integer) Specifies the total logical bytes transferred.
- Logical
Size float64Bytes - (Integer) Specifies the total logical size in bytes.
- Physical
Bytes float64Transferred - (Integer) Specifies the total physical bytes transferred.
- logical
Bytes DoubleTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size DoubleBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes DoubleTransferred - (Integer) Specifies the total physical bytes transferred.
- logical
Bytes numberTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size numberBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes numberTransferred - (Integer) Specifies the total physical bytes transferred.
- logical_
bytes_ floattransferred - (Integer) Specifies the total logical bytes transferred.
- logical_
size_ floatbytes - (Integer) Specifies the total logical size in bytes.
- physical_
bytes_ floattransferred - (Integer) Specifies the total physical bytes transferred.
- logical
Bytes NumberTransferred - (Integer) Specifies the total logical bytes transferred.
- logical
Size NumberBytes - (Integer) Specifies the total logical size in bytes.
- physical
Bytes NumberTransferred - (Integer) Specifies the total physical bytes transferred.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.