All URIs are relative to https://api.beget.com, except if the operation defines another base path.
| Method | HTTP request | Description |
|---|---|---|
| manageServiceAttachIpAddress() | POST /v1/vps/{id}/network/{ip_address} | |
| manageServiceAttachSshKey() | POST /v1/vps/{id}/sshKey/{ssh_key_id} | |
| manageServiceAttachToPrivateNetwork() | POST /v1/vps/{id}/private-network/{network_id} | |
| manageServiceBindProject() | PUT /v1/vps/server/{id}/project | |
| manageServiceChangeConfiguration() | PUT /v1/vps/server/{id}/configuration | |
| manageServiceChangePinned() | PUT /v1/vps/server/{id}/pin | |
| manageServiceChangeSshAccess() | PUT /v1/vps/{id}/ssh/access | |
| manageServiceCheckSoftwareRequirements() | POST /v1/vps/software/requirements | |
| manageServiceCreateVps() | POST /v1/vps/server | |
| manageServiceDetachFromPrivateNetwork() | DELETE /v1/vps/{id}/private-network/{network_id} | |
| manageServiceDetachIpAddress() | DELETE /v1/vps/network/detach/{ip_address} | |
| manageServiceDetachSshKey() | DELETE /v1/vps/{id}/sshKey/{ssh_key_id} | |
| manageServiceDisablePostInstallAlert() | DELETE /v1/vps/{id}/software/post-install-alert | |
| manageServiceGetAvailableConfiguration() | GET /v1/vps/configuration | |
| manageServiceGetFileManagerSettings() | POST /v1/vps/{id}/fm | |
| manageServiceGetHistory() | GET /v1/vps/{id}/history | |
| manageServiceGetInfo() | GET /v1/vps/server/{id} | |
| manageServiceGetInstalledSoftware() | GET /v1/vps/{id}/software | |
| manageServiceGetList() | GET /v1/vps/server/list | |
| manageServiceGetRegionList() | GET /v1/vps/region | |
| manageServiceGetStatuses() | GET /v1/vps/server/statuses | |
| manageServiceRebootVps() | POST /v1/vps/server/{id}/reboot | |
| manageServiceReinstall() | POST /v1/vps/server/{id}/reinstall | |
| manageServiceRemoveVps() | POST /v1/vps/server/{id}/remove | |
| manageServiceReserveVpsSubdomain() | GET /v1/vps/subdomain/reserve | |
| manageServiceResetPassword() | PUT /v1/vps/{id}/password | |
| manageServiceResetVps() | POST /v1/vps/server/{id}/reset | |
| manageServiceStartRescue() | POST /v1/vps/server/{id}/rescue | |
| manageServiceStartVps() | POST /v1/vps/server/{id}/start | |
| manageServiceStopRescue() | DELETE /v1/vps/server/{id}/rescue | |
| manageServiceStopVps() | POST /v1/vps/server/{id}/stop | |
| manageServiceUnarchive() | DELETE /v1/vps/archive/{id} | |
| manageServiceUpdateInfo() | PUT /v1/vps/server/{id}/info |
manageServiceAttachIpAddress($id, $ip_address, $manage_attach_ip_address_request): \OpenAPI\Client\Model\ManageAttachIpAddressResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$ip_address = 'ip_address_example'; // string
$manage_attach_ip_address_request = new \OpenAPI\Client\Model\ManageAttachIpAddressRequest(); // \OpenAPI\Client\Model\ManageAttachIpAddressRequest
try {
$result = $apiInstance->manageServiceAttachIpAddress($id, $ip_address, $manage_attach_ip_address_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceAttachIpAddress: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| ip_address | string | ||
| manage_attach_ip_address_request | \OpenAPI\Client\Model\ManageAttachIpAddressRequest |
\OpenAPI\Client\Model\ManageAttachIpAddressResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceAttachSshKey($id, $ssh_key_id): \OpenAPI\Client\Model\ManageAttachSshKeyResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$ssh_key_id = 56; // int
try {
$result = $apiInstance->manageServiceAttachSshKey($id, $ssh_key_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceAttachSshKey: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| ssh_key_id | int |
\OpenAPI\Client\Model\ManageAttachSshKeyResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceAttachToPrivateNetwork($id, $network_id, $manage_attach_to_private_network_request): \OpenAPI\Client\Model\ManageAttachToPrivateNetworkResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$network_id = 'network_id_example'; // string
$manage_attach_to_private_network_request = new \OpenAPI\Client\Model\ManageAttachToPrivateNetworkRequest(); // \OpenAPI\Client\Model\ManageAttachToPrivateNetworkRequest
try {
$result = $apiInstance->manageServiceAttachToPrivateNetwork($id, $network_id, $manage_attach_to_private_network_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceAttachToPrivateNetwork: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| network_id | string | ||
| manage_attach_to_private_network_request | \OpenAPI\Client\Model\ManageAttachToPrivateNetworkRequest |
\OpenAPI\Client\Model\ManageAttachToPrivateNetworkResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceBindProject($id, $manage_bind_project_request): \OpenAPI\Client\Model\ManageBindProjectResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$manage_bind_project_request = new \OpenAPI\Client\Model\ManageBindProjectRequest(); // \OpenAPI\Client\Model\ManageBindProjectRequest
try {
$result = $apiInstance->manageServiceBindProject($id, $manage_bind_project_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceBindProject: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| manage_bind_project_request | \OpenAPI\Client\Model\ManageBindProjectRequest |
\OpenAPI\Client\Model\ManageBindProjectResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceChangeConfiguration($id, $manage_change_configuration_request): \OpenAPI\Client\Model\ManageChangeConfigurationResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$manage_change_configuration_request = new \OpenAPI\Client\Model\ManageChangeConfigurationRequest(); // \OpenAPI\Client\Model\ManageChangeConfigurationRequest
try {
$result = $apiInstance->manageServiceChangeConfiguration($id, $manage_change_configuration_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceChangeConfiguration: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| manage_change_configuration_request | \OpenAPI\Client\Model\ManageChangeConfigurationRequest |
\OpenAPI\Client\Model\ManageChangeConfigurationResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceChangePinned($id, $manage_change_pinned_request): \OpenAPI\Client\Model\ManageChangePinnedResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$manage_change_pinned_request = new \OpenAPI\Client\Model\ManageChangePinnedRequest(); // \OpenAPI\Client\Model\ManageChangePinnedRequest
try {
$result = $apiInstance->manageServiceChangePinned($id, $manage_change_pinned_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceChangePinned: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| manage_change_pinned_request | \OpenAPI\Client\Model\ManageChangePinnedRequest |
\OpenAPI\Client\Model\ManageChangePinnedResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceChangeSshAccess($id, $manage_change_ssh_access_request): \OpenAPI\Client\Model\ManageChangeSshAccessResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$manage_change_ssh_access_request = new \OpenAPI\Client\Model\ManageChangeSshAccessRequest(); // \OpenAPI\Client\Model\ManageChangeSshAccessRequest
try {
$result = $apiInstance->manageServiceChangeSshAccess($id, $manage_change_ssh_access_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceChangeSshAccess: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| manage_change_ssh_access_request | \OpenAPI\Client\Model\ManageChangeSshAccessRequest |
\OpenAPI\Client\Model\ManageChangeSshAccessResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceCheckSoftwareRequirements($manage_check_software_requirements_request): \OpenAPI\Client\Model\ManageCheckSoftwareRequirementsResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$manage_check_software_requirements_request = new \OpenAPI\Client\Model\ManageCheckSoftwareRequirementsRequest(); // \OpenAPI\Client\Model\ManageCheckSoftwareRequirementsRequest
try {
$result = $apiInstance->manageServiceCheckSoftwareRequirements($manage_check_software_requirements_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceCheckSoftwareRequirements: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| manage_check_software_requirements_request | \OpenAPI\Client\Model\ManageCheckSoftwareRequirementsRequest |
\OpenAPI\Client\Model\ManageCheckSoftwareRequirementsResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceCreateVps($manage_create_vps_request): \OpenAPI\Client\Model\ManageCreateVpsResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$manage_create_vps_request = new \OpenAPI\Client\Model\ManageCreateVpsRequest(); // \OpenAPI\Client\Model\ManageCreateVpsRequest
try {
$result = $apiInstance->manageServiceCreateVps($manage_create_vps_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceCreateVps: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| manage_create_vps_request | \OpenAPI\Client\Model\ManageCreateVpsRequest |
\OpenAPI\Client\Model\ManageCreateVpsResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceDetachFromPrivateNetwork($id, $network_id): \OpenAPI\Client\Model\ManageDetachFromPrivateNetworkResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$network_id = 'network_id_example'; // string
try {
$result = $apiInstance->manageServiceDetachFromPrivateNetwork($id, $network_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceDetachFromPrivateNetwork: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| network_id | string |
\OpenAPI\Client\Model\ManageDetachFromPrivateNetworkResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceDetachIpAddress($ip_address): \OpenAPI\Client\Model\ManageDetachIpAddressResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$ip_address = 'ip_address_example'; // string
try {
$result = $apiInstance->manageServiceDetachIpAddress($ip_address);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceDetachIpAddress: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| ip_address | string |
\OpenAPI\Client\Model\ManageDetachIpAddressResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceDetachSshKey($id, $ssh_key_id): \OpenAPI\Client\Model\ManageDetachSshKeyResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$ssh_key_id = 56; // int
try {
$result = $apiInstance->manageServiceDetachSshKey($id, $ssh_key_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceDetachSshKey: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| ssh_key_id | int |
\OpenAPI\Client\Model\ManageDetachSshKeyResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceDisablePostInstallAlert($id): \OpenAPI\Client\Model\ManageDisablePostInstallAlertResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceDisablePostInstallAlert($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceDisablePostInstallAlert: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageDisablePostInstallAlertResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceGetAvailableConfiguration(): \OpenAPI\Client\Model\ManageGetAvailableConfigurationResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
try {
$result = $apiInstance->manageServiceGetAvailableConfiguration();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceGetAvailableConfiguration: ', $e->getMessage(), PHP_EOL;
}This endpoint does not need any parameter.
\OpenAPI\Client\Model\ManageGetAvailableConfigurationResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceGetFileManagerSettings($id): \OpenAPI\Client\Model\ManageGetFileManagerSettingsResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceGetFileManagerSettings($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceGetFileManagerSettings: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageGetFileManagerSettingsResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceGetHistory($id): \OpenAPI\Client\Model\ManageGetHistoryResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceGetHistory($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceGetHistory: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageGetHistoryResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceGetInfo($id): \OpenAPI\Client\Model\ManageGetInfoResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceGetInfo($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceGetInfo: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageGetInfoResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceGetInstalledSoftware($id): \OpenAPI\Client\Model\ManageGetInstalledSoftwareResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceGetInstalledSoftware($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceGetInstalledSoftware: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageGetInstalledSoftwareResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceGetList($offset, $limit, $filter, $sort): \OpenAPI\Client\Model\ManageGetListResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$offset = 56; // int
$limit = 56; // int
$filter = 'filter_example'; // string
$sort = 'sort_example'; // string
try {
$result = $apiInstance->manageServiceGetList($offset, $limit, $filter, $sort);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceGetList: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| offset | int | [optional] | |
| limit | int | [optional] | |
| filter | string | [optional] | |
| sort | string | [optional] |
\OpenAPI\Client\Model\ManageGetListResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceGetRegionList(): \OpenAPI\Client\Model\ManageGetRegionListResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
try {
$result = $apiInstance->manageServiceGetRegionList();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceGetRegionList: ', $e->getMessage(), PHP_EOL;
}This endpoint does not need any parameter.
\OpenAPI\Client\Model\ManageGetRegionListResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceGetStatuses(): \OpenAPI\Client\Model\ManageGetStatusesResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
try {
$result = $apiInstance->manageServiceGetStatuses();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceGetStatuses: ', $e->getMessage(), PHP_EOL;
}This endpoint does not need any parameter.
\OpenAPI\Client\Model\ManageGetStatusesResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceRebootVps($id): \OpenAPI\Client\Model\ManageRebootVpsResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceRebootVps($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceRebootVps: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageRebootVpsResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceReinstall($id, $manage_reinstall_request): \OpenAPI\Client\Model\ManageReinstallResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$manage_reinstall_request = new \OpenAPI\Client\Model\ManageReinstallRequest(); // \OpenAPI\Client\Model\ManageReinstallRequest
try {
$result = $apiInstance->manageServiceReinstall($id, $manage_reinstall_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceReinstall: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| manage_reinstall_request | \OpenAPI\Client\Model\ManageReinstallRequest |
\OpenAPI\Client\Model\ManageReinstallResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceRemoveVps($id, $manage_remove_vps_request): \OpenAPI\Client\Model\ManageRemoveVpsResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$manage_remove_vps_request = new \OpenAPI\Client\Model\ManageRemoveVpsRequest(); // \OpenAPI\Client\Model\ManageRemoveVpsRequest
try {
$result = $apiInstance->manageServiceRemoveVps($id, $manage_remove_vps_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceRemoveVps: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| manage_remove_vps_request | \OpenAPI\Client\Model\ManageRemoveVpsRequest |
\OpenAPI\Client\Model\ManageRemoveVpsResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceReserveVpsSubdomain(): \OpenAPI\Client\Model\ManageReserveVpsSubdomainResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
try {
$result = $apiInstance->manageServiceReserveVpsSubdomain();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceReserveVpsSubdomain: ', $e->getMessage(), PHP_EOL;
}This endpoint does not need any parameter.
\OpenAPI\Client\Model\ManageReserveVpsSubdomainResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceResetPassword($id): \OpenAPI\Client\Model\ManageResetPasswordResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceResetPassword($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceResetPassword: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageResetPasswordResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceResetVps($id): \OpenAPI\Client\Model\ManageResetVpsResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceResetVps($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceResetVps: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageResetVpsResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceStartRescue($id): \OpenAPI\Client\Model\ManageStartRescueResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceStartRescue($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceStartRescue: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageStartRescueResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceStartVps($id): \OpenAPI\Client\Model\ManageStartVpsResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceStartVps($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceStartVps: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageStartVpsResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceStopRescue($id): \OpenAPI\Client\Model\ManageStopRescueResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceStopRescue($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceStopRescue: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageStopRescueResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceStopVps($id, $force): \OpenAPI\Client\Model\ManageStopVpsResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$force = True; // bool
try {
$result = $apiInstance->manageServiceStopVps($id, $force);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceStopVps: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| force | bool | [optional] |
\OpenAPI\Client\Model\ManageStopVpsResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceUnarchive($id): \OpenAPI\Client\Model\ManageUnarchiveResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
try {
$result = $apiInstance->manageServiceUnarchive($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceUnarchive: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
\OpenAPI\Client\Model\ManageUnarchiveResponse
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
manageServiceUpdateInfo($id, $manage_update_info_request): \OpenAPI\Client\Model\ManageUpdateInfoResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\ManageServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = 'id_example'; // string
$manage_update_info_request = new \OpenAPI\Client\Model\ManageUpdateInfoRequest(); // \OpenAPI\Client\Model\ManageUpdateInfoRequest
try {
$result = $apiInstance->manageServiceUpdateInfo($id, $manage_update_info_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ManageServiceApi->manageServiceUpdateInfo: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| manage_update_info_request | \OpenAPI\Client\Model\ManageUpdateInfoRequest |
\OpenAPI\Client\Model\ManageUpdateInfoResponse
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]