7 using System.Collections.Generic;
19 public class ShowBackupRequest : KineticaData
30 public const string BACKUP_ID =
"backup_id";
60 public const string NONE =
"none";
85 public const string TRUE =
"true";
86 public const string FALSE =
"false";
157 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
232 IDictionary<string, string>
options =
null)
243 public class ShowBackupResponse : KineticaData
250 public IList<IDictionary<string, string>>
backup_description {
get;
set; } =
new List<IDictionary<string, string>>();
254 public IList<IDictionary<string, string>>
backup_ids {
get;
set; } =
new List<IDictionary<string, string>>();
265 public IList<IDictionary<string, string>>
backup_contents {
get;
set; } =
new List<IDictionary<string, string>>();
269 public IList<IDictionary<string, string>>
deleted_backup_ids {
get;
set; } =
new List<IDictionary<string, string>>();
272 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.