Show / Hide Table of Contents

Class ServerToRestore

The object containing server to restore and the backups to be used to restore.

Inheritance
object
ServerToRestore
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 ServerToRestore

Properties

Backups

Declaration
[JsonProperty(PropertyName = "backups")]
public List<BackupToRestore> Backups { get; set; }
Property Value
Type Description
List<BackupToRestore>

The list of backup unique identifiers to be used to restore.
Note: Not OCIDs.

ServerId

Declaration
[JsonProperty(PropertyName = "serverId")]
public string ServerId { get; set; }
Property Value
Type Description
string

The unique identifier of the server for which backup needs to be restored.
Note: Not an OCID.

In this article
Back to top