Function GameServerApiFactory Game Server Api Factory ( configuration ? , basePath ? , axios ? ) : { gameServerControllerBanPlayer ( gameServerId : string , playerId : string , banPlayerInputDTO ?: BanPlayerInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerCreate ( gameServerCreateDTO ?: GameServerCreateDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerOutputDTOAPI > ; gameServerControllerExecuteCommand ( id : string , commandExecuteInputDTO ?: CommandExecuteInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < CommandExecuteDTOAPI > ; gameServerControllerGetImport ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ImportStatusOutputDTOAPI > ; gameServerControllerGetInstalledModules ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ModuleInstallationOutputArrayDTOAPI > ; gameServerControllerGetModuleInstallation ( gameServerId : string , moduleId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ModuleInstallationOutputDTOAPI > ; gameServerControllerGetOne ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerOutputDTOAPI > ; gameServerControllerGetPlayers ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < PlayerOnGameserverOutputDTOAPI > ; gameServerControllerGetTypes ( options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerTypesOutputDTOAPI > ; gameServerControllerGiveItem ( gameServerId : string , playerId : string , giveItemInputDTO ?: GiveItemInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < void > ; gameServerControllerImportFromCSMM ( options ?: RawAxiosRequestConfig ) : AxiosPromise < ImportOutputDTOAPI > ; gameServerControllerInstallModule ( gameServerId : string , moduleId : string , moduleInstallDTO ?: ModuleInstallDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < ModuleInstallationOutputDTOAPI > ; gameServerControllerKickPlayer ( gameServerId : string , playerId : string , kickPlayerInputDTO ?: KickPlayerInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerListBans ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < BanPlayerOutputDTO > ; gameServerControllerRemove ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerSearch ( gameServerSearchInputDTO ?: GameServerSearchInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerOutputArrayDTOAPI > ; gameServerControllerSendMessage ( id : string , messageSendInputDTO ?: MessageSendInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerShutdown ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < void > ; gameServerControllerTeleportPlayer ( gameServerId : string , playerId : string , teleportPlayerInputDTO ?: TeleportPlayerInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerTestReachability ( gameServerTestReachabilityInputDTO ?: GameServerTestReachabilityInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerTestReachabilityDTOAPI > ; gameServerControllerTestReachabilityForId ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerTestReachabilityDTOAPI > ; gameServerControllerUnbanPlayer ( gameServerId : string , playerId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerUninstallModule ( gameServerId : string , moduleId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ModuleInstallationOutputDTOAPI > ; gameServerControllerUpdate ( id : string , gameServerUpdateDTO ?: GameServerUpdateDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerOutputDTOAPI > ; } Parameters Optional
configuration : Configuration Optional
basePath : string Optional
axios : AxiosInstance Returns { gameServerControllerBanPlayer ( gameServerId : string , playerId : string , banPlayerInputDTO ?: BanPlayerInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerCreate ( gameServerCreateDTO ?: GameServerCreateDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerOutputDTOAPI > ; gameServerControllerExecuteCommand ( id : string , commandExecuteInputDTO ?: CommandExecuteInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < CommandExecuteDTOAPI > ; gameServerControllerGetImport ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ImportStatusOutputDTOAPI > ; gameServerControllerGetInstalledModules ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ModuleInstallationOutputArrayDTOAPI > ; gameServerControllerGetModuleInstallation ( gameServerId : string , moduleId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ModuleInstallationOutputDTOAPI > ; gameServerControllerGetOne ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerOutputDTOAPI > ; gameServerControllerGetPlayers ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < PlayerOnGameserverOutputDTOAPI > ; gameServerControllerGetTypes ( options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerTypesOutputDTOAPI > ; gameServerControllerGiveItem ( gameServerId : string , playerId : string , giveItemInputDTO ?: GiveItemInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < void > ; gameServerControllerImportFromCSMM ( options ?: RawAxiosRequestConfig ) : AxiosPromise < ImportOutputDTOAPI > ; gameServerControllerInstallModule ( gameServerId : string , moduleId : string , moduleInstallDTO ?: ModuleInstallDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < ModuleInstallationOutputDTOAPI > ; gameServerControllerKickPlayer ( gameServerId : string , playerId : string , kickPlayerInputDTO ?: KickPlayerInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerListBans ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < BanPlayerOutputDTO > ; gameServerControllerRemove ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerSearch ( gameServerSearchInputDTO ?: GameServerSearchInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerOutputArrayDTOAPI > ; gameServerControllerSendMessage ( id : string , messageSendInputDTO ?: MessageSendInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerShutdown ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < void > ; gameServerControllerTeleportPlayer ( gameServerId : string , playerId : string , teleportPlayerInputDTO ?: TeleportPlayerInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerTestReachability ( gameServerTestReachabilityInputDTO ?: GameServerTestReachabilityInputDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerTestReachabilityDTOAPI > ; gameServerControllerTestReachabilityForId ( id : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerTestReachabilityDTOAPI > ; gameServerControllerUnbanPlayer ( gameServerId : string , playerId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < APIOutput > ; gameServerControllerUninstallModule ( gameServerId : string , moduleId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ModuleInstallationOutputDTOAPI > ; gameServerControllerUpdate ( id : string , gameServerUpdateDTO ?: GameServerUpdateDTO , options ?: RawAxiosRequestConfig ) : AxiosPromise < GameServerOutputDTOAPI > ; } game Server Controller Ban Player : functiongame Server Controller Ban Player ( gameServerId , playerId , banPlayerInputDTO ? , options ? ) : AxiosPromise < APIOutput > Parameters gameServerId : string playerId : string Optional
banPlayerInputDTO : BanPlayerInputDTO Optional
options : RawAxiosRequestConfig Returns AxiosPromise < APIOutput > game Server Controller Create : functiongame Server Controller Execute Command : functiongame Server Controller Execute Command ( id , commandExecuteInputDTO ? , options ? ) : AxiosPromise < CommandExecuteDTOAPI > game Server Controller Get Import : functiongame Server Controller Get Import ( id , options ? ) : AxiosPromise < ImportStatusOutputDTOAPI > Parameters id : string Optional
options : RawAxiosRequestConfig game Server Controller Get Installed Modules : functiongame Server Controller Get Module Installation : functiongame Server Controller Get Module Installation ( gameServerId , moduleId , options ? ) : AxiosPromise < ModuleInstallationOutputDTOAPI > Parameters gameServerId : string moduleId : string Optional
options : RawAxiosRequestConfig game Server Controller Get One : functiongame Server Controller Get One ( id , options ? ) : AxiosPromise < GameServerOutputDTOAPI > Parameters id : string Optional
options : RawAxiosRequestConfig game Server Controller Get Players : functiongame Server Controller Get Types : functiongame Server Controller Give Item : functiongame Server Controller Give Item ( gameServerId , playerId , giveItemInputDTO ? , options ? ) : AxiosPromise < void > Parameters gameServerId : string playerId : string Optional
giveItemInputDTO : GiveItemInputDTO Optional
options : RawAxiosRequestConfig Returns AxiosPromise < void > game Server Controller Import FromCSMM : functiongame Server Controller Import FromCSMM ( options ? ) : AxiosPromise < ImportOutputDTOAPI > Parameters Optional
options : RawAxiosRequestConfig game Server Controller Install Module : functiongame Server Controller Install Module ( gameServerId , moduleId , moduleInstallDTO ? , options ? ) : AxiosPromise < ModuleInstallationOutputDTOAPI > Parameters gameServerId : string moduleId : string Optional
moduleInstallDTO : ModuleInstallDTO Optional
options : RawAxiosRequestConfig game Server Controller Kick Player : functiongame Server Controller Kick Player ( gameServerId , playerId , kickPlayerInputDTO ? , options ? ) : AxiosPromise < APIOutput > Parameters gameServerId : string playerId : string Optional
kickPlayerInputDTO : KickPlayerInputDTO Optional
options : RawAxiosRequestConfig Returns AxiosPromise < APIOutput > game Server Controller List Bans : functiongame Server Controller List Bans ( id , options ? ) : AxiosPromise < BanPlayerOutputDTO > Parameters id : string Optional
options : RawAxiosRequestConfig game Server Controller Remove : functiongame Server Controller Remove ( id , options ? ) : AxiosPromise < APIOutput > Parameters id : string Optional
options : RawAxiosRequestConfig Returns AxiosPromise < APIOutput > game Server Controller Search : functiongame Server Controller Send Message : functiongame Server Controller Send Message ( id , messageSendInputDTO ? , options ? ) : AxiosPromise < APIOutput > Parameters id : string Optional
messageSendInputDTO : MessageSendInputDTO Optional
options : RawAxiosRequestConfig Returns AxiosPromise < APIOutput > game Server Controller Shutdown : functiongame Server Controller Shutdown ( id , options ? ) : AxiosPromise < void > Parameters id : string Optional
options : RawAxiosRequestConfig Returns AxiosPromise < void > game Server Controller Teleport Player : functiongame Server Controller Teleport Player ( gameServerId , playerId , teleportPlayerInputDTO ? , options ? ) : AxiosPromise < APIOutput > Parameters gameServerId : string playerId : string Optional
teleportPlayerInputDTO : TeleportPlayerInputDTO Optional
options : RawAxiosRequestConfig Returns AxiosPromise < APIOutput > game Server Controller Test Reachability : functiongame Server Controller Test Reachability For Id : functiongame Server Controller Test Reachability For Id ( id , options ? ) : AxiosPromise < GameServerTestReachabilityDTOAPI > Parameters id : string Optional
options : RawAxiosRequestConfig game Server Controller Unban Player : functiongame Server Controller Unban Player ( gameServerId , playerId , options ? ) : AxiosPromise < APIOutput > Parameters gameServerId : string playerId : string Optional
options : RawAxiosRequestConfig Returns AxiosPromise < APIOutput > game Server Controller Uninstall Module : functiongame Server Controller Uninstall Module ( gameServerId , moduleId , options ? ) : AxiosPromise < ModuleInstallationOutputDTOAPI > Parameters gameServerId : string moduleId : string Optional
options : RawAxiosRequestConfig game Server Controller Update : functiongame Server Controller Update ( id , gameServerUpdateDTO ? , options ? ) : AxiosPromise < GameServerOutputDTOAPI > Parameters id : string Optional
gameServerUpdateDTO : GameServerUpdateDTO Optional
options : RawAxiosRequestConfig
GameServerApi - factory interface
Export