NodeConfigDetails Data Type

Properties
name data type constraints description
guid string  
name string  
modificationTime number  
isDefault boolean required
backupDestinations array of BackupDestinationListRecord  
generalSettings GeneralSettingsDetails  
threadsSettings ThreadsSettingsDetails  
netcatSettings NetcatSettingsDetails  
cloudAgentSettings CloudAgentSettingsDetails  

Example

{
  "guid" : "...",
  "name" : "...",
  "modificationTime" : 12345,
  "isDefault" : true,
  "backupDestinations" : [ {
    "guid" : "...",
    "name" : "...",
    "totalAvailableSpace" : 12345,
    "totalUsedSpace" : 12345,
    "nodeConfigCount" : 12345,
    "nodeInitErrors" : {
      "property1" : "...",
      "property2" : "..."
    },
    "totalDedupUsedSpace" : 12345,
    "totalDedupAvailableSpace" : 12345,
    "warnings" : [ "...", "..." ],
    "defaultBackupDestination" : true,
    "spaceThreshold" : 12345,
    "description" : "...",
    "backupDestinationForCloud" : true,
    "state" : "INITIALIZED",
    "configurationWarning" : "...",
    "type" : {
      "name" : "ENUM_NAME",
      "description" : "Enum description"
    },
    "modificationTime" : 1451649601000
  }, {
    "guid" : "...",
    "name" : "...",
    "totalAvailableSpace" : 12345,
    "totalUsedSpace" : 12345,
    "nodeConfigCount" : 12345,
    "nodeInitErrors" : {
      "property1" : "...",
      "property2" : "..."
    },
    "totalDedupUsedSpace" : 12345,
    "totalDedupAvailableSpace" : 12345,
    "warnings" : [ "...", "..." ],
    "defaultBackupDestination" : true,
    "spaceThreshold" : 12345,
    "description" : "...",
    "backupDestinationForCloud" : true,
    "state" : "NOT_INITIALIZED",
    "configurationWarning" : "...",
    "type" : {
      "name" : "...",
      "description" : "..."
    },
    "modificationTime" : 12345
  } ],
  "generalSettings" : {
    "generalExportPath" : "...",
    "generalMountPath" : "...",
    "generalImportPath" : "...",
    "generalBackupTimeDiff" : 12345,
    "generalKeepLastBackupLocally" : true,
    "minFreeSpaceForExport" : 12345,
    "generalMinFreeSpaceForSnapshotBytes" : 12345,
    "generalMinFreeSpaceForSnapshotPercentage" : 12345,
    "generalDynamicallyAttachedDisksSlotOffset" : 12345
  },
  "threadsSettings" : {
    "taskMaxInventorySyncThreads" : 12345,
    "taskMaxTapeManagerInventorySyncThreads" : 12345,
    "taskMaxExportThreads" : 12345,
    "taskMaxExportThreadsPerSource" : 12345,
    "taskMaxImportThreads" : 12345,
    "taskMaxStoreThreads" : 12345,
    "taskMaxRestoreThreads" : 12345,
    "taskMaxSnapshotThreads" : 12345,
    "taskMaxSnapshotThreadsPerSource" : 12345,
    "taskInventorySyncTimeout" : 12345,
    "taskTapeManagerInventorySyncTimeout" : 12345,
    "taskExportTimeout" : 12345,
    "taskStoreTimeout" : 12345,
    "taskRestoreTimeout" : 12345,
    "taskUnmountTimeout" : 12345,
    "taskMountTimeout" : 12345,
    "taskImportTimeout" : 12345,
    "taskOldBackupsRemovalTimeout" : 12345,
    "taskOldSnapshotsRemovalTimeout" : 12345,
    "taskSnapshotTimeout" : 12345,
    "taskSnapshotReversionTimeout" : 12345,
    "taskQueuePollInterval" : 12345
  },
  "netcatSettings" : {
    "netcatMinPort" : 12345,
    "netcatMaxPort" : 12345,
    "netcatMaxAttempts" : 12345,
    "netcatBzip2" : true
  },
  "cloudAgentSettings" : {
    "cloudAgentWindowsHost" : "...",
    "cloudAgentWindowsUser" : "...",
    "cloudAgentTaskProgressRefreshInterval" : 12345
  }
}