Show / Hide Table of Contents

Class BackupSummary

The information of a backup for the server.

Inheritance
object
BackupSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.
Note: Not an OCID.

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).
Example: 2016-08-25T21:10:29.600Z

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

In this article
Back to top