7 using System.Collections.Generic;
58 public const string ALL =
"all";
61 public const string FULL =
"full";
94 public const string NONE =
"none";
119 public const string TRUE =
"true";
120 public const string FALSE =
"false";
218 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
321 IDictionary<string, string>
options =
null)
339 public IList<IDictionary<string, string>>
backup_description {
get;
set; } =
new List<IDictionary<string, string>>();
343 public IList<IDictionary<string, string>>
backup_ids {
get;
set; } =
new List<IDictionary<string, string>>();
353 public IList<IDictionary<string, string>>
backup_contents {
get;
set; } =
new List<IDictionary<string, string>>();
357 public IList<IDictionary<string, string>>
deleted_backup_ids {
get;
set; } =
new List<IDictionary<string, string>>();
360 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
A set of parameters for Kinetica.showBackup.
KineticaData - class to help with Avro Encoding for Kinetica
const string INCREMENTAL
Show incremental backups only.
IList< IDictionary< string, string > > backup_description
Details about the overall backup(s).
A set of results returned by Kinetica.showBackup.
const string ALL
Show all backup types.
const string NO_ERROR_IF_NOT_EXISTS
Whether or not to suppress the error if the specified backup does not exist.
const string BACKUP_ID
ID of the snapshot to show.
const string FULL
Show full backups only.
A set of string constants for the parameter options.
IList< IDictionary< string, string > > backup_ids
Details about the individual snapshots contained within the backup(s).
string backup_name
Value of backup_name.
IDictionary< string, string > options
Optional parameters.
const string NONE
Don't show snapshot contents.
const string SHOW_CONTENTS
Show the contents of the backed-up snapshots.
const string OBJECT_FILES
Show backed-up object names, and for tables, sizing detail and associated files.
string backup_name
Name of the backup.
IList< IDictionary< string, string > > backup_contents
When SHOW_CONTENTS is OBJECT_NAMES, the names of the backed-up objects as well as sizing detail of an...
const string DIFFERENTIAL
Show differential backups only.
IDictionary< string, string > info
Additional information.
ShowBackupRequest(string backup_name, string datasource_name, IDictionary< string, string > options=null)
Constructs a ShowBackupRequest object with the specified parameters.
const string OBJECT_NAMES
Show backed-up object names, and for tables, sizing detail.
IList< IDictionary< string, string > > deleted_backup_ids
IDs of any snapshots that have been deleted from the containing backup(s).
ShowBackupRequest()
Constructs a ShowBackupRequest object with default parameters.
const string BACKUP_TYPE
Show backups by type.
string datasource_name
Data source through which the backup is accessible.