vito/app/ServerProviders/ServerProvider.php
Saeed Vaziry f6bc04763b
2.x
2024-09-27 20:36:03 +02:00

29 lines
612 B
PHP
Executable File

<?php
namespace App\ServerProviders;
interface ServerProvider
{
public function createRules(array $input): array;
public function credentialValidationRules(array $input): array;
public function credentialData(array $input): array;
public function data(array $input): array;
public function connect(?array $credentials = null): bool;
public function plans(?string $region): array;
public function regions(): array;
public function generateKeyPair(): void;
public function create(): void;
public function isRunning(): bool;
public function delete(): void;
}