7 using System.Collections.Generic;
19 public class ShowBackupRequest : KineticaData
30 public const string BACKUP_ID =
"backup_id";
61 public const string ALL =
"all";
64 public const string FULL =
"full";
100 public const string NONE =
"none";
125 public const string TRUE =
"true";
126 public const string FALSE =
"false";
231 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
340 IDictionary<string, string>
options =
null)
351 public class ShowBackupResponse : KineticaData
358 public IList<IDictionary<string, string>>
backup_description {
get;
set; } =
new List<IDictionary<string, string>>();
362 public IList<IDictionary<string, string>>
backup_ids {
get;
set; } =
new List<IDictionary<string, string>>();
373 public IList<IDictionary<string, string>>
backup_contents {
get;
set; } =
new List<IDictionary<string, string>>();
377 public IList<IDictionary<string, string>>
deleted_backup_ids {
get;
set; } =
new List<IDictionary<string, string>>();
380 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.
const string BACKUP_TYPE
Show backups by type.
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.
const string DIFFERENTIAL
Show differential backups only.
const string ALL
Show all backup types.
const string INCREMENTAL
Show incremental backups only.
const string FULL
Show full backups only.
ShowBackupRequest(string backup_name, string datasource_name, IDictionary< string, string > options=null)
Constructs a ShowBackupRequest object with the specified parameters.