Class BackupSummary
The information of a backup for the server.
Inherited Members
Namespace: Oci.WlmsService.Models
Assembly: OCI.DotNetSDK.Wlms.dll
Syntax
public class BackupSummary
Properties
BackupLocation
Declaration
[Required(ErrorMessage = "BackupLocation is required.")]
[JsonProperty(PropertyName = "backupLocation")]
public string BackupLocation { get; set; }
Property Value
Type | Description |
---|---|
string | The location of the backup. For backups of type LOCAL_FILE this is the absolute path of the backup file. |
Remarks
Required
ContentType
Declaration
[JsonProperty(PropertyName = "contentType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BackupContentType? ContentType { get; set; }
Property Value
Type | Description |
---|---|
BackupContentType? | The type of content of the backup. |
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string | The unique identifier of the backup.
|
Remarks
Required
ManagedInstanceId
Declaration
[JsonProperty(PropertyName = "managedInstanceId")]
public string ManagedInstanceId { get; set; }
Property Value
Type | Description |
---|---|
string | The managed instance ID of the server for which the backup was created. |
TimeCreated
Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The date and time when the backup was created (in RFC 3339 format).
|
Type
Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BackupType? Type { get; set; }
Property Value
Type | Description |
---|---|
BackupType? | The type of the backup. |
Remarks
Required