|
Kinetica C# API
Version 7.2.3.1
|
A set of parameters for Kinetica.createBackup. More...
Inheritance diagram for CreateBackupRequest:
Collaboration diagram for CreateBackupRequest:Classes | |
| struct | BackupObjectsMap |
| A set of string constants for the parameter backup_objects_map. More... | |
| struct | BackupType |
| A set of string constants for the parameter backup_type. More... | |
| struct | Options |
| A set of string constants for the parameter options. More... | |
Public Member Functions | |
| CreateBackupRequest () | |
| Constructs a CreateBackupRequest object with default parameters. More... | |
| CreateBackupRequest (string backup_name, string backup_type, IDictionary< string, string > backup_objects_map, string datasink_name, IDictionary< string, string > options=null) | |
| Constructs a CreateBackupRequest object with the specified parameters. More... | |
Public Member Functions inherited from KineticaData | |
| KineticaData (KineticaType type) | |
| Constructor from Kinetica Type More... | |
| KineticaData (System.Type type=null) | |
| Default constructor, with optional System.Type More... | |
| object | Get (int fieldPos) |
| Retrieve a specific property from this object More... | |
| void | Put (int fieldPos, object fieldValue) |
| Write a specific property to this object More... | |
Properties | |
| string | backup_name [get, set] |
| Name for this backup. More... | |
| string | backup_type [get, set] |
| Type of snapshot to create. More... | |
| IDictionary< string, string > | backup_objects_map = new Dictionary<string, string>() [get, set] |
| Map of objects to be captured in the backup; must be specified when creating a full snapshot and left unspecified when creating an incremental or differential snapshot. More... | |
| string | datasink_name [get, set] |
| Data sink through which the backup will be stored. More... | |
| IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
| Optional parameters. More... | |
Properties inherited from KineticaData | |
| Schema | Schema [get] |
| Avro Schema for this class More... | |
Properties inherited from Avro.Specific.ISpecificRecord | |
| Schema | Schema [get] |
Additional Inherited Members | |
Static Public Member Functions inherited from KineticaData | |
| static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
| Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.createBackup.
Creates a database backup, containing a snapshot of existing objects, at the remote file store accessible via the data sink specified by datasink_name.
Definition at line 20 of file CreateBackup.cs.
|
inline |
Constructs a CreateBackupRequest object with default parameters.
Definition at line 465 of file CreateBackup.cs.
|
inline |
Constructs a CreateBackupRequest object with the specified parameters.
| backup_name | Name for this backup. If the backup already exists, only an incremental or differential backup can be made, unless RECREATE is set to TRUE. |
| backup_type | Type of snapshot to create. Supported values:
|
| backup_objects_map | Map of objects to be captured in the backup; must be specified when creating a full snapshot and left unspecified when creating an incremental or differential snapshot.
|
| datasink_name | Data sink through which the backup will be stored. |
| options | Optional parameters.
|
Definition at line 709 of file CreateBackup.cs.
|
getset |
Name for this backup.
If the backup already exists, only an incremental or differential backup can be made, unless RECREATE is set to TRUE.
Definition at line 219 of file CreateBackup.cs.
|
getset |
Map of objects to be captured in the backup; must be specified when creating a full snapshot and left unspecified when creating an incremental or differential snapshot.
The default value is an empty Dictionary.
Definition at line 353 of file CreateBackup.cs.
|
getset |
Type of snapshot to create.
Supported values:
Definition at line 242 of file CreateBackup.cs.
|
getset |
Data sink through which the backup will be stored.
Definition at line 356 of file CreateBackup.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 461 of file CreateBackup.cs.