├── .editorconfig ├── .styleci.yml ├── CHANGELOG.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── docs ├── certificates.md ├── configuration.md ├── containers.md ├── host.md ├── images.md ├── networks.md ├── operations.md └── profiles.md ├── phpunit.xml └── src ├── Client.php ├── Endpoint ├── AbstractEndpoint.php ├── Certificates.php ├── Cluster.php ├── Cluster │ └── Members.php ├── Containers.php ├── Host.php ├── Images.php ├── Images │ └── Aliases.php ├── InstaceBase.php ├── Instance │ ├── Backups.php │ ├── Files.php │ ├── Logs.php │ └── Snapshots.php ├── Instances.php ├── Networks.php ├── Operations.php ├── Profiles.php ├── Projects.php ├── Resources.php ├── Storage.php ├── Storage │ ├── Resources.php │ └── Volumes.php ├── VirtualMachines.php ├── Warnings.php └── Warnings │ └── Status.php ├── Exception ├── AuthenticationFailedException.php ├── BadRequestException.php ├── ClientConnectionException.php ├── ConflictException.php ├── InvalidEndpointException.php ├── NotFoundException.php ├── OperationException.php ├── ServerException.php └── SourceImageException.php └── HttpClient ├── Message └── ResponseMediator.php └── Plugin ├── LxdExceptionThrower.php ├── PathPrepend.php └── PathTrimEnd.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/composer.json -------------------------------------------------------------------------------- /docs/certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/docs/certificates.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/docs/containers.md -------------------------------------------------------------------------------- /docs/host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/docs/host.md -------------------------------------------------------------------------------- /docs/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/docs/images.md -------------------------------------------------------------------------------- /docs/networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/docs/networks.md -------------------------------------------------------------------------------- /docs/operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/docs/operations.md -------------------------------------------------------------------------------- /docs/profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/docs/profiles.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Endpoint/AbstractEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/AbstractEndpoint.php -------------------------------------------------------------------------------- /src/Endpoint/Certificates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Certificates.php -------------------------------------------------------------------------------- /src/Endpoint/Cluster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Cluster.php -------------------------------------------------------------------------------- /src/Endpoint/Cluster/Members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Cluster/Members.php -------------------------------------------------------------------------------- /src/Endpoint/Containers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Containers.php -------------------------------------------------------------------------------- /src/Endpoint/Host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Host.php -------------------------------------------------------------------------------- /src/Endpoint/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Images.php -------------------------------------------------------------------------------- /src/Endpoint/Images/Aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Images/Aliases.php -------------------------------------------------------------------------------- /src/Endpoint/InstaceBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/InstaceBase.php -------------------------------------------------------------------------------- /src/Endpoint/Instance/Backups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Instance/Backups.php -------------------------------------------------------------------------------- /src/Endpoint/Instance/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Instance/Files.php -------------------------------------------------------------------------------- /src/Endpoint/Instance/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Instance/Logs.php -------------------------------------------------------------------------------- /src/Endpoint/Instance/Snapshots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Instance/Snapshots.php -------------------------------------------------------------------------------- /src/Endpoint/Instances.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Instances.php -------------------------------------------------------------------------------- /src/Endpoint/Networks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Networks.php -------------------------------------------------------------------------------- /src/Endpoint/Operations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Operations.php -------------------------------------------------------------------------------- /src/Endpoint/Profiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Profiles.php -------------------------------------------------------------------------------- /src/Endpoint/Projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Projects.php -------------------------------------------------------------------------------- /src/Endpoint/Resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Resources.php -------------------------------------------------------------------------------- /src/Endpoint/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Storage.php -------------------------------------------------------------------------------- /src/Endpoint/Storage/Resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Storage/Resources.php -------------------------------------------------------------------------------- /src/Endpoint/Storage/Volumes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Storage/Volumes.php -------------------------------------------------------------------------------- /src/Endpoint/VirtualMachines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/VirtualMachines.php -------------------------------------------------------------------------------- /src/Endpoint/Warnings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Warnings.php -------------------------------------------------------------------------------- /src/Endpoint/Warnings/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Endpoint/Warnings/Status.php -------------------------------------------------------------------------------- /src/Exception/AuthenticationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Exception/AuthenticationFailedException.php -------------------------------------------------------------------------------- /src/Exception/BadRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Exception/BadRequestException.php -------------------------------------------------------------------------------- /src/Exception/ClientConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Exception/ClientConnectionException.php -------------------------------------------------------------------------------- /src/Exception/ConflictException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Exception/ConflictException.php -------------------------------------------------------------------------------- /src/Exception/InvalidEndpointException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Exception/InvalidEndpointException.php -------------------------------------------------------------------------------- /src/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Exception/NotFoundException.php -------------------------------------------------------------------------------- /src/Exception/OperationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Exception/OperationException.php -------------------------------------------------------------------------------- /src/Exception/ServerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Exception/ServerException.php -------------------------------------------------------------------------------- /src/Exception/SourceImageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/Exception/SourceImageException.php -------------------------------------------------------------------------------- /src/HttpClient/Message/ResponseMediator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/HttpClient/Message/ResponseMediator.php -------------------------------------------------------------------------------- /src/HttpClient/Plugin/LxdExceptionThrower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/HttpClient/Plugin/LxdExceptionThrower.php -------------------------------------------------------------------------------- /src/HttpClient/Plugin/PathPrepend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/HttpClient/Plugin/PathPrepend.php -------------------------------------------------------------------------------- /src/HttpClient/Plugin/PathTrimEnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turtle0x1/php-lxd/HEAD/src/HttpClient/Plugin/PathTrimEnd.php --------------------------------------------------------------------------------