7 using System.Collections.Generic;
17 public class ShowBackupRequest : KineticaData
28 public const string BACKUP_ID =
"backup_id";
54 public const string NONE =
"none";
78 public const string TRUE =
"true";
79 public const string FALSE =
"false";
146 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
219 IDictionary<string, string>
options =
null)
230 public class ShowBackupResponse : KineticaData
237 public IList<IDictionary<string, string>>
backup_description {
get;
set; } =
new List<IDictionary<string, string>>();
240 public IList<IDictionary<string, string>>
backup_ids {
get;
set; } =
new List<IDictionary<string, string>>();
243 public IList<IDictionary<string, string>>
backup_contents {
get;
set; } =
new List<IDictionary<string, string>>();
247 public IList<IDictionary<string, string>>
deleted_backup_ids {
get;
set; } =
new List<IDictionary<string, string>>();
250 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
const string NONE
No backup contents
const string OBJECT_FILES
Object names and files
const string SHOW_CONTENTS
Shows the contents of the specified backup_id.
IList< IDictionary< string, string > > deleted_backup_ids
Backup instances that have been deleted from this backup object
IDictionary< string, string > options
Optional parameters.
string backup_name
Value of backup_name.
IList< IDictionary< string, string > > backup_description
Backup description
string backup_name
Name of the backup object.
string datasource_name
Datasource where backup is located.
const string OBJECT_NAMES
Object names only
IList< IDictionary< string, string > > backup_contents
Backup contents
const string NO_ERROR_IF_NOT_EXISTS
If FALSE will return an error if the provided backup_name does not exist.
IList< IDictionary< string, string > > backup_ids
Backup instances in this backup
IDictionary< string, string > info
Additional information.
ShowBackupRequest()
Constructs a ShowBackupRequest object with default parameters.
const string BACKUP_ID
Backup instance ID to show.
ShowBackupRequest(string backup_name, string datasource_name, IDictionary< string, string > options=null)
Constructs a ShowBackupRequest object with the specified parameters.