ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud
ibm.getBackupRecoverySearchProtectedObjects
Explore with Pulumi AI
Provides a read-only data source to retrieve information about a Protected Objects Search Result. 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 backupRecoverySearchProtectedObjects = ibm.getBackupRecoverySearchProtectedObjects({
xIbmTenantId: "x_ibm_tenant_id",
});
import pulumi
import pulumi_ibm as ibm
backup_recovery_search_protected_objects = ibm.get_backup_recovery_search_protected_objects(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.GetBackupRecoverySearchProtectedObjects(ctx, &ibm.GetBackupRecoverySearchProtectedObjectsArgs{
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 backupRecoverySearchProtectedObjects = Ibm.GetBackupRecoverySearchProtectedObjects.Invoke(new()
{
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.GetBackupRecoverySearchProtectedObjectsArgs;
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 backupRecoverySearchProtectedObjects = IbmFunctions.getBackupRecoverySearchProtectedObjects(GetBackupRecoverySearchProtectedObjectsArgs.builder()
.xIbmTenantId("x_ibm_tenant_id")
.build());
}
}
variables:
backupRecoverySearchProtectedObjects:
fn::invoke:
function: ibm:getBackupRecoverySearchProtectedObjects
arguments:
xIbmTenantId: x_ibm_tenant_id
Using getBackupRecoverySearchProtectedObjects
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 getBackupRecoverySearchProtectedObjects(args: GetBackupRecoverySearchProtectedObjectsArgs, opts?: InvokeOptions): Promise<GetBackupRecoverySearchProtectedObjectsResult>
function getBackupRecoverySearchProtectedObjectsOutput(args: GetBackupRecoverySearchProtectedObjectsOutputArgs, opts?: InvokeOptions): Output<GetBackupRecoverySearchProtectedObjectsResult>
def get_backup_recovery_search_protected_objects(cdp_protected_only: Optional[bool] = None,
environments: Optional[Sequence[str]] = None,
filter_snapshot_from_usecs: Optional[float] = None,
filter_snapshot_to_usecs: Optional[float] = None,
id: Optional[str] = None,
object_action_key: Optional[str] = None,
object_ids: Optional[Sequence[float]] = None,
os_types: Optional[Sequence[str]] = None,
protection_group_ids: Optional[Sequence[str]] = None,
request_initiator_type: Optional[str] = None,
run_instance_ids: Optional[Sequence[float]] = None,
search_string: Optional[str] = None,
snapshot_actions: Optional[Sequence[str]] = None,
source_ids: Optional[Sequence[float]] = None,
sub_result_size: Optional[float] = None,
use_cached_data: Optional[bool] = None,
x_ibm_tenant_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBackupRecoverySearchProtectedObjectsResult
def get_backup_recovery_search_protected_objects_output(cdp_protected_only: Optional[pulumi.Input[bool]] = None,
environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
filter_snapshot_from_usecs: Optional[pulumi.Input[float]] = None,
filter_snapshot_to_usecs: Optional[pulumi.Input[float]] = None,
id: Optional[pulumi.Input[str]] = None,
object_action_key: Optional[pulumi.Input[str]] = None,
object_ids: Optional[pulumi.Input[Sequence[pulumi.Input[float]]]] = None,
os_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
protection_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
request_initiator_type: Optional[pulumi.Input[str]] = None,
run_instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[float]]]] = None,
search_string: Optional[pulumi.Input[str]] = None,
snapshot_actions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
source_ids: Optional[pulumi.Input[Sequence[pulumi.Input[float]]]] = None,
sub_result_size: 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[GetBackupRecoverySearchProtectedObjectsResult]
func GetBackupRecoverySearchProtectedObjects(ctx *Context, args *GetBackupRecoverySearchProtectedObjectsArgs, opts ...InvokeOption) (*GetBackupRecoverySearchProtectedObjectsResult, error)
func GetBackupRecoverySearchProtectedObjectsOutput(ctx *Context, args *GetBackupRecoverySearchProtectedObjectsOutputArgs, opts ...InvokeOption) GetBackupRecoverySearchProtectedObjectsResultOutput
> Note: This function is named GetBackupRecoverySearchProtectedObjects
in the Go SDK.
public static class GetBackupRecoverySearchProtectedObjects
{
public static Task<GetBackupRecoverySearchProtectedObjectsResult> InvokeAsync(GetBackupRecoverySearchProtectedObjectsArgs args, InvokeOptions? opts = null)
public static Output<GetBackupRecoverySearchProtectedObjectsResult> Invoke(GetBackupRecoverySearchProtectedObjectsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetBackupRecoverySearchProtectedObjectsResult> getBackupRecoverySearchProtectedObjects(GetBackupRecoverySearchProtectedObjectsArgs args, InvokeOptions options)
public static Output<GetBackupRecoverySearchProtectedObjectsResult> getBackupRecoverySearchProtectedObjects(GetBackupRecoverySearchProtectedObjectsArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getBackupRecoverySearchProtectedObjects:getBackupRecoverySearchProtectedObjects
arguments:
# arguments dictionary
The following arguments are supported:
- 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.
- Cdp
Protected boolOnly - Specifies whether to only return the CDP protected objects.
- Environments List<string>
- Specifies the environment type to filter objects.
- Constraints: Allowable list items are:
kPhysical
,kSQL
.
- Constraints: Allowable list items are:
- Filter
Snapshot doubleFrom Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot after this value.
- Filter
Snapshot doubleTo Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot before this value.
- Id string
- (Integer) Specifies object id.
- Object
Action stringKey - Filter by ObjectActionKey, which uniquely represents protection of an object. An object can be protected in multiple ways but atmost once for a given combination of ObjectActionKey. When specified, latest snapshot info matching the objectActionKey is for corresponding object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Object
Ids List<double> - Specifies a list of Object ids to filter.
- Os
Types List<string> - Specifies the operating system types to filter objects on.
- Constraints: Allowable list items are:
kLinux
,kWindows
.
- Constraints: Allowable list items are:
- Protection
Group List<string>Ids - Specifies a list of Protection Group ids to filter the objects. If specified, the objects protected by specified Protection Group ids will be returned.
- 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
Instance List<double>Ids - Specifies a list of run instance ids. If specified only objects belonging to the provided run id will be retunrned.
- Search
String string - Specifies the search string to filter the objects. This search string will be applicable for objectnames and Protection Group names. User can specify a wildcard character '' as a suffix to a string where all object and their Protection Group names are matched with the prefix string. For example, if vm1 and vm2 are the names of objects, user can specify vm to list the objects. If not specified, then all the objects with Protection Groups will be returned which will match other filtering criteria.
- Snapshot
Actions List<string> - Specifies a list of recovery actions. Only snapshots that applies to these actions will be returned.
- Constraints: Allowable list items are:
RecoverVMs
,RecoverFiles
,InstantVolumeMount
,RecoverVmDisks
,MountVolumes
,RecoverVApps
,RecoverRDS
,RecoverAurora
,RecoverS3Buckets
,RecoverApps
,RecoverNasVolume
,RecoverPhysicalVolumes
,RecoverSystem
,RecoverSanVolumes
,RecoverNamespaces
,RecoverObjects
,DownloadFilesAndFolders
,RecoverPublicFolders
,RecoverVAppTemplates
,RecoverMailbox
,RecoverOneDrive
,RecoverMsTeam
,RecoverMsGroup
,RecoverSharePoint
,ConvertToPst
,RecoverSfdcRecords
,RecoverAzureSQL
,DownloadChats
,RecoverRDSPostgres
,RecoverMailboxCSM
,RecoverOneDriveCSM
,RecoverSharePointCSM
.
- Constraints: Allowable list items are:
- Source
Ids List<double> - Specifies a list of Protection Source object ids to filter the objects. If specified, the object which are present in those Sources will be returned.
- Sub
Result doubleSize - Specifies the size of objects to be fetched for a single subresult.
- Use
Cached boolData - Specifies whether we can serve the GET request to the read replica cache cache. There is a lag of 15 seconds between the read replica and primary data source.
- 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.
- Cdp
Protected boolOnly - Specifies whether to only return the CDP protected objects.
- Environments []string
- Specifies the environment type to filter objects.
- Constraints: Allowable list items are:
kPhysical
,kSQL
.
- Constraints: Allowable list items are:
- Filter
Snapshot float64From Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot after this value.
- Filter
Snapshot float64To Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot before this value.
- Id string
- (Integer) Specifies object id.
- Object
Action stringKey - Filter by ObjectActionKey, which uniquely represents protection of an object. An object can be protected in multiple ways but atmost once for a given combination of ObjectActionKey. When specified, latest snapshot info matching the objectActionKey is for corresponding object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Object
Ids []float64 - Specifies a list of Object ids to filter.
- Os
Types []string - Specifies the operating system types to filter objects on.
- Constraints: Allowable list items are:
kLinux
,kWindows
.
- Constraints: Allowable list items are:
- Protection
Group []stringIds - Specifies a list of Protection Group ids to filter the objects. If specified, the objects protected by specified Protection Group ids will be returned.
- 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
Instance []float64Ids - Specifies a list of run instance ids. If specified only objects belonging to the provided run id will be retunrned.
- Search
String string - Specifies the search string to filter the objects. This search string will be applicable for objectnames and Protection Group names. User can specify a wildcard character '' as a suffix to a string where all object and their Protection Group names are matched with the prefix string. For example, if vm1 and vm2 are the names of objects, user can specify vm to list the objects. If not specified, then all the objects with Protection Groups will be returned which will match other filtering criteria.
- Snapshot
Actions []string - Specifies a list of recovery actions. Only snapshots that applies to these actions will be returned.
- Constraints: Allowable list items are:
RecoverVMs
,RecoverFiles
,InstantVolumeMount
,RecoverVmDisks
,MountVolumes
,RecoverVApps
,RecoverRDS
,RecoverAurora
,RecoverS3Buckets
,RecoverApps
,RecoverNasVolume
,RecoverPhysicalVolumes
,RecoverSystem
,RecoverSanVolumes
,RecoverNamespaces
,RecoverObjects
,DownloadFilesAndFolders
,RecoverPublicFolders
,RecoverVAppTemplates
,RecoverMailbox
,RecoverOneDrive
,RecoverMsTeam
,RecoverMsGroup
,RecoverSharePoint
,ConvertToPst
,RecoverSfdcRecords
,RecoverAzureSQL
,DownloadChats
,RecoverRDSPostgres
,RecoverMailboxCSM
,RecoverOneDriveCSM
,RecoverSharePointCSM
.
- Constraints: Allowable list items are:
- Source
Ids []float64 - Specifies a list of Protection Source object ids to filter the objects. If specified, the object which are present in those Sources will be returned.
- Sub
Result float64Size - Specifies the size of objects to be fetched for a single subresult.
- Use
Cached boolData - Specifies whether we can serve the GET request to the read replica cache cache. There is a lag of 15 seconds between the read replica and primary data source.
- 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.
- cdp
Protected BooleanOnly - Specifies whether to only return the CDP protected objects.
- environments List<String>
- Specifies the environment type to filter objects.
- Constraints: Allowable list items are:
kPhysical
,kSQL
.
- Constraints: Allowable list items are:
- filter
Snapshot DoubleFrom Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot after this value.
- filter
Snapshot DoubleTo Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot before this value.
- id String
- (Integer) Specifies object id.
- object
Action StringKey - Filter by ObjectActionKey, which uniquely represents protection of an object. An object can be protected in multiple ways but atmost once for a given combination of ObjectActionKey. When specified, latest snapshot info matching the objectActionKey is for corresponding object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- object
Ids List<Double> - Specifies a list of Object ids to filter.
- os
Types List<String> - Specifies the operating system types to filter objects on.
- Constraints: Allowable list items are:
kLinux
,kWindows
.
- Constraints: Allowable list items are:
- protection
Group List<String>Ids - Specifies a list of Protection Group ids to filter the objects. If specified, the objects protected by specified Protection Group ids will be returned.
- 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
Instance List<Double>Ids - Specifies a list of run instance ids. If specified only objects belonging to the provided run id will be retunrned.
- search
String String - Specifies the search string to filter the objects. This search string will be applicable for objectnames and Protection Group names. User can specify a wildcard character '' as a suffix to a string where all object and their Protection Group names are matched with the prefix string. For example, if vm1 and vm2 are the names of objects, user can specify vm to list the objects. If not specified, then all the objects with Protection Groups will be returned which will match other filtering criteria.
- snapshot
Actions List<String> - Specifies a list of recovery actions. Only snapshots that applies to these actions will be returned.
- Constraints: Allowable list items are:
RecoverVMs
,RecoverFiles
,InstantVolumeMount
,RecoverVmDisks
,MountVolumes
,RecoverVApps
,RecoverRDS
,RecoverAurora
,RecoverS3Buckets
,RecoverApps
,RecoverNasVolume
,RecoverPhysicalVolumes
,RecoverSystem
,RecoverSanVolumes
,RecoverNamespaces
,RecoverObjects
,DownloadFilesAndFolders
,RecoverPublicFolders
,RecoverVAppTemplates
,RecoverMailbox
,RecoverOneDrive
,RecoverMsTeam
,RecoverMsGroup
,RecoverSharePoint
,ConvertToPst
,RecoverSfdcRecords
,RecoverAzureSQL
,DownloadChats
,RecoverRDSPostgres
,RecoverMailboxCSM
,RecoverOneDriveCSM
,RecoverSharePointCSM
.
- Constraints: Allowable list items are:
- source
Ids List<Double> - Specifies a list of Protection Source object ids to filter the objects. If specified, the object which are present in those Sources will be returned.
- sub
Result DoubleSize - Specifies the size of objects to be fetched for a single subresult.
- use
Cached BooleanData - Specifies whether we can serve the GET request to the read replica cache cache. There is a lag of 15 seconds between the read replica and primary data source.
- 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.
- cdp
Protected booleanOnly - Specifies whether to only return the CDP protected objects.
- environments string[]
- Specifies the environment type to filter objects.
- Constraints: Allowable list items are:
kPhysical
,kSQL
.
- Constraints: Allowable list items are:
- filter
Snapshot numberFrom Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot after this value.
- filter
Snapshot numberTo Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot before this value.
- id string
- (Integer) Specifies object id.
- object
Action stringKey - Filter by ObjectActionKey, which uniquely represents protection of an object. An object can be protected in multiple ways but atmost once for a given combination of ObjectActionKey. When specified, latest snapshot info matching the objectActionKey is for corresponding object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- object
Ids number[] - Specifies a list of Object ids to filter.
- os
Types string[] - Specifies the operating system types to filter objects on.
- Constraints: Allowable list items are:
kLinux
,kWindows
.
- Constraints: Allowable list items are:
- protection
Group string[]Ids - Specifies a list of Protection Group ids to filter the objects. If specified, the objects protected by specified Protection Group ids will be returned.
- 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
Instance number[]Ids - Specifies a list of run instance ids. If specified only objects belonging to the provided run id will be retunrned.
- search
String string - Specifies the search string to filter the objects. This search string will be applicable for objectnames and Protection Group names. User can specify a wildcard character '' as a suffix to a string where all object and their Protection Group names are matched with the prefix string. For example, if vm1 and vm2 are the names of objects, user can specify vm to list the objects. If not specified, then all the objects with Protection Groups will be returned which will match other filtering criteria.
- snapshot
Actions string[] - Specifies a list of recovery actions. Only snapshots that applies to these actions will be returned.
- Constraints: Allowable list items are:
RecoverVMs
,RecoverFiles
,InstantVolumeMount
,RecoverVmDisks
,MountVolumes
,RecoverVApps
,RecoverRDS
,RecoverAurora
,RecoverS3Buckets
,RecoverApps
,RecoverNasVolume
,RecoverPhysicalVolumes
,RecoverSystem
,RecoverSanVolumes
,RecoverNamespaces
,RecoverObjects
,DownloadFilesAndFolders
,RecoverPublicFolders
,RecoverVAppTemplates
,RecoverMailbox
,RecoverOneDrive
,RecoverMsTeam
,RecoverMsGroup
,RecoverSharePoint
,ConvertToPst
,RecoverSfdcRecords
,RecoverAzureSQL
,DownloadChats
,RecoverRDSPostgres
,RecoverMailboxCSM
,RecoverOneDriveCSM
,RecoverSharePointCSM
.
- Constraints: Allowable list items are:
- source
Ids number[] - Specifies a list of Protection Source object ids to filter the objects. If specified, the object which are present in those Sources will be returned.
- sub
Result numberSize - Specifies the size of objects to be fetched for a single subresult.
- use
Cached booleanData - Specifies whether we can serve the GET request to the read replica cache cache. There is a lag of 15 seconds between the read replica and primary data source.
- 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.
- cdp_
protected_ boolonly - Specifies whether to only return the CDP protected objects.
- environments Sequence[str]
- Specifies the environment type to filter objects.
- Constraints: Allowable list items are:
kPhysical
,kSQL
.
- Constraints: Allowable list items are:
- filter_
snapshot_ floatfrom_ usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot after this value.
- filter_
snapshot_ floatto_ usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot before this value.
- id str
- (Integer) Specifies object id.
- object_
action_ strkey - Filter by ObjectActionKey, which uniquely represents protection of an object. An object can be protected in multiple ways but atmost once for a given combination of ObjectActionKey. When specified, latest snapshot info matching the objectActionKey is for corresponding object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- object_
ids Sequence[float] - Specifies a list of Object ids to filter.
- os_
types Sequence[str] - Specifies the operating system types to filter objects on.
- Constraints: Allowable list items are:
kLinux
,kWindows
.
- Constraints: Allowable list items are:
- protection_
group_ Sequence[str]ids - Specifies a list of Protection Group ids to filter the objects. If specified, the objects protected by specified Protection Group ids will be returned.
- 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_
instance_ Sequence[float]ids - Specifies a list of run instance ids. If specified only objects belonging to the provided run id will be retunrned.
- search_
string str - Specifies the search string to filter the objects. This search string will be applicable for objectnames and Protection Group names. User can specify a wildcard character '' as a suffix to a string where all object and their Protection Group names are matched with the prefix string. For example, if vm1 and vm2 are the names of objects, user can specify vm to list the objects. If not specified, then all the objects with Protection Groups will be returned which will match other filtering criteria.
- snapshot_
actions Sequence[str] - Specifies a list of recovery actions. Only snapshots that applies to these actions will be returned.
- Constraints: Allowable list items are:
RecoverVMs
,RecoverFiles
,InstantVolumeMount
,RecoverVmDisks
,MountVolumes
,RecoverVApps
,RecoverRDS
,RecoverAurora
,RecoverS3Buckets
,RecoverApps
,RecoverNasVolume
,RecoverPhysicalVolumes
,RecoverSystem
,RecoverSanVolumes
,RecoverNamespaces
,RecoverObjects
,DownloadFilesAndFolders
,RecoverPublicFolders
,RecoverVAppTemplates
,RecoverMailbox
,RecoverOneDrive
,RecoverMsTeam
,RecoverMsGroup
,RecoverSharePoint
,ConvertToPst
,RecoverSfdcRecords
,RecoverAzureSQL
,DownloadChats
,RecoverRDSPostgres
,RecoverMailboxCSM
,RecoverOneDriveCSM
,RecoverSharePointCSM
.
- Constraints: Allowable list items are:
- source_
ids Sequence[float] - Specifies a list of Protection Source object ids to filter the objects. If specified, the object which are present in those Sources will be returned.
- sub_
result_ floatsize - Specifies the size of objects to be fetched for a single subresult.
- use_
cached_ booldata - Specifies whether we can serve the GET request to the read replica cache cache. There is a lag of 15 seconds between the read replica and primary data source.
- 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.
- cdp
Protected BooleanOnly - Specifies whether to only return the CDP protected objects.
- environments List<String>
- Specifies the environment type to filter objects.
- Constraints: Allowable list items are:
kPhysical
,kSQL
.
- Constraints: Allowable list items are:
- filter
Snapshot NumberFrom Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot after this value.
- filter
Snapshot NumberTo Usecs - Specifies the timestamp in Unix time epoch in microseconds to filter the objects if the Object has a successful snapshot before this value.
- id String
- (Integer) Specifies object id.
- object
Action StringKey - Filter by ObjectActionKey, which uniquely represents protection of an object. An object can be protected in multiple ways but atmost once for a given combination of ObjectActionKey. When specified, latest snapshot info matching the objectActionKey is for corresponding object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- object
Ids List<Number> - Specifies a list of Object ids to filter.
- os
Types List<String> - Specifies the operating system types to filter objects on.
- Constraints: Allowable list items are:
kLinux
,kWindows
.
- Constraints: Allowable list items are:
- protection
Group List<String>Ids - Specifies a list of Protection Group ids to filter the objects. If specified, the objects protected by specified Protection Group ids will be returned.
- 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
Instance List<Number>Ids - Specifies a list of run instance ids. If specified only objects belonging to the provided run id will be retunrned.
- search
String String - Specifies the search string to filter the objects. This search string will be applicable for objectnames and Protection Group names. User can specify a wildcard character '' as a suffix to a string where all object and their Protection Group names are matched with the prefix string. For example, if vm1 and vm2 are the names of objects, user can specify vm to list the objects. If not specified, then all the objects with Protection Groups will be returned which will match other filtering criteria.
- snapshot
Actions List<String> - Specifies a list of recovery actions. Only snapshots that applies to these actions will be returned.
- Constraints: Allowable list items are:
RecoverVMs
,RecoverFiles
,InstantVolumeMount
,RecoverVmDisks
,MountVolumes
,RecoverVApps
,RecoverRDS
,RecoverAurora
,RecoverS3Buckets
,RecoverApps
,RecoverNasVolume
,RecoverPhysicalVolumes
,RecoverSystem
,RecoverSanVolumes
,RecoverNamespaces
,RecoverObjects
,DownloadFilesAndFolders
,RecoverPublicFolders
,RecoverVAppTemplates
,RecoverMailbox
,RecoverOneDrive
,RecoverMsTeam
,RecoverMsGroup
,RecoverSharePoint
,ConvertToPst
,RecoverSfdcRecords
,RecoverAzureSQL
,DownloadChats
,RecoverRDSPostgres
,RecoverMailboxCSM
,RecoverOneDriveCSM
,RecoverSharePointCSM
.
- Constraints: Allowable list items are:
- source
Ids List<Number> - Specifies a list of Protection Source object ids to filter the objects. If specified, the object which are present in those Sources will be returned.
- sub
Result NumberSize - Specifies the size of objects to be fetched for a single subresult.
- use
Cached BooleanData - Specifies whether we can serve the GET request to the read replica cache cache. There is a lag of 15 seconds between the read replica and primary data source.
getBackupRecoverySearchProtectedObjects Result
The following output properties are available:
- Id string
- (Integer) Specifies object id.
- Metadatas
List<Get
Backup Recovery Search Protected Objects Metadata> - (List) Specifies the metadata information about the Protection Groups, Protection Policy etc., for search result. Nested schema for metadata:
- Num
Results double - (Integer) Specifies the total number of search results which matches the search criteria.
- Objects
List<Get
Backup Recovery Search Protected Objects Object> - (List) Specifies the list of Protected Objects. Nested schema for objects:
- XIbm
Tenant stringId - Cdp
Protected boolOnly - Environments List<string>
- Filter
Snapshot doubleFrom Usecs - Filter
Snapshot doubleTo Usecs - Object
Action stringKey - Object
Ids List<double> - Os
Types List<string> - Protection
Group List<string>Ids - Request
Initiator stringType - Run
Instance List<double>Ids - Search
String string - Snapshot
Actions List<string> - Source
Ids List<double> - Sub
Result doubleSize - Use
Cached boolData
- Id string
- (Integer) Specifies object id.
- Metadatas
[]Get
Backup Recovery Search Protected Objects Metadata - (List) Specifies the metadata information about the Protection Groups, Protection Policy etc., for search result. Nested schema for metadata:
- Num
Results float64 - (Integer) Specifies the total number of search results which matches the search criteria.
- Objects
[]Get
Backup Recovery Search Protected Objects Object - (List) Specifies the list of Protected Objects. Nested schema for objects:
- XIbm
Tenant stringId - Cdp
Protected boolOnly - Environments []string
- Filter
Snapshot float64From Usecs - Filter
Snapshot float64To Usecs - Object
Action stringKey - Object
Ids []float64 - Os
Types []string - Protection
Group []stringIds - Request
Initiator stringType - Run
Instance []float64Ids - Search
String string - Snapshot
Actions []string - Source
Ids []float64 - Sub
Result float64Size - Use
Cached boolData
- id String
- (Integer) Specifies object id.
- metadatas
List<Get
Backup Recovery Search Protected Objects Metadata> - (List) Specifies the metadata information about the Protection Groups, Protection Policy etc., for search result. Nested schema for metadata:
- num
Results Double - (Integer) Specifies the total number of search results which matches the search criteria.
- objects
List<Get
Backup Recovery Search Protected Objects Object> - (List) Specifies the list of Protected Objects. Nested schema for objects:
- x
Ibm StringTenant Id - cdp
Protected BooleanOnly - environments List<String>
- filter
Snapshot DoubleFrom Usecs - filter
Snapshot DoubleTo Usecs - object
Action StringKey - object
Ids List<Double> - os
Types List<String> - protection
Group List<String>Ids - request
Initiator StringType - run
Instance List<Double>Ids - search
String String - snapshot
Actions List<String> - source
Ids List<Double> - sub
Result DoubleSize - use
Cached BooleanData
- id string
- (Integer) Specifies object id.
- metadatas
Get
Backup Recovery Search Protected Objects Metadata[] - (List) Specifies the metadata information about the Protection Groups, Protection Policy etc., for search result. Nested schema for metadata:
- num
Results number - (Integer) Specifies the total number of search results which matches the search criteria.
- objects
Get
Backup Recovery Search Protected Objects Object[] - (List) Specifies the list of Protected Objects. Nested schema for objects:
- x
Ibm stringTenant Id - cdp
Protected booleanOnly - environments string[]
- filter
Snapshot numberFrom Usecs - filter
Snapshot numberTo Usecs - object
Action stringKey - object
Ids number[] - os
Types string[] - protection
Group string[]Ids - request
Initiator stringType - run
Instance number[]Ids - search
String string - snapshot
Actions string[] - source
Ids number[] - sub
Result numberSize - use
Cached booleanData
- id str
- (Integer) Specifies object id.
- metadatas
Sequence[Get
Backup Recovery Search Protected Objects Metadata] - (List) Specifies the metadata information about the Protection Groups, Protection Policy etc., for search result. Nested schema for metadata:
- num_
results float - (Integer) Specifies the total number of search results which matches the search criteria.
- objects
Sequence[Get
Backup Recovery Search Protected Objects Object] - (List) Specifies the list of Protected Objects. Nested schema for objects:
- x_
ibm_ strtenant_ id - cdp_
protected_ boolonly - environments Sequence[str]
- filter_
snapshot_ floatfrom_ usecs - filter_
snapshot_ floatto_ usecs - object_
action_ strkey - object_
ids Sequence[float] - os_
types Sequence[str] - protection_
group_ Sequence[str]ids - request_
initiator_ strtype - run_
instance_ Sequence[float]ids - search_
string str - snapshot_
actions Sequence[str] - source_
ids Sequence[float] - sub_
result_ floatsize - use_
cached_ booldata
- id String
- (Integer) Specifies object id.
- metadatas List<Property Map>
- (List) Specifies the metadata information about the Protection Groups, Protection Policy etc., for search result. Nested schema for metadata:
- num
Results Number - (Integer) Specifies the total number of search results which matches the search criteria.
- objects List<Property Map>
- (List) Specifies the list of Protected Objects. Nested schema for objects:
- x
Ibm StringTenant Id - cdp
Protected BooleanOnly - environments List<String>
- filter
Snapshot NumberFrom Usecs - filter
Snapshot NumberTo Usecs - object
Action StringKey - object
Ids List<Number> - os
Types List<String> - protection
Group List<String>Ids - request
Initiator StringType - run
Instance List<Number>Ids - search
String String - snapshot
Actions List<String> - source
Ids List<Number> - sub
Result NumberSize - use
Cached BooleanData
Supporting Types
GetBackupRecoverySearchProtectedObjectsMetadata
- Unique
Protection List<GetGroup Identifiers Backup Recovery Search Protected Objects Metadata Unique Protection Group Identifier> - (List) Specifies the list of unique Protection Group identifiers for all the Objects returned in the response. Nested schema for unique_protection_group_identifiers:
- Unique
Protection []GetGroup Identifiers Backup Recovery Search Protected Objects Metadata Unique Protection Group Identifier - (List) Specifies the list of unique Protection Group identifiers for all the Objects returned in the response. Nested schema for unique_protection_group_identifiers:
- unique
Protection List<GetGroup Identifiers Backup Recovery Search Protected Objects Metadata Unique Protection Group Identifier> - (List) Specifies the list of unique Protection Group identifiers for all the Objects returned in the response. Nested schema for unique_protection_group_identifiers:
- unique
Protection GetGroup Identifiers Backup Recovery Search Protected Objects Metadata Unique Protection Group Identifier[] - (List) Specifies the list of unique Protection Group identifiers for all the Objects returned in the response. Nested schema for unique_protection_group_identifiers:
- unique_
protection_ Sequence[Getgroup_ identifiers Backup Recovery Search Protected Objects Metadata Unique Protection Group Identifier] - (List) Specifies the list of unique Protection Group identifiers for all the Objects returned in the response. Nested schema for unique_protection_group_identifiers:
- unique
Protection List<Property Map>Group Identifiers - (List) Specifies the list of unique Protection Group identifiers for all the Objects returned in the response. Nested schema for unique_protection_group_identifiers:
GetBackupRecoverySearchProtectedObjectsMetadataUniqueProtectionGroupIdentifier
- Protection
Group stringId - (String) Specifies id of the Protection Group.
- Protection
Group stringName - (String) Specifies name of the Protection Group.
- Protection
Group stringId - (String) Specifies id of the Protection Group.
- Protection
Group stringName - (String) Specifies name of the Protection Group.
- protection
Group StringId - (String) Specifies id of the Protection Group.
- protection
Group StringName - (String) Specifies name of the Protection Group.
- protection
Group stringId - (String) Specifies id of the Protection Group.
- protection
Group stringName - (String) Specifies name of the Protection Group.
- protection_
group_ strid - (String) Specifies id of the Protection Group.
- protection_
group_ strname - (String) Specifies name of the Protection Group.
- protection
Group StringId - (String) Specifies id of the Protection Group.
- protection
Group StringName - (String) Specifies name of the Protection Group.
GetBackupRecoverySearchProtectedObjectsObject
- Child
Objects List<GetBackup Recovery Search Protected Objects 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
- (Integer) Specifies object id.
- Latest
Snapshots List<GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info> - (List) Specifies the latest snapshot information for every Protection Group for a given object. Nested schema for latest_snapshots_info:
- Logical
Size doubleBytes - (Integer) Specifies the logical size of object in bytes.
- Mssql
Params List<GetBackup Recovery Search Protected Objects Object Mssql Param> - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- Name string
- (String) Specifies the name of the object.
- 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:
- Permissions
List<Get
Backup Recovery Search Protected Objects Object Permission> - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- Physical
Params List<GetBackup Recovery Search Protected Objects Object Physical Param> - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- Protection
Stats List<GetBackup Recovery Search Protected Objects Object Protection Stat> - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- 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 Search Protected Objects Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id double - (Integer) Specifies registered source id to which object belongs.
- Source
Infos List<GetBackup Recovery Search Protected Objects Object Source Info> - (List) Specifies the Source Object information. Nested schema for source_info:
- 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 Search Protected Objects Object VCenter Summary> - (List) Nested schema for v_center_summary:
- Windows
Cluster List<GetSummaries Backup Recovery Search Protected Objects Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- Child
Objects []GetBackup Recovery Search Protected Objects 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
- (Integer) Specifies object id.
- Latest
Snapshots []GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info - (List) Specifies the latest snapshot information for every Protection Group for a given object. Nested schema for latest_snapshots_info:
- Logical
Size float64Bytes - (Integer) Specifies the logical size of object in bytes.
- Mssql
Params []GetBackup Recovery Search Protected Objects Object Mssql Param - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- Name string
- (String) Specifies the name of the object.
- 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:
- Permissions
[]Get
Backup Recovery Search Protected Objects Object Permission - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- Physical
Params []GetBackup Recovery Search Protected Objects Object Physical Param - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- Protection
Stats []GetBackup Recovery Search Protected Objects Object Protection Stat - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- 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 Search Protected Objects Object Sharepoint Site Summary - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id float64 - (Integer) Specifies registered source id to which object belongs.
- Source
Infos []GetBackup Recovery Search Protected Objects Object Source Info - (List) Specifies the Source Object information. Nested schema for source_info:
- 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 Search Protected Objects Object VCenter Summary - (List) Nested schema for v_center_summary:
- Windows
Cluster []GetSummaries Backup Recovery Search Protected Objects Object Windows Cluster Summary - (List) Nested schema for windows_cluster_summary:
- child
Objects List<GetBackup Recovery Search Protected Objects 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
- (Integer) Specifies object id.
- latest
Snapshots List<GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info> - (List) Specifies the latest snapshot information for every Protection Group for a given object. Nested schema for latest_snapshots_info:
- logical
Size DoubleBytes - (Integer) Specifies the logical size of object in bytes.
- mssql
Params List<GetBackup Recovery Search Protected Objects Object Mssql Param> - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- name String
- (String) Specifies the name of the object.
- 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:
- permissions
List<Get
Backup Recovery Search Protected Objects Object Permission> - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- physical
Params List<GetBackup Recovery Search Protected Objects Object Physical Param> - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- protection
Stats List<GetBackup Recovery Search Protected Objects Object Protection Stat> - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- 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 Search Protected Objects Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id Double - (Integer) Specifies registered source id to which object belongs.
- source
Infos List<GetBackup Recovery Search Protected Objects Object Source Info> - (List) Specifies the Source Object information. Nested schema for source_info:
- 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 Search Protected Objects Object VCenter Summary> - (List) Nested schema for v_center_summary:
- windows
Cluster List<GetSummaries Backup Recovery Search Protected Objects Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- child
Objects GetBackup Recovery Search Protected Objects 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
- (Integer) Specifies object id.
- latest
Snapshots GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info[] - (List) Specifies the latest snapshot information for every Protection Group for a given object. Nested schema for latest_snapshots_info:
- logical
Size numberBytes - (Integer) Specifies the logical size of object in bytes.
- mssql
Params GetBackup Recovery Search Protected Objects Object Mssql Param[] - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- name string
- (String) Specifies the name of the object.
- 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:
- permissions
Get
Backup Recovery Search Protected Objects Object Permission[] - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- physical
Params GetBackup Recovery Search Protected Objects Object Physical Param[] - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- protection
Stats GetBackup Recovery Search Protected Objects Object Protection Stat[] - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- 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 Search Protected Objects Object Sharepoint Site Summary[] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id number - (Integer) Specifies registered source id to which object belongs.
- source
Infos GetBackup Recovery Search Protected Objects Object Source Info[] - (List) Specifies the Source Object information. Nested schema for source_info:
- 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 Search Protected Objects Object VCenter Summary[] - (List) Nested schema for v_center_summary:
- windows
Cluster GetSummaries Backup Recovery Search Protected Objects Object Windows Cluster Summary[] - (List) Nested schema for windows_cluster_summary:
- child_
objects Sequence[GetBackup Recovery Search Protected Objects 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
- (Integer) Specifies object id.
- latest_
snapshots_ Sequence[Getinfos Backup Recovery Search Protected Objects Object Latest Snapshots Info] - (List) Specifies the latest snapshot information for every Protection Group for a given object. Nested schema for latest_snapshots_info:
- logical_
size_ floatbytes - (Integer) Specifies the logical size of object in bytes.
- mssql_
params Sequence[GetBackup Recovery Search Protected Objects Object Mssql Param] - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- name str
- (String) Specifies the name of the object.
- 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:
- permissions
Sequence[Get
Backup Recovery Search Protected Objects Object Permission] - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- physical_
params Sequence[GetBackup Recovery Search Protected Objects Object Physical Param] - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- protection_
stats Sequence[GetBackup Recovery Search Protected Objects Object Protection Stat] - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- 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 Search Protected Objects Object Sharepoint Site Summary] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source_
id float - (Integer) Specifies registered source id to which object belongs.
- source_
infos Sequence[GetBackup Recovery Search Protected Objects Object Source Info] - (List) Specifies the Source Object information. Nested schema for source_info:
- 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 Search Protected Objects Object VCenter Summary] - (List) Nested schema for v_center_summary:
- windows_
cluster_ Sequence[Getsummaries Backup Recovery Search Protected Objects 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
- (Integer) Specifies object id.
- latest
Snapshots List<Property Map>Infos - (List) Specifies the latest snapshot information for every Protection Group for a given object. Nested schema for latest_snapshots_info:
- logical
Size NumberBytes - (Integer) Specifies the logical size of object in bytes.
- mssql
Params List<Property Map> - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- name String
- (String) Specifies the name of the object.
- 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:
- permissions List<Property Map>
- (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- physical
Params List<Property Map> - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- protection
Stats List<Property Map> - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- 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 registered source id to which object belongs.
- source
Infos List<Property Map> - (List) Specifies the Source Object information. Nested schema for source_info:
- 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:
GetBackupRecoverySearchProtectedObjectsObjectChildObject
- Child
Objects List<GetBackup Recovery Search Protected Objects Object Child 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
- (Integer) Specifies object id.
- Logical
Size doubleBytes - (Integer) Specifies the logical size of object in bytes.
- Name string
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Child Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id double - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Child Object VCenter Summary> - (List) Nested schema for v_center_summary:
- Windows
Cluster List<GetSummaries Backup Recovery Search Protected Objects Object Child Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- Child
Objects []GetBackup Recovery Search Protected Objects Object Child 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
- (Integer) Specifies object id.
- Logical
Size float64Bytes - (Integer) Specifies the logical size of object in bytes.
- Name string
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Child Object Sharepoint Site Summary - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id float64 - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Child Object VCenter Summary - (List) Nested schema for v_center_summary:
- Windows
Cluster []GetSummaries Backup Recovery Search Protected Objects Object Child Object Windows Cluster Summary - (List) Nested schema for windows_cluster_summary:
- child
Objects List<GetBackup Recovery Search Protected Objects Object Child 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
- (Integer) Specifies object id.
- logical
Size DoubleBytes - (Integer) Specifies the logical size of object in bytes.
- name String
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Child Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id Double - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Child Object VCenter Summary> - (List) Nested schema for v_center_summary:
- windows
Cluster List<GetSummaries Backup Recovery Search Protected Objects Object Child Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- child
Objects GetBackup Recovery Search Protected Objects Object Child 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
- (Integer) Specifies object id.
- logical
Size numberBytes - (Integer) Specifies the logical size of object in bytes.
- name string
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Child Object Sharepoint Site Summary[] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id number - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Child Object VCenter Summary[] - (List) Nested schema for v_center_summary:
- windows
Cluster GetSummaries Backup Recovery Search Protected Objects Object Child Object Windows Cluster Summary[] - (List) Nested schema for windows_cluster_summary:
- child_
objects Sequence[GetBackup Recovery Search Protected Objects Object Child 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
- (Integer) Specifies object id.
- logical_
size_ floatbytes - (Integer) Specifies the logical size of object in bytes.
- name str
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Child Object Sharepoint Site Summary] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source_
id float - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Child Object VCenter Summary] - (List) Nested schema for v_center_summary:
- windows_
cluster_ Sequence[Getsummaries Backup Recovery Search Protected Objects Object Child 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
- (Integer) Specifies object id.
- logical
Size NumberBytes - (Integer) Specifies the logical size of object in bytes.
- name String
- (String) Specifies the name of the object.
- 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 registered source id to which object belongs.
- 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:
GetBackupRecoverySearchProtectedObjectsObjectChildObjectSharepointSiteSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectChildObjectVCenterSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectChildObjectWindowsClusterSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfo
- Archival
Snapshots List<GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info> - (List) Specifies the archival snapshots information. Nested schema for archival_snapshots_info:
- Indexing
Status string - (String) Specifies the indexing status of objects in this snapshot. 'InProgress' indicates the indexing is in progress. 'Done' indicates indexing is done. 'NoIndex' indicates indexing is not applicable. 'Error' indicates indexing failed with error.
- Constraints: Allowable values are:
InProgress
,Done
,NoIndex
,Error
.
- Constraints: Allowable values are:
- Local
Snapshot List<GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Local Snapshot Info> - (List) Specifies the local snapshot information. Nested schema for local_snapshot_info:
- Protection
Group stringId - (String) Specifies id of the Protection Group.
- Protection
Group stringName - (String) Specifies name of the Protection Group.
- Protection
Run doubleEnd Time Usecs - (Integer) Specifies the end time of Protection Group Run in Unix timestamp epoch in microseconds.
- Protection
Run stringId - (String) Specifies the id of Protection Group Run.
- Protection
Run doubleStart Time Usecs - (Integer) Specifies the start time of Protection Group Run in Unix timestamp epoch in microseconds.
- Run
Instance doubleId - (Integer) Specifies the instance id of the protection run which create the snapshot.
- Run
Type string - (String) Specifies the type of protection run created this snapshot.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Source
Group stringId - (String) Specifies the source protection group id in case of replication.
- Archival
Snapshots []GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info - (List) Specifies the archival snapshots information. Nested schema for archival_snapshots_info:
- Indexing
Status string - (String) Specifies the indexing status of objects in this snapshot. 'InProgress' indicates the indexing is in progress. 'Done' indicates indexing is done. 'NoIndex' indicates indexing is not applicable. 'Error' indicates indexing failed with error.
- Constraints: Allowable values are:
InProgress
,Done
,NoIndex
,Error
.
- Constraints: Allowable values are:
- Local
Snapshot []GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Local Snapshot Info - (List) Specifies the local snapshot information. Nested schema for local_snapshot_info:
- Protection
Group stringId - (String) Specifies id of the Protection Group.
- Protection
Group stringName - (String) Specifies name of the Protection Group.
- Protection
Run float64End Time Usecs - (Integer) Specifies the end time of Protection Group Run in Unix timestamp epoch in microseconds.
- Protection
Run stringId - (String) Specifies the id of Protection Group Run.
- Protection
Run float64Start Time Usecs - (Integer) Specifies the start time of Protection Group Run in Unix timestamp epoch in microseconds.
- Run
Instance float64Id - (Integer) Specifies the instance id of the protection run which create the snapshot.
- Run
Type string - (String) Specifies the type of protection run created this snapshot.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- Source
Group stringId - (String) Specifies the source protection group id in case of replication.
- archival
Snapshots List<GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info> - (List) Specifies the archival snapshots information. Nested schema for archival_snapshots_info:
- indexing
Status String - (String) Specifies the indexing status of objects in this snapshot. 'InProgress' indicates the indexing is in progress. 'Done' indicates indexing is done. 'NoIndex' indicates indexing is not applicable. 'Error' indicates indexing failed with error.
- Constraints: Allowable values are:
InProgress
,Done
,NoIndex
,Error
.
- Constraints: Allowable values are:
- local
Snapshot List<GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Local Snapshot Info> - (List) Specifies the local snapshot information. Nested schema for local_snapshot_info:
- protection
Group StringId - (String) Specifies id of the Protection Group.
- protection
Group StringName - (String) Specifies name of the Protection Group.
- protection
Run DoubleEnd Time Usecs - (Integer) Specifies the end time of Protection Group Run in Unix timestamp epoch in microseconds.
- protection
Run StringId - (String) Specifies the id of Protection Group Run.
- protection
Run DoubleStart Time Usecs - (Integer) Specifies the start time of Protection Group Run in Unix timestamp epoch in microseconds.
- run
Instance DoubleId - (Integer) Specifies the instance id of the protection run which create the snapshot.
- run
Type String - (String) Specifies the type of protection run created this snapshot.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- source
Group StringId - (String) Specifies the source protection group id in case of replication.
- archival
Snapshots GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info[] - (List) Specifies the archival snapshots information. Nested schema for archival_snapshots_info:
- indexing
Status string - (String) Specifies the indexing status of objects in this snapshot. 'InProgress' indicates the indexing is in progress. 'Done' indicates indexing is done. 'NoIndex' indicates indexing is not applicable. 'Error' indicates indexing failed with error.
- Constraints: Allowable values are:
InProgress
,Done
,NoIndex
,Error
.
- Constraints: Allowable values are:
- local
Snapshot GetInfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Local Snapshot Info[] - (List) Specifies the local snapshot information. Nested schema for local_snapshot_info:
- protection
Group stringId - (String) Specifies id of the Protection Group.
- protection
Group stringName - (String) Specifies name of the Protection Group.
- protection
Run numberEnd Time Usecs - (Integer) Specifies the end time of Protection Group Run in Unix timestamp epoch in microseconds.
- protection
Run stringId - (String) Specifies the id of Protection Group Run.
- protection
Run numberStart Time Usecs - (Integer) Specifies the start time of Protection Group Run in Unix timestamp epoch in microseconds.
- run
Instance numberId - (Integer) Specifies the instance id of the protection run which create the snapshot.
- run
Type string - (String) Specifies the type of protection run created this snapshot.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- source
Group stringId - (String) Specifies the source protection group id in case of replication.
- archival_
snapshots_ Sequence[Getinfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info] - (List) Specifies the archival snapshots information. Nested schema for archival_snapshots_info:
- indexing_
status str - (String) Specifies the indexing status of objects in this snapshot. 'InProgress' indicates the indexing is in progress. 'Done' indicates indexing is done. 'NoIndex' indicates indexing is not applicable. 'Error' indicates indexing failed with error.
- Constraints: Allowable values are:
InProgress
,Done
,NoIndex
,Error
.
- Constraints: Allowable values are:
- local_
snapshot_ Sequence[Getinfos Backup Recovery Search Protected Objects Object Latest Snapshots Info Local Snapshot Info] - (List) Specifies the local snapshot information. Nested schema for local_snapshot_info:
- protection_
group_ strid - (String) Specifies id of the Protection Group.
- protection_
group_ strname - (String) Specifies name of the Protection Group.
- protection_
run_ floatend_ time_ usecs - (Integer) Specifies the end time of Protection Group Run in Unix timestamp epoch in microseconds.
- protection_
run_ strid - (String) Specifies the id of Protection Group Run.
- protection_
run_ floatstart_ time_ usecs - (Integer) Specifies the start time of Protection Group Run in Unix timestamp epoch in microseconds.
- run_
instance_ floatid - (Integer) Specifies the instance id of the protection run which create the snapshot.
- run_
type str - (String) Specifies the type of protection run created this snapshot.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- source_
group_ strid - (String) Specifies the source protection group id in case of replication.
- archival
Snapshots List<Property Map>Infos - (List) Specifies the archival snapshots information. Nested schema for archival_snapshots_info:
- indexing
Status String - (String) Specifies the indexing status of objects in this snapshot. 'InProgress' indicates the indexing is in progress. 'Done' indicates indexing is done. 'NoIndex' indicates indexing is not applicable. 'Error' indicates indexing failed with error.
- Constraints: Allowable values are:
InProgress
,Done
,NoIndex
,Error
.
- Constraints: Allowable values are:
- local
Snapshot List<Property Map>Infos - (List) Specifies the local snapshot information. Nested schema for local_snapshot_info:
- protection
Group StringId - (String) Specifies id of the Protection Group.
- protection
Group StringName - (String) Specifies name of the Protection Group.
- protection
Run NumberEnd Time Usecs - (Integer) Specifies the end time of Protection Group Run in Unix timestamp epoch in microseconds.
- protection
Run StringId - (String) Specifies the id of Protection Group Run.
- protection
Run NumberStart Time Usecs - (Integer) Specifies the start time of Protection Group Run in Unix timestamp epoch in microseconds.
- run
Instance NumberId - (Integer) Specifies the instance id of the protection run which create the snapshot.
- run
Type String - (String) Specifies the type of protection run created this snapshot.
- Constraints: Allowable values are:
kRegular
,kFull
,kLog
,kSystem
,kHydrateCDP
,kStorageArraySnapshot
.
- Constraints: Allowable values are:
- source
Group StringId - (String) Specifies the source protection group id in case of replication.
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfo
- Archival
Task stringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- Logical
Size doubleBytes - (Integer) Specifies the logical size of object in bytes.
- Ownership
Context string - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- Snapshot
Id string - (String) Specifies the id of the local snapshot for the object.
- 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
- Archival
Task stringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- Logical
Size float64Bytes - (Integer) Specifies the logical size of object in bytes.
- Ownership
Context string - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- Snapshot
Id string - (String) Specifies the id of the local snapshot for the object.
- 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
- archival
Task StringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- logical
Size DoubleBytes - (Integer) Specifies the logical size of object in bytes.
- ownership
Context String - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- snapshot
Id String - (String) Specifies the id of the local snapshot for the object.
- 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
- archival
Task stringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- logical
Size numberBytes - (Integer) Specifies the logical size of object in bytes.
- ownership
Context string - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- snapshot
Id string - (String) Specifies the id of the local snapshot for the object.
- 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
- archival_
task_ strid - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- logical_
size_ floatbytes - (Integer) Specifies the logical size of object in bytes.
- ownership_
context str - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- snapshot_
id str - (String) Specifies the id of the local snapshot for the object.
- 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
- archival
Task StringId - (String) Specifies the archival task id. This is a protection group UID which only applies when archival type is 'Tape'.
- logical
Size NumberBytes - (Integer) Specifies the logical size of object in bytes.
- ownership
Context String - (String) Specifies the ownership context for the target.
- Constraints: Allowable values are:
Local
,FortKnox
.
- Constraints: Allowable values are:
- snapshot
Id String - (String) Specifies the id of the local snapshot for the object.
- 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfoTierSetting
- Aws
Tierings List<GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Aws Tiering> - (List) Specifies aws tiers. Nested schema for aws_tiering:
- Azure
Tierings List<GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Google Tiering> - (List) Specifies Google tiers. Nested schema for google_tiering:
- Oracle
Tierings List<GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Oracle Tiering> - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- Aws
Tierings []GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Aws Tiering - (List) Specifies aws tiers. Nested schema for aws_tiering:
- Azure
Tierings []GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Google Tiering - (List) Specifies Google tiers. Nested schema for google_tiering:
- Oracle
Tierings []GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Oracle Tiering - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws
Tierings List<GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Aws Tiering> - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure
Tierings List<GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Google Tiering> - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle
Tierings List<GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Oracle Tiering> - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws
Tierings GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Aws Tiering[] - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure
Tierings GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Google Tiering[] - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle
Tierings GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Oracle Tiering[] - (List) Specifies Oracle tiers. Nested schema for oracle_tiering:
- aws_
tierings Sequence[GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Aws Tiering] - (List) Specifies aws tiers. Nested schema for aws_tiering:
- azure_
tierings Sequence[GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info Tier Setting Google Tiering] - (List) Specifies Google tiers. Nested schema for google_tiering:
- oracle_
tierings Sequence[GetBackup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfoTierSettingAwsTiering
- Tiers
List<Get
Backup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfoTierSettingAwsTieringTier
- 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfoTierSettingAzureTiering
- Tiers
List<Get
Backup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfoTierSettingAzureTieringTier
- 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfoTierSettingGoogleTiering
- Tiers
List<Get
Backup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfoTierSettingGoogleTieringTier
- 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfoTierSettingOracleTiering
- Tiers
List<Get
Backup Recovery Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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 Search Protected Objects Object Latest Snapshots Info Archival Snapshots Info 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoArchivalSnapshotsInfoTierSettingOracleTieringTier
- 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:
GetBackupRecoverySearchProtectedObjectsObjectLatestSnapshotsInfoLocalSnapshotInfo
- Logical
Size doubleBytes - (Integer) Specifies the logical size of object in bytes.
- Snapshot
Id string - (String) Specifies the id of the local snapshot for the object.
- Logical
Size float64Bytes - (Integer) Specifies the logical size of object in bytes.
- Snapshot
Id string - (String) Specifies the id of the local snapshot for the object.
- logical
Size DoubleBytes - (Integer) Specifies the logical size of object in bytes.
- snapshot
Id String - (String) Specifies the id of the local snapshot for the object.
- logical
Size numberBytes - (Integer) Specifies the logical size of object in bytes.
- snapshot
Id string - (String) Specifies the id of the local snapshot for the object.
- logical_
size_ floatbytes - (Integer) Specifies the logical size of object in bytes.
- snapshot_
id str - (String) Specifies the id of the local snapshot for the object.
- logical
Size NumberBytes - (Integer) Specifies the logical size of object in bytes.
- snapshot
Id String - (String) Specifies the id of the local snapshot for the object.
GetBackupRecoverySearchProtectedObjectsObjectMssqlParam
- Aag
Infos List<GetBackup Recovery Search Protected Objects Object Mssql Param Aag Info> - (List) Object details for Mssql. Nested schema for aag_info:
- Host
Infos List<GetBackup Recovery Search Protected Objects Object Mssql Param Host Info> - (List) Specifies the host information for a objects. This is mainly populated in case of App objects where app object is hosted by another object such as VM or physical server. Nested schema for host_info:
- Is
Encrypted bool - (Boolean) Specifies whether the database is TDE enabled.
- Aag
Infos []GetBackup Recovery Search Protected Objects Object Mssql Param Aag Info - (List) Object details for Mssql. Nested schema for aag_info:
- Host
Infos []GetBackup Recovery Search Protected Objects Object Mssql Param Host Info - (List) Specifies the host information for a objects. This is mainly populated in case of App objects where app object is hosted by another object such as VM or physical server. Nested schema for host_info:
- Is
Encrypted bool - (Boolean) Specifies whether the database is TDE enabled.
- aag
Infos List<GetBackup Recovery Search Protected Objects Object Mssql Param Aag Info> - (List) Object details for Mssql. Nested schema for aag_info:
- host
Infos List<GetBackup Recovery Search Protected Objects Object Mssql Param Host Info> - (List) Specifies the host information for a objects. This is mainly populated in case of App objects where app object is hosted by another object such as VM or physical server. Nested schema for host_info:
- is
Encrypted Boolean - (Boolean) Specifies whether the database is TDE enabled.
- aag
Infos GetBackup Recovery Search Protected Objects Object Mssql Param Aag Info[] - (List) Object details for Mssql. Nested schema for aag_info:
- host
Infos GetBackup Recovery Search Protected Objects Object Mssql Param Host Info[] - (List) Specifies the host information for a objects. This is mainly populated in case of App objects where app object is hosted by another object such as VM or physical server. Nested schema for host_info:
- is
Encrypted boolean - (Boolean) Specifies whether the database is TDE enabled.
- aag_
infos Sequence[GetBackup Recovery Search Protected Objects Object Mssql Param Aag Info] - (List) Object details for Mssql. Nested schema for aag_info:
- host_
infos Sequence[GetBackup Recovery Search Protected Objects Object Mssql Param Host Info] - (List) Specifies the host information for a objects. This is mainly populated in case of App objects where app object is hosted by another object such as VM or physical server. Nested schema for host_info:
- is_
encrypted bool - (Boolean) Specifies whether the database is TDE enabled.
- aag
Infos List<Property Map> - (List) Object details for Mssql. Nested schema for aag_info:
- host
Infos List<Property Map> - (List) Specifies the host information for a objects. This is mainly populated in case of App objects where app object is hosted by another object such as VM or physical server. Nested schema for host_info:
- is
Encrypted Boolean - (Boolean) Specifies whether the database is TDE enabled.
GetBackupRecoverySearchProtectedObjectsObjectMssqlParamAagInfo
GetBackupRecoverySearchProtectedObjectsObjectMssqlParamHostInfo
- Environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Id string
- (Integer) Specifies object id.
- Name string
- (String) Specifies the name of the object.
- Environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Id string
- (Integer) Specifies object id.
- Name string
- (String) Specifies the name of the object.
- environment String
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- id String
- (Integer) Specifies object id.
- name String
- (String) Specifies the name of the object.
- environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- id string
- (Integer) Specifies object id.
- name string
- (String) Specifies the name of the object.
- environment str
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- id str
- (Integer) Specifies object id.
- name str
- (String) Specifies the name of the object.
- environment String
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- id String
- (Integer) Specifies object id.
- name String
- (String) Specifies the name of the object.
GetBackupRecoverySearchProtectedObjectsObjectPermission
- Groups
List<Get
Backup Recovery Search Protected Objects Object Permission Group> - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- Object
Id double - (Integer) Specifies the id of the object.
- Tenants
List<Get
Backup Recovery Search Protected Objects Object Permission Tenant> - (List) Specifies a tenant object. Nested schema for tenant:
- Users
List<Get
Backup Recovery Search Protected Objects Object Permission User> - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- Groups
[]Get
Backup Recovery Search Protected Objects Object Permission Group - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- Object
Id float64 - (Integer) Specifies the id of the object.
- Tenants
[]Get
Backup Recovery Search Protected Objects Object Permission Tenant - (List) Specifies a tenant object. Nested schema for tenant:
- Users
[]Get
Backup Recovery Search Protected Objects Object Permission User - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- groups
List<Get
Backup Recovery Search Protected Objects Object Permission Group> - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- object
Id Double - (Integer) Specifies the id of the object.
- tenants
List<Get
Backup Recovery Search Protected Objects Object Permission Tenant> - (List) Specifies a tenant object. Nested schema for tenant:
- users
List<Get
Backup Recovery Search Protected Objects Object Permission User> - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- groups
Get
Backup Recovery Search Protected Objects Object Permission Group[] - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- object
Id number - (Integer) Specifies the id of the object.
- tenants
Get
Backup Recovery Search Protected Objects Object Permission Tenant[] - (List) Specifies a tenant object. Nested schema for tenant:
- users
Get
Backup Recovery Search Protected Objects Object Permission User[] - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- groups
Sequence[Get
Backup Recovery Search Protected Objects Object Permission Group] - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- object_
id float - (Integer) Specifies the id of the object.
- tenants
Sequence[Get
Backup Recovery Search Protected Objects Object Permission Tenant] - (List) Specifies a tenant object. Nested schema for tenant:
- users
Sequence[Get
Backup Recovery Search Protected Objects Object Permission User] - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- groups List<Property Map>
- (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- object
Id Number - (Integer) Specifies the id of the object.
- tenants List<Property Map>
- (List) Specifies a tenant object. Nested schema for tenant:
- users List<Property Map>
- (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
GetBackupRecoverySearchProtectedObjectsObjectPermissionGroup
GetBackupRecoverySearchProtectedObjectsObjectPermissionTenant
- 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 Search Protected Objects Object Permission Tenant 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
- (Integer) Specifies object 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 object.
- Networks
List<Get
Backup Recovery Search Protected Objects Object Permission Tenant Network> - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- Status string
- (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- 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 Search Protected Objects Object Permission Tenant 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
- (Integer) Specifies object 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 object.
- Networks
[]Get
Backup Recovery Search Protected Objects Object Permission Tenant Network - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- Status string
- (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- 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 Search Protected Objects Object Permission Tenant 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
- (Integer) Specifies object 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 object.
- networks
List<Get
Backup Recovery Search Protected Objects Object Permission Tenant Network> - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status String
- (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- 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 Search Protected Objects Object Permission Tenant 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
- (Integer) Specifies object 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 object.
- networks
Get
Backup Recovery Search Protected Objects Object Permission Tenant Network[] - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status string
- (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- 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 Search Protected Objects Object Permission Tenant 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
- (Integer) Specifies object 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 object.
- networks
Sequence[Get
Backup Recovery Search Protected Objects Object Permission Tenant Network] - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status str
- (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- 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
- (Integer) Specifies object 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 object.
- networks List<Property Map>
- (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status String
- (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- Constraints: Allowable values are:
GetBackupRecoverySearchProtectedObjectsObjectPermissionTenantExternalVendorMetadata
- Ibm
Tenant List<GetMetadata Params Backup Recovery Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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:
GetBackupRecoverySearchProtectedObjectsObjectPermissionTenantExternalVendorMetadataIbmTenantMetadataParam
- 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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.
GetBackupRecoverySearchProtectedObjectsObjectPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty
GetBackupRecoverySearchProtectedObjectsObjectPermissionTenantExternalVendorMetadataIbmTenantMetadataParamMetricsConfig
- Cos
Resource List<GetConfigs Backup Recovery Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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 Search Protected Objects Object Permission Tenant 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:
GetBackupRecoverySearchProtectedObjectsObjectPermissionTenantExternalVendorMetadataIbmTenantMetadataParamMetricsConfigCosResourceConfig
- 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.
GetBackupRecoverySearchProtectedObjectsObjectPermissionTenantExternalVendorMetadataIbmTenantMetadataParamMetricsConfigIamMetricsConfig
- 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.
GetBackupRecoverySearchProtectedObjectsObjectPermissionTenantExternalVendorMetadataIbmTenantMetadataParamMetricsConfigMeteringConfig
- 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.
GetBackupRecoverySearchProtectedObjectsObjectPermissionTenantNetwork
- 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.
GetBackupRecoverySearchProtectedObjectsObjectPermissionUser
GetBackupRecoverySearchProtectedObjectsObjectPhysicalParam
- Enable
System boolBackup - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- Enable
System boolBackup - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- enable
System BooleanBackup - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- enable
System booleanBackup - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- enable_
system_ boolbackup - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- enable
System BooleanBackup - (Boolean) Specifies if system backup was enabled for the source in a particular run.
GetBackupRecoverySearchProtectedObjectsObjectProtectionStat
- Deleted
Protected doubleCount - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- Environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Protected
Count double - (Integer) Specifies the count of the protected leaf objects.
- Protected
Size doubleBytes - (Integer) Specifies the protected logical size in bytes.
- Unprotected
Count double - (Integer) Specifies the count of the unprotected leaf objects.
- Unprotected
Size doubleBytes - (Integer) Specifies the unprotected logical size in bytes.
- Deleted
Protected float64Count - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- Environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- Protected
Count float64 - (Integer) Specifies the count of the protected leaf objects.
- Protected
Size float64Bytes - (Integer) Specifies the protected logical size in bytes.
- Unprotected
Count float64 - (Integer) Specifies the count of the unprotected leaf objects.
- Unprotected
Size float64Bytes - (Integer) Specifies the unprotected logical size in bytes.
- deleted
Protected DoubleCount - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- environment String
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- protected
Count Double - (Integer) Specifies the count of the protected leaf objects.
- protected
Size DoubleBytes - (Integer) Specifies the protected logical size in bytes.
- unprotected
Count Double - (Integer) Specifies the count of the unprotected leaf objects.
- unprotected
Size DoubleBytes - (Integer) Specifies the unprotected logical size in bytes.
- deleted
Protected numberCount - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- environment string
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- protected
Count number - (Integer) Specifies the count of the protected leaf objects.
- protected
Size numberBytes - (Integer) Specifies the protected logical size in bytes.
- unprotected
Count number - (Integer) Specifies the count of the unprotected leaf objects.
- unprotected
Size numberBytes - (Integer) Specifies the unprotected logical size in bytes.
- deleted_
protected_ floatcount - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- environment str
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- protected_
count float - (Integer) Specifies the count of the protected leaf objects.
- protected_
size_ floatbytes - (Integer) Specifies the protected logical size in bytes.
- unprotected_
count float - (Integer) Specifies the count of the unprotected leaf objects.
- unprotected_
size_ floatbytes - (Integer) Specifies the unprotected logical size in bytes.
- deleted
Protected NumberCount - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- environment String
- (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
.
- Constraints: Allowable values are:
- protected
Count Number - (Integer) Specifies the count of the protected leaf objects.
- protected
Size NumberBytes - (Integer) Specifies the protected logical size in bytes.
- unprotected
Count Number - (Integer) Specifies the count of the unprotected leaf objects.
- unprotected
Size NumberBytes - (Integer) Specifies the unprotected logical size in bytes.
GetBackupRecoverySearchProtectedObjectsObjectSharepointSiteSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectSourceInfo
- Child
Objects List<GetBackup Recovery Search Protected Objects Object Source Info 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
- (Integer) Specifies object id.
- Logical
Size doubleBytes - (Integer) Specifies the logical size of object in bytes.
- Name string
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id double - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info VCenter Summary> - (List) Nested schema for v_center_summary:
- Windows
Cluster List<GetSummaries Backup Recovery Search Protected Objects Object Source Info Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- Child
Objects []GetBackup Recovery Search Protected Objects Object Source Info 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
- (Integer) Specifies object id.
- Logical
Size float64Bytes - (Integer) Specifies the logical size of object in bytes.
- Name string
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Sharepoint Site Summary - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id float64 - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info VCenter Summary - (List) Nested schema for v_center_summary:
- Windows
Cluster []GetSummaries Backup Recovery Search Protected Objects Object Source Info Windows Cluster Summary - (List) Nested schema for windows_cluster_summary:
- child
Objects List<GetBackup Recovery Search Protected Objects Object Source Info 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
- (Integer) Specifies object id.
- logical
Size DoubleBytes - (Integer) Specifies the logical size of object in bytes.
- name String
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id Double - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info VCenter Summary> - (List) Nested schema for v_center_summary:
- windows
Cluster List<GetSummaries Backup Recovery Search Protected Objects Object Source Info Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- child
Objects GetBackup Recovery Search Protected Objects Object Source Info 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
- (Integer) Specifies object id.
- logical
Size numberBytes - (Integer) Specifies the logical size of object in bytes.
- name string
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Sharepoint Site Summary[] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id number - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info VCenter Summary[] - (List) Nested schema for v_center_summary:
- windows
Cluster GetSummaries Backup Recovery Search Protected Objects Object Source Info Windows Cluster Summary[] - (List) Nested schema for windows_cluster_summary:
- child_
objects Sequence[GetBackup Recovery Search Protected Objects Object Source Info 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
- (Integer) Specifies object id.
- logical_
size_ floatbytes - (Integer) Specifies the logical size of object in bytes.
- name str
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Sharepoint Site Summary] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source_
id float - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info VCenter Summary] - (List) Nested schema for v_center_summary:
- windows_
cluster_ Sequence[Getsummaries Backup Recovery Search Protected Objects Object Source Info 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
- (Integer) Specifies object id.
- logical
Size NumberBytes - (Integer) Specifies the logical size of object in bytes.
- name String
- (String) Specifies the name of the object.
- 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 registered source id to which object belongs.
- 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:
GetBackupRecoverySearchProtectedObjectsObjectSourceInfoChildObject
- Child
Objects List<GetBackup Recovery Search Protected Objects Object Source Info Child 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
- (Integer) Specifies object id.
- Logical
Size doubleBytes - (Integer) Specifies the logical size of object in bytes.
- Name string
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Child Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id double - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info Child Object VCenter Summary> - (List) Nested schema for v_center_summary:
- Windows
Cluster List<GetSummaries Backup Recovery Search Protected Objects Object Source Info Child Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- Child
Objects []GetBackup Recovery Search Protected Objects Object Source Info Child 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
- (Integer) Specifies object id.
- Logical
Size float64Bytes - (Integer) Specifies the logical size of object in bytes.
- Name string
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Child Object Sharepoint Site Summary - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id float64 - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info Child Object VCenter Summary - (List) Nested schema for v_center_summary:
- Windows
Cluster []GetSummaries Backup Recovery Search Protected Objects Object Source Info Child Object Windows Cluster Summary - (List) Nested schema for windows_cluster_summary:
- child
Objects List<GetBackup Recovery Search Protected Objects Object Source Info Child 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
- (Integer) Specifies object id.
- logical
Size DoubleBytes - (Integer) Specifies the logical size of object in bytes.
- name String
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Child Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id Double - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info Child Object VCenter Summary> - (List) Nested schema for v_center_summary:
- windows
Cluster List<GetSummaries Backup Recovery Search Protected Objects Object Source Info Child Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- child
Objects GetBackup Recovery Search Protected Objects Object Source Info Child 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
- (Integer) Specifies object id.
- logical
Size numberBytes - (Integer) Specifies the logical size of object in bytes.
- name string
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Child Object Sharepoint Site Summary[] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id number - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info Child Object VCenter Summary[] - (List) Nested schema for v_center_summary:
- windows
Cluster GetSummaries Backup Recovery Search Protected Objects Object Source Info Child Object Windows Cluster Summary[] - (List) Nested schema for windows_cluster_summary:
- child_
objects Sequence[GetBackup Recovery Search Protected Objects Object Source Info Child 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
- (Integer) Specifies object id.
- logical_
size_ floatbytes - (Integer) Specifies the logical size of object in bytes.
- name str
- (String) Specifies the name of the object.
- 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 Search Protected Objects Object Source Info Child Object Sharepoint Site Summary] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source_
id float - (Integer) Specifies registered source id to which object belongs.
- 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 Search Protected Objects Object Source Info Child Object VCenter Summary] - (List) Nested schema for v_center_summary:
- windows_
cluster_ Sequence[Getsummaries Backup Recovery Search Protected Objects Object Source Info Child 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
- (Integer) Specifies object id.
- logical
Size NumberBytes - (Integer) Specifies the logical size of object in bytes.
- name String
- (String) Specifies the name of the object.
- 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 registered source id to which object belongs.
- 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:
GetBackupRecoverySearchProtectedObjectsObjectSourceInfoChildObjectSharepointSiteSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectSourceInfoChildObjectVCenterSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectSourceInfoChildObjectWindowsClusterSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectSourceInfoSharepointSiteSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectSourceInfoVCenterSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectSourceInfoWindowsClusterSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectVCenterSummary
- 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.
GetBackupRecoverySearchProtectedObjectsObjectWindowsClusterSummary
- 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.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.