BackupInfo
Namespace: Meshmakers.Octo.Runtime.Contracts.Blueprints
Information about a tenant backup
public class BackupInfo
Inheritance Object → BackupInfo
Properties
BackupId
Unique identifier for the backup
public string BackupId { get; set; }
Property Value
TenantId
Tenant that was backed up
public string TenantId { get; set; }
Property Value
CreatedAt
When the backup was created
public DateTime CreatedAt { get; set; }
Property Value
Reason
Reason for the backup
public string Reason { get; set; }
Property Value
BlueprintVersion
Blueprint version at time of backup (if applicable)
public string BlueprintVersion { get; set; }
Property Value
EntityCount
Number of entities in the backup
public int EntityCount { get; set; }
Property Value
SizeBytes
Size of the backup in bytes (if applicable)
public Nullable<long> SizeBytes { get; set; }
Property Value
BackupType
Type of backup
public BackupType BackupType { get; set; }
Property Value
StorageLocation
Path or location where backup is stored
public string StorageLocation { get; set; }
Property Value
Constructors
BackupInfo()
Caution
Constructors of types with required members are not supported in this version of your compiler.
public BackupInfo()