Skip to main content

BackupInfo

Namespace: Meshmakers.Octo.Runtime.Contracts.Blueprints

Information about a tenant backup

public class BackupInfo

Inheritance ObjectBackupInfo

Properties

BackupId

Unique identifier for the backup

public string BackupId { get; set; }

Property Value

String

TenantId

Tenant that was backed up

public string TenantId { get; set; }

Property Value

String

CreatedAt

When the backup was created

public DateTime CreatedAt { get; set; }

Property Value

DateTime

Reason

Reason for the backup

public string Reason { get; set; }

Property Value

String

BlueprintVersion

Blueprint version at time of backup (if applicable)

public string BlueprintVersion { get; set; }

Property Value

String

EntityCount

Number of entities in the backup

public int EntityCount { get; set; }

Property Value

Int32

SizeBytes

Size of the backup in bytes (if applicable)

public Nullable<long> SizeBytes { get; set; }

Property Value

Nullable<Int64>

BackupType

Type of backup

public BackupType BackupType { get; set; }

Property Value

BackupType

StorageLocation

Path or location where backup is stored

public string StorageLocation { get; set; }

Property Value

String

Constructors

BackupInfo()

Caution

Constructors of types with required members are not supported in this version of your compiler.


public BackupInfo()