Files
plexswift/Sources/Plexswift/models/operations/PathParamTaskName.swift
2024-04-11 11:10:38 -05:00

24 lines
1008 B
Swift

// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
import Foundation
extension Operations {
/// The name of the task to be started.
public enum PathParamTaskName: String, Codable, APIValue {
case backupDatabase = "BackupDatabase"
case buildGracenoteCollections = "BuildGracenoteCollections"
case checkForUpdates = "CheckForUpdates"
case cleanOldBundles = "CleanOldBundles"
case cleanOldCacheFiles = "CleanOldCacheFiles"
case deepMediaAnalysis = "DeepMediaAnalysis"
case generateAutoTags = "GenerateAutoTags"
case generateChapterThumbs = "GenerateChapterThumbs"
case generateMediaIndexFiles = "GenerateMediaIndexFiles"
case optimizeDatabase = "OptimizeDatabase"
case refreshLibraries = "RefreshLibraries"
case refreshLocalMedia = "RefreshLocalMedia"
case refreshPeriodicMetadata = "RefreshPeriodicMetadata"
case upgradeMediaAnalysis = "UpgradeMediaAnalysis"
}
}