ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud
ibm.getBackupRecoverySourceRegistrations
Explore with Pulumi AI
Provides a read-only data source to retrieve information about backup_recovery_source_registrations. 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 backupRecoverySourceRegistrations = ibm.getBackupRecoverySourceRegistrations({
xIbmTenantId: ibm_backup_recovery_source_registration.backup_recovery_source_registration_instance.x_ibm_tenant_id,
});
import pulumi
import pulumi_ibm as ibm
backup_recovery_source_registrations = ibm.get_backup_recovery_source_registrations(x_ibm_tenant_id=ibm_backup_recovery_source_registration["backup_recovery_source_registration_instance"]["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.GetBackupRecoverySourceRegistrations(ctx, &ibm.GetBackupRecoverySourceRegistrationsArgs{
XIbmTenantId: ibm_backup_recovery_source_registration.Backup_recovery_source_registration_instance.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 backupRecoverySourceRegistrations = Ibm.GetBackupRecoverySourceRegistrations.Invoke(new()
{
XIbmTenantId = ibm_backup_recovery_source_registration.Backup_recovery_source_registration_instance.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.GetBackupRecoverySourceRegistrationsArgs;
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 backupRecoverySourceRegistrations = IbmFunctions.getBackupRecoverySourceRegistrations(GetBackupRecoverySourceRegistrationsArgs.builder()
.xIbmTenantId(ibm_backup_recovery_source_registration.backup_recovery_source_registration_instance().x_ibm_tenant_id())
.build());
}
}
variables:
backupRecoverySourceRegistrations:
fn::invoke:
function: ibm:getBackupRecoverySourceRegistrations
arguments:
xIbmTenantId: ${ibm_backup_recovery_source_registration.backup_recovery_source_registration_instance.x_ibm_tenant_id}
Using getBackupRecoverySourceRegistrations
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 getBackupRecoverySourceRegistrations(args: GetBackupRecoverySourceRegistrationsArgs, opts?: InvokeOptions): Promise<GetBackupRecoverySourceRegistrationsResult>
function getBackupRecoverySourceRegistrationsOutput(args: GetBackupRecoverySourceRegistrationsOutputArgs, opts?: InvokeOptions): Output<GetBackupRecoverySourceRegistrationsResult>
def get_backup_recovery_source_registrations(encryption_key: Optional[str] = None,
id: Optional[str] = None,
ids: Optional[Sequence[float]] = None,
ignore_tenant_migration_in_progress_check: Optional[bool] = None,
include_external_metadata: Optional[bool] = None,
include_source_credentials: Optional[bool] = None,
use_cached_data: Optional[bool] = None,
x_ibm_tenant_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBackupRecoverySourceRegistrationsResult
def get_backup_recovery_source_registrations_output(encryption_key: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[float]]]] = None,
ignore_tenant_migration_in_progress_check: Optional[pulumi.Input[bool]] = None,
include_external_metadata: Optional[pulumi.Input[bool]] = None,
include_source_credentials: Optional[pulumi.Input[bool]] = None,
use_cached_data: Optional[pulumi.Input[bool]] = None,
x_ibm_tenant_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetBackupRecoverySourceRegistrationsResult]
func GetBackupRecoverySourceRegistrations(ctx *Context, args *GetBackupRecoverySourceRegistrationsArgs, opts ...InvokeOption) (*GetBackupRecoverySourceRegistrationsResult, error)
func GetBackupRecoverySourceRegistrationsOutput(ctx *Context, args *GetBackupRecoverySourceRegistrationsOutputArgs, opts ...InvokeOption) GetBackupRecoverySourceRegistrationsResultOutput
> Note: This function is named GetBackupRecoverySourceRegistrations
in the Go SDK.
public static class GetBackupRecoverySourceRegistrations
{
public static Task<GetBackupRecoverySourceRegistrationsResult> InvokeAsync(GetBackupRecoverySourceRegistrationsArgs args, InvokeOptions? opts = null)
public static Output<GetBackupRecoverySourceRegistrationsResult> Invoke(GetBackupRecoverySourceRegistrationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetBackupRecoverySourceRegistrationsResult> getBackupRecoverySourceRegistrations(GetBackupRecoverySourceRegistrationsArgs args, InvokeOptions options)
public static Output<GetBackupRecoverySourceRegistrationsResult> getBackupRecoverySourceRegistrations(GetBackupRecoverySourceRegistrationsArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getBackupRecoverySourceRegistrations:getBackupRecoverySourceRegistrations
arguments:
# arguments dictionary
The following arguments are supported:
- XIbm
Tenant Id This property is required. string - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- Encryption
Key string - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- Id string
- (String) The tenant id.
- Ids List<double>
- Ids specifies the list of source registration ids to return. If left empty, every source registration will be returned by default.
- Ignore
Tenant boolMigration In Progress Check - If true, tenant migration check will be ignored.
- Include
External boolMetadata - If true, the external entity metadata like maintenance mode config for the registered sources will be included.
- Include
Source boolCredentials - If true, the encrypted crednetial for the registered sources will be included. Credential is first encrypted with internal key and then reencrypted with user supplied encryption key.
- Use
Cached boolData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- XIbm
Tenant Id This property is required. string - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- Encryption
Key string - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- Id string
- (String) The tenant id.
- Ids []float64
- Ids specifies the list of source registration ids to return. If left empty, every source registration will be returned by default.
- Ignore
Tenant boolMigration In Progress Check - If true, tenant migration check will be ignored.
- Include
External boolMetadata - If true, the external entity metadata like maintenance mode config for the registered sources will be included.
- Include
Source boolCredentials - If true, the encrypted crednetial for the registered sources will be included. Credential is first encrypted with internal key and then reencrypted with user supplied encryption key.
- Use
Cached boolData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- x
Ibm Tenant Id This property is required. String - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- encryption
Key String - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- id String
- (String) The tenant id.
- ids List<Double>
- Ids specifies the list of source registration ids to return. If left empty, every source registration will be returned by default.
- ignore
Tenant BooleanMigration In Progress Check - If true, tenant migration check will be ignored.
- include
External BooleanMetadata - If true, the external entity metadata like maintenance mode config for the registered sources will be included.
- include
Source BooleanCredentials - If true, the encrypted crednetial for the registered sources will be included. Credential is first encrypted with internal key and then reencrypted with user supplied encryption key.
- use
Cached BooleanData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- x
Ibm Tenant Id This property is required. string - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- encryption
Key string - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- id string
- (String) The tenant id.
- ids number[]
- Ids specifies the list of source registration ids to return. If left empty, every source registration will be returned by default.
- ignore
Tenant booleanMigration In Progress Check - If true, tenant migration check will be ignored.
- include
External booleanMetadata - If true, the external entity metadata like maintenance mode config for the registered sources will be included.
- include
Source booleanCredentials - If true, the encrypted crednetial for the registered sources will be included. Credential is first encrypted with internal key and then reencrypted with user supplied encryption key.
- use
Cached booleanData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- x_
ibm_ tenant_ id This property is required. str - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- encryption_
key str - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- id str
- (String) The tenant id.
- ids Sequence[float]
- Ids specifies the list of source registration ids to return. If left empty, every source registration will be returned by default.
- ignore_
tenant_ boolmigration_ in_ progress_ check - If true, tenant migration check will be ignored.
- include_
external_ boolmetadata - If true, the external entity metadata like maintenance mode config for the registered sources will be included.
- include_
source_ boolcredentials - If true, the encrypted crednetial for the registered sources will be included. Credential is first encrypted with internal key and then reencrypted with user supplied encryption key.
- use_
cached_ booldata - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
- x
Ibm Tenant Id This property is required. String - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- encryption
Key String - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- id String
- (String) The tenant id.
- ids List<Number>
- Ids specifies the list of source registration ids to return. If left empty, every source registration will be returned by default.
- ignore
Tenant BooleanMigration In Progress Check - If true, tenant migration check will be ignored.
- include
External BooleanMetadata - If true, the external entity metadata like maintenance mode config for the registered sources will be included.
- include
Source BooleanCredentials - If true, the encrypted crednetial for the registered sources will be included. Credential is first encrypted with internal key and then reencrypted with user supplied encryption key.
- use
Cached BooleanData - Specifies whether we can serve the GET request from the read replica cache. There is a lag of 15 seconds between the read replica and primary data source.
getBackupRecoverySourceRegistrations Result
The following output properties are available:
- Id string
- (String) The tenant id.
- Registrations
List<Get
Backup Recovery Source Registrations Registration> - (List) Specifies the list of Protection Source Registrations. Nested schema for registrations:
- XIbm
Tenant stringId - Encryption
Key string - Ids List<double>
- Ignore
Tenant boolMigration In Progress Check - Include
External boolMetadata - Include
Source boolCredentials - Use
Cached boolData
- Id string
- (String) The tenant id.
- Registrations
[]Get
Backup Recovery Source Registrations Registration - (List) Specifies the list of Protection Source Registrations. Nested schema for registrations:
- XIbm
Tenant stringId - Encryption
Key string - Ids []float64
- Ignore
Tenant boolMigration In Progress Check - Include
External boolMetadata - Include
Source boolCredentials - Use
Cached boolData
- id String
- (String) The tenant id.
- registrations
List<Get
Backup Recovery Source Registrations Registration> - (List) Specifies the list of Protection Source Registrations. Nested schema for registrations:
- x
Ibm StringTenant Id - encryption
Key String - ids List<Double>
- ignore
Tenant BooleanMigration In Progress Check - include
External BooleanMetadata - include
Source BooleanCredentials - use
Cached BooleanData
- id string
- (String) The tenant id.
- registrations
Get
Backup Recovery Source Registrations Registration[] - (List) Specifies the list of Protection Source Registrations. Nested schema for registrations:
- x
Ibm stringTenant Id - encryption
Key string - ids number[]
- ignore
Tenant booleanMigration In Progress Check - include
External booleanMetadata - include
Source booleanCredentials - use
Cached booleanData
- id str
- (String) The tenant id.
- registrations
Sequence[Get
Backup Recovery Source Registrations Registration] - (List) Specifies the list of Protection Source Registrations. Nested schema for registrations:
- x_
ibm_ strtenant_ id - encryption_
key str - ids Sequence[float]
- ignore_
tenant_ boolmigration_ in_ progress_ check - include_
external_ boolmetadata - include_
source_ boolcredentials - use_
cached_ booldata
- id String
- (String) The tenant id.
- registrations List<Property Map>
- (List) Specifies the list of Protection Source Registrations. Nested schema for registrations:
- x
Ibm StringTenant Id - encryption
Key String - ids List<Number>
- ignore
Tenant BooleanMigration In Progress Check - include
External BooleanMetadata - include
Source BooleanCredentials - use
Cached BooleanData
Supporting Types
GetBackupRecoverySourceRegistrationsRegistration
- Advanced
Configs This property is required. List<GetBackup Recovery Source Registrations Registration Advanced Config> - (List) Specifies the advanced configuration for a protection source. Nested schema for advanced_configs:
- Authentication
Status This property is required. string - (String) Specifies the status of the authentication during the registration of a Protection Source. 'Pending' indicates the authentication is in progress. 'Scheduled' indicates the authentication is scheduled. 'Finished' indicates the authentication is completed. 'RefreshInProgress' indicates the refresh is in progress.
- Constraints: Allowable values are:
Pending
,Scheduled
,Finished
,RefreshInProgress
.
- Constraints: Allowable values are:
- Connection
Id This property is required. double - (Integer) Specifies the id of the connection.
- Connections
This property is required. List<GetBackup Recovery Source Registrations Registration Connection> - (List) Specfies the list of connections for the source. Nested schema for connections:
- Connector
Group Id This property is required. double - (Integer) Specifies the connector group id of connector groups.
- Data
Source Connection Id This property is required. string - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- External
Metadatas This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata> - (List) Specifies the External metadata of an entity. Nested schema for external_metadata:
- Id
This property is required. double - (String) The tenant id.
- Last
Refreshed Time Msecs This property is required. double - (Integer) Specifies the time when the source was last refreshed in milliseconds.
- Name
This property is required. string - (String) Specifies the name of the user.
- Physical
Params This property is required. List<GetBackup Recovery Source Registrations Registration Physical Param> - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- Registration
Time Msecs This property is required. double - (Integer) Specifies the time when the source was registered in milliseconds.
- Source
Id This property is required. double - (Integer) Specifies registered source id to which object belongs.
- Source
Infos This property is required. List<GetBackup Recovery Source Registrations Registration Source Info> - (List) Specifies information about an object. Nested schema for source_info:
- Advanced
Configs This property is required. []GetBackup Recovery Source Registrations Registration Advanced Config - (List) Specifies the advanced configuration for a protection source. Nested schema for advanced_configs:
- Authentication
Status This property is required. string - (String) Specifies the status of the authentication during the registration of a Protection Source. 'Pending' indicates the authentication is in progress. 'Scheduled' indicates the authentication is scheduled. 'Finished' indicates the authentication is completed. 'RefreshInProgress' indicates the refresh is in progress.
- Constraints: Allowable values are:
Pending
,Scheduled
,Finished
,RefreshInProgress
.
- Constraints: Allowable values are:
- Connection
Id This property is required. float64 - (Integer) Specifies the id of the connection.
- Connections
This property is required. []GetBackup Recovery Source Registrations Registration Connection - (List) Specfies the list of connections for the source. Nested schema for connections:
- Connector
Group Id This property is required. float64 - (Integer) Specifies the connector group id of connector groups.
- Data
Source Connection Id This property is required. string - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- External
Metadatas This property is required. []GetBackup Recovery Source Registrations Registration External Metadata - (List) Specifies the External metadata of an entity. Nested schema for external_metadata:
- Id
This property is required. float64 - (String) The tenant id.
- Last
Refreshed Time Msecs This property is required. float64 - (Integer) Specifies the time when the source was last refreshed in milliseconds.
- Name
This property is required. string - (String) Specifies the name of the user.
- Physical
Params This property is required. []GetBackup Recovery Source Registrations Registration Physical Param - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- Registration
Time Msecs This property is required. float64 - (Integer) Specifies the time when the source was registered in milliseconds.
- Source
Id This property is required. float64 - (Integer) Specifies registered source id to which object belongs.
- Source
Infos This property is required. []GetBackup Recovery Source Registrations Registration Source Info - (List) Specifies information about an object. Nested schema for source_info:
- advanced
Configs This property is required. List<GetBackup Recovery Source Registrations Registration Advanced Config> - (List) Specifies the advanced configuration for a protection source. Nested schema for advanced_configs:
- authentication
Status This property is required. String - (String) Specifies the status of the authentication during the registration of a Protection Source. 'Pending' indicates the authentication is in progress. 'Scheduled' indicates the authentication is scheduled. 'Finished' indicates the authentication is completed. 'RefreshInProgress' indicates the refresh is in progress.
- Constraints: Allowable values are:
Pending
,Scheduled
,Finished
,RefreshInProgress
.
- Constraints: Allowable values are:
- connection
Id This property is required. Double - (Integer) Specifies the id of the connection.
- connections
This property is required. List<GetBackup Recovery Source Registrations Registration Connection> - (List) Specfies the list of connections for the source. Nested schema for connections:
- connector
Group Id This property is required. Double - (Integer) Specifies the connector group id of connector groups.
- data
Source Connection Id This property is required. String - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- external
Metadatas This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata> - (List) Specifies the External metadata of an entity. Nested schema for external_metadata:
- id
This property is required. Double - (String) The tenant id.
- last
Refreshed Time Msecs This property is required. Double - (Integer) Specifies the time when the source was last refreshed in milliseconds.
- name
This property is required. String - (String) Specifies the name of the user.
- physical
Params This property is required. List<GetBackup Recovery Source Registrations Registration Physical Param> - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- registration
Time Msecs This property is required. Double - (Integer) Specifies the time when the source was registered in milliseconds.
- source
Id This property is required. Double - (Integer) Specifies registered source id to which object belongs.
- source
Infos This property is required. List<GetBackup Recovery Source Registrations Registration Source Info> - (List) Specifies information about an object. Nested schema for source_info:
- advanced
Configs This property is required. GetBackup Recovery Source Registrations Registration Advanced Config[] - (List) Specifies the advanced configuration for a protection source. Nested schema for advanced_configs:
- authentication
Status This property is required. string - (String) Specifies the status of the authentication during the registration of a Protection Source. 'Pending' indicates the authentication is in progress. 'Scheduled' indicates the authentication is scheduled. 'Finished' indicates the authentication is completed. 'RefreshInProgress' indicates the refresh is in progress.
- Constraints: Allowable values are:
Pending
,Scheduled
,Finished
,RefreshInProgress
.
- Constraints: Allowable values are:
- connection
Id This property is required. number - (Integer) Specifies the id of the connection.
- connections
This property is required. GetBackup Recovery Source Registrations Registration Connection[] - (List) Specfies the list of connections for the source. Nested schema for connections:
- connector
Group Id This property is required. number - (Integer) Specifies the connector group id of connector groups.
- data
Source Connection Id This property is required. string - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- external
Metadatas This property is required. GetBackup Recovery Source Registrations Registration External Metadata[] - (List) Specifies the External metadata of an entity. Nested schema for external_metadata:
- id
This property is required. number - (String) The tenant id.
- last
Refreshed Time Msecs This property is required. number - (Integer) Specifies the time when the source was last refreshed in milliseconds.
- name
This property is required. string - (String) Specifies the name of the user.
- physical
Params This property is required. GetBackup Recovery Source Registrations Registration Physical Param[] - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- registration
Time Msecs This property is required. number - (Integer) Specifies the time when the source was registered in milliseconds.
- source
Id This property is required. number - (Integer) Specifies registered source id to which object belongs.
- source
Infos This property is required. GetBackup Recovery Source Registrations Registration Source Info[] - (List) Specifies information about an object. Nested schema for source_info:
- advanced_
configs This property is required. Sequence[GetBackup Recovery Source Registrations Registration Advanced Config] - (List) Specifies the advanced configuration for a protection source. Nested schema for advanced_configs:
- authentication_
status This property is required. str - (String) Specifies the status of the authentication during the registration of a Protection Source. 'Pending' indicates the authentication is in progress. 'Scheduled' indicates the authentication is scheduled. 'Finished' indicates the authentication is completed. 'RefreshInProgress' indicates the refresh is in progress.
- Constraints: Allowable values are:
Pending
,Scheduled
,Finished
,RefreshInProgress
.
- Constraints: Allowable values are:
- connection_
id This property is required. float - (Integer) Specifies the id of the connection.
- connections
This property is required. Sequence[GetBackup Recovery Source Registrations Registration Connection] - (List) Specfies the list of connections for the source. Nested schema for connections:
- connector_
group_ id This property is required. float - (Integer) Specifies the connector group id of connector groups.
- data_
source_ connection_ id This property is required. str - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- environment
This property is required. str - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- external_
metadatas This property is required. Sequence[GetBackup Recovery Source Registrations Registration External Metadata] - (List) Specifies the External metadata of an entity. Nested schema for external_metadata:
- id
This property is required. float - (String) The tenant id.
- last_
refreshed_ time_ msecs This property is required. float - (Integer) Specifies the time when the source was last refreshed in milliseconds.
- name
This property is required. str - (String) Specifies the name of the user.
- physical_
params This property is required. Sequence[GetBackup Recovery Source Registrations Registration Physical Param] - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- registration_
time_ msecs This property is required. float - (Integer) Specifies the time when the source was registered in milliseconds.
- source_
id This property is required. float - (Integer) Specifies registered source id to which object belongs.
- source_
infos This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info] - (List) Specifies information about an object. Nested schema for source_info:
- advanced
Configs This property is required. List<Property Map> - (List) Specifies the advanced configuration for a protection source. Nested schema for advanced_configs:
- authentication
Status This property is required. String - (String) Specifies the status of the authentication during the registration of a Protection Source. 'Pending' indicates the authentication is in progress. 'Scheduled' indicates the authentication is scheduled. 'Finished' indicates the authentication is completed. 'RefreshInProgress' indicates the refresh is in progress.
- Constraints: Allowable values are:
Pending
,Scheduled
,Finished
,RefreshInProgress
.
- Constraints: Allowable values are:
- connection
Id This property is required. Number - (Integer) Specifies the id of the connection.
- connections
This property is required. List<Property Map> - (List) Specfies the list of connections for the source. Nested schema for connections:
- connector
Group Id This property is required. Number - (Integer) Specifies the connector group id of connector groups.
- data
Source Connection Id This property is required. String - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- external
Metadatas This property is required. List<Property Map> - (List) Specifies the External metadata of an entity. Nested schema for external_metadata:
- id
This property is required. Number - (String) The tenant id.
- last
Refreshed Time Msecs This property is required. Number - (Integer) Specifies the time when the source was last refreshed in milliseconds.
- name
This property is required. String - (String) Specifies the name of the user.
- physical
Params This property is required. List<Property Map> - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- registration
Time Msecs This property is required. Number - (Integer) Specifies the time when the source was registered in milliseconds.
- source
Id This property is required. Number - (Integer) Specifies registered source id to which object belongs.
- source
Infos This property is required. List<Property Map> - (List) Specifies information about an object. Nested schema for source_info:
GetBackupRecoverySourceRegistrationsRegistrationAdvancedConfig
GetBackupRecoverySourceRegistrationsRegistrationConnection
- Connection
Id This property is required. double - (Integer) Specifies the id of the connection.
- Connector
Group Id This property is required. double - (Integer) Specifies the connector group id of connector groups.
- Data
Source Connection Id This property is required. string - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- Entity
Id This property is required. double - (Integer) Specifies the entity id of the source. The source can a non-root entity.
- Connection
Id This property is required. float64 - (Integer) Specifies the id of the connection.
- Connector
Group Id This property is required. float64 - (Integer) Specifies the connector group id of connector groups.
- Data
Source Connection Id This property is required. string - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- Entity
Id This property is required. float64 - (Integer) Specifies the entity id of the source. The source can a non-root entity.
- connection
Id This property is required. Double - (Integer) Specifies the id of the connection.
- connector
Group Id This property is required. Double - (Integer) Specifies the connector group id of connector groups.
- data
Source Connection Id This property is required. String - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- entity
Id This property is required. Double - (Integer) Specifies the entity id of the source. The source can a non-root entity.
- connection
Id This property is required. number - (Integer) Specifies the id of the connection.
- connector
Group Id This property is required. number - (Integer) Specifies the connector group id of connector groups.
- data
Source Connection Id This property is required. string - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- entity
Id This property is required. number - (Integer) Specifies the entity id of the source. The source can a non-root entity.
- connection_
id This property is required. float - (Integer) Specifies the id of the connection.
- connector_
group_ id This property is required. float - (Integer) Specifies the connector group id of connector groups.
- data_
source_ connection_ id This property is required. str - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- entity_
id This property is required. float - (Integer) Specifies the entity id of the source. The source can a non-root entity.
- connection
Id This property is required. Number - (Integer) Specifies the id of the connection.
- connector
Group Id This property is required. Number - (Integer) Specifies the connector group id of connector groups.
- data
Source Connection Id This property is required. String - (String) Specifies the id of the connection from where this source is reachable. This should only be set for a source being registered by a tenant user. Also, this is the 'string' of connectionId. This property was added to accommodate for ID values that exceed 2^53 - 1, which is the max value for which JS maintains precision.
- entity
Id This property is required. Number - (Integer) Specifies the entity id of the source. The source can a non-root entity.
GetBackupRecoverySourceRegistrationsRegistrationExternalMetadata
- Maintenance
Mode Configs This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config> - (List) Specifies the entity metadata for maintenance mode. Nested schema for maintenance_mode_config:
- Maintenance
Mode Configs This property is required. []GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config - (List) Specifies the entity metadata for maintenance mode. Nested schema for maintenance_mode_config:
- maintenance
Mode Configs This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config> - (List) Specifies the entity metadata for maintenance mode. Nested schema for maintenance_mode_config:
- maintenance
Mode Configs This property is required. GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config[] - (List) Specifies the entity metadata for maintenance mode. Nested schema for maintenance_mode_config:
- maintenance_
mode_ configs This property is required. Sequence[GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config] - (List) Specifies the entity metadata for maintenance mode. Nested schema for maintenance_mode_config:
- maintenance
Mode Configs This property is required. List<Property Map> - (List) Specifies the entity metadata for maintenance mode. Nested schema for maintenance_mode_config:
GetBackupRecoverySourceRegistrationsRegistrationExternalMetadataMaintenanceModeConfig
- Activation
Time Intervals This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Activation Time Interval> - (List) Specifies the absolute intervals where the maintenance schedule is valid, i.e. maintenance_shedule is considered only for these time ranges. (For example, if there is one time range with [now_usecs, now_usecs + 10 days], the action will be done during the maintenance_schedule for the next 10 days.)The start time must be specified. The end time can be -1 which would denote an indefinite maintenance mode. Nested schema for activation_time_intervals:
- Maintenance
Schedules This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule> - (List) Specifies a schedule for actions to be taken. Nested schema for maintenance_schedule:
- User
Message This property is required. string - (String) User provided message associated with this maintenance mode.
- Workflow
Intervention Spec Lists This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Workflow Intervention Spec List> - (List) Specifies the type of intervention for different workflows when the source goes into maintenance mode. Nested schema for workflow_intervention_spec_list:
- Activation
Time Intervals This property is required. []GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Activation Time Interval - (List) Specifies the absolute intervals where the maintenance schedule is valid, i.e. maintenance_shedule is considered only for these time ranges. (For example, if there is one time range with [now_usecs, now_usecs + 10 days], the action will be done during the maintenance_schedule for the next 10 days.)The start time must be specified. The end time can be -1 which would denote an indefinite maintenance mode. Nested schema for activation_time_intervals:
- Maintenance
Schedules This property is required. []GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule - (List) Specifies a schedule for actions to be taken. Nested schema for maintenance_schedule:
- User
Message This property is required. string - (String) User provided message associated with this maintenance mode.
- Workflow
Intervention Spec Lists This property is required. []GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Workflow Intervention Spec List - (List) Specifies the type of intervention for different workflows when the source goes into maintenance mode. Nested schema for workflow_intervention_spec_list:
- activation
Time Intervals This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Activation Time Interval> - (List) Specifies the absolute intervals where the maintenance schedule is valid, i.e. maintenance_shedule is considered only for these time ranges. (For example, if there is one time range with [now_usecs, now_usecs + 10 days], the action will be done during the maintenance_schedule for the next 10 days.)The start time must be specified. The end time can be -1 which would denote an indefinite maintenance mode. Nested schema for activation_time_intervals:
- maintenance
Schedules This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule> - (List) Specifies a schedule for actions to be taken. Nested schema for maintenance_schedule:
- user
Message This property is required. String - (String) User provided message associated with this maintenance mode.
- workflow
Intervention Spec Lists This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Workflow Intervention Spec List> - (List) Specifies the type of intervention for different workflows when the source goes into maintenance mode. Nested schema for workflow_intervention_spec_list:
- activation
Time Intervals This property is required. GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Activation Time Interval[] - (List) Specifies the absolute intervals where the maintenance schedule is valid, i.e. maintenance_shedule is considered only for these time ranges. (For example, if there is one time range with [now_usecs, now_usecs + 10 days], the action will be done during the maintenance_schedule for the next 10 days.)The start time must be specified. The end time can be -1 which would denote an indefinite maintenance mode. Nested schema for activation_time_intervals:
- maintenance
Schedules This property is required. GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule[] - (List) Specifies a schedule for actions to be taken. Nested schema for maintenance_schedule:
- user
Message This property is required. string - (String) User provided message associated with this maintenance mode.
- workflow
Intervention Spec Lists This property is required. GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Workflow Intervention Spec List[] - (List) Specifies the type of intervention for different workflows when the source goes into maintenance mode. Nested schema for workflow_intervention_spec_list:
- activation_
time_ intervals This property is required. Sequence[GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Activation Time Interval] - (List) Specifies the absolute intervals where the maintenance schedule is valid, i.e. maintenance_shedule is considered only for these time ranges. (For example, if there is one time range with [now_usecs, now_usecs + 10 days], the action will be done during the maintenance_schedule for the next 10 days.)The start time must be specified. The end time can be -1 which would denote an indefinite maintenance mode. Nested schema for activation_time_intervals:
- maintenance_
schedules This property is required. Sequence[GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule] - (List) Specifies a schedule for actions to be taken. Nested schema for maintenance_schedule:
- user_
message This property is required. str - (String) User provided message associated with this maintenance mode.
- workflow_
intervention_ spec_ lists This property is required. Sequence[GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Workflow Intervention Spec List] - (List) Specifies the type of intervention for different workflows when the source goes into maintenance mode. Nested schema for workflow_intervention_spec_list:
- activation
Time Intervals This property is required. List<Property Map> - (List) Specifies the absolute intervals where the maintenance schedule is valid, i.e. maintenance_shedule is considered only for these time ranges. (For example, if there is one time range with [now_usecs, now_usecs + 10 days], the action will be done during the maintenance_schedule for the next 10 days.)The start time must be specified. The end time can be -1 which would denote an indefinite maintenance mode. Nested schema for activation_time_intervals:
- maintenance
Schedules This property is required. List<Property Map> - (List) Specifies a schedule for actions to be taken. Nested schema for maintenance_schedule:
- user
Message This property is required. String - (String) User provided message associated with this maintenance mode.
- workflow
Intervention Spec Lists This property is required. List<Property Map> - (List) Specifies the type of intervention for different workflows when the source goes into maintenance mode. Nested schema for workflow_intervention_spec_list:
GetBackupRecoverySourceRegistrationsRegistrationExternalMetadataMaintenanceModeConfigActivationTimeInterval
- End
Time Usecs This property is required. double - (Integer) Specifies the end time of this time range.
- Start
Time Usecs This property is required. double - (Integer) Specifies the start time of this time range.
- End
Time Usecs This property is required. float64 - (Integer) Specifies the end time of this time range.
- Start
Time Usecs This property is required. float64 - (Integer) Specifies the start time of this time range.
- end
Time Usecs This property is required. Double - (Integer) Specifies the end time of this time range.
- start
Time Usecs This property is required. Double - (Integer) Specifies the start time of this time range.
- end
Time Usecs This property is required. number - (Integer) Specifies the end time of this time range.
- start
Time Usecs This property is required. number - (Integer) Specifies the start time of this time range.
- end_
time_ usecs This property is required. float - (Integer) Specifies the end time of this time range.
- start_
time_ usecs This property is required. float - (Integer) Specifies the start time of this time range.
- end
Time Usecs This property is required. Number - (Integer) Specifies the end time of this time range.
- start
Time Usecs This property is required. Number - (Integer) Specifies the start time of this time range.
GetBackupRecoverySourceRegistrationsRegistrationExternalMetadataMaintenanceModeConfigMaintenanceSchedule
- Periodic
Time Windows This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window> - (List) Specifies the time range within the days of the week. Nested schema for periodic_time_windows:
- Schedule
Type This property is required. string - (String) Specifies the type of schedule for this ScheduleProto.
- Constraints: Allowable values are:
PeriodicTimeWindows
,CustomIntervals
.
- Constraints: Allowable values are:
- Time
Ranges This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Time Range> - (List) Specifies the time ranges in usecs. Nested schema for time_ranges:
- Timezone
This property is required. string - (String) Specifies the timezone of the user of this ScheduleProto. The timezones have unique names of the form 'Area/Location'.
- Periodic
Time Windows This property is required. []GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window - (List) Specifies the time range within the days of the week. Nested schema for periodic_time_windows:
- Schedule
Type This property is required. string - (String) Specifies the type of schedule for this ScheduleProto.
- Constraints: Allowable values are:
PeriodicTimeWindows
,CustomIntervals
.
- Constraints: Allowable values are:
- Time
Ranges This property is required. []GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Time Range - (List) Specifies the time ranges in usecs. Nested schema for time_ranges:
- Timezone
This property is required. string - (String) Specifies the timezone of the user of this ScheduleProto. The timezones have unique names of the form 'Area/Location'.
- periodic
Time Windows This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window> - (List) Specifies the time range within the days of the week. Nested schema for periodic_time_windows:
- schedule
Type This property is required. String - (String) Specifies the type of schedule for this ScheduleProto.
- Constraints: Allowable values are:
PeriodicTimeWindows
,CustomIntervals
.
- Constraints: Allowable values are:
- time
Ranges This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Time Range> - (List) Specifies the time ranges in usecs. Nested schema for time_ranges:
- timezone
This property is required. String - (String) Specifies the timezone of the user of this ScheduleProto. The timezones have unique names of the form 'Area/Location'.
- periodic
Time Windows This property is required. GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window[] - (List) Specifies the time range within the days of the week. Nested schema for periodic_time_windows:
- schedule
Type This property is required. string - (String) Specifies the type of schedule for this ScheduleProto.
- Constraints: Allowable values are:
PeriodicTimeWindows
,CustomIntervals
.
- Constraints: Allowable values are:
- time
Ranges This property is required. GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Time Range[] - (List) Specifies the time ranges in usecs. Nested schema for time_ranges:
- timezone
This property is required. string - (String) Specifies the timezone of the user of this ScheduleProto. The timezones have unique names of the form 'Area/Location'.
- periodic_
time_ windows This property is required. Sequence[GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window] - (List) Specifies the time range within the days of the week. Nested schema for periodic_time_windows:
- schedule_
type This property is required. str - (String) Specifies the type of schedule for this ScheduleProto.
- Constraints: Allowable values are:
PeriodicTimeWindows
,CustomIntervals
.
- Constraints: Allowable values are:
- time_
ranges This property is required. Sequence[GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Time Range] - (List) Specifies the time ranges in usecs. Nested schema for time_ranges:
- timezone
This property is required. str - (String) Specifies the timezone of the user of this ScheduleProto. The timezones have unique names of the form 'Area/Location'.
- periodic
Time Windows This property is required. List<Property Map> - (List) Specifies the time range within the days of the week. Nested schema for periodic_time_windows:
- schedule
Type This property is required. String - (String) Specifies the type of schedule for this ScheduleProto.
- Constraints: Allowable values are:
PeriodicTimeWindows
,CustomIntervals
.
- Constraints: Allowable values are:
- time
Ranges This property is required. List<Property Map> - (List) Specifies the time ranges in usecs. Nested schema for time_ranges:
- timezone
This property is required. String - (String) Specifies the timezone of the user of this ScheduleProto. The timezones have unique names of the form 'Area/Location'.
GetBackupRecoverySourceRegistrationsRegistrationExternalMetadataMaintenanceModeConfigMaintenanceSchedulePeriodicTimeWindow
- Day
Of The Week This property is required. string - (String) Specifies the week day.
- Constraints: Allowable values are:
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
.
- Constraints: Allowable values are:
- End
Times This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window End Time> - (List) Specifies the time in hours and minutes. Nested schema for end_time:
- Start
Times This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window Start Time> - (List) Specifies the time in hours and minutes. Nested schema for start_time:
- Day
Of The Week This property is required. string - (String) Specifies the week day.
- Constraints: Allowable values are:
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
.
- Constraints: Allowable values are:
- End
Times This property is required. []GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window End Time - (List) Specifies the time in hours and minutes. Nested schema for end_time:
- Start
Times This property is required. []GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window Start Time - (List) Specifies the time in hours and minutes. Nested schema for start_time:
- day
Of The Week This property is required. String - (String) Specifies the week day.
- Constraints: Allowable values are:
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
.
- Constraints: Allowable values are:
- end
Times This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window End Time> - (List) Specifies the time in hours and minutes. Nested schema for end_time:
- start
Times This property is required. List<GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window Start Time> - (List) Specifies the time in hours and minutes. Nested schema for start_time:
- day
Of The Week This property is required. string - (String) Specifies the week day.
- Constraints: Allowable values are:
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
.
- Constraints: Allowable values are:
- end
Times This property is required. GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window End Time[] - (List) Specifies the time in hours and minutes. Nested schema for end_time:
- start
Times This property is required. GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window Start Time[] - (List) Specifies the time in hours and minutes. Nested schema for start_time:
- day_
of_ the_ week This property is required. str - (String) Specifies the week day.
- Constraints: Allowable values are:
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
.
- Constraints: Allowable values are:
- end_
times This property is required. Sequence[GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window End Time] - (List) Specifies the time in hours and minutes. Nested schema for end_time:
- start_
times This property is required. Sequence[GetBackup Recovery Source Registrations Registration External Metadata Maintenance Mode Config Maintenance Schedule Periodic Time Window Start Time] - (List) Specifies the time in hours and minutes. Nested schema for start_time:
- day
Of The Week This property is required. String - (String) Specifies the week day.
- Constraints: Allowable values are:
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
.
- Constraints: Allowable values are:
- end
Times This property is required. List<Property Map> - (List) Specifies the time in hours and minutes. Nested schema for end_time:
- start
Times This property is required. List<Property Map> - (List) Specifies the time in hours and minutes. Nested schema for start_time:
GetBackupRecoverySourceRegistrationsRegistrationExternalMetadataMaintenanceModeConfigMaintenanceSchedulePeriodicTimeWindowEndTime
GetBackupRecoverySourceRegistrationsRegistrationExternalMetadataMaintenanceModeConfigMaintenanceSchedulePeriodicTimeWindowStartTime
GetBackupRecoverySourceRegistrationsRegistrationExternalMetadataMaintenanceModeConfigMaintenanceScheduleTimeRange
- End
Time Usecs This property is required. double - (Integer) Specifies the end time of this time range.
- Start
Time Usecs This property is required. double - (Integer) Specifies the start time of this time range.
- End
Time Usecs This property is required. float64 - (Integer) Specifies the end time of this time range.
- Start
Time Usecs This property is required. float64 - (Integer) Specifies the start time of this time range.
- end
Time Usecs This property is required. Double - (Integer) Specifies the end time of this time range.
- start
Time Usecs This property is required. Double - (Integer) Specifies the start time of this time range.
- end
Time Usecs This property is required. number - (Integer) Specifies the end time of this time range.
- start
Time Usecs This property is required. number - (Integer) Specifies the start time of this time range.
- end_
time_ usecs This property is required. float - (Integer) Specifies the end time of this time range.
- start_
time_ usecs This property is required. float - (Integer) Specifies the start time of this time range.
- end
Time Usecs This property is required. Number - (Integer) Specifies the end time of this time range.
- start
Time Usecs This property is required. Number - (Integer) Specifies the start time of this time range.
GetBackupRecoverySourceRegistrationsRegistrationExternalMetadataMaintenanceModeConfigWorkflowInterventionSpecList
- Intervention
This property is required. string - (String) Specifies the intervention type for ongoing tasks.
- Constraints: Allowable values are:
NoIntervention
,Cancel
.
- Constraints: Allowable values are:
- Workflow
Type This property is required. string - (String) Specifies the workflow type for which an intervention would be needed when maintenance mode begins.
- Constraints: Allowable values are:
BackupRun
.
- Constraints: Allowable values are:
- Intervention
This property is required. string - (String) Specifies the intervention type for ongoing tasks.
- Constraints: Allowable values are:
NoIntervention
,Cancel
.
- Constraints: Allowable values are:
- Workflow
Type This property is required. string - (String) Specifies the workflow type for which an intervention would be needed when maintenance mode begins.
- Constraints: Allowable values are:
BackupRun
.
- Constraints: Allowable values are:
- intervention
This property is required. String - (String) Specifies the intervention type for ongoing tasks.
- Constraints: Allowable values are:
NoIntervention
,Cancel
.
- Constraints: Allowable values are:
- workflow
Type This property is required. String - (String) Specifies the workflow type for which an intervention would be needed when maintenance mode begins.
- Constraints: Allowable values are:
BackupRun
.
- Constraints: Allowable values are:
- intervention
This property is required. string - (String) Specifies the intervention type for ongoing tasks.
- Constraints: Allowable values are:
NoIntervention
,Cancel
.
- Constraints: Allowable values are:
- workflow
Type This property is required. string - (String) Specifies the workflow type for which an intervention would be needed when maintenance mode begins.
- Constraints: Allowable values are:
BackupRun
.
- Constraints: Allowable values are:
- intervention
This property is required. str - (String) Specifies the intervention type for ongoing tasks.
- Constraints: Allowable values are:
NoIntervention
,Cancel
.
- Constraints: Allowable values are:
- workflow_
type This property is required. str - (String) Specifies the workflow type for which an intervention would be needed when maintenance mode begins.
- Constraints: Allowable values are:
BackupRun
.
- Constraints: Allowable values are:
- intervention
This property is required. String - (String) Specifies the intervention type for ongoing tasks.
- Constraints: Allowable values are:
NoIntervention
,Cancel
.
- Constraints: Allowable values are:
- workflow
Type This property is required. String - (String) Specifies the workflow type for which an intervention would be needed when maintenance mode begins.
- Constraints: Allowable values are:
BackupRun
.
- Constraints: Allowable values are:
GetBackupRecoverySourceRegistrationsRegistrationPhysicalParam
- Applications
This property is required. List<string> - (List) Specifies the list of applications to be registered with Physical Source.
- Constraints: Allowable list items are:
kSQL
,kOracle
.
- Constraints: Allowable list items are:
- Endpoint
This property is required. string - (String) Specifies the endpoint IPaddress, URL or hostname of the physical host.
- Force
Register This property is required. bool - (Boolean) The agent running on a physical host will fail the registration if it is already registered as part of another cluster. By setting this option to true, agent can be forced to register with the current cluster.
- Host
Type This property is required. string - (String) Specifies the type of host.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- Physical
Type This property is required. string - (String) Specifies the type of physical server.
- Constraints: Allowable values are:
kGroup
,kHost
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kUnixCluster
.
- Constraints: Allowable values are:
- Applications
This property is required. []string - (List) Specifies the list of applications to be registered with Physical Source.
- Constraints: Allowable list items are:
kSQL
,kOracle
.
- Constraints: Allowable list items are:
- Endpoint
This property is required. string - (String) Specifies the endpoint IPaddress, URL or hostname of the physical host.
- Force
Register This property is required. bool - (Boolean) The agent running on a physical host will fail the registration if it is already registered as part of another cluster. By setting this option to true, agent can be forced to register with the current cluster.
- Host
Type This property is required. string - (String) Specifies the type of host.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- Physical
Type This property is required. string - (String) Specifies the type of physical server.
- Constraints: Allowable values are:
kGroup
,kHost
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kUnixCluster
.
- Constraints: Allowable values are:
- applications
This property is required. List<String> - (List) Specifies the list of applications to be registered with Physical Source.
- Constraints: Allowable list items are:
kSQL
,kOracle
.
- Constraints: Allowable list items are:
- endpoint
This property is required. String - (String) Specifies the endpoint IPaddress, URL or hostname of the physical host.
- force
Register This property is required. Boolean - (Boolean) The agent running on a physical host will fail the registration if it is already registered as part of another cluster. By setting this option to true, agent can be forced to register with the current cluster.
- host
Type This property is required. String - (String) Specifies the type of host.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- physical
Type This property is required. String - (String) Specifies the type of physical server.
- Constraints: Allowable values are:
kGroup
,kHost
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kUnixCluster
.
- Constraints: Allowable values are:
- applications
This property is required. string[] - (List) Specifies the list of applications to be registered with Physical Source.
- Constraints: Allowable list items are:
kSQL
,kOracle
.
- Constraints: Allowable list items are:
- endpoint
This property is required. string - (String) Specifies the endpoint IPaddress, URL or hostname of the physical host.
- force
Register This property is required. boolean - (Boolean) The agent running on a physical host will fail the registration if it is already registered as part of another cluster. By setting this option to true, agent can be forced to register with the current cluster.
- host
Type This property is required. string - (String) Specifies the type of host.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- physical
Type This property is required. string - (String) Specifies the type of physical server.
- Constraints: Allowable values are:
kGroup
,kHost
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kUnixCluster
.
- Constraints: Allowable values are:
- applications
This property is required. Sequence[str] - (List) Specifies the list of applications to be registered with Physical Source.
- Constraints: Allowable list items are:
kSQL
,kOracle
.
- Constraints: Allowable list items are:
- endpoint
This property is required. str - (String) Specifies the endpoint IPaddress, URL or hostname of the physical host.
- force_
register This property is required. bool - (Boolean) The agent running on a physical host will fail the registration if it is already registered as part of another cluster. By setting this option to true, agent can be forced to register with the current cluster.
- host_
type This property is required. str - (String) Specifies the type of host.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- physical_
type This property is required. str - (String) Specifies the type of physical server.
- Constraints: Allowable values are:
kGroup
,kHost
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kUnixCluster
.
- Constraints: Allowable values are:
- applications
This property is required. List<String> - (List) Specifies the list of applications to be registered with Physical Source.
- Constraints: Allowable list items are:
kSQL
,kOracle
.
- Constraints: Allowable list items are:
- endpoint
This property is required. String - (String) Specifies the endpoint IPaddress, URL or hostname of the physical host.
- force
Register This property is required. Boolean - (Boolean) The agent running on a physical host will fail the registration if it is already registered as part of another cluster. By setting this option to true, agent can be forced to register with the current cluster.
- host
Type This property is required. String - (String) Specifies the type of host.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- physical
Type This property is required. String - (String) Specifies the type of physical server.
- Constraints: Allowable values are:
kGroup
,kHost
,kWindowsCluster
,kOracleRACCluster
,kOracleAPCluster
,kUnixCluster
.
- Constraints: Allowable values are:
GetBackupRecoverySourceRegistrationsRegistrationSourceInfo
- Child
Objects This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object> - (List) Specifies child object details. Nested schema for child_objects:
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - (String) Specifies the global id which is a unique identifier of the object.
- Id
This property is required. double - (String) The tenant id.
- Logical
Size Bytes This property is required. double - (Integer) Specifies the logical size of object in bytes.
- Mssql
Params This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Mssql Param> - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- Name
This property is required. string - (String) Specifies the name of the user.
- Object
Hash This property is required. string - (String) Specifies the hash identifier of the object.
- Object
Type This property is required. 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 This property is required. string - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- Permissions
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission> - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- Physical
Params This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Physical Param> - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- Protection
Stats This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Protection Stat> - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- Protection
Type This property is required. 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:
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id This property is required. double - (Integer) Specifies registered source id to which object belongs.
- Source
Name This property is required. string - (String) Specifies registered source name to which object belongs.
- Uuid
This property is required. string - (String) Specifies the uuid which is a unique identifier of the object.
- VCenter
Summaries This property is required. List<GetBackup Recovery Source Registrations Registration Source Info VCenter Summary> - (List) Nested schema for v_center_summary:
- Windows
Cluster Summaries This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- Child
Objects This property is required. []GetBackup Recovery Source Registrations Registration Source Info Child Object - (List) Specifies child object details. Nested schema for child_objects:
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - (String) Specifies the global id which is a unique identifier of the object.
- Id
This property is required. float64 - (String) The tenant id.
- Logical
Size Bytes This property is required. float64 - (Integer) Specifies the logical size of object in bytes.
- Mssql
Params This property is required. []GetBackup Recovery Source Registrations Registration Source Info Mssql Param - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- Name
This property is required. string - (String) Specifies the name of the user.
- Object
Hash This property is required. string - (String) Specifies the hash identifier of the object.
- Object
Type This property is required. 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 This property is required. string - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- Permissions
This property is required. []GetBackup Recovery Source Registrations Registration Source Info Permission - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- Physical
Params This property is required. []GetBackup Recovery Source Registrations Registration Source Info Physical Param - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- Protection
Stats This property is required. []GetBackup Recovery Source Registrations Registration Source Info Protection Stat - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- Protection
Type This property is required. 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:
This property is required. []GetBackup Recovery Source Registrations Registration Source Info Sharepoint Site Summary - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id This property is required. float64 - (Integer) Specifies registered source id to which object belongs.
- Source
Name This property is required. string - (String) Specifies registered source name to which object belongs.
- Uuid
This property is required. string - (String) Specifies the uuid which is a unique identifier of the object.
- VCenter
Summaries This property is required. []GetBackup Recovery Source Registrations Registration Source Info VCenter Summary - (List) Nested schema for v_center_summary:
- Windows
Cluster Summaries This property is required. []GetBackup Recovery Source Registrations Registration Source Info Windows Cluster Summary - (List) Nested schema for windows_cluster_summary:
- child
Objects This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object> - (List) Specifies child object details. Nested schema for child_objects:
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- global
Id This property is required. String - (String) Specifies the global id which is a unique identifier of the object.
- id
This property is required. Double - (String) The tenant id.
- logical
Size Bytes This property is required. Double - (Integer) Specifies the logical size of object in bytes.
- mssql
Params This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Mssql Param> - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- name
This property is required. String - (String) Specifies the name of the user.
- object
Hash This property is required. String - (String) Specifies the hash identifier of the object.
- object
Type This property is required. 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 This property is required. String - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- permissions
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission> - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- physical
Params This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Physical Param> - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- protection
Stats This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Protection Stat> - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- protection
Type This property is required. 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:
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id This property is required. Double - (Integer) Specifies registered source id to which object belongs.
- source
Name This property is required. String - (String) Specifies registered source name to which object belongs.
- uuid
This property is required. String - (String) Specifies the uuid which is a unique identifier of the object.
- v
Center Summaries This property is required. List<GetBackup Recovery Source Registrations Registration Source Info VCenter Summary> - (List) Nested schema for v_center_summary:
- windows
Cluster Summaries This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- child
Objects This property is required. GetBackup Recovery Source Registrations Registration Source Info Child Object[] - (List) Specifies child object details. Nested schema for child_objects:
- environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- global
Id This property is required. string - (String) Specifies the global id which is a unique identifier of the object.
- id
This property is required. number - (String) The tenant id.
- logical
Size Bytes This property is required. number - (Integer) Specifies the logical size of object in bytes.
- mssql
Params This property is required. GetBackup Recovery Source Registrations Registration Source Info Mssql Param[] - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- name
This property is required. string - (String) Specifies the name of the user.
- object
Hash This property is required. string - (String) Specifies the hash identifier of the object.
- object
Type This property is required. 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 This property is required. string - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- permissions
This property is required. GetBackup Recovery Source Registrations Registration Source Info Permission[] - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- physical
Params This property is required. GetBackup Recovery Source Registrations Registration Source Info Physical Param[] - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- protection
Stats This property is required. GetBackup Recovery Source Registrations Registration Source Info Protection Stat[] - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- protection
Type This property is required. 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:
This property is required. GetBackup Recovery Source Registrations Registration Source Info Sharepoint Site Summary[] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id This property is required. number - (Integer) Specifies registered source id to which object belongs.
- source
Name This property is required. string - (String) Specifies registered source name to which object belongs.
- uuid
This property is required. string - (String) Specifies the uuid which is a unique identifier of the object.
- v
Center Summaries This property is required. GetBackup Recovery Source Registrations Registration Source Info VCenter Summary[] - (List) Nested schema for v_center_summary:
- windows
Cluster Summaries This property is required. GetBackup Recovery Source Registrations Registration Source Info Windows Cluster Summary[] - (List) Nested schema for windows_cluster_summary:
- child_
objects This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Child Object] - (List) Specifies child object details. Nested schema for child_objects:
- environment
This property is required. str - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- global_
id This property is required. str - (String) Specifies the global id which is a unique identifier of the object.
- id
This property is required. float - (String) The tenant id.
- logical_
size_ bytes This property is required. float - (Integer) Specifies the logical size of object in bytes.
- mssql_
params This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Mssql Param] - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- name
This property is required. str - (String) Specifies the name of the user.
- object_
hash This property is required. str - (String) Specifies the hash identifier of the object.
- object_
type This property is required. 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 This property is required. str - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- permissions
This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Permission] - (List) Specifies the list of users, groups and users that have permissions for a given object. Nested schema for permissions:
- physical_
params This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Physical Param] - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- protection_
stats This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Protection Stat] - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- protection_
type This property is required. 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:
This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Sharepoint Site Summary] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source_
id This property is required. float - (Integer) Specifies registered source id to which object belongs.
- source_
name This property is required. str - (String) Specifies registered source name to which object belongs.
- uuid
This property is required. str - (String) Specifies the uuid which is a unique identifier of the object.
- v_
center_ summaries This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info VCenter Summary] - (List) Nested schema for v_center_summary:
- windows_
cluster_ summaries This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Windows Cluster Summary] - (List) Nested schema for windows_cluster_summary:
- child
Objects This property is required. List<Property Map> - (List) Specifies child object details. Nested schema for child_objects:
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- global
Id This property is required. String - (String) Specifies the global id which is a unique identifier of the object.
- id
This property is required. Number - (String) The tenant id.
- logical
Size Bytes This property is required. Number - (Integer) Specifies the logical size of object in bytes.
- mssql
Params This property is required. List<Property Map> - (List) Specifies the parameters for Msssql object. Nested schema for mssql_params:
- name
This property is required. String - (String) Specifies the name of the user.
- object
Hash This property is required. String - (String) Specifies the hash identifier of the object.
- object
Type This property is required. 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 This property is required. String - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- permissions
This property is required. 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 This property is required. List<Property Map> - (List) Specifies the parameters for Physical object. Nested schema for physical_params:
- protection
Stats This property is required. List<Property Map> - (List) Specifies the count and size of protected and unprotected objects for the size. Nested schema for protection_stats:
- protection
Type This property is required. 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:
This property is required. List<Property Map>- (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id This property is required. Number - (Integer) Specifies registered source id to which object belongs.
- source
Name This property is required. String - (String) Specifies registered source name to which object belongs.
- uuid
This property is required. String - (String) Specifies the uuid which is a unique identifier of the object.
- v
Center Summaries This property is required. List<Property Map> - (List) Nested schema for v_center_summary:
- windows
Cluster Summaries This property is required. List<Property Map> - (List) Nested schema for windows_cluster_summary:
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoChildObject
- Child
Objects This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object Child Object> - (List) Specifies child object details. Nested schema for child_objects:
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - (String) Specifies the global id which is a unique identifier of the object.
- Id
This property is required. double - (String) The tenant id.
- Logical
Size Bytes This property is required. double - (Integer) Specifies the logical size of object in bytes.
- Name
This property is required. string - (String) Specifies the name of the user.
- Object
Hash This property is required. string - (String) Specifies the hash identifier of the object.
- Object
Type This property is required. 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 This property is required. string - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- Protection
Type This property is required. 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:
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id This property is required. double - (Integer) Specifies registered source id to which object belongs.
- Source
Name This property is required. string - (String) Specifies registered source name to which object belongs.
- Uuid
This property is required. string - (String) Specifies the uuid which is a unique identifier of the object.
- VCenter
Summaries This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object VCenter Summary> - (List) Nested schema for v_center_summary:
- Windows
Cluster Summaries This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- Child
Objects This property is required. []GetBackup Recovery Source Registrations Registration Source Info Child Object Child Object - (List) Specifies child object details. Nested schema for child_objects:
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- Global
Id This property is required. string - (String) Specifies the global id which is a unique identifier of the object.
- Id
This property is required. float64 - (String) The tenant id.
- Logical
Size Bytes This property is required. float64 - (Integer) Specifies the logical size of object in bytes.
- Name
This property is required. string - (String) Specifies the name of the user.
- Object
Hash This property is required. string - (String) Specifies the hash identifier of the object.
- Object
Type This property is required. 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 This property is required. string - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- Protection
Type This property is required. 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:
This property is required. []GetBackup Recovery Source Registrations Registration Source Info Child Object Sharepoint Site Summary - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- Source
Id This property is required. float64 - (Integer) Specifies registered source id to which object belongs.
- Source
Name This property is required. string - (String) Specifies registered source name to which object belongs.
- Uuid
This property is required. string - (String) Specifies the uuid which is a unique identifier of the object.
- VCenter
Summaries This property is required. []GetBackup Recovery Source Registrations Registration Source Info Child Object VCenter Summary - (List) Nested schema for v_center_summary:
- Windows
Cluster Summaries This property is required. []GetBackup Recovery Source Registrations Registration Source Info Child Object Windows Cluster Summary - (List) Nested schema for windows_cluster_summary:
- child
Objects This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object Child Object> - (List) Specifies child object details. Nested schema for child_objects:
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- global
Id This property is required. String - (String) Specifies the global id which is a unique identifier of the object.
- id
This property is required. Double - (String) The tenant id.
- logical
Size Bytes This property is required. Double - (Integer) Specifies the logical size of object in bytes.
- name
This property is required. String - (String) Specifies the name of the user.
- object
Hash This property is required. String - (String) Specifies the hash identifier of the object.
- object
Type This property is required. 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 This property is required. String - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- protection
Type This property is required. 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:
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object Sharepoint Site Summary> - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id This property is required. Double - (Integer) Specifies registered source id to which object belongs.
- source
Name This property is required. String - (String) Specifies registered source name to which object belongs.
- uuid
This property is required. String - (String) Specifies the uuid which is a unique identifier of the object.
- v
Center Summaries This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object VCenter Summary> - (List) Nested schema for v_center_summary:
- windows
Cluster Summaries This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Child Object Windows Cluster Summary> - (List) Nested schema for windows_cluster_summary:
- child
Objects This property is required. GetBackup Recovery Source Registrations Registration Source Info Child Object Child Object[] - (List) Specifies child object details. Nested schema for child_objects:
- environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- global
Id This property is required. string - (String) Specifies the global id which is a unique identifier of the object.
- id
This property is required. number - (String) The tenant id.
- logical
Size Bytes This property is required. number - (Integer) Specifies the logical size of object in bytes.
- name
This property is required. string - (String) Specifies the name of the user.
- object
Hash This property is required. string - (String) Specifies the hash identifier of the object.
- object
Type This property is required. 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 This property is required. string - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- protection
Type This property is required. 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:
This property is required. GetBackup Recovery Source Registrations Registration Source Info Child Object Sharepoint Site Summary[] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id This property is required. number - (Integer) Specifies registered source id to which object belongs.
- source
Name This property is required. string - (String) Specifies registered source name to which object belongs.
- uuid
This property is required. string - (String) Specifies the uuid which is a unique identifier of the object.
- v
Center Summaries This property is required. GetBackup Recovery Source Registrations Registration Source Info Child Object VCenter Summary[] - (List) Nested schema for v_center_summary:
- windows
Cluster Summaries This property is required. GetBackup Recovery Source Registrations Registration Source Info Child Object Windows Cluster Summary[] - (List) Nested schema for windows_cluster_summary:
- child_
objects This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Child Object Child Object] - (List) Specifies child object details. Nested schema for child_objects:
- environment
This property is required. str - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- global_
id This property is required. str - (String) Specifies the global id which is a unique identifier of the object.
- id
This property is required. float - (String) The tenant id.
- logical_
size_ bytes This property is required. float - (Integer) Specifies the logical size of object in bytes.
- name
This property is required. str - (String) Specifies the name of the user.
- object_
hash This property is required. str - (String) Specifies the hash identifier of the object.
- object_
type This property is required. 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 This property is required. str - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- protection_
type This property is required. 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:
This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Child Object Sharepoint Site Summary] - (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source_
id This property is required. float - (Integer) Specifies registered source id to which object belongs.
- source_
name This property is required. str - (String) Specifies registered source name to which object belongs.
- uuid
This property is required. str - (String) Specifies the uuid which is a unique identifier of the object.
- v_
center_ summaries This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Child Object VCenter Summary] - (List) Nested schema for v_center_summary:
- windows_
cluster_ summaries This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Child Object Windows Cluster Summary] - (List) Nested schema for windows_cluster_summary:
- child
Objects This property is required. List<Property Map> - (List) Specifies child object details. Nested schema for child_objects:
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- global
Id This property is required. String - (String) Specifies the global id which is a unique identifier of the object.
- id
This property is required. Number - (String) The tenant id.
- logical
Size Bytes This property is required. Number - (Integer) Specifies the logical size of object in bytes.
- name
This property is required. String - (String) Specifies the name of the user.
- object
Hash This property is required. String - (String) Specifies the hash identifier of the object.
- object
Type This property is required. 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 This property is required. String - (String) Specifies the operating system type of the object.
- Constraints: Allowable values are:
kLinux
,kWindows
.
- Constraints: Allowable values are:
- protection
Type This property is required. 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:
This property is required. List<Property Map>- (List) Specifies the common parameters for Sharepoint site objects. Nested schema for sharepoint_site_summary:
- source
Id This property is required. Number - (Integer) Specifies registered source id to which object belongs.
- source
Name This property is required. String - (String) Specifies registered source name to which object belongs.
- uuid
This property is required. String - (String) Specifies the uuid which is a unique identifier of the object.
- v
Center Summaries This property is required. List<Property Map> - (List) Nested schema for v_center_summary:
- windows
Cluster Summaries This property is required. List<Property Map> - (List) Nested schema for windows_cluster_summary:
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoChildObjectSharepointSiteSummary
- Site
Web Url This property is required. string - (String) Specifies the web url for the Sharepoint site.
- Site
Web Url This property is required. string - (String) Specifies the web url for the Sharepoint site.
- site
Web Url This property is required. String - (String) Specifies the web url for the Sharepoint site.
- site
Web Url This property is required. string - (String) Specifies the web url for the Sharepoint site.
- site_
web_ url This property is required. str - (String) Specifies the web url for the Sharepoint site.
- site
Web Url This property is required. String - (String) Specifies the web url for the Sharepoint site.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoChildObjectVCenterSummary
- Is
Cloud Env This property is required. bool - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- Is
Cloud Env This property is required. bool - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is
Cloud Env This property is required. Boolean - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is
Cloud Env This property is required. boolean - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is_
cloud_ env This property is required. bool - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is
Cloud Env This property is required. Boolean - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoChildObjectWindowsClusterSummary
- Cluster
Source Type This property is required. string - (String) Specifies the type of cluster resource this source represents.
- Cluster
Source Type This property is required. string - (String) Specifies the type of cluster resource this source represents.
- cluster
Source Type This property is required. String - (String) Specifies the type of cluster resource this source represents.
- cluster
Source Type This property is required. string - (String) Specifies the type of cluster resource this source represents.
- cluster_
source_ type This property is required. str - (String) Specifies the type of cluster resource this source represents.
- cluster
Source Type This property is required. String - (String) Specifies the type of cluster resource this source represents.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoMssqlParam
- Aag
Infos This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Mssql Param Aag Info> - (List) Object details for Mssql. Nested schema for aag_info:
- Host
Infos This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. bool - (Boolean) Specifies whether the database is TDE enabled.
- Aag
Infos This property is required. []GetBackup Recovery Source Registrations Registration Source Info Mssql Param Aag Info - (List) Object details for Mssql. Nested schema for aag_info:
- Host
Infos This property is required. []GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. bool - (Boolean) Specifies whether the database is TDE enabled.
- aag
Infos This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Mssql Param Aag Info> - (List) Object details for Mssql. Nested schema for aag_info:
- host
Infos This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. Boolean - (Boolean) Specifies whether the database is TDE enabled.
- aag
Infos This property is required. GetBackup Recovery Source Registrations Registration Source Info Mssql Param Aag Info[] - (List) Object details for Mssql. Nested schema for aag_info:
- host
Infos This property is required. GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. boolean - (Boolean) Specifies whether the database is TDE enabled.
- aag_
infos This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Mssql Param Aag Info] - (List) Object details for Mssql. Nested schema for aag_info:
- host_
infos This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. bool - (Boolean) Specifies whether the database is TDE enabled.
- aag
Infos This property is required. List<Property Map> - (List) Object details for Mssql. Nested schema for aag_info:
- host
Infos This property is required. 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 This property is required. Boolean - (Boolean) Specifies whether the database is TDE enabled.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoMssqlParamAagInfo
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoMssqlParamHostInfo
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- Id
This property is required. string - (String) The tenant id.
- Name
This property is required. string - (String) Specifies the name of the user.
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- Id
This property is required. string - (String) The tenant id.
- Name
This property is required. string - (String) Specifies the name of the user.
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- id
This property is required. String - (String) The tenant id.
- name
This property is required. String - (String) Specifies the name of the user.
- environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- id
This property is required. string - (String) The tenant id.
- name
This property is required. string - (String) Specifies the name of the user.
- environment
This property is required. str - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- id
This property is required. str - (String) The tenant id.
- name
This property is required. str - (String) Specifies the name of the user.
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- id
This property is required. String - (String) The tenant id.
- name
This property is required. String - (String) Specifies the name of the user.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermission
- Groups
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission Group> - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- Object
Id This property is required. double - (Integer) Specifies the id of the object.
- Tenants
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission Tenant> - (List) Specifies a tenant object. Nested schema for tenant:
- Users
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission User> - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- Groups
This property is required. []GetBackup Recovery Source Registrations Registration Source Info Permission Group - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- Object
Id This property is required. float64 - (Integer) Specifies the id of the object.
- Tenants
This property is required. []GetBackup Recovery Source Registrations Registration Source Info Permission Tenant - (List) Specifies a tenant object. Nested schema for tenant:
- Users
This property is required. []GetBackup Recovery Source Registrations Registration Source Info Permission User - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- groups
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission Group> - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- object
Id This property is required. Double - (Integer) Specifies the id of the object.
- tenants
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission Tenant> - (List) Specifies a tenant object. Nested schema for tenant:
- users
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission User> - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- groups
This property is required. GetBackup Recovery Source Registrations Registration Source Info Permission Group[] - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- object
Id This property is required. number - (Integer) Specifies the id of the object.
- tenants
This property is required. GetBackup Recovery Source Registrations Registration Source Info Permission Tenant[] - (List) Specifies a tenant object. Nested schema for tenant:
- users
This property is required. GetBackup Recovery Source Registrations Registration Source Info Permission User[] - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- groups
This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Permission Group] - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- object_
id This property is required. float - (Integer) Specifies the id of the object.
- tenants
This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Permission Tenant] - (List) Specifies a tenant object. Nested schema for tenant:
- users
This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Permission User] - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
- groups
This property is required. List<Property Map> - (List) Specifies the list of user groups which has permissions to the object. Nested schema for groups:
- object
Id This property is required. Number - (Integer) Specifies the id of the object.
- tenants
This property is required. List<Property Map> - (List) Specifies a tenant object. Nested schema for tenant:
- users
This property is required. List<Property Map> - (List) Specifies the list of users which has the permissions to the object. Nested schema for users:
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionGroup
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionTenant
- Created
At Time Msecs This property is required. double - (Integer) Epoch time when tenant was created.
- Deleted
At Time Msecs This property is required. double - (Integer) Epoch time when tenant was last updated.
- Description
This property is required. string - (String) Description about the tenant.
- External
Vendor Metadatas This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. string - (String) The tenant id.
- Is
Managed On Helios This property is required. bool - (Boolean) Flag to indicate if tenant is managed on helios.
- Last
Updated At Time Msecs This property is required. double - (Integer) Epoch time when tenant was last updated.
- Name
This property is required. string - (String) Specifies the name of the user.
- Networks
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission Tenant Network> - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- Status
This property is required. string - (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- Constraints: Allowable values are:
- Created
At Time Msecs This property is required. float64 - (Integer) Epoch time when tenant was created.
- Deleted
At Time Msecs This property is required. float64 - (Integer) Epoch time when tenant was last updated.
- Description
This property is required. string - (String) Description about the tenant.
- External
Vendor Metadatas This property is required. []GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. string - (String) The tenant id.
- Is
Managed On Helios This property is required. bool - (Boolean) Flag to indicate if tenant is managed on helios.
- Last
Updated At Time Msecs This property is required. float64 - (Integer) Epoch time when tenant was last updated.
- Name
This property is required. string - (String) Specifies the name of the user.
- Networks
This property is required. []GetBackup Recovery Source Registrations Registration Source Info Permission Tenant Network - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- Status
This property is required. string - (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- Constraints: Allowable values are:
- created
At Time Msecs This property is required. Double - (Integer) Epoch time when tenant was created.
- deleted
At Time Msecs This property is required. Double - (Integer) Epoch time when tenant was last updated.
- description
This property is required. String - (String) Description about the tenant.
- external
Vendor Metadatas This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. String - (String) The tenant id.
- is
Managed On Helios This property is required. Boolean - (Boolean) Flag to indicate if tenant is managed on helios.
- last
Updated At Time Msecs This property is required. Double - (Integer) Epoch time when tenant was last updated.
- name
This property is required. String - (String) Specifies the name of the user.
- networks
This property is required. List<GetBackup Recovery Source Registrations Registration Source Info Permission Tenant Network> - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status
This property is required. String - (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- Constraints: Allowable values are:
- created
At Time Msecs This property is required. number - (Integer) Epoch time when tenant was created.
- deleted
At Time Msecs This property is required. number - (Integer) Epoch time when tenant was last updated.
- description
This property is required. string - (String) Description about the tenant.
- external
Vendor Metadatas This property is required. GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. string - (String) The tenant id.
- is
Managed On Helios This property is required. boolean - (Boolean) Flag to indicate if tenant is managed on helios.
- last
Updated At Time Msecs This property is required. number - (Integer) Epoch time when tenant was last updated.
- name
This property is required. string - (String) Specifies the name of the user.
- networks
This property is required. GetBackup Recovery Source Registrations Registration Source Info Permission Tenant Network[] - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status
This property is required. string - (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- Constraints: Allowable values are:
- created_
at_ time_ msecs This property is required. float - (Integer) Epoch time when tenant was created.
- deleted_
at_ time_ msecs This property is required. float - (Integer) Epoch time when tenant was last updated.
- description
This property is required. str - (String) Description about the tenant.
- external_
vendor_ metadatas This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. str - (String) The tenant id.
- is_
managed_ on_ helios This property is required. bool - (Boolean) Flag to indicate if tenant is managed on helios.
- last_
updated_ at_ time_ msecs This property is required. float - (Integer) Epoch time when tenant was last updated.
- name
This property is required. str - (String) Specifies the name of the user.
- networks
This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info Permission Tenant Network] - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status
This property is required. str - (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- Constraints: Allowable values are:
- created
At Time Msecs This property is required. Number - (Integer) Epoch time when tenant was created.
- deleted
At Time Msecs This property is required. Number - (Integer) Epoch time when tenant was last updated.
- description
This property is required. String - (String) Description about the tenant.
- external
Vendor Metadatas This property is required. List<Property Map> - (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
This property is required. String - (String) The tenant id.
- is
Managed On Helios This property is required. Boolean - (Boolean) Flag to indicate if tenant is managed on helios.
- last
Updated At Time Msecs This property is required. Number - (Integer) Epoch time when tenant was last updated.
- name
This property is required. String - (String) Specifies the name of the user.
- networks
This property is required. List<Property Map> - (List) Networking information about a Tenant on a Cluster. Nested schema for network:
- status
This property is required. String - (String) Current Status of the Tenant.
- Constraints: Allowable values are:
Active
,Inactive
,MarkedForDeletion
,Deleted
.
- Constraints: Allowable values are:
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionTenantExternalVendorMetadata
- Ibm
Tenant Metadata Params This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. 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 Metadata Params This property is required. []GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. 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 Metadata Params This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. 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 Metadata Params This property is required. GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. 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_ metadata_ params This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info 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
This property is required. 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 Metadata Params This property is required. List<Property Map> - (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
This property is required. 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:
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParam
- Account
Id This property is required. string - (String) Specifies the unique identifier of the IBM's account ID.
- Crn
This property is required. string - (String) Specifies the unique CRN associated with the tenant.
- Custom
Properties This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. string - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- Resource
Group Id This property is required. string - (String) Specifies the Resource Group ID associated with the tenant.
- Resource
Instance Id This property is required. string - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- Account
Id This property is required. string - (String) Specifies the unique identifier of the IBM's account ID.
- Crn
This property is required. string - (String) Specifies the unique CRN associated with the tenant.
- Custom
Properties This property is required. []GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. []GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. string - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- Resource
Group Id This property is required. string - (String) Specifies the Resource Group ID associated with the tenant.
- Resource
Instance Id This property is required. string - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- account
Id This property is required. String - (String) Specifies the unique identifier of the IBM's account ID.
- crn
This property is required. String - (String) Specifies the unique CRN associated with the tenant.
- custom
Properties This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. String - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- resource
Group Id This property is required. String - (String) Specifies the Resource Group ID associated with the tenant.
- resource
Instance Id This property is required. String - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- account
Id This property is required. string - (String) Specifies the unique identifier of the IBM's account ID.
- crn
This property is required. string - (String) Specifies the unique CRN associated with the tenant.
- custom
Properties This property is required. GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. string - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- resource
Group Id This property is required. string - (String) Specifies the Resource Group ID associated with the tenant.
- resource
Instance Id This property is required. string - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- account_
id This property is required. str - (String) Specifies the unique identifier of the IBM's account ID.
- crn
This property is required. str - (String) Specifies the unique CRN associated with the tenant.
- custom_
properties This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. 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 This property is required. str - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- resource_
group_ id This property is required. str - (String) Specifies the Resource Group ID associated with the tenant.
- resource_
instance_ id This property is required. str - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- account
Id This property is required. String - (String) Specifies the unique identifier of the IBM's account ID.
- crn
This property is required. String - (String) Specifies the unique CRN associated with the tenant.
- custom
Properties This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String - (String) Specifies the Plan Id associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
- resource
Group Id This property is required. String - (String) Specifies the Resource Group ID associated with the tenant.
- resource
Instance Id This property is required. String - (String) Specifies the Resource Instance ID associated with the tenant. This field is introduced for tracking purposes inside IBM enviournment.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamCustomProperty
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamMetricsConfig
- Cos
Resource Configs This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 Configs This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 Configs This property is required. []GetBackup Recovery Source Registrations Registration Source Info 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 Configs This property is required. []GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. []GetBackup Recovery Source Registrations Registration Source Info 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 Configs This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 Configs This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. List<GetBackup Recovery Source Registrations Registration Source Info 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 Configs This property is required. GetBackup Recovery Source Registrations Registration Source Info 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 Configs This property is required. GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. GetBackup Recovery Source Registrations Registration Source Info 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_ configs This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info 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_ configs This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info 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 This property is required. Sequence[GetBackup Recovery Source Registrations Registration Source Info 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 Configs This property is required. List<Property Map> - (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 Configs This property is required. List<Property Map> - (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 This property is required. 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:
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamMetricsConfigCosResourceConfig
- Resource
Url This property is required. string - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- Resource
Url This property is required. string - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- resource
Url This property is required. String - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- resource
Url This property is required. string - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- resource_
url This property is required. str - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
- resource
Url This property is required. String - (String) Specifies the resource COS resource configuration endpoint that will be used for fetching bucket usage for a given tenant.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamMetricsConfigIamMetricsConfig
- Billing
Api Key Secret Id This property is required. string - (String) Specifies Id of the secret that contains the API key.
- Iam
Url This property is required. 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 Key Secret Id This property is required. string - (String) Specifies Id of the secret that contains the API key.
- Iam
Url This property is required. 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 Key Secret Id This property is required. String - (String) Specifies Id of the secret that contains the API key.
- iam
Url This property is required. 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 Key Secret Id This property is required. string - (String) Specifies Id of the secret that contains the API key.
- iam
Url This property is required. 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_ key_ secret_ id This property is required. str - (String) Specifies Id of the secret that contains the API key.
- iam_
url This property is required. 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 Key Secret Id This property is required. String - (String) Specifies Id of the secret that contains the API key.
- iam
Url This property is required. 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.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionTenantExternalVendorMetadataIbmTenantMetadataParamMetricsConfigMeteringConfig
- Part
Ids This property is required. 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 In Secs This property is required. double - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- Url
This property is required. string - (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- Part
Ids This property is required. []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 In Secs This property is required. float64 - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- Url
This property is required. string - (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- part
Ids This property is required. 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 In Secs This property is required. Double - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- url
This property is required. String - (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- part
Ids This property is required. 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 In Secs This property is required. number - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- url
This property is required. string - (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- part_
ids This property is required. 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_ in_ secs This property is required. float - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- url
This property is required. str - (String) Specifies the base metering URL that will be used by cluster to send the billing information.
- part
Ids This property is required. 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 In Secs This property is required. Number - (Integer) Specifies the frequency in seconds at which the metrics will be pushed to IBM billing service from cluster.
- url
This property is required. String - (String) Specifies the base metering URL that will be used by cluster to send the billing information.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionTenantNetwork
- Cluster
Hostname This property is required. 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 This property is required. 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 This property is required. bool - (Boolean) Whether connector (hybrid extender) is enabled.
- Cluster
Hostname This property is required. 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 This property is required. []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 This property is required. bool - (Boolean) Whether connector (hybrid extender) is enabled.
- cluster
Hostname This property is required. 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 This property is required. 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 This property is required. Boolean - (Boolean) Whether connector (hybrid extender) is enabled.
- cluster
Hostname This property is required. 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 This property is required. 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 This property is required. boolean - (Boolean) Whether connector (hybrid extender) is enabled.
- cluster_
hostname This property is required. 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 This property is required. 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 This property is required. bool - (Boolean) Whether connector (hybrid extender) is enabled.
- cluster
Hostname This property is required. 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 This property is required. 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 This property is required. Boolean - (Boolean) Whether connector (hybrid extender) is enabled.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPermissionUser
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoPhysicalParam
- Enable
System Backup This property is required. bool - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- Enable
System Backup This property is required. bool - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- enable
System Backup This property is required. Boolean - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- enable
System Backup This property is required. boolean - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- enable_
system_ backup This property is required. bool - (Boolean) Specifies if system backup was enabled for the source in a particular run.
- enable
System Backup This property is required. Boolean - (Boolean) Specifies if system backup was enabled for the source in a particular run.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoProtectionStat
- Deleted
Protected Count This property is required. double - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- Protected
Count This property is required. double - (Integer) Specifies the count of the protected leaf objects.
- Protected
Size Bytes This property is required. double - (Integer) Specifies the protected logical size in bytes.
- Unprotected
Count This property is required. double - (Integer) Specifies the count of the unprotected leaf objects.
- Unprotected
Size Bytes This property is required. double - (Integer) Specifies the unprotected logical size in bytes.
- Deleted
Protected Count This property is required. float64 - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- Environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- Protected
Count This property is required. float64 - (Integer) Specifies the count of the protected leaf objects.
- Protected
Size Bytes This property is required. float64 - (Integer) Specifies the protected logical size in bytes.
- Unprotected
Count This property is required. float64 - (Integer) Specifies the count of the unprotected leaf objects.
- Unprotected
Size Bytes This property is required. float64 - (Integer) Specifies the unprotected logical size in bytes.
- deleted
Protected Count This property is required. Double - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- protected
Count This property is required. Double - (Integer) Specifies the count of the protected leaf objects.
- protected
Size Bytes This property is required. Double - (Integer) Specifies the protected logical size in bytes.
- unprotected
Count This property is required. Double - (Integer) Specifies the count of the unprotected leaf objects.
- unprotected
Size Bytes This property is required. Double - (Integer) Specifies the unprotected logical size in bytes.
- deleted
Protected Count This property is required. number - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- environment
This property is required. string - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- protected
Count This property is required. number - (Integer) Specifies the count of the protected leaf objects.
- protected
Size Bytes This property is required. number - (Integer) Specifies the protected logical size in bytes.
- unprotected
Count This property is required. number - (Integer) Specifies the count of the unprotected leaf objects.
- unprotected
Size Bytes This property is required. number - (Integer) Specifies the unprotected logical size in bytes.
- deleted_
protected_ count This property is required. float - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- environment
This property is required. str - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- protected_
count This property is required. float - (Integer) Specifies the count of the protected leaf objects.
- protected_
size_ bytes This property is required. float - (Integer) Specifies the protected logical size in bytes.
- unprotected_
count This property is required. float - (Integer) Specifies the count of the unprotected leaf objects.
- unprotected_
size_ bytes This property is required. float - (Integer) Specifies the unprotected logical size in bytes.
- deleted
Protected Count This property is required. Number - (Integer) Specifies the count of protected leaf objects which were deleted from the source after being protected.
- environment
This property is required. String - (String) Specifies the environment of the object.
- Constraints: Allowable values are:
kPhysical
,kSQL
,kOracle
.
- Constraints: Allowable values are:
- protected
Count This property is required. Number - (Integer) Specifies the count of the protected leaf objects.
- protected
Size Bytes This property is required. Number - (Integer) Specifies the protected logical size in bytes.
- unprotected
Count This property is required. Number - (Integer) Specifies the count of the unprotected leaf objects.
- unprotected
Size Bytes This property is required. Number - (Integer) Specifies the unprotected logical size in bytes.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoSharepointSiteSummary
- Site
Web Url This property is required. string - (String) Specifies the web url for the Sharepoint site.
- Site
Web Url This property is required. string - (String) Specifies the web url for the Sharepoint site.
- site
Web Url This property is required. String - (String) Specifies the web url for the Sharepoint site.
- site
Web Url This property is required. string - (String) Specifies the web url for the Sharepoint site.
- site_
web_ url This property is required. str - (String) Specifies the web url for the Sharepoint site.
- site
Web Url This property is required. String - (String) Specifies the web url for the Sharepoint site.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoVCenterSummary
- Is
Cloud Env This property is required. bool - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- Is
Cloud Env This property is required. bool - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is
Cloud Env This property is required. Boolean - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is
Cloud Env This property is required. boolean - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is_
cloud_ env This property is required. bool - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
- is
Cloud Env This property is required. Boolean - (Boolean) Specifies that registered vCenter source is a VMC (VMware Cloud) environment or not.
GetBackupRecoverySourceRegistrationsRegistrationSourceInfoWindowsClusterSummary
- Cluster
Source Type This property is required. string - (String) Specifies the type of cluster resource this source represents.
- Cluster
Source Type This property is required. string - (String) Specifies the type of cluster resource this source represents.
- cluster
Source Type This property is required. String - (String) Specifies the type of cluster resource this source represents.
- cluster
Source Type This property is required. string - (String) Specifies the type of cluster resource this source represents.
- cluster_
source_ type This property is required. str - (String) Specifies the type of cluster resource this source represents.
- cluster
Source Type This property is required. String - (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.