Interface ExternalStoragesDiskUsageInfoRegistry
-
- All Superinterfaces:
ExternalStoragesDiskUsageInfoProvider
- All Known Implementing Classes:
ExternalStoragesDiskUsageInfoProviderImpl
public interface ExternalStoragesDiskUsageInfoRegistry extends ExternalStoragesDiskUsageInfoProvider
Registry for external storages- Since:
- 2020.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addStorage(ExternalStorageId storageId, ArtifactStorageDiskUsageInfo diskUsageInfo)
Registers new storage with given storage id and disk usage infovoid
removeStorage(ExternalStorageId storageId)
Removes the storage with the corresponding id-
Methods inherited from interface jetbrains.buildServer.serverSide.statistics.diskusage.ExternalStoragesDiskUsageInfoProvider
getDiskUsageInfo, getExternalStoragesInfo, getStorageIds
-
-
-
-
Method Detail
-
addStorage
void addStorage(@NotNull ExternalStorageId storageId, @NotNull ArtifactStorageDiskUsageInfo diskUsageInfo)
Registers new storage with given storage id and disk usage info- Parameters:
storageId
-diskUsageInfo
-
-
removeStorage
void removeStorage(@NotNull ExternalStorageId storageId)
Removes the storage with the corresponding id- Parameters:
storageId
-
-
-